
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      body {
        font-family: "Poppins", sans-serif;
        overflow-x: hidden;
        background-color: #fff;
        color: #1e1e1e;
      }
      h1,
      h2,
      h3,
      h4,
      .logo-font {
        font-family: "Playfair Display", serif;
      }
      /* Color palette: Black, Gold, White, Soft Pink */
      :root {
        --black: #000000;
        --gold: #d4af37;
        --white: #ffffff;
        --soft-pink: #f9e6f0;
        --dark-grey: #111111;
        --gold-light: #f5e2b6;
      }
      .bg-soft-pink {
        background-color: var(--soft-pink);
      }
      .text-gold {
        color: var(--gold);
      }
      .btn-gold {
        background-color: var(--gold);
        color: #000;
        border-radius: 40px;
        padding: 8px 24px;
        font-weight: 600;
        transition: all 0.3s ease;
      }
      .btn-gold:hover {
        background-color: #c5a028;
        color: #000;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
      }
      .btn-outline-whatsapp:hover {
        background-color: #259c49;
        color: #000;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
      }
      .btn-outline-gold {
        border: 2px solid #86735e;
        background: transparent;
        color: #86735e;
        border-radius: 40px;
        padding: 8px 24px;
        font-weight: 600;
        transition: all 0.3s;
      }
      .btn-outline-whatsapp {
        border: 2px solid #259c49;
        background: transparent;
        color: #86735e;
        border-radius: 40px;
        padding: 8px 24px;
        font-weight: 600;
        transition: all 0.3s;
      }
      .btn-outline-gold:hover {
        background: var(--gold);
        color: #000;
      }
      /* Top Header */
      .top-header {
        background: #0a0a0a;
        color: #ddd;
        font-size: 13px;
        padding: 8px 0;
        z-index: 999999;
        border-bottom: 1px solid rgba(212, 175, 55, 0.3);
      }
      .top-header a {
        color: #ddd;
        text-decoration: none;
        transition: 0.3s;
      }
      .top-header a:hover {
        color: var(--gold);
      }
      .social-icons a {
        margin-left: 12px;
        font-size: 14px;
      }
      /* Navbar */
      .navbar {
        transition: all 0.4s ease;
        background-color: transparent;
        padding: 80px 0;
      }
      .navbar.scrolled {
        background-color: rgb(0 0 0);
        backdrop-filter: blur(8px);
        padding: 10px 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
      }
      .navbar-nav .nav-link {
        color: white;
        font-weight: 500;
        margin: 0 12px;
        transition: 0.3s;
        position: relative;
      }
      .navbar.scrolled .nav-link {
        color: #f0f0f0;
      }
      .navbar-nav .nav-link:hover,
      .navbar-nav .nav-link.active {
        color: var(--gold);
      }
      .btn-call-nav {
        background: var(--gold);
        color: black;
        border-radius: 40px;
        padding: 6px 18px;
        font-weight: 600;
        margin-left: 10px;
      }
      .btn-call-nav:hover {
        background: #ffd966;
        color: black;
      }
      /* Hero Slider */
      .hero-slide {
        height: 100vh;
        background-size: cover;
        background-position: center;
        position: relative;
      }
      .hero-slide::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.55);
      }
      .hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
        color: white;
        top: 50%;
        transform: translateY(-50%);
      }
      /* counters */
      .counter-box {
        background: white;
        padding: 25px;
        border-radius: 20px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s;
      }
      .counter-box:hover {
        transform: translateY(-8px);
      }
      /* service cards */
      .service-card {
        background: white;
        border-radius: 24px;
        overflow: hidden;
        transition: all 0.4s;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
      }
      .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
      }
      .service-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        transition: 0.5s;
      }
      .service-card:hover img {
        transform: scale(1.05);
      }
      /* Process */
      .process-step {
        text-align: center;
        position: relative;
      }
      .step-icon {
        width: 80px;
        height: 80px;
        background: var(--gold);
        color: black;
        font-size: 36px;
        line-height: 80px;
        border-radius: 50%;
        margin: 0 auto 20px;
        transition: 0.3s;
      }
      .process-step:hover .step-icon {
        transform: scale(1.1);
        background: #c5a028;
      }
      /* testimonials custom slider */
      .testimonial-wrap {
        background: linear-gradient(145deg, #fef9f2, #fff);
        border-radius: 30px;
        padding: 40px 20px;
      }
      .testimonial-slider {
        position: relative;
        max-width: 800px;
        margin: auto;
        min-height: 320px;
      }
      .testimonial-card {
        background: white;
        border-radius: 30px;
        padding: 30px;
        box-shadow: 0 20px 35px rgba(0, 0, 0, 0.05);
        transition: all 0.5s;
        text-align: center;
      }
      .testimonial-card img {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 15px;
        border: 3px solid var(--gold);
      }
      .testimonial-prev,
      .testimonial-next {
        background: var(--gold);
        border: none;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        font-size: 20px;
        transition: 0.3s;
      }
      /* Gallery Lightbox */
      .gallery-img {
        cursor: pointer;
        transition: 0.4s;
        overflow: hidden;
        border-radius: 18px;
      }
      .gallery-img img {
        width: 100%;
        height: 240px;
        object-fit: cover;
        transition: 0.5s;
        border-radius: 18px;
      }
      .gallery-img:hover img {
        transform: scale(1.08);
      }
      .lightbox {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.9);
        z-index: 9999;
        justify-content: center;
        align-items: center;
      }
      .lightbox.active {
        display: flex;
      }
      .lightbox-img {
        max-width: 85%;
        max-height: 85%;
        border-radius: 20px;
        border: 3px solid var(--gold);
      }
      .close-lightbox,
      .prev-lightbox,
      .next-lightbox {
        position: absolute;
        color: white;
        font-size: 35px;
        background: rgba(0, 0, 0, 0.6);
        cursor: pointer;
        padding: 8px 18px;
        border-radius: 50%;
      }
      .close-lightbox {
        top: 20px;
        right: 40px;
      }
      .prev-lightbox {
        left: 30px;
        top: 50%;
        transform: translateY(-50%);
      }
      .next-lightbox {
        right: 30px;
        top: 50%;
        transform: translateY(-50%);
      }
      /* Scroll to top */
      .scroll-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        background: var(--gold);
        width: 48px;
        height: 48px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: black;
        font-size: 22px;
        cursor: pointer;
        opacity: 0;
        transition: 0.3s;
        z-index: 99;
      }
      .scroll-top.show {
        opacity: 1;
      }
      .whatsapp-float {
        position: fixed;
        bottom: 30px;
        left: 30px;
        background: #25d366;
        width: 55px;
        height: 55px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 30px;
        z-index: 99;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        transition: 0.3s;
      }
      .whatsapp-float:hover {
        transform: scale(1.1);
        background: #128c7e;
        color: white;
      }
      footer {
        background: #0a0a0a;
        color: #ccc;
      }
      footer a {
        color: #ccc;
        text-decoration: none;
        transition: 0.3s;
      }
      footer a:hover {
        color: var(--gold);
      }
      @media (max-width: 992px) {
        .hero-content h1 {
          font-size: 2rem;
        }
        .navbar-collapse {
          background: rgba(0, 0, 0, 0.95);
          padding: 20px;
          border-radius: 20px;
          margin-top: 15px;
        }
      }
      .section-title {
        font-size: 2.8rem;
        margin-bottom: 1rem;
        font-weight: 700;
      }
      .accordion-button:focus {
        box-shadow: none;
        border-color: var(--gold);
      }
      .accordion-button:not(.collapsed) {
        background: var(--gold);
        color: black;
      }