   body {
       margin: 0;
       padding: 0;
       box-sizing: border-box;
       font-family: "Sentient", serif !important;
       background-color: #FAF6F0 !important;
   }

   /* Header Banner */
   /* HEADER SECTION */
   .header {
       position: relative;
       width: 100%;
       height: 100vh;
       overflow: hidden;
       display: flex;
       justify-content: center;
       align-items: center;
       text-align: center;
       color: #fff;
   }

   /* LOGO TOP LEFT */
   .logo {
       position: absolute;
       top: 20px;
       left: 20px;
       width: 140px;
       z-index: 20;
   }

   /* Background Video */
   .banner-video {
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       object-fit: cover;
       z-index: -2;
   }

   /* Dark Overlay */
   .header::after {
       content: "";
       position: absolute;
       width: 100%;
       height: 100%;
       top: 0;
       left: 0;
       background: rgba(0, 0, 0, 0.50);
       z-index: -1;
   }

   /* Content */
   .header-content {
       max-width: 700px;
       padding: 20px;
       position: relative;
       z-index: 5;
   }

   .header-content h1 {
       font-size: 3rem;
       font-weight: 700;
       line-height: 1.2;
       margin-bottom: 10px;
   }

   .header-content p {
       font-size: 20px;
       line-height: 1.2;
   }

   /* SOCIAL BUTTONS TOP RIGHT */
   .floating-social-buttons {
       position: absolute;
       top: 20px;
       right: 20px;
       display: flex;
       gap: 12px;
       z-index: 20;
   }

   .social-btn {
       width: 45px;
       height: 45px;
       background: rgba(255, 255, 255, 0.15);
       border-radius: 50%;
       display: flex;
       justify-content: center;
       align-items: center;
       backdrop-filter: blur(4px);
       transition: 0.3s ease;
       font-size: 20px;
       color: #fff;
   }

   .social-btn:hover {
       background: #c69849;
   }

   /* Responsive */
   @media (max-width: 768px) {

       .header {
           height: 75vh;
       }

       .logo {
           width: 110px;
           top: 15px;
           left: 15px;
       }

       .header-content h1 {
           font-size: 2rem;
       }

       .floating-social-buttons {
           top: 15px;
           right: 15px;
           gap: 8px;
       }

       .social-btn {
           width: 38px;
           height: 38px;
           font-size: 18px;
       }
   }

   .title {
       text-align: center;
       margin-bottom: 50px;
   }

   .title h2 {
       font-size: 36px;
       font-weight: 700;
       text-transform: uppercase;
       margin-bottom: 10px;
       color: #111;
       letter-spacing: 1px;
   }

   .title hr {
       width: 25%;
       height: 3px;
       background: #c69849;
       border: none;
       margin: 0 auto 10px auto;
       border-radius: 2px;
   }

   .title h6 {
       font-size: 18px;
       font-weight: 600;
       color: #000000;
       letter-spacing: 1px;
       display: flex;
       justify-content: center;
       align-items: center;
       gap: 5px;
   }

   .title h6 .dot {
       width: 8px;
       height: 8px;
       background: #c69849;
       /* Same accent color */
       border-radius: 50%;
       display: inline-block;
   }




   .about-us {
       position: relative;
       width: 100%;
       padding: 100px 0;
       background: url("images/about.jpg") no-repeat center center/cover;
       display: flex;
       align-items: center;
       color: #fff;
       margin: 10px 0 40px;
   }

   /* Overlay (optional but looks premium) */
   .about-us::after {
       content: "";
       position: absolute;
       width: 100%;
       height: 100%;
       top: 0;
       left: 0;
       background: rgba(0, 0, 0, 0.45);
       z-index: 0;
   }

   /* Content box */
   .about-content {
       position: relative;
       max-width: 600px;
       padding-left: 60px;
       z-index: 2;
   }

   /* Text styling */
   .about-content h6 {
       text-transform: uppercase;
       letter-spacing: 2px;
       font-size: 20px;
       margin-bottom: 10px;
   }

   .about-content h1 {
       font-size: 40px;
       margin: 15px 0px;
       text-transform: capitalize;
       color: #C69849;
   }

   .about-content p {
       font-size: 20px;
       margin-bottom: 25px;
       max-width: 600px;
       line-height: 1.6;
   }

   .about-box {
       padding: 10px;
       border-radius: 10px;
       text-align: center;
       backdrop-filter: blur(5px);
   }

   .about-box h2 {
       font-size: 30px;
       margin: 0;
       -webkit-text-stroke: 1px #C69849;
       /* stroke color */
       color: transparent;
       /* remove fill */
       letter-spacing: 5px;
   }


   .about-box h4 {
       font-size: 18px;
       margin-top: 5px;
       font-weight: 400;
   }

   /* Responsive */
   @media (max-width: 768px) {
       .about-us {
           padding: 70px 20px;
       }

       .about-content {
           padding-left: 0;
       }

       /* .row {
           flex-direction: column;
           gap: 15px;
       } */
   }

/* SERVICES ROW – DO NOT FORCE COLUMN */
.services-row {
    justify-content: center;
    gap: 20px;
}

/* SERVICE CARD */
.service-card {
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 0 !important;
    width: 100%;
    max-width: 360px !important;
    border-radius: 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* IMAGE CONTAINER */
.service-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

/* IMAGE */
.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* LIST UNDER IMAGE */
.service-list {
    list-style: none;
    padding: 15px 0;
    margin: 0 15px;
    flex-grow: 1;
}

/* LIST TITLE */
.service-list h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #000;
    text-align: center;
}

/* DIVIDER */
.service-list hr {
    border: none;
    width: 50%;
    height: 3px;
    background-color: #C69849;
    margin: 8px auto 15px;
}

/* LIST ITEMS */
.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    margin: 8px 0;
}

/* LIST ICON */
.service-list li img {
    width: 16px;
    flex-shrink: 0;
}

/* TABLET */
@media (max-width: 768px) {
    .service-card {
        max-width: 100%;
    }

    .service-list h2 {
        font-size: 20px;
    }
}

/* MOBILE */
@media (max-width: 576px) {
    .service-image {
        aspect-ratio: 3 / 2;
    }

    .service-list {
        margin: 0 10px;
    }

    .service-list li {
        font-size: 14px;
    }

    .title h2 {
        font-size: 28px;
    }

    .title h6 {
        font-size: 16px;
    }
}

   .brands {
       padding: 40px 0;
       text-align: center;
   }

   .client-slider {
       width: 100%;
       overflow: hidden;
       position: relative;
   }

   .client-track {
       display: flex;
       white-space: nowrap;
       animation: scrollLoop 10s linear infinite;
       background-color: #000000;
   }

   .client-track:hover {
       animation-play-state: paused;
   }

   .client-logo {
       display: inline-block;
       padding: 0 20px;
       background-color: #000000;
   }

   .client-logo img {
       width: 250px;
       height: auto;
       filter: grayscale(100%);
       transition: .3s;
   }

   .client-logo:hover img {
       filter: grayscale(0%);
       transform: scale(1.1);
   }

   /* Infinite movement */
   @keyframes scrollLoop {
       0% {
           transform: translateX(0);
       }

       100% {
           transform: translateX(-50%);
       }
   }

   /* Section Base */
   .works {
       padding: 40px 0;
       /* background: #000; */
       /* black background if needed */
       color: #000000;
       text-align: center;
   }

   /* Gallery Layout */
   .works-gallery img {
       width: 100%;
       height: auto;
       margin-bottom: 20px;
       transition: transform .4s ease, box-shadow .4s ease;
   }

   /* Hover Effect */
   /* .works-gallery img:hover {
       transform: scale(1.05);
       box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
   } */

   /* Responsive Grid Fix */
   .works-gallery .col-4 {
       padding: 10px;
   }

   /* Tablet : 2 Columns */
   @media (max-width: 992px) {
       .works-gallery .col-4 {
           width: 50%;
       }
   }

   /* Mobile : 1 Column */
   @media (max-width: 576px) {
       .works-gallery .col-4 {
           width: 100%;
       }

       .works h2 {
           font-size: 26px;
       }
   }


   /* CONTACT SECTION */
   .contact {
       padding: 100px 0;
       text-align: center;
       background-image: url(images/contact-bg.jpg);
       background-size: cover;
       /* ensures full coverage */
       background-position: center;
       /* keeps the focal point centered */
       background-repeat: no-repeat;
       /* no repeat */
       background-attachment: fixed;
       /* optional parallax effect on desktop */
   }

   /* TITLES */
   .contact h2 {
       font-size: 32px;
       text-transform: uppercase;
       margin-bottom: 10px;
       color: #fff;
   }

   .contact h6 {
       display: flex;
       align-items: center;
       justify-content: center;
       font-size: 14px;
       text-transform: uppercase;
       gap: 8px;
       color: #fff;
   }

   .contact .dot {
       width: 8px;
       height: 8px;
       background: #000;
       border-radius: 50%;
   }

   /* BOXES */
   .contact-box {
       display: flex;
       justify-content: space-between;
       align-items: stretch;
       margin-top: 40px;
       position: relative;
   }

   .contact-item {
       flex: 1;
       padding: 25px 35px;
   }

   .contact-item i {
       font-size: 22px;
       color: #fff;
       margin-bottom: 10px;
       margin-right: 10px;
   }

   .contact-item h3 {
       margin-bottom: 10px;
       text-transform: uppercase;
       color: #fff;
   }

   .contact-item p {
       color: #fff;
       font-size: 18px;
   }

   /* Divider (vertical on desktop) */
   .divider {
       width: 1px;
       background: #ffffff;
   }

   /* ======================= */
   /*     RESPONSIVE CSS      */
   /* ======================= */

   /* Tablets: reduce padding, adjust layout */
   @media (max-width: 992px) {
       .contact {
           padding: 60px 20px;
           background-attachment: scroll;
           /* prevents zoom issue on mobile */
       }

       .contact-item {
           padding: 20px;
       }
   }

   /* Mobile: Stack boxes, horizontal divider */
   @media (max-width: 768px) {
       .contact {
           padding: 60px 15px;
       }

       .contact h2 {
           font-size: 26px;
       }

       .contact-box {
           flex-direction: column;
           gap: 25px;
       }

       .divider {
           width: 100%;
           height: 1px;
           margin: 10px 0;
       }
   }

   /* Small Mobile */
   @media (max-width: 480px) {
       .contact {
           padding: 50px 10px;
           background-position: center top;
       }

       .contact h2 {
           font-size: 22px;
       }

       .contact-item {
           padding: 15px;
       }
   }


   /* Section Styling */
   .advantages {
       padding: 40px 0;
       text-align: center;
   }

   /* MAIN ROW */
   .advantages-row {
       display: flex;
       justify-content: center;
       align-items: stretch;
       gap: 10px;
       /* spacing between boxes */
       flex-wrap: wrap;
   }

   /* BOX (fixed size on desktop) */
   .advantages-box {
       width: 370px !important;
       height: 430px;
       background-color: #ffffff;
       padding: 20px;
       border-radius: 10px;
       transition: 0.4s ease;
       display: flex;
       flex-direction: column;
   }

   /* HOVER */
   .advantages-box:hover {
       transform: translateY(-10px);
   }

   /* IMAGE WRAPPER */
   .adv-img {
       width: 100%;
       height: 275px;
       overflow: hidden;
       border-radius: 10px;
       margin-bottom: 15px;
   }

   .adv-img img {
       width: 100%;
       height: 100%;
       object-fit: cover;
       transition: 0.5s ease;
   }

   .advantages-box:hover .adv-img img {
       transform: scale(1.1);
   }

   /* TEXT */
   .advantages-box h3 {
       font-size: 20px;
       font-weight: 600;
       margin-bottom: 10px;
       color: #000000;
   }

   .advantages-box p {
       font-size: 16px;
       color: #000000;
       line-height: 22px;
       /* margin-top: auto; */
   }

   /* -----------------------
      RESPONSIVE
-------------------------- */

   /* Tablet */
   @media (max-width: 992px) {
       .advantages-box {
           width: 48%;
           /* two per row */
           height: auto;
           /* let height adjust naturally */
       }

       .adv-img {
           height: 200px;
       }
   }

   /* Mobile */
   @media (max-width: 768px) {
       .advantages-box {
           width: 100%;
           /* one box per row */
           height: auto;
       }

       .adv-img {
           height: 180px;
       }
   }


   .client {
       padding: 60px 0;
       font-family: "Sentient", serif;
       background-color: #C69849;
   }

   .client-row {
       display: flex;
       align-items: center;
   }

   .review-box {
       padding: 20px;
       transition: 0.4s ease;
   }

   .review-box {
       transition: 0.35s ease;
       opacity: 1;
       transform: translateX(0);
   }

   .review-box.fade-out-left {
       opacity: 0;
       transform: translateX(-25px);
   }

   .review-box.fade-out-right {
       opacity: 0;
       transform: translateX(25px);
   }

   .review-box h3 {
       font-size: 25px;
       line-height: 32px;
       margin: 20px 0;
       text-align: center;
   }

   .round {
       font-size: 60px;
       color: #000000;
       font-weight: bold;
       width: 65px;
       height: 65px;
       text-align: center;
       border: 2px solid #000000;
       border-radius: 50%;
   }

   .name {
       display: flex;
       align-items: center;
       gap: 15px;
   }

   .name img {
       width: 60px;
       height: 60px;
       border-radius: 50%;
   }

   .client-info h6 {
       text-transform: uppercase;
       letter-spacing: 2px;
       font-size: 30px;
   }

   .client-info h2 {
       font-size: 40px;
       text-transform: uppercase;
       margin: 10px 0;
   }

   .client-info p {
       color: #000000;
       font-size: 20px;
   }

   .btns {
       margin-top: 20px;
       display: flex;
       gap: 10px;
   }

   .btns {
       display: flex;
       gap: 25px;
       margin-top: 20px;
   }

   .btns button {
       width: 45px;
       height: 45px;
       display: flex;
       align-items: center;
       justify-content: center;
       background: transparent;
       border: 2px solid #000000;
       border-radius: 50%;
       cursor: pointer;
       font-size: 18px;
       color: #000000;

       transition: 0.3s ease;
   }

   .btns button:hover {
       background: #000000;
       color: #fff;
   }

   @media (max-width: 768px) {
       .btns {
           justify-content: center;
           /* Center horizontally */
           align-items: center;
           /* Center vertically (optional) */
           width: 100%;
       }
   }



   /* RESPONSIVE */
   @media (max-width: 992px) {
       .client-row {
           flex-wrap: wrap;
           text-align: center;
       }

       .col-6 {
           width: 100%;
           margin-bottom: 30px;
       }

       .name {
           justify-content: center;
       }

       .btns {
           text-align: center;
       }
   }

   .book {
       padding: 80px 0;
       background: url('images/form img.jpg') center/cover no-repeat;
       position: relative;
       min-height: 600px;
       /* allow content-based height */
   }

   /* Tablet (width ≤ 991px) */
   @media (max-width: 991px) {
       .book {
           padding: 60px 0;
           min-height: 450px;
           background-position: center;
           background-size: cover;
       }
   }

   /* Mobile (width ≤ 767px) */
   @media (max-width: 767px) {
       .book {
           padding: 50px 20px;
           min-height: 350px;
           background-position: top;
           background-size: cover;
       }
   }

   /* Very small devices (≤ 480px) */
   @media (max-width: 480px) {
       .book {
           padding: 40px 15px;
           min-height: 300px;
           background-position: left;
       }
   }


   .book::before {
       content: "";
       position: absolute;
       inset: 0;
       background: rgba(0, 0, 0, 0.4);
   }

   .book .container {
       position: relative;
       z-index: 2;
   }

   .book-wrapper {
       max-width: 750px;
       margin: auto;
       backdrop-filter: blur(8px);
       background: rgba(255, 255, 255, 0.15);
       border-radius: 20px;
       padding: 20px;
       box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
   }

   /* TAB BUTTONS */
   .tab-buttons {
       display: flex;
       justify-content: center;
       margin-bottom: 20px;
       gap: 15px;
   }

   .tab-btn {
       padding: 12px 25px;
       border: none;
       background: #ffffff55;
       color: #fff;
       border-radius: 30px;
       cursor: pointer;
       backdrop-filter: blur(5px);
       transition: 0.3s;
       font-weight: 600;
   }

   .tab-btn.active {
       background: #fff;
       color: #000;
       transform: translateY(-3px);
   }

   /* FORM */
   .book-form {
       display: none !important;
   }

   .book-form.active {
       display: flex !important;
   }


   .book-form input,
   .book-form textarea {
       background: rgba(255, 255, 255, 0.8);
       border-radius: 10px;
       padding: 10px;
   }

   .submit {
       /* background: #000; */
       color: #000000;
       padding: 12px 25px;
       border-radius: 30px;
       border: none;
       margin: 10px auto 0;
       display: block;
       cursor: pointer;
       transition: 0.3s;
   }

   .submit:hover {
       background: #ffbb00;
       color: #000;
   }

   /* RESPONSIVE */
   @media (max-width: 768px) {
       .book-wrapper {
           padding: 20px;
           text-align: center;
           /* Center text */
       }

       .tab-buttons {
           flex-direction: column;
           align-items: center;
           /* Center buttons horizontally */
           justify-content: center;
           /* Extra centering */
           width: 100%;
       }

       .tab-btn {
           width: 100%;
           /* Optional: full-width buttons */
           max-width: 300px;
           /* Optional: make it look clean */
           text-align: center;
       }
   }


   /* ---------- General Footer Styles ---------- */
   footer {
       background-color: #111;
       /* Dark background */
       color: #fff;
       padding: 40px 0;
       /* font-family: 'Arial', sans-serif; */
   }

   footer a {
       color: #fff;
       text-decoration: none;
       transition: color 0.3s;
   }


   footer a:hover {
       color: #f39c12;
       /* Accent color on hover */
   }

   footer i {
       font-size: 24px;
   }

   footer h5 {
       margin-bottom: 20px;
       font-size: 1.1rem;
       text-transform: uppercase;
       font-weight: 600;
   }

   footer p,
   footer li {
       font-size: 16px;
       line-height: 1.6;
   }

   /* ---------- Logo & Social ---------- */
   .footer-logo {
       max-width: 200px;
       width: 200px;
       margin: 0 auto 15px;
       /* centers horizontally */
       display: block;
       /* required for auto margin centering */
   }


   .social {
       display: flex;
       gap: 18px;
       justify-content: left;
       /* centers horizontally */
       align-items: center;
       /* centers vertically (optional) */
   }


   .social-icon {
       font-size: 25px;
   }

   .social-icon:hover {
       color: #f39c12;
       /* WhatsApp green (you can customize per icon) */
   }

   /* ---------- Quick Links ---------- */
   footer ul {
       list-style: none;
       padding: 0;
   }

   footer ul li {
       margin-bottom: 8px;
   }

   /* ---------- Map ---------- */
   .map-responsive {
       overflow: hidden;
       padding-bottom: 56.25%;
       /* 16:9 aspect ratio */
       position: relative;
       height: 0;
   }

   .map-responsive iframe {
       left: 0;
       top: 0;
       height: 100%;
       width: 100%;
       position: absolute;
       border: 0;
   }

   /* ---------- Footer Bottom ---------- */
   .footer-bottom {
       border-top: 1px solid #333;
       padding-top: 20px;
       text-align: center;
       font-size: 0.9rem;
   }

   /* ---------- Contact Info Icons ---------- */
   .address p {
       display: flex;
       align-items: flex-start;
       gap: 10px;
       /* Space between icon and text */
       font-size: 16px;
       margin-bottom: 12px;
       color: #fff;
   }

   .address p i {
       font-size: 20px;
       /* Slightly bigger than text */
       color: #f39c12;
       /* Accent color for icons */
       min-width: 25px;
       /* Aligns all icons perfectly */
       text-align: center;
   }

   /* Links inside contact info */
   .address p a {
       color: #fff;
       text-decoration: none;
       transition: color 0.3s;
       font-size: 16px;
   }

   .address p a:hover {
       color: #f39c12;
       /* Hover accent color */
   }

   .footer-bottom p {
       color: #fff;
       font-size: 14px;
   }

   .footer-bottom a {
       color: #edba37;
       font-weight: 600;
       text-decoration: none;
       transition: 0.3s ease;
   }

   .footer-bottom a:hover {
       text-decoration: underline;
       color: #edba39;
   }


   /* Responsive adjustments */
   @media (max-width: 576px) {
       .address p {
           font-size: 0.9rem;
           gap: 8px;
       }

       .address p i {
           font-size: 1.1rem;
           min-width: 22px;
       }
   }


   /* ---------- Responsive Layout ---------- */
   @media (max-width: 992px) {
       .footer-top {
           flex-wrap: wrap;
       }

       .footer-top .col-md-3,
       .footer-top .col-md-2,
       .footer-top .col-md-4 {
           margin-bottom: 30px;
       }
   }

   @media (max-width: 768px) {

       footer {
           text-align: center;
       }

       /* Center headings */
       footer h5 {
           text-align: center;
       }

       /* Center text & list items */
       footer p,
       footer li {
           text-align: center;
       }

       /* Center social icons */
       .social {
           justify-content: center !important;
       }

       /* Center contact info layout */
       .address p {
           justify-content: center;
           text-align: center;
       }

       /* Make icons align neatly in center */
       .address p i {
           text-align: center;
       }
   }


   /* 🔹 IMPORTANT: Stop horizontal swipe issue */
   html,
   body {
       width: 100%;
       overflow-x: hidden;
   }

   /* 🔹 Floating Buttons Container */
   .floating-buttons {
       position: fixed;
       right: max(12px, env(safe-area-inset-right));
       bottom: max(12px, env(safe-area-inset-bottom));
       display: flex;
       flex-direction: column;
       gap: 12px;
       z-index: 9999;
   }

   /* 🔹 Common Button Style */
   .float-btn {
       width: 56px;
       height: 56px;
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
       font-size: 22px;
       color: #fff;
       text-decoration: none;
       box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
       transition: transform 0.25s ease, box-shadow 0.25s ease;
       touch-action: manipulation;
   }

   /* 🔹 Hover Effect (Desktop Only) */
   @media (hover: hover) {
       .float-btn:hover {
           transform: scale(1.1);
           box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
       }
   }

   /* 🔹 Button Colors */
   .phone-btn {
       background: #007AFF;
   }

   .whatsapp-btn {
       background: #25d366;
   }

   /* 🔹 Tablet & Mobile */
   @media (max-width: 768px) {
       .floating-buttons {
           gap: 10px;
       }

       .float-btn {
           width: 48px;
           height: 48px;
           font-size: 20px;
       }
   }

   /* 🔹 Small Mobile */
   @media (max-width: 480px) {
       .float-btn {
           width: 44px;
           height: 44px;
           font-size: 18px;
       }
   }


   .floating-social-buttons {
       position: absolute;
       top: 20px;
       right: 20px;
       display: flex;
       /* gap: 10px; */
       z-index: 10;
   }

   .floating-social-buttons .social-btn {
       width: 30px;
       height: 30px;
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
       color: #CBAE6E;
       font-size: 18px;
       text-decoration: none;
       transition: transform 0.3s, background-color 0.3s;
       margin-left: -5px;
   }

   .floating-social-buttons .social-btn:hover {
       transform: scale(1.1);
   }

     .offer-video {
         width: 100%;
         height: auto;
        
    }