 *{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:"Poppins",sans-serif;
}
html,body  {
    margin: 0;
    padding: 0;
}
/* Font Awesome Brands */
@font-face {
    font-family: "Font Awesome 6 Brands";
    src: url("/webfonts/fa-brands-400.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap; /* <-- important */
}

/* Font Awesome Solid */
@font-face {
    font-family: "Font Awesome 6 Free";
    src: url("/webfonts/fa-solid-900.woff2") format("woff2");
    font-weight: 900;
    font-style: normal;
    font-display: swap; /* <-- important */
}


 /*TOP BAR */
.topbar {
    width: 100%;
    background: #bf99a3;
    color: #fff;
    padding: 8px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    /*position: relative;*/
    /*z-index: 900 !important;*/
     position: sticky; /* or fixed */
    /*top: 0;*/
    z-index: 9999 !important;
}


/*.topbar {*/
/*    width: 100%;*/
/*    background: #bf99a3;*/
/*    color: #fff;*/
/*    padding: 8px 40px;*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*    align-items: center;*/
/*    font-family: "Montserrat", sans-serif;*/
/*    font-size: 13px;*/
/*    position: relative;*/
    /*z-index: 9999 !important; */
    /* increased 
/*}*/


.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.topbar a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.topbar a:hover {
    color: #f8e6ea;
}

/* ICONS SIZE */
.topbar i {
    font-size: 15px;
}

/* HOVER EFFECT */
.topbar a:hover {
    color: #f8e6ea;
}



/* RESPONSIVE */
@media (max-width: 768px) {
    .topbar {
        flex-direction: column;
        text-align: center;
        padding: 12px 20px;
        gap: 12px;
        padding-top: 15px; 
    }

    .topbar-left,
    .topbar-right {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
}



/* NAVBAR BASE */
.navbar {
    width: 100%;
    padding: 6px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top:0;
    left: 0;
    z-index: 1000;
    /* Semi-white background */
    /*background: rgba(255, 255, 255, 0.35);*/
    /*backdrop-filter: blur(6px);*/
    
    /* Glassy Background */
    /*background: rgba(255, 255, 255, 0.25);*/
    /*backdrop-filter: blur(0px);*/
    /*-webkit-backdrop-filter: blur(6px);*/
    /*border-bottom: 1px solid rgba(255, 255, 255, 0.15);*/
    margin-top: 0;     /* Remove top gap */

    
}

/* LOGO */
.nav-logo {
    width: 110px;
    height: auto;
    margin:0;
    margin-top: 30px;   /* moved slightly up 
    transform: translateY(-15px); /* lifts the logo upwards more */
}

/* DESKTOP MENU */
.nav-links {
    list-style: none;
    display: flex;
    gap: 0px;
}

.nav-links li a {
    text-decoration: none;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    transition: 0.3s;
    font-weight:normal;
    /* Semi-black color */
    /*color: rgba(0, 0, 0, 0.75);*/
}

.nav-links li a:hover {
    color: #dc768c;
}

.nav-links li {
    position: relative;
    /*padding-right: 25px;  */
    /* spacing for the | 
    /*margin-right: 15px;*/
    /*margin: 0 18px;*/
    /* equal spacing on both sides */
    padding: 0 18px;       /* equal spacing on both sides of | */
}

.nav-links li::after {
    content: "|";
    position: absolute;
    right: 0;
    top: 0;
    margin-left: 18px;  /* equal spacing */
    color: rgba(255, 255, 255, 0.8);  /* white (adjust if needed) */
    font-size: 16px;
}

.topbar-left span.separator {   /* give your | spans a class="separator" */
      display: none !important;
  }

/* WHEN SCROLLED */
#navbar.scrolled {
    background: #bc9393;   /* darker shade on scroll */
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    
}
.navbar.scrolled .nav-logo {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    width: 0;
}
.navbar.scrolled {
    justify-content: center;
}
.navbar.scrolled .nav-links {
    margin-left: auto;
    margin-right: auto;
}

.navbar.scrolled .hamburger {
    position: absolute;
    right: 25px;
}


/* HAMBURGER */
.hamburger {
    width: 28px;
    height: 22px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    position: relative;
    z-index: 10001;  /* above topbar */
    margin-top:60px;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: #333;
    border-radius: 3px;
    transition: 0.3s;
}

/* MOBILE MENU */
.mobile-menu {
    display: none;
    position: fixed;
    top: 65px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    padding: 15px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 10000;
}

.mobile-menu a {
    text-decoration: none;
    padding: 15px 0;
    text-align: center;
    font-size: 17px;
    color: #333;
    font-family: "Poppins", sans-serif;
    display: block;
}

.mobile-menu a:hover {
    background: #f7f7f7;
}

/* WHEN ACTIVE */
.mobile-menu.show {
    display: flex;
    animation: dropMenu 0.3s ease-out;
}

@keyframes dropMenu {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
/* HAMBURGER ACTIVE STATE */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}


/* ------------------- MEDIA QUERIES ------------------- */

/* Mobile & small screens */
@media (max-width: 900px) {
    .nav-links {
        display: none; /* hide desktop menu */
    }

    .hamburger {
        display: flex; /* show hamburger */
    }

    .nav-logo {
        width: 110px;
    }
}

/* 375px screens */
@media (max-width: 425px) {
    .nav-logo {
        width: 100px;
        margin-top:120px;
    }

    .navbar {
        padding: 10px 18px;

        background: transparent !important;   /* No color */
        backdrop-filter: none !important;     /* Remove blur */
        -webkit-backdrop-filter: none !important;
        box-shadow: none !important;          /* Remove any shadow */
    
    }
    
   
}

/* 320px screens */
@media (max-width: 320px) {
    .nav-logo {
        width: 90px;
        margin-top:120px;
    }

    .navbar {
        padding: 8px 15px;
        
    }

    .hamburger {
        width: 26px;
        height: 20px;
    }
    
}

/* HERO SECTION -------------------------------- */
.hero {
    width: 100%;
    height: 100vh;
    background: url('/img/herobanner.webp')
        center center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}


/*.hero {*/
/*    width: 100%;*/
/*    height: 100vh;*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*}*/

/*.hero-img {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    object-fit: cover;*/
/*    z-index: 1;*/
/*}*/

/* Glass Diamond */
.glass-diamond {
    position: absolute;
    width: 55%;
    padding: 40px 35px;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.35);
    clip-path: polygon(15% 0%, 85% 0%, 100% 50%, 85% 100%, 15% 100%, 0% 50%);
    animation: float 5s ease-in-out infinite;
    z-index: 5;  /* FIX: makes text + diamond visible */
}

.inner-text {
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 20; /* ensures text visible even if polygon hidden */
}

.inner-text h1 {
    font-size: 55px;
    font-weight: 600;
    line-height: 1.2;
}

.inner-text p {
    font-size: 24px;
    margin-top: 10px;
}

.btn-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    max-width: 350px;   /* keeps buttons within polygon */
    margin-left: auto;
    margin-right: auto;

}

.book-btn {
    padding: 12px 35px;
    border: 2px solid #fff;
    border-radius: 30px;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    width: auto;      /* important: prevents stretching */
    white-space: nowrap;
}

/* Tablets & phones under 768px */
@media (max-width: 768px) {

.hero {
        height: 90vh;
        background-size: cover !important;
        background-position: top center !important;
    }
    
    .glass-diamond {
        width: 480px;
        height: 280px; 
        padding: 0; 
        top: 50%; 
        right: 25%; 
        /*transform: translate(-50%, -50%) rotate(45deg);*/
        

        /* Remove polygon → use rotated square */
        /*clip-path: none !important;*/

        /*background: rgba(255, 255, 255, 0.15) !important;*/
        /*border-radius: 12px;*/
        /*border: 1px solid rgba(255,255,255,0.35);*/
        /*z-index: 20 !important;*/
        /*display: flex;*/
        /*justify-content: center;*/
        /*align-items: center;*/
        
        /*display: none !important;*/
    }

    .inner-text {
        /*transform: rotate(-45deg) !important;*/
        /*padding: 10px;*/
        width: 90%;
        margin: 0 auto;
        /*background: rgba(0,0,0,0.35);*/
        padding: 20px;
        border-radius: 12px;
    }

    .inner-text h1 {
        font-size: 26px;
    }

    .inner-text p {
        font-size: 14px;
    }

    .btn-group {
        flex-direction: column;
    }

    .book-btn {
        width: 70%;
        font-size: 14px;
        padding: 10px 0;
    }
}

/* --------------------- 375px and below --------------------- */
@media (max-width: 375px) {

    .glass-diamond {
        width: 120px !important;
         height: auto; 
        padding: 15px 12px;
        
        top: 25%;
        right: 25%;
        transform: translate(-50%, -50%);
       
    }

    .inner-text h1 {
        font-size: 18px !important;
        line-height: 1.3;
    }

    .inner-text p {
        font-size: 12px !important;
    }

    .btn-group {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 12px;
    }

    .book-btn {
        padding: 6px 18px;
        border: 1px solid #fff;
        border-radius: 20px;
        color: #fff;
        font-size: 11px;
        text-decoration: none;
        width: auto;
        white-space: nowrap;
    }
}

 

/* --------------------- Phones 425px --------------------- */
@media (max-width: 425px) {

    .glass-diamond {
        width: 280px !important;
        padding: 18px 15px;
        top: 55%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .inner-text h1 {
        font-size: 19px !important;
    }

    .inner-text p {
        font-size: 13px !important;
    }

    .book-btn {
        padding: 6px 18px;
        border: 1px solid #fff;
        border-radius: 20px;
        color: #fff;
        font-size: 11px;
        text-decoration: none;
        width: auto;
        white-space: nowrap;
    }
}

/* ---------------- SIMPLE FEATURES ---------------- */
/*.simple-features {*/
/*    padding: 25px 10%;*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*    flex-wrap: wrap;*/
/*    gap: 25px;*/
/*    margin-top: 30px;*/
/*}*/

/*.simple-card {*/
/*    width: 18%;*/
/*    text-align: center;*/
/*}*/

/*.simple-card img {*/
/*    width: 90px;*/
/*    margin-bottom: 10px;*/
/*}*/

/* ---------------- MOBILE RESPONSIVE ---------------- */
/*@media (max-width: 900px) {*/
/*    .navbar ul { display: none; }*/

/*    .hamburger { display: flex; }*/

    

/*    .inner-text h1 { font-size: 33px; }*/
/*    .inner-text p { font-size: 18px; }*/
/*}*/

/*@media (max-width: 768px) {*/
/*    .simple-card { width: 45%; }*/
/*}*/

/*@media (max-width: 480px) {*/
/*    .simple-card { width: 100%; }*/
/*}*/

/* SIMPLE FEATURES SECTION */
.simple-features {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 40px 20px;
    flex-wrap: nowrap;
}

.simple-card {
    text-align: center;
    flex: 1;
}

.simple-card img {
    width: 100px;
    height: auto;
    display: block;
    margin: 0 auto 10px;
}

.simple-card p {
    font-size: 14px;
    color: #333;
    margin-top: 5px;
    font-weight: 500;
}


/* ------------ MOBILE VIEW (320px & 375px) ------------ */
@media (max-width: 480px) {

    .simple-features {
        flex-direction: column;
        gap: 25px;
    }

    .simple-card {
        width: 100%;
    }

    .simple-card img {
        width: 70px;
    }

    .simple-card p {
        font-size: 15px;
    }
}


    .about-section {
        width: 100%;
        background: url("/img/background2.webp") center/cover no-repeat;
        padding: 80px 5%;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        position: relative;
        min-height: 500px;
    }

    /* Dark transparent overlay for better readability */
    .about-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(1px);
    }

    .about-content {
        position: relative;
        width: 50%;
        max-width: 600px;
    }

    .about-title {
        font-family: "Playfair Display", serif;
        font-size: 40px;
        color: #BC9393;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .about-text {
        font-family: "Montserrat", sans-serif;
        font-size: 15px;
        line-height: 1.7;
        color: #4c4c4c;
        margin-bottom: 25px;
    }

    .about-btn {
        background: #D3B4AB;
        color: #ffffff;
        border: none;
        padding: 12px 28px;
        font-family: "Montserrat", sans-serif;
        font-size: 14px;
        border-radius: 10px;
        cursor: pointer;
        text-decoration: none;
        display: inline-block;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .about-section {
            justify-content: center;
            padding: 60px 5%;
        }

        .about-content {
            width: 100%;
        }

        .about-title {
            font-size: 30px;
        }
    }

 .enhance-section {
        width: 100%;
        padding: 70px 5%;
        background: url("/img/background1.webp") center/cover no-repeat;
        position: relative;
    }

    /* white overlay for readability */
    .enhance-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(255, 255, 255, 0.5);
    }

    .enhance-inner {
        position: relative;
        z-index: 2;
        text-align: center;
    }

    .enhance-title {
        font-family: "Playfair Display", serif;
        font-size: 40px;
        color: #BC9393;
        margin-bottom: 40px;
        font-weight: 600;
    }

    .enhance-cards {
        display: flex;
        justify-content: space-between;
        gap: 20px;
        flex-wrap: wrap;
    }

    .enhance-card {
        width: 18%;
        background: rgba(255, 255, 255, 0.6);
        backdrop-filter: blur(3px);
        padding: 25px 10px;
        border-radius: 6px;
        text-align: center;
        font-family: "Montserrat", sans-serif;
    }

    .enhance-card img {
        width: 60px;
        margin-bottom: 12px;
    }

    .enhance-card p {
        font-size: 15px;
        color: #4c4c4c;
        margin: 0;
        font-weight: 500;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .enhance-card {
            width: 45%;
        }

        .enhance-title {
            font-size: 30px;
        }
    }

    @media (max-width: 480px) {
        .enhance-card {
            width: 100%;
        }
    }
    
  /* ------- SERVICES SECTION ------- */
.services-section {
    padding: 80px 5%;
    background: #f9f5f6;
    text-align: center;
}

/* LIMIT SECTION WIDTH FOR PREMIUM LOOK */
.services-section .inner-container {
    max-width: 1200px;  /* Limits overall width */
    margin: auto;       /* Centers entire block */
}

.services-title {
    font-family: "Playfair Display", serif;
    font-size: 40px;
    color: #BC9393;
    margin-bottom: 40px;
}

/* Slider container */
.services-slider {
    display: flex;
    gap: 25px;
    overflow: hidden;
    scroll-behavior: smooth;
    padding: 0 10px; /* space left right */
}

/* Service Card */
.service-card {
    flex: 0 0 46%; /* smaller width = beautiful layout */
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    padding-bottom: 15px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.15);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 15px 0 10px;
    color: #BC9393;
}

.service-card p {
    padding: 0 20px;
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

/* Slider Buttons */
.slider-controls {
    margin-top: 25px;
}

.slider-btn {
    background: #BC9393;
    color: #fff;
    border: none;
    padding: 10px 18px;
    font-size: 22px;
    cursor: pointer;
    border-radius: 8px;
    margin: 0 8px;
    transition: 0.3s;
}

.slider-btn:hover {
    background: #a27b7b;
}

/* Responsive */
@media (max-width: 768px) {
    .service-card {
        flex: 0 0 100%;
    }
}


/* SECTION */
.what-we-do {
    padding: 80px 5%;
    background: #fbf8f6;
    font-family: "Montserrat", sans-serif;
}

/* FLEX STRUCTURE */
.wwd-container {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

/* LEFT SIDE */
.wwd-left {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.wwd-left h2 {
    font-size: 48px;
    font-family: "Playfair Display", serif;
    color: #BC9393;
    margin-bottom: 30px;
}

.wwd-left h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 25px;
    color: #BC9393;
}

.wwd-left p {
    font-size: 16px;
    color: #4c4c4c;
    line-height: 1.7;
}

/* BUTTON */
.read-more-btn {
    padding: 14px 24px;
    background: #d3b4ab;
    width: fit-content;
    color: white;
    border: none;
    border-radius: 40px;
    margin-top: 25px;
    font-size: 15px;
    cursor: pointer;
    text-decoration: none !important;
}

/* RIGHT SIDE */
.wwd-right {
    flex: 1;
    display: flex;
}

.img-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 18px;
    overflow: hidden;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ------------------------- RESPONSIVE ------------------------- */

@media (max-width: 900px) {
    .wwd-container {
        flex-direction: column;
    }

    .img-wrapper {
        height: 350px;
    }

    .wwd-left h2 {
        font-size: 38px;
    }
}

/* ------- 375px (iPhone) ------- */
@media (max-width: 375px) {

    .what-we-do {
        padding: 60px 5%;
    }

    .wwd-left h2 {
        font-size: 34px;
    }

    .wwd-left h3 {
        font-size: 20px;
    }

    .wwd-left p {
        font-size: 15px;
    }

    .img-wrapper {
        height: 400px;
    }
}

/* ------- 320px (small phones) ------- */
@media (max-width: 320px) {

    .what-we-do {
        padding: 50px 4%;
    }

    .wwd-left h2 {
        font-size: 30px;
    }

    .wwd-left h3 {
        font-size: 18px;
    }

    .wwd-left p {
        font-size: 14px;
    }

    .read-more-btn {
        font-size: 14px;
        padding: 12px 20px;
    }

    .img-wrapper {
        height: 360px; /* prevents image sliding */
    }
}

.partners-section {
    padding: 60px 5%;
    text-align: center;
}

.partners-title {
    font-size: 40px;
    font-family: "Playfair Display", serif;
    color: #BC9393;
    margin-bottom: 40px;
}

/* Carousel wrapper */
.carousel {
    overflow: hidden;
    width: 100%;
}

/* Track slides left to right */
.carousel-track {
    display: flex;
    gap: 40px;
    animation: scroll 20s linear infinite;
}

/* Logos */
.logo-box {
    flex: 0 0 calc(20% - 40px); /* 5 logos per row */
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-box img {
    width: 120px;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: 0.3s;
}

.logo-box img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Auto scroll animation */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ------------ Responsive (Mobile) ------------ */
@media (max-width: 768px) {
    .logo-box {
        flex: 0 0 calc(33.33% - 20px); /* 3 logos per row on mobile */
    }

    .logo-box img {
        width: 90px;
    }
}

@media (max-width: 480px) {
    .logo-box {
        flex: 0 0 calc(50% - 20px); /* 2 logos per row on small phones */
    }
}



.stats-section {
    position: relative;
    /*background: url("/img/flat-lay-bath-concept-accessories-with-copy-space.jpg") center/cover no-repeat;*/
     background: #f4f4f4; /* temporary color */
    width: 100%;
    min-height: 350px; /* Adjust height as you want */
}

/* FULL OVERLAY FIXED */
.stats-overlay {
    position: absolute;
    inset: 0; /* top:0; right:0; bottom:0; left:0; */
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
}

/* Content container */
.stats-container {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-box {
    text-align: center;
    color: #fff;
    font-family: "Montserrat", sans-serif;
}

.stat-number {
    font-size: 50px;
    font-weight: 700;
}

.stat-text {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .stats-section {
        min-height: 550px !important;
    }
    .stat-number {
        font-size: 40px;
    }
}
@media (max-width: 480px) {
    .stat-number {
        font-size: 32px;
    }
}



/* TESTIMONIAL SECTION */
.testimonial-section {
    width: 100%;
    padding: 70px 5%;
    background: #f7f2f3;
    text-align: center;
    font-family: "Montserrat", sans-serif;
}

.testi-title {
    font-size: 32px;
    font-weight: 700;
    color: #bc9393;
    margin-bottom: 40px;
}

/* Equal Height Cards */
.testi-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testi-text {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    flex-grow: 1;
}

.testi-name {
    margin-top: 15px;
    font-size: 16px;
    font-weight: 600;
    color: #bc9393;
}
.testi-rating {
    color: #f4c150; /* gold */
    font-size: 16px;
    margin-top: 12px;
}

/* Swiper Wrapper Height Fix */
.testimonial-swiper .swiper-wrapper {
    align-items: stretch;
}

/* Make slides equal height */
.testimonial-swiper .swiper-slide {
    height: auto;
    display: flex;
}

/* Responsive */
@media (max-width: 768px) {
    .testi-title {
        font-size: 26px;
    }
}






/* FOOTER */
.footer-section {
    position: relative;
    background: url("/img/background.webp") no-repeat center/cover;
    padding: 60px 0 0 0;
    color: #5A5A5A; /* updated text color */
    font-family: "Montserrat", sans-serif;
}

.footer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(3px);
}

.footer-container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    width: 85%;
    margin: auto;
    z-index: 2;
}
.footer-column a {
    color: #5A5A5A;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-column a:hover {
    color: #000;
}


.footer-column h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #5A5A5A; /* updated */
}

.footer-logo {
    width: 160px;
    margin: 15px 0;
    opacity: 0.9;
}

.footer-about-text {
    font-size: 15px;
    line-height: 1.7;
    max-width: 320px;
    color: #5A5A5A; /* updated */
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #5A5A5A; /* updated */
    transition: 0.3s ease;
    cursor: pointer;
}

.footer-column ul li:hover {
    color: #000; /* turns black on hover */
}

.footer-social-icons img {
    width: 32px;
    margin-right: 10px;
    cursor: pointer;
}

/* Remove blur */
.no-blur {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    filter: none !important;
    opacity: 1 !important;
}



/* Footer layout and spacing */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 30px;
    color: #fff;
    
    font-size: 14px;
    background: #bf99a3 !important; /* your color */

    filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;

    opacity: 1 !important;
    position: relative;
    z-index: 5; /* ensure it is above overlay */
}

.footer-bottom a {
    color: #fff;
    text-decoration: none;
    margin: 0 5px;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Remove any overlays inside footer area */
.footer-bottom::before,
.footer-bottom::after {
    display: none !important;
    content: none !important;
}
/* Responsive */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 15px 20px;
        gap: 6px;
    }
}



/* RESPONSIVE */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social-icons img {
        width: 28px;
    }
}