/********** Template CSS **********/
:root {
    --primary: #EAA636;
    --secondary: #545454;
    --light: #FDF5EB;
    --dark: #1E1916;
}

h4,
h5,
h6,
.h4,
.h5,
.h6 {
    font-weight: 600 !important;
}

.py-6 {
    padding-top: 0rem;
    padding-bottom: 6rem;
}

.my-6 {
    margin-top: 0rem;
    margin-bottom: 0rem;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    /* content: "\f107"; */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    padding: 35px 15px;
    color: var(--light);
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar.fixed-top {
    transition: .5s;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid rgba(255, 255, 255, .3);
        background: var(--dark);
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.header-carousel .owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0.2) 20%,
            rgba(0, 0, 0, 0) 50%);
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 600px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 30px !important;
        margin-top: -18px;
    }
}

.header-carousel .owl-nav {
    position: relative;
    width: 80px;
    height: 80px;
    margin: -40px auto 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-carousel .owl-nav::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transform: rotate(45deg);
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: relative;
    font-size: 40px;
    color: var(--primary);
    transition: .5s;
    z-index: 1;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

.page-header {
    margin-bottom: 6rem;
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .1)), url(../img/breadcrumb.webp) bottom center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Facts ***/
.fact-item {
    transition: .5s;
}

.fact-item:hover {
    margin-top: -10px;
    background: #FFFFFF !important;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}


/*** About ***/
.img-twice::before {
    position: absolute;
    content: "";
    width: 60%;
    height: 80%;
    top: 10%;
    left: 20%;
    background: var(--primary);
    border: 25px solid var(--light);
    border-radius: 6px;
    z-index: -1;
}


/*** Product ***/
.product-item {
    transition: .5s;
}

.product-item:hover {
    background: var(--primary) !important;
}

.product-item:hover * {
    color: var(--light);
}

.product-item:hover .border-primary {
    border-color: var(--light) !important;
}

.product-item .product-overlay {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.product-item:hover .product-overlay {
    height: 100%;
    opacity: 1;
}


/*** Team ***/
.team-item .team-text {
    position: relative;
    height: 100px;
    overflow: hidden;
}

.team-item .team-title {
    position: absolute;
    padding: 5px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--light);
    transition: .5s;
}

.team-item:hover .team-title {
    top: -100px;
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    /* height: 100%; */
    top: 100px;
    padding: 5px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    transition: .5s;
}

.team-item .team-social .btn {
    margin: 0 3px;
}

.team-item:hover .team-social {
    top: 0;
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item img {
    width: 60px;
    height: 60px;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 22px;
    color: var(--light);
    background: var(--primary);
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--primary);
    background: var(--dark);
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--light);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 0.5px;
    box-shadow: none;
}

.copyright {
    background: #111111;
}

.copyright a {
    color: var(--primary);
}

.copyright a:hover {
    color: var(--light);
}

.small-heading {
    font-size: 20px;
    /* Aap apne hisaab se chhota ya bada kar sakte hain */
    font-weight: normal;
    /* Agar aap bold kam karna chahen */
}

.homes {
    text-align: justify;
}


/* WHAT WE DO SECTION */
.what-we-do-section {
    /* Background image + color overlay */
    background:
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        /* dark overlay */
        url(../img/background-1.webp) center/cover no-repeat;
    /* image settings */

    padding: 50px 0;
    /* Top & bottom spacing */
    color: white;
    /* All text white by default */
}


.what-we-do-section h1.display-6 {
    color: white;
    font-weight: 700;
}

/* Full-width Interior Section */
.interior-section-full {
    width: 100%;
    /* background-color: rgba(0,0,0,0.1);  */
    padding: 50px 20px;
    border-radius: 20px;
}

/* Headings & Paragraphs */
.interior-section-full h3 {
    font-size: 30px;
    color: white;
    margin-bottom: 15px;
}

.interior-section-full p {
    color: #f0f0f0;
    line-height: 1.7;
}

/* Images */
.interior-section-full img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
    /* Smooth corners */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    /* Premium shadow */


}

/* Responsive spacing for mobile */
@media (max-width: 767px) {
    .what-we-do-section {
        padding: 60px 15px;
    }

    .interior-section-full {
        padding: 30px 15px;
    }

    .interior-section-full h3 {
        font-size: 28px;
    }
}

/* Clients Love Section */
.clients-love-section {
    background: #ffffff;
    /* Light gray background for modern look */
    color: #333;
    padding: 60px 0;
}

.clients-love-section .section-title {
    font-size: 80px;
    font-weight: 700;
    color: #222;
    margin-bottom: 50px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
}

/* Testimonial card */
.testimonial-card {
    background: #ffffff;
    /* White background */
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    /* Soft modern shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 200px;
    /* All cards same height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-left: 4px solid #eec87b;
}

/* Testimonial text */
.testimonial-card p {
    font-style: italic;
    line-height: 1.7;
    font-size: 16px;
    color: #555;
}

/* Client name and date */
.testimonial-card .client-name {
    margin-top: 20px;
    font-weight: 600;
    font-size: 18px;
    color: #222;
}

.testimonial-card .date {
    font-weight: 400;
    font-size: 16px;
    color: #888;
}

/* Hover effect */
.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .testimonial-card {
        min-height: auto;
        padding: 25px 20px;
    }
}

@media (max-width: 575px) {
    .clients-love-section .section-title {
        font-size: 28px;
        margin-bottom: 35px;
    }
}


/* transform your space today section start */

.transform-space-section {
    background: #ffffff;
    color: white;
    padding: 60px 0;
    text-align: center;
    /* border-radius: 20px; */
}

.clients-love-section h1.display-6,
.transform-space-section h1.display-6 {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    letter-spacing: 1px;
    /* white-space: nowrap; */

}

/* Contact Info */
.transform-space-section .contact-info {
    font-size: 16px;
    line-height: 1.8;
    color: #362b16;
    margin-bottom: 30px;
}

.transform-space-section .contact-info a {
    color: #362b16;
    text-decoration: none;
}

/* Buttons Container */
.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Button Style */
.transform-space-section .btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    /* space between icon and text */
    padding: 12px 35px;
    background: #ffffff;
    color: #ad5d02;
    font-weight: 500;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    font-size: 16px;
    border: 1px solid #362b16;
}

.transform-space-section .btn-contact i {
    font-size: 18px;
    /* icon size */
}

/* Hover effect */
.transform-space-section .btn-contact:hover {
    background: #ffe3d3;
    color: #ff4e00;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .transform-space-section {
        padding: 50px 15px;
    }

    .transform-space-section .contact-info {
        font-size: 15px;
    }

    .transform-space-section .btn-contact {
        padding: 10px 25px;
        font-size: 14px;
    }

    .mobile-hide {
        display: none;
    }
}


.vision-creation-text {
    font-family: 'Dancing Script', cursive;
    font-size: 45px !important;
    font-weight: 900 !important;
    letter-spacing: 1px;
}


.vision-creation-text2 {
    font-family: 'Dancing Script', cursive;
    font-size: 25px !important;
    font-weight: 900 !important;
    letter-spacing: 1px;
    margin-top: -20px;
    margin-bottom: 25px;
    color: #ec8f03;
}


.reckoner-text {
    font-family: 'Merriweather', serif;
    font-size: 16px;
    /* line-height: 1.7; */
    /* text-align: justify; */

}

.reckoner-text-2 {
    font-family: 'Merriweather', serif;
    font-size: 20px;
    /* line-height: 1.7; */
    text-align: justify;

}

.img-fluid.rounded {
    border-left: 3px solid #eec87b;
    /* 5px width, luxury gold color */
    padding-left: 5px;
    margin-top: -40px;

}

.ready {
    font-size: 18px;
    color: #000000;
    margin-top: -15px;
    font-weight: 500;
}

/* since 2021 section */
.premium-section {
    background-color: #ffffff;
    /* clean, light background */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
    margin-top: -50px;

}

.premium-text {
    font-size: 2.3rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    /* premium, elegant font */
    color: #1a1a1a;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideUp 1.8s ease forwards;
}

@media (max-width: 767px) {
    .premium-text {
        font-size: 2rem;
    }
}

@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    60% {
        opacity: 0.7;
        transform: translateY(-5px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* since 2021 section end */


/* 2021 Established Legacy button start*/
.gw-all-products-btn {
    display: inline-block;
    padding: 7px 25px;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    /* yellow text */
    background: #552f07;
    /* black background */
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #fcb90f;
    /* box-shadow: 0 0 15px rgba(255,255,255,0.4), 0 0 10px rgba(255,215,0,3); */
}

.gw-all-products-btn-2 {
    display: inline-block;
    padding: 7px 25px;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    /* yellow text */
    background: #eaa636;
    /* black background */
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #fcb90f;
    /* box-shadow: 0 0 15px rgba(255,255,255,0.4), 0 0 10px rgba(255,215,0,3); */
}

.gw-all-products-btn-2:hover {
    color: #ffffff;
    background: #db993d;
}

.gw-all-products-btn:hover {
    color: #fcb90f;
}

/* Shining overlay – left to right only */
.gw-all-products-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.1));
    transform: skewX(-60deg);
    animation: shineLTR 1.5s linear infinite;
    pointer-events: none;
}

/* Keyframes – only left to right */
@keyframes shineLTR {
    0% {
        left: -100%;
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.8;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

/* 2021 Established Legacy button end*/



/* About page start */

.about-heading {
    font-size: 3rem;
    /* thoda chhota than default display-4 */
    margin-top: 60px;
    /* neeche push karne ke liye */
}


.about-text p {
    text-align: justify !important;
    line-height: 1.7;
}

/* @media (max-width: 768px) {
    .about-text p {
        text-align: left !important;
    }
} */


/* Sector we serve section start */
.sectors-section {
    background-color: #FDF5EB;
    /* premium light background */
    padding: 50px;
    margin-bottom: 20px;
    margin-top: -30px;
}

.section-subtitle {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 1.1rem;
    color: #ff9100;

}

.section-title {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 2.2rem;
    line-height: 1.3;
}

.section-description {
    font-family: "Roboto", sans-serif;
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    max-width: 750px;
    margin: 0 auto;
}

/* Sectors Cards */
.sector-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 25px 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    font-family: "Playfair Display", serif;
    font-weight: 600;
    color: #1a1a1a;
    transition: all 0.3s ease;
    cursor: default;
}

.sector-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    color: #b97003;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .section-title {
        font-size: 1.8rem;
    }

    .sector-card {
        padding: 20px 10px;
        font-size: 0.95rem;
    }
}

/* Sector we serve section end */

/* Mission & Vision Section Styling */
.mission-vision-section {
    background-color: #ffffff;
    padding-top: 50px;
    padding-bottom: 80px;

}

.mv-card {
    background-color: #fff;
    padding: 35px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    border: 1px solid #9b4c02;
}

.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.mv-icon {
    font-size: 3rem;
    color: #9b4c02;
    margin-bottom: 10px;
}

.mv-title {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.mv-description {
    font-family: "Roboto", sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    flex-grow: 1;
    /* ensures description expands to make both cards same height */
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .mv-card {
        padding: 25px 15px;
    }

    .mv-title {
        font-size: 1.5rem;
    }

    .mv-icon {
        font-size: 2rem;
    }
}

/* Philosophy Section Styling */
.philosophy-section {
    background: url(../img/background-2.webp) top center/cover no-repeat;
    position: relative;
    overflow: hidden;
    padding-top: 50px;
    padding-bottom: 50px;
    margin-top: -30px;
}

.philosophy-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    /* dark overlay for readability */
    z-index: 1;
}

.philosophy-section .container {
    position: relative;
    z-index: 2;
}

.section-subtitle {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 1.1rem;
    color: #a76003;
}

.section-title {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.3;
}

.section-description {
    font-family: "Roboto", sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 750px;
    margin: 0 auto 50px;
    color: #000;
}

.philosophy-step {
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 12px;
    padding: 20px 25px;
    margin-bottom: 20px;
    font-family: "Roboto", sans-serif;
    line-height: 1.6;
    transition: all 0.3s ease;
    border: 1px solid #ff9900;
}

.philosophy-step:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.step-number {
    font-weight: 700;
    font-size: 1.5rem;
    color: #ffdd00;
    margin-right: 10px;
}

/* Responsive */
@media (max-width: 767px) {
    .section-title {
        font-size: 1.6rem;
    }

    .philosophy-step {
        padding: 15px 20px;
    }

    .step-number {
        font-size: 1.3rem;
    }
}


.team-skill-title {
    font-size: 1.1rem;
}

/* FAQ Section */
.faq-section {
    background: #FDF5EB;
    padding: 30px;
}

/* FAQ Item */
.faq-item {
    background: #fff;
    border-radius: 14px;
    margin-bottom: 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

/* Question */
.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 16px 26px;
    /* Reduced height */
    font-size: 1rem;
    /* Slightly smaller font */
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #222;
}

/* Icon */
.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

/* Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    padding: 0 26px;
}

.faq-answer p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    padding-bottom: 16px;
}

/* Active State */
.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    /* arrow points up when open */
}

/* Gallery section start */

.gallery-section {
    margin-top: -80px;
}

.our-gallery-font {
    font-size: 2rem;
}

/* photos videos Tabs Custom Colors */
.wh-media-gallery-tabs .nav-link {
    color: #444;
    background-color: #f2f2f2;
    border-radius: 30px;
    padding: 8px 22px;
    margin: 0 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-bottom: 40px;
    margin-top: -40px;
}

/* Active Tab */
.wh-media-gallery-tabs .nav-link.active {
    background-color: #ff7a00;
    /* 🔶 Active color */
    color: #fff;
}

/* Hover Effect */
.wh-media-gallery-tabs .nav-link:hover {
    background-color: #ff9a3c;
    color: #fff;
}

.video-tab {
    margin-top: -80px;
}

.gallery-card {
    width: 100%;
    height: 200px;
    /* fixed height for all images */
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* makes all images same size */
    transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-img {
    transform: scale(1.08);
}

.modal-content {
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    position: relative;
    /* relative required for absolute positioning of button */
    padding: 0;
    /* remove extra padding */
}

/* Close button fixed top-right */
.modal .btn-close {
    position: absolute;
    top: 10px;
    /* distance from top */
    right: 10px;
    /* distance from right */
    z-index: 1050;
    /* above image */
    background-color: white;
    opacity: 0.8;
    border: none;
}

/* Image style */
.modal img {
    width: auto;
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* Gallery section end */

/* contact page start */
.wh-contact-section {
    margin-bottom: 50px;
    background-color: #ffffff;
}

.wh-container {
    max-width: 1200px;
    margin: 0 auto;
}

.wh-contact-wrapper {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.wh-contact-info {
    flex: 1 1 400px;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wh-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    /* box-shadow: 0 4px 12px rgba(0,0,0,0.1); */
    transition: transform 0.3s, box-shadow 0.3s;
}

.wh-contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.wh-contact-icon {
    font-size: 32px;
    color: #ee9707;
    flex-shrink: 0;
    margin-top: 5px;
}

.wh-contact-title {
    margin: 0 0 5px 0;
    font-size: 22px;
    color: #333;
}

.wh-contact-text a{
    margin: 0;
    font-size: 15px;
    color: #555;
}

.wh-contact-map {
    flex: 1 1 500px;
    min-width: 300px;
    height: 100%;
}

.wh-contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border-radius: 12px;
    border: none;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
    .wh-contact-wrapper {
        flex-direction: column;
    }

    .wh-contact-info,
    .wh-contact-map {
        flex: 1 1 100%;
    }

    .wh-contact-map {
        flex: 1 1 500px;
        min-width: 100%;
        height: 100%;
    }

}

/* contact page end */

.why-choose {
    margin-top: 30px;
}

/* Gallery Tabs Custom Colors */
.wh-media-gallery-tabs .nav-link {
    color: #444;
    background-color: #f2f2f2;
    border-radius: 30px;
    padding: 8px 22px;
    margin: 0 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-bottom: 40px;
    margin-top: -40px;
}

/* Active Tab */
.wh-media-gallery-tabs .nav-link.active {
    background-color: #753d02;
    color: #fff;
}

/* Hover Effect */
.wh-media-gallery-tabs .nav-link:hover {
    background-color: #ff9a3c;
    color: #fff;
}

.video-tab {
    margin-top: -80px;
}

/* our gallery image slide section start */
.custom-gallery-bg {
    background-color: #fdf5eb !important;
    /* black */
}

.custom-slider-wrapper {
    position: relative;
    overflow: hidden;
}

.custom-slider-track {
    display: flex;
    transition: transform 0.6s ease;
}

/* Desktop: 3 images */
.custom-slide {
    flex: 0 0 33.3333%;
    padding: 10px;
}

.custom-slide img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s ease;
}

.custom-slide img:hover {
    transform: scale(1.08);
}

/* Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
    z-index: 10;
}

.slider-btn.prev {
    left: 10px;
}

.slider-btn.next {
    right: 10px;
}

/* Controls */
.gallery-prev {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
    z-index: 10;
}

.gallery-next {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
    z-index: 10;
}


/* Mobile: 1 image */
@media (max-width: 768px) {
    .custom-slide {
        flex: 0 0 100%;
    }

    .custom-slide img {
        height: 240px;
    }
}

/* our gallery image slide section end */
.service {
    text-align: center;
    margin-bottom: 60px;
    font-family: 'Merriweather', serif;
    font-size: 19px;
}

.our-design {
    margin-top: -50px;

}


/* Fix spacing between text & image on mobile */

@media (max-width: 768px) {
    .what-we-do-section {
        padding-bottom: 5px;
        margin-top: -50px;
    }
}

@media (max-width: 768px) {
    .what-we-do-section h3 {
        margin-top: -30px;
    }
}

@media (max-width: 768px) {

    .what-we-do-section img {
        margin-top: 1rem !important;
    }
}

@font-face {
    font-family: 'Felixti';
    /* Name you choose */
    src: url('../Felixti.TTF') format('opentype');
}

.felix-font {
    font-family: "Felixti", sans-serif;
    color: #ec8f03;
    letter-spacing: 2px;
}

.felix-font-2 {
    font-family: "Felixti", sans-serif;
    font-size: 4rem;
    letter-spacing: 3px;
    /* color: #ffecbd !important; */
}

@media (max-width: 768px) {

    .felix-font-2 {
        font-size: 3rem !important;
    }

    .py-6 {
        padding-bottom: 3rem;
    }
}

.welcome-text {
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* founder section start */

.founder-section {
    background-color: #f9f9f9;
    margin-top: 0px;
    margin-bottom: 30px;
}

/* Unique Section Heading */
.founder-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    position: relative;
    display: inline-block;
    padding-bottom: 0px;
}


/* Unique Founder Card */
.founder-card-unique {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    max-width: 280px;
    margin: 0 auto;
    /* Center card in column */
    /* border: 1px solid #ffa600; */
}

.founder-card-unique:hover {
    transform: translateY(-3px);
}

.founder-img-unique {
    width: 100%;
    display: block;
    height: auto;
}

/* Name & Position Below Image */
.founder-info-unique {
    background-color: #fcc367;
    color: #fff;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    padding: 12px 10px;
    text-align: left;
    height: 80px;

}

.founder-name-unique {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0px;
}

.founder-position-unique {
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
}


/* Content */
.founder-section p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
}

.founder-para {
    text-align: justify;

}

.richa {
    font-size: 20px;
    color: #f19506;
    font-weight: 500;
}


.address-coll a{
    color: #ffffff;
}