:root {
        --navy: #0a1628;
        --navy2: #0f2044;
        --navy3: #163060;
        --gold: #c8952a;
        --gold2: #e6b040;
        --gold3: #f5d070;
        --cream: #f8f4ec;
        --white: #ffffff;
        --txt: #16263d;
        --txt2: #4e6680;
        --r: 14px;
        --shadow: 0 8px 40px rgba(10, 22, 40, 0.12);
      }
      *,
      *::before,
      *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }
      html {
        scroll-behavior: smooth;
      }
      body {
        font-family: "Nunito", sans-serif;
        background: var(--cream);
        color: var(--txt);
        overflow-x: hidden;
      }

      /* CURSOR
      .cur {
        width: 10px;
        height: 10px;
        background: var(--gold);
        border-radius: 50%;
        position: fixed;
        pointer-events: none;
        z-index: 9999;
        transform: translate(-50%, -50%);
        transition:
          transform 0.12s,
          width 0.2s,
          height 0.2s;
        mix-blend-mode: multiply;
      }
      .cur-r {
        width: 38px;
        height: 38px;
        border: 1.5px solid var(--gold);
        border-radius: 50%;
        position: fixed;
        pointer-events: none;
        z-index: 9998;
        transform: translate(-50%, -50%);
        transition:
          left 0.1s,
          top 0.1s;
        opacity: 0.6;
      }
      body:hover .cur {
        opacity: 1;
      } */

      /* 👇 ADD THIS HERE */
      a[href*="emailjs"],
      div[style*="EmailJS"],
      .emailjs {
        display: none !important;
        opacity: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
      }

      /* TOPBAR */
      .topbar {
        background: var(--white);
        padding: 14px 52px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 8px;
        border-bottom: 1px solid rgba(10, 22, 40, 0.08);
      }
      .topbar-l,
      .topbar-r {
        display: flex;
        align-items: center;
        gap: 18px;
        font-size: 0.73rem;
        color: #0d2a52;
        letter-spacing: 0.03em;
        font-weight: 600;
      }
      .topbar a {
        color: #0d2a52;
        text-decoration: none;
        font-weight: 700;
        transition: color 0.2s;
      }
      .topbar a:hover {
        color: var(--gold);
      }
      .t-sep {
        width: 1px;
        height: 12px;
        background: rgba(10, 22, 40, 0.15);
      }
      .t-live {
        display: flex;
        align-items: center;
        gap: 5px;
      }
      .t-live::before {
        content: "";
        width: 5px;
        height: 5px;
        background: #4ade80;
        border-radius: 50%;
        box-shadow: 0 0 6px #4ade80;
        animation: livep 2s ease infinite;
      }
      @keyframes livep {
        0%,
        100% {
          opacity: 1;
        }
        50% {
          opacity: 0.4;
        }
      }

      /* NAV */
      nav {
        position: sticky;
        top: 0;
        z-index: 600;
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border-bottom: 1px solid rgba(200, 149, 42, 0.14);
        padding: 0 52px;
        height: 90px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: box-shadow 0.3s;
      }
      nav.scrolled {
        box-shadow: 0 2px 30px rgba(10, 22, 40, 0.1);
      }
      .logo {
        display: flex;
        align-items: center;
        gap: 0;
        text-decoration: none;
      }
      .logo-img-wrap {
        width: 90px;
        height: 90px;
        border-radius: 16px;
        overflow: visible;
        background: transparent;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        border: none;
        flex-shrink: 0;
        position: relative;
      }
      .logo-img-wrap::after {
        display: none;
      }
      .logo-img-wrap img {
        width: 90px;
        height: 90px;
        object-fit: contain;
        filter: none;
        position: relative;
        z-index: 1;
      }
      .logo-divider {
        width: 1.5px;
        height: 44px;
        background: linear-gradient(
          to bottom,
          transparent,
          rgba(200, 149, 42, 0.4),
          transparent
        );
        margin: 0 16px;
      }
      .logo-text h1 {
        font-family: "Playfair Display", serif;
        font-size: 1.35rem;
        color: var(--navy);
        line-height: 1.05;
        font-weight: 700;
      }
      .logo-text span {
        font-size: 0.6rem;
        color: var(--gold);
        letter-spacing: 0.2em;
        text-transform: uppercase;
        font-weight: 700;
        display: block;
        margin-top: 2px;
      }
      .nav-links {
        display: flex;
        align-items: center;
        gap: 32px;
        list-style: none;
      }
      .nav-links a {
        text-decoration: none;
        color: var(--txt2);
        font-size: 0.86rem;
        font-weight: 600;
        position: relative;
        padding-bottom: 3px;
        transition: color 0.2s;
      }
      .nav-links a::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--gold), var(--gold2));
        border-radius: 2px;
        transition: width 0.3s;
      }
      .nav-links a:hover {
        color: var(--gold);
      }
      .nav-links a:hover::after {
        width: 100%;
      }
      .nav-cta {
        background: linear-gradient(
          135deg,
          var(--navy),
          var(--navy2)
        ) !important;
        color: var(--white) !important;
        padding: 11px 26px !important;
        border-radius: 10px;
        font-weight: 700 !important;
        font-size: 0.82rem !important;
        letter-spacing: 0.04em;
        border: 1px solid rgba(200, 149, 42, 0.3) !important;
        box-shadow: 0 4px 18px rgba(10, 22, 40, 0.25);
        transition:
          transform 0.2s,
          box-shadow 0.2s,
          background 0.2s !important;
      }
      .nav-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(10, 22, 40, 0.35) !important;
        background: linear-gradient(
          135deg,
          var(--gold),
          var(--gold2)
        ) !important;
        color: var(--navy) !important;
      }
      .nav-cta::after {
        display: none !important;
      }
      .hamburger {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        background: none;
        border: none;
        padding: 4px;
      }
      .hamburger span {
        width: 24px;
        height: 2px;
        background: var(--navy);
        border-radius: 2px;
        display: block;
        transition: 0.3s;
      }

      /* HERO */
      .hero {
        min-height: 100vh;
        background: linear-gradient(
          145deg,
          var(--navy) 0%,
          var(--navy2) 50%,
          #0d2a52 100%
        );
        position: relative;
        display: flex;
        align-items: center;
        overflow: hidden;
      }
      #pCv {
        position: absolute;
        inset: 0;
        pointer-events: none;
      }
      .h-bg1 {
        position: absolute;
        top: -10%;
        right: -5%;
        width: 700px;
        height: 700px;
        background: radial-gradient(
          circle,
          rgba(200, 149, 42, 0.13),
          transparent 65%
        );
        pointer-events: none;
        animation: blob1 12s ease-in-out infinite;
      }
      .h-bg2 {
        position: absolute;
        bottom: -15%;
        left: -5%;
        width: 550px;
        height: 550px;
        background: radial-gradient(
          circle,
          rgba(200, 149, 42, 0.08),
          transparent 65%
        );
        pointer-events: none;
        animation: blob1 15s 4s ease-in-out infinite;
      }
      .h-bg3 {
        position: absolute;
        top: 50%;
        left: 40%;
        width: 400px;
        height: 400px;
        background: radial-gradient(
          circle,
          rgba(255, 255, 255, 0.02),
          transparent 65%
        );
        pointer-events: none;
      }
      @keyframes blob1 {
        0%,
        100% {
          transform: translate(0, 0) scale(1);
        }
        50% {
          transform: translate(20px, -25px) scale(1.05);
        }
      }
      /* grid lines */
      .h-lines {
        position: absolute;
        inset: 0;
        pointer-events: none;
        overflow: hidden;
      }
      .h-lines::before {
        content: "";
        position: absolute;
        top: 0;
        left: 55%;
        width: 1px;
        height: 100%;
        background: linear-gradient(
          to bottom,
          transparent,
          rgba(200, 149, 42, 0.12),
          transparent
        );
      }
      .h-lines::after {
        content: "";
        position: absolute;
        top: 0;
        right: 25%;
        width: 1px;
        height: 100%;
        background: linear-gradient(
          to bottom,
          transparent,
          rgba(200, 149, 42, 0.06),
          transparent
        );
      }

      .hero-inner {
        position: relative;
        z-index: 2;
        max-width: 1160px;
        margin: 0 auto;
        padding: 0 52px;
        width: 100%;
        display: grid;
        grid-template-columns: 1.05fr 0.95fr;
        gap: 72px;
        align-items: center;
        min-height: 100vh;
      }
      .hl {
        animation: fadeUp 0.9s ease both;
      }
      .hr {
        animation: fadeUp 0.9s 0.2s ease both;
      }
      @keyframes fadeUp {
        from {
          opacity: 0;
          transform: translateY(36px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        background: rgba(200, 149, 42, 0.13);
        border: 1px solid rgba(200, 149, 42, 0.32);
        color: var(--gold2);
        font-size: 0.68rem;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        padding: 7px 18px 7px 14px;
        border-radius: 40px;
        margin-bottom: 28px;
        font-weight: 700;
      }
      .badge-dot {
        width: 7px;
        height: 7px;
        background: var(--gold);
        border-radius: 50%;
        box-shadow: 0 0 8px var(--gold);
        animation: bp 2s ease infinite;
      }
      @keyframes bp {
        0%,
        100% {
          transform: scale(1);
          opacity: 1;
        }
        50% {
          transform: scale(0.6);
          opacity: 0.4;
        }
      }

      .hl h2 {
        font-family: "Playfair Display", serif;
        font-size: clamp(2.7rem, 4.5vw, 4rem);
        color: var(--white);
        line-height: 1.1;
        margin-bottom: 22px;
        font-weight: 900;
      }
      .hl h2 em {
        font-style: italic;
        background: linear-gradient(135deg, var(--gold), var(--gold3));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }
      .hl h2 .sub {
        display: block;
        font-size: clamp(1.6rem, 2.8vw, 2.4rem);
        color: rgba(255, 255, 255, 0.5);
        font-weight: 400;
        font-style: normal;
        -webkit-text-fill-color: rgba(255, 255, 255, 0.5);
      }
      .hl p {
        font-size: 0.98rem;
        color: rgba(255, 255, 255, 0.62);
        line-height: 1.85;
        max-width: 490px;
        margin-bottom: 38px;
      }
      .hero-btns {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
        margin-bottom: 52px;
      }
      .btn-primary {
        background: linear-gradient(135deg, var(--gold), var(--gold2));
        color: var(--navy);
        padding: 15px 32px;
        border-radius: 11px;
        font-weight: 800;
        font-size: 0.9rem;
        text-decoration: none;
        letter-spacing: 0.03em;
        box-shadow: 0 6px 28px rgba(200, 149, 42, 0.4);
        transition:
          transform 0.2s,
          box-shadow 0.2s;
        display: inline-flex;
        align-items: center;
        gap: 8px;
      }
      .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 36px rgba(200, 149, 42, 0.55);
      }
      .btn-wa {
        background: linear-gradient(135deg, #25d366, #128c7e);
        color: var(--white);
        padding: 15px 30px;
        border-radius: 11px;
        font-weight: 700;
        font-size: 0.9rem;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        box-shadow: 0 6px 24px rgba(37, 211, 102, 0.3);
        transition:
          transform 0.2s,
          box-shadow 0.2s;
      }
      .btn-wa:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
      }
      .hero-stats {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
        padding-top: 36px;
        border-top: 1px solid rgba(255, 255, 255, 0.09);
      }
      .hs {
        text-align: center;
        padding: 0 10px;
        border-right: 1px solid rgba(255, 255, 255, 0.09);
      }
      .hs:first-child {
        text-align: left;
        padding-left: 0;
      }
      .hs:last-child {
        border-right: none;
      }
      .hs-n {
        font-family: "Playfair Display", serif;
        font-size: 2.4rem;
        font-weight: 900;
        background: linear-gradient(135deg, var(--gold), var(--gold3));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1;
      }
      .hs-l {
        font-size: 0.66rem;
        color: rgba(255, 255, 255, 0.38);
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-top: 5px;
      }

      /* HERO RIGHT */
      .hero-right-card {
        background: linear-gradient(
          145deg,
          rgba(255, 255, 255, 0.08),
          rgba(255, 255, 255, 0.03)
        );
        border: 1px solid rgba(200, 149, 42, 0.22);
        border-radius: 22px;
        overflow: hidden;
        backdrop-filter: blur(12px);
      }
      .hrc-head {
        background: linear-gradient(
          135deg,
          rgba(200, 149, 42, 0.18),
          rgba(200, 149, 42, 0.06)
        );
        border-bottom: 1px solid rgba(200, 149, 42, 0.18);
        padding: 22px 28px;
        display: flex;
        align-items: center;
        gap: 14px;
      }
      .hrc-logo {
        width: 75px;
        height: 75px;
        border-radius: 10px;
        background: var(--white);
        padding: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
      }
      .hrc-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
      }
      .hrc-head-text h3 {
        font-family: "Playfair Display", serif;
        font-size: 1rem;
        color: var(--white);
        font-weight: 700;
      }
      .hrc-head-text p {
        font-size: 0.68rem;
        color: var(--gold2);
        letter-spacing: 0.1em;
        text-transform: uppercase;
        font-weight: 600;
        margin-top: 2px;
      }
      .hrc-body {
        padding: 24px 28px;
      }
      .hrc-label {
        font-size: 0.62rem;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--gold);
        font-weight: 700;
        margin-bottom: 14px;
      }
      .pills {
        display: flex;
        flex-wrap: wrap;
        gap: 9px;
        margin-bottom: 24px;
      }
      .pill {
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.72);
        font-size: 0.76rem;
        padding: 6px 14px;
        border-radius: 30px;
        transition: 0.2s;
        cursor: default;
        font-weight: 500;
      }
      .pill:hover {
        background: rgba(200, 149, 42, 0.15);
        border-color: rgba(200, 149, 42, 0.38);
        color: var(--gold2);
      }
      .hrc-cta {
        display: flex;
        align-items: center;
        gap: 14px;
        background: rgba(200, 149, 42, 0.11);
        border: 1px solid rgba(200, 149, 42, 0.24);
        border-radius: 12px;
        padding: 16px 18px;
      }
      .hrc-cta-ic {
        width: 42px;
        height: 42px;
        background: linear-gradient(135deg, var(--gold), var(--gold2));
        border-radius: 9px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        flex-shrink: 0;
      }
      .hrc-cta-t p {
        font-size: 0.66rem;
        color: rgba(255, 255, 255, 0.42);
        letter-spacing: 0.09em;
        text-transform: uppercase;
        font-weight: 600;
      }
      .hrc-cta-phones {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, auto));
        gap: 8px 12px;
        margin: 8px 0 0;
      }
      .hrc-cta-phones a {
        display: block;
        color: var(--white);
        text-decoration: none;
        font-size: 0.98rem;
        font-weight: 700;
      }
      .hrc-cta-t a.wa-l {
        color: var(--gold2);
        text-decoration: none;
        font-size: 0.82rem;
        font-weight: 600;
        display: block;
        margin-top: 2px;
      }
      .scroll-ind {
        position: absolute;
        bottom: 32px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        color: rgba(255, 255, 255, 0.25);
        font-size: 0.6rem;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        z-index: 3;
        animation: fadeUp 1s 1.3s ease both;
        opacity: 0;
      }
      .sc-line {
        width: 1px;
        height: 44px;
        background: linear-gradient(to bottom, var(--gold), transparent);
        animation: scl 2.2s ease-in-out infinite;
      }
      @keyframes scl {
        0% {
          transform: scaleY(0);
          transform-origin: top;
        }
        50% {
          transform: scaleY(1);
          transform-origin: top;
        }
        51% {
          transform: scaleY(1);
          transform-origin: bottom;
        }
        100% {
          transform: scaleY(0);
          transform-origin: bottom;
        }
      }

      /* MARQUEE */
      .mq-strip {
        background: linear-gradient(
          90deg,
          var(--navy) 0%,
          var(--navy3) 40%,
          var(--navy) 100%
        );
        border-top: 1px solid rgba(200, 149, 42, 0.2);
        border-bottom: 1px solid rgba(200, 149, 42, 0.2);
        padding: 14px 0;
        overflow: hidden;
      }
      .mq-track {
        display: flex;
        animation: mqs 35s linear infinite;
        white-space: nowrap;
      }
      .mq-item {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        padding: 0 28px;
        color: rgba(255, 255, 255, 0.55);
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
      }
      .mq-item span.hi {
        color: var(--gold2);
      }
      .mq-dot {
        width: 4px;
        height: 4px;
        background: var(--gold);
        border-radius: 50%;
        opacity: 0.6;
      }
      @keyframes mqs {
        from {
          transform: translateX(0);
        }
        to {
          transform: translateX(-50%);
        }
      }

      /* SECTION */
      .sec {
        padding: 96px 52px;
      }
      .si {
        max-width: 1140px;
        margin: 0 auto;
      }
      .stag {
        font-size: 0.64rem;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: var(--gold);
        font-weight: 800;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 10px;
      }
      .stag::before {
        content: "";
        width: 24px;
        height: 2px;
        background: linear-gradient(90deg, var(--gold), var(--gold2));
        border-radius: 2px;
        flex-shrink: 0;
      }
      .stitle {
        font-family: "Playfair Display", serif;
        font-size: clamp(2rem, 3.5vw, 2.8rem);
        color: var(--navy);
        line-height: 1.15;
        margin-bottom: 14px;
        font-weight: 700;
      }
      .ssub {
        color: var(--txt2);
        font-size: 0.96rem;
        line-height: 1.82;
        max-width: 540px;
      }
      .hdr {
        margin-bottom: 60px;
      }
      .hdr.c {
        text-align: center;
      }
      .hdr.c .stag {
        justify-content: center;
      }
      .hdr.c .ssub {
        margin: 0 auto;
      }

      /* SERVICES */
      .srv-sec {
        background: var(--white);
      }
      .srv-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 22px;
      }
      .crs-sec {
        background: var(--cream);
      }
      .crs-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 22px;
        max-width: 1200px;
        margin: 0 auto;
      }
      @media (max-width: 768px) {
        .crs-grid {
          grid-template-columns: 1fr;
        }
      }
      .srv-card {
        background: var(--cream);
        border-radius: var(--r);
        padding: 36px 30px;
        border: 1.5px solid transparent;
        background-clip: padding-box;
        position: relative;
        overflow: hidden;
        cursor: default;
        transition:
          transform 0.3s,
          box-shadow 0.3s;
      }
      .srv-card::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: var(--r);
        background: linear-gradient(145deg, rgba(200, 149, 42, 0), transparent);
        transition: opacity 0.3s;
        opacity: 0;
      }
      .srv-card:hover {
        transform: translateY(-7px);
        box-shadow: 0 20px 50px rgba(10, 22, 40, 0.1);
      }
      .srv-card:hover::before {
        opacity: 1;
      }
      .srv-card:hover {
        border-color: rgba(200, 149, 42, 0.28);
      }
      .srv-top {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 22px;
      }
      .srv-ic {
        width: 52px;
        height: 52px;
        background: linear-gradient(135deg, var(--navy), var(--navy3));
        border-radius: 13px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        flex-shrink: 0;
        box-shadow: 0 4px 16px rgba(10, 22, 40, 0.2);
      }
      .srv-n {
        font-family: "Playfair Display", serif;
        font-size: 2.6rem;
        color: rgba(200, 149, 42, 0.12);
        font-weight: 900;
        line-height: 1;
      }
      .srv-card h3 {
        font-family: "Playfair Display", serif;
        font-size: 1.18rem;
        color: var(--navy);
        margin-bottom: 10px;
        position: relative;
        z-index: 1;
      }
      .srv-card p {
        font-size: 0.84rem;
        color: var(--txt2);
        line-height: 1.76;
        position: relative;
        z-index: 1;
      }
      .srv-arrow {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        margin-top: 16px;
        font-size: 0.68rem;
        color: var(--gold);
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        transition: gap 0.2s;
        position: relative;
        z-index: 2;
      }
      .srv-card:hover .srv-arrow {
        gap: 9px;
      }
      .srv-arrow::after {
        content: "→";
      }

      /* NUMBERS */
      .num-sec {
        background: linear-gradient(
          145deg,
          var(--navy) 0%,
          var(--navy2) 60%,
          #0d2a52 100%
        );
        position: relative;
        overflow: hidden;
      }
      .num-sec::before {
        content: "";
        position: absolute;
        top: -100px;
        right: -100px;
        width: 600px;
        height: 600px;
        background: radial-gradient(
          circle,
          rgba(200, 149, 42, 0.09),
          transparent 65%
        );
      }
      .num-sec::after {
        content: "";
        position: absolute;
        bottom: -80px;
        left: -80px;
        width: 400px;
        height: 400px;
        background: radial-gradient(
          circle,
          rgba(200, 149, 42, 0.06),
          transparent 65%
        );
      }
      .num-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        border-radius: 18px;
        overflow: hidden;
        gap: 2px;
        background: rgba(255, 255, 255, 0.05);
        position: relative;
        z-index: 1;
      }
      .ni {
        background: rgba(10, 22, 40, 0.5);
        padding: 48px 36px;
        text-align: center;
        position: relative;
        overflow: hidden;
        transition: background 0.3s;
        cursor: default;
      }
      .ni::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2.5px;
        background: linear-gradient(
          90deg,
          transparent,
          var(--gold),
          transparent
        );
        transform: scaleX(0);
        transition: transform 0.5s;
      }
      .ni:hover {
        background: rgba(200, 149, 42, 0.09);
      }
      .ni:hover::after {
        transform: scaleX(1);
      }
    .ni-n {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.4rem, 4vw, 2.5rem); /* aur chota */
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--gold3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
  margin-bottom: 8px;
  word-break: break-word;
}
      .ni-l {
        font-size: 0.7rem;
        color: rgba(255, 255, 255, 0.42);
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-weight: 600;
      }

      /* WHY US */
      .why-sec {
        background: var(--cream);
      }
      .why-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
      }
      .why-feat {
        display: flex;
        gap: 17px;
        padding: 22px 0;
        border-bottom: 1px solid rgba(200, 149, 42, 0.1);
      }
      .why-feat:last-child {
        border-bottom: none;
      }
      .wf-ic {
        width: 45px;
        height: 45px;
        background: linear-gradient(135deg, var(--gold), var(--gold2));
        border-radius: 11px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.05rem;
        flex-shrink: 0;
        box-shadow: 0 4px 14px rgba(200, 149, 42, 0.28);
      }
      .wf-t h4 {
        font-size: 0.95rem;
        color: var(--navy);
        font-weight: 700;
        margin-bottom: 4px;
      }
      .wf-t p {
        font-size: 0.83rem;
        color: var(--txt2);
        line-height: 1.68;
      }
      .why-cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
      }
      .wc {
        background: var(--white);
        border-radius: var(--r);
        padding: 28px 24px;
        border: 1.5px solid rgba(200, 149, 42, 0.1);
        transition:
          transform 0.3s,
          box-shadow 0.3s,
          border-color 0.3s;
      }
      .wc:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow);
        border-color: rgba(200, 149, 42, 0.3);
      }
      .wc-n {
        font-family: "Playfair Display", serif;
        font-size: 2.8rem;
        color: rgba(200, 149, 42, 0.18);
        font-weight: 900;
        line-height: 1;
        margin-bottom: 10px;
      }
      .wc-t {
        font-size: 0.92rem;
        color: var(--navy);
        font-weight: 700;
        margin-bottom: 6px;
      }
      .wc-p {
        font-size: 0.8rem;
        color: var(--txt2);
        line-height: 1.65;
      }

      /* PROCESS */
      .proc-sec {
        background: var(--white);
      }
      .proc-wrap {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 28px;
        position: relative;
      }
      .proc-wrap::before {
        content: "";
        position: absolute;
        top: 38px;
        left: 12%;
        right: 12%;
        height: 1px;
        background: linear-gradient(
          90deg,
          transparent,
          var(--gold),
          var(--gold),
          transparent
        );
        z-index: 0;
      }
      .step {
        text-align: center;
        position: relative;
        z-index: 1;
      }
      .step-ring {
        width: 76px;
        height: 76px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--navy), var(--navy2));
        border: 2.5px solid var(--gold);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 18px;
        font-size: 1.4rem;
        position: relative;
        box-shadow: 0 0 0 7px rgba(200, 149, 42, 0.09);
        transition:
          transform 0.3s,
          box-shadow 0.3s;
      }
      .step:hover .step-ring {
        transform: scale(1.08);
        box-shadow: 0 0 0 12px rgba(200, 149, 42, 0.14);
      }
      .step-n {
        position: absolute;
        top: -5px;
        right: -5px;
        width: 22px;
        height: 22px;
        background: linear-gradient(135deg, var(--gold), var(--gold2));
        border-radius: 50%;
        font-size: 0.6rem;
        font-weight: 800;
        color: var(--navy);
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .step h4 {
        font-family: "Playfair Display", serif;
        font-size: 1.1rem;
        color: var(--navy);
        margin-bottom: 7px;
        font-weight: 700;
      }
      .step p {
        font-size: 0.82rem;
        color: var(--txt2);
        line-height: 1.68;
      }

      /* ABOUT */
      .about-sec {
        background: linear-gradient(
          155deg,
          var(--navy) 0%,
          var(--navy2) 55%,
          #0d2a52 100%
        );
        position: relative;
        overflow: hidden;
      }
      .about-sec::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 55%;
        height: 100%;
        background: radial-gradient(
          ellipse at right top,
          rgba(200, 149, 42, 0.09),
          transparent 65%
        );
      }
      .ab-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
      }
      /* profile card */
      .ab-profile {
        background: linear-gradient(
          145deg,
          rgba(255, 255, 255, 0.1),
          rgba(255, 255, 255, 0.04)
        );
        border: 1px solid rgba(200, 149, 42, 0.26);
        border-radius: 22px;
        padding: 44px 40px;
        backdrop-filter: blur(12px);
        position: relative;
        overflow: hidden;
      }
      .ab-profile::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(
          90deg,
          transparent,
          var(--gold),
          var(--gold2),
          transparent
        );
      }
      .ab-logo-wrap {
        width: 130px;
        height: 130px;
        border-radius: 18px;
        background: var(--white);
        padding: 10px;
        margin-bottom: 20px;
        box-shadow: 0 8px 28px rgba(200, 149, 42, 0.35);
        border: 2px solid rgba(200, 149, 42, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .ab-logo-wrap img {
        width: 100%;
        height: 100%;
        object-fit: contain;
      }
      .ab-name {
        font-family: "Playfair Display", serif;
        font-size: 1.85rem;
        color: var(--white);
        margin-bottom: 3px;
        font-weight: 700;
      }
      .ab-role {
        font-size: 0.68rem;
        color: var(--gold);
        letter-spacing: 0.15em;
        text-transform: uppercase;
        font-weight: 700;
        margin-bottom: 20px;
      }
      .ab-quote {
        font-size: 0.91rem;
        color: rgba(255, 255, 255, 0.58);
        line-height: 1.82;
        font-style: italic;
        border-left: 2.5px solid var(--gold);
        padding-left: 16px;
        margin-bottom: 24px;
      }
      .tag-row {
        display: flex;
        flex-wrap: wrap;
        gap: 7px;
      }
      .atag {
        background: rgba(200, 149, 42, 0.14);
        border: 1px solid rgba(200, 149, 42, 0.26);
        color: var(--gold2);
        font-size: 0.66rem;
        padding: 5px 13px;
        border-radius: 28px;
        letter-spacing: 0.06em;
        font-weight: 600;
      }
      .float-stat {
        position: absolute;
        bottom: -22px;
        right: -22px;
        background: linear-gradient(135deg, var(--gold), var(--gold2));
        border-radius: 14px;
        padding: 18px 22px;
        box-shadow: 0 14px 36px rgba(200, 149, 42, 0.45);
      }
      .float-stat .fs-n {
        font-family: "Playfair Display", serif;
        font-size: 2rem;
        color: var(--navy);
        font-weight: 900;
        line-height: 1;
      }
      .float-stat .fs-l {
        font-size: 0.64rem;
        color: rgba(10, 22, 40, 0.65);
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
      }
      /* about text */
      .ab-text .stitle {
        color: var(--white);
      }
      .ab-text .ssub {
        color: rgba(255, 255, 255, 0.48);
      }
      .ab-text .stag {
        color: var(--gold2);
      }
      .ab-text .stag::before {
        background: var(--gold2);
      }
      .ab-p {
        color: rgba(255, 255, 255, 0.54);
        font-size: 0.92rem;
        line-height: 1.82;
        margin-bottom: 14px;
      }
      .ab-list {
        list-style: none;
        margin: 22px 0 34px;
      }
      .ab-list li {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        font-size: 0.86rem;
        color: rgba(255, 255, 255, 0.62);
      }
      .ab-list li::before {
        content: "◆";
        color: var(--gold);
        font-size: 0.48rem;
        flex-shrink: 0;
      }

      /* PARTNERS */
      .partner-sec {
        background: var(--white);
      }
      .partner-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 22px;
      }
      .partner-card {
        background: var(--cream);
        border-radius: var(--r);
        padding: 40px 30px;
        text-align: center;
        border: 1px solid rgba(10, 22, 40, 0.05);
        transition: transform 0.3s, box-shadow 0.3s;
      }
      .partner-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow);
        border-color: rgba(200, 149, 42, 0.2);
      }
      .pc-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, var(--navy), var(--navy3));
        color: var(--white);
        font-family: "Playfair Display", serif;
        font-size: 1.8rem;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        margin: 0 auto 20px;
        box-shadow: 0 8px 20px rgba(10, 22, 40, 0.2);
      }
      .partner-card h3 {
        font-family: "Playfair Display", serif;
        font-size: 1.4rem;
        color: var(--navy);
        margin-bottom: 5px;
      }
      .partner-card p {
        font-size: 0.85rem;
        color: var(--gold);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        margin-bottom: 20px;
      }
      .pc-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
      }
      .pc-tags span {
        background: rgba(10, 22, 40, 0.04);
        color: var(--txt2);
        font-size: 0.72rem;
        padding: 5px 12px;
        border-radius: 20px;
        font-weight: 600;
      }
      @media (max-width: 900px) {
        .partner-grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }
      @media (max-width: 600px) {
        .partner-grid {
          grid-template-columns: 1fr;
        }
      }

      /* TESTIMONIALS */
      .testi-sec {
        background: var(--cream);
      }
      .tg {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 22px;
      }
      .tc {
        background: var(--white);
        border-radius: var(--r);
        padding: 34px 30px;
        border: 1.5px solid rgba(200, 149, 42, 0.08);
        position: relative;
        overflow: hidden;
        transition:
          transform 0.3s,
          box-shadow 0.3s;
      }
      .tc::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(
          90deg,
          transparent,
          var(--gold),
          transparent
        );
        transform: scaleX(0);
        transition: transform 0.4s;
      }
      .tc:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow);
      }
      .tc:hover::before {
        transform: scaleX(1);
      }
      .tc-stars {
        color: var(--gold);
        font-size: 0.8rem;
        letter-spacing: 3px;
        margin-bottom: 12px;
      }
      .tc-q {
        font-size: 2.8rem;
        color: var(--gold);
        line-height: 0.8;
        font-family: "Playfair Display", serif;
        margin-bottom: 12px;
        opacity: 0.7;
      }
      .tc-text {
        font-size: 0.88rem;
        color: var(--txt2);
        line-height: 1.8;
        font-style: italic;
        margin-bottom: 22px;
      }
      .tc-auth {
        display: flex;
        align-items: center;
        gap: 12px;
      }
      .tc-av {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--navy), var(--navy2));
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gold2);
        font-weight: 800;
        font-size: 0.88rem;
        flex-shrink: 0;
      }
      .tc-nm {
        font-size: 0.88rem;
        font-weight: 700;
        color: var(--navy);
      }
      .tc-rl {
        font-size: 0.7rem;
        color: var(--txt2);
      }

      /* CONTACT */
      .ct-sec {
        background: var(--white);
      }
      .ct-layout {
        display: grid;
        grid-template-columns: 1fr 1.35fr;
        gap: 68px;
        align-items: start;
      }
      .ct-left h3 {
        font-family: "Playfair Display", serif;
        font-size: 1.75rem;
        color: var(--navy);
        margin-bottom: 8px;
      }
      .ct-left > p {
        color: var(--txt2);
        font-size: 0.91rem;
        line-height: 1.78;
        margin-bottom: 34px;
      }
      .ci {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 22px;
      }
      .ci-ic {
        width: 46px;
        height: 46px;
        background: linear-gradient(135deg, var(--navy), var(--navy2));
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.05rem;
        flex-shrink: 0;
        box-shadow: 0 4px 14px rgba(10, 22, 40, 0.18);
      }
      .ci-t span {
        display: block;
        font-size: 0.63rem;
        color: var(--gold);
        text-transform: uppercase;
        letter-spacing: 0.14em;
        font-weight: 700;
        margin-bottom: 3px;
      }
      .ci-t p,
      .ci-t a {
        font-size: 0.88rem;
        color: var(--txt);
        line-height: 1.55;
        text-decoration: none;
      }
      .ci-t a:hover {
        color: var(--gold);
      }
      /* form */
      .ct-form {
        background: linear-gradient(145deg, var(--cream), var(--white));
        border-radius: 20px;
        padding: 44px 40px;
        border: 1.5px solid rgba(200, 149, 42, 0.12);
        box-shadow: 0 8px 36px rgba(10, 22, 40, 0.07);
      }
      .ct-form h3 {
        font-family: "Playfair Display", serif;
        font-size: 1.45rem;
        color: var(--navy);
        margin-bottom: 6px;
        font-weight: 700;
      }
      .ct-form .fsub {
        font-size: 0.83rem;
        color: var(--txt2);
        margin-bottom: 30px;
      }
      .frow {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
      }
      .fg {
        margin-bottom: 16px;
      }
      .fg label {
        display: block;
        font-size: 0.66rem;
        font-weight: 800;
        color: var(--navy);
        letter-spacing: 0.12em;
        text-transform: uppercase;
        margin-bottom: 7px;
      }
      .fg input,
      .fg select,
      .fg textarea {
        width: 100%;
        padding: 12px 15px;
        border: 1.5px solid rgba(10, 22, 40, 0.1);
        border-radius: 9px;
        font-family: "Nunito", sans-serif;
        font-size: 0.88rem;
        color: var(--txt);
        background: var(--white);
        outline: none;
        transition:
          border-color 0.2s,
          box-shadow 0.2s;
      }
      .fg input:focus,
      .fg select:focus,
      .fg textarea:focus {
        border-color: var(--gold);
        box-shadow: 0 0 0 4px rgba(200, 149, 42, 0.1);
      }
      .fg textarea {
        resize: vertical;
        min-height: 110px;
      }
      .f-btn {
        width: 100%;
        background: linear-gradient(135deg, var(--navy), var(--navy2));
        color: var(--white);
        padding: 14px;
        border: none;
        border-radius: 10px;
        font-family: "Nunito", sans-serif;
        font-size: 0.92rem;
        font-weight: 700;
        cursor: pointer;
        letter-spacing: 0.05em;
        transition:
          transform 0.2s,
          box-shadow 0.2s,
          background 0.2s;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-top: 4px;
      }
      .f-btn:hover {
        background: linear-gradient(135deg, var(--gold), var(--gold2));
        color: var(--navy);
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(200, 149, 42, 0.38);
      }
      .f-ok {
        display: none;
        text-align: center;
        padding: 36px 0;
        font-family: "Playfair Display", serif;
        font-size: 1.1rem;
        color: var(--gold);
      }

      /* FOOTER */
      footer {
        background: #04101e;
        padding: 68px 52px 30px;
      }
      .fg-inner {
        max-width: 1140px;
        margin: 0 auto;
      }
      .ft-grid {
        display: grid;
        grid-template-columns: 1.7fr 1fr 1fr 1fr;
        gap: 44px;
        padding-bottom: 48px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        margin-bottom: 30px;
      }
      .fb h2 {
        font-family: "Playfair Display", serif;
        color: var(--white);
        font-size: 1.4rem;
        margin-bottom: 3px;
        font-weight: 700;
      }
      .fb-sub {
        font-size: 0.62rem;
        color: var(--gold);
        letter-spacing: 0.16em;
        text-transform: uppercase;
        font-weight: 700;
        margin-bottom: 14px;
      }
      .fb p {
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.34);
        line-height: 1.82;
        max-width: 250px;
      }
      .fb-logo {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;

        width: 120px;
        height: 120px;
        padding: 10px;
        border-radius: 13px;

        margin-bottom: 16px;
      }

      .fb-logo img {
        width: 85px;
        height: 85px;
        border-radius: 13px;
        object-fit: contain;
        padding: 7px;
        background: var(--white);
      }

      /* Social Icons Wrapper */
      .social-icons {
        display: flex;
        gap: 12px;
        margin-top: 5px;
      }

      /* Icon Buttons */
      .social-icons a {
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #f3f4f6;
        color: #111;
        font-size: 16px;
        transition: all 0.3s ease;
        text-decoration: none;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      }

      /* Hover Effects */
      .social-icons a:hover {
        transform: translateY(-4px);
        background: #0a66c2;
        color: #fff;
      }

      /* WhatsApp Special Color */
      .social-icons a:nth-child(2):hover {
        background: #25d366;
      }

      /* Instagram Gradient feel */
      .social-icons a:nth-child(3):hover {
        background: linear-gradient(
          45deg,
          #feda75,
          #fa7e1e,
          #d62976,
          #962fbf,
          #4f5bd5
        );
        color: #fff;
      }

      /* YouTube Red */
      .social-icons a:nth-child(4):hover {
        background: #ff0000;
      }
      .fb-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
      }
      .fcol h4 {
        font-size: 0.62rem;
        color: var(--gold);
        letter-spacing: 0.18em;
        text-transform: uppercase;
        font-weight: 800;
        margin-bottom: 18px;
      }
      .fcol ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 10px;
      }
      .fcol ul li a {
        color: rgb(255, 255, 255);
        text-decoration: none;
        font-size: 0.82rem;
        font-weight: 500;
        transition: color 0.2s;
        display: flex;
        align-items: center;
        gap: 6px;
      }
      .fcol ul li a:hover {
        color: var(--gold2);
      }
      .ft-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 0.74rem;
        color: rgb(255, 255, 255);
        flex-wrap: wrap;
        gap: 10px;
        max-width: 1140px;
        margin: 0 auto;
      }
      .ft-bottom em {
        color: var(--gold);
        font-style: normal;
      }

      /* WHATSAPP */
      .wa-fab {
        position: fixed;
        bottom: 100px;
        right: 30px;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 10px;
      }
      .wa-tooltip {
        background: var(--white);
        color: var(--navy);
        font-size: 0.78rem;
        font-weight: 700;
        padding: 7px 14px;
        border-radius: 7px;
        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.14);
        white-space: nowrap;
        opacity: 0;
        transform: translateX(8px);
        transition:
          opacity 0.2s,
          transform 0.2s;
        pointer-events: none;
        border: 1px solid rgba(200, 149, 42, 0.2);
      }
      .wa-fab:hover .wa-tooltip {
        opacity: 1;
        transform: translateX(0);
      }
      .wa-btn {
        width: 58px;
        height: 58px;
        background: linear-gradient(135deg, #25d366, #128c7e);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 6px 26px rgba(37, 211, 102, 0.45);
        transition:
          transform 0.25s,
          box-shadow 0.25s;
        text-decoration: none;
        position: relative;
      }
      .wa-btn:hover {
        transform: scale(1.1) translateY(-3px);
        box-shadow: 0 12px 34px rgba(37, 211, 102, 0.6);
      }
      .wa-btn svg {
        width: 28px;
        height: 28px;
        fill: #fff;
        position: relative;
        z-index: 1;
      }
      .wa-pulse {
        position: absolute;
        inset: 0;
        border-radius: 50%;
        background: rgba(37, 211, 102, 0.3);
        animation: wap 2.5s ease-in-out infinite;
      }
      @keyframes wap {
        0% {
          transform: scale(1);
          opacity: 0.6;
        }
        100% {
          transform: scale(1.85);
          opacity: 0;
        }
      }
      .btt {
        position: fixed;
        bottom: 30px;
        left: 30px;
        z-index: 1000;
        width: 42px;
        height: 42px;
        background: var(--navy);
        border: 1.5px solid rgba(200, 149, 42, 0.28);
        border-radius: 9px;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        pointer-events: none;
        transition:
          opacity 0.3s,
          transform 0.3s;
        color: var(--gold);
        font-size: 0.95rem;
        text-decoration: none;
      }
      .btt.vis {
        opacity: 1;
        pointer-events: all;
      }
      .btt:hover {
        transform: translateY(-3px);
        background: var(--gold);
        color: var(--navy);
      }

      /* REVEAL */
      .rv {
        opacity: 0;
        transform: translateY(28px);
        transition:
          opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
          transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
      }
      .rv.on {
        opacity: 1;
        transform: translateY(0);
      }
      .rvl {
        opacity: 0;
        transform: translateX(-28px);
        transition:
          opacity 0.7s 0.1s cubic-bezier(0.22, 1, 0.36, 1),
          transform 0.7s 0.1s cubic-bezier(0.22, 1, 0.36, 1);
      }
      .rvl.on {
        opacity: 1;
        transform: translateX(0);
      }
      .rvr {
        opacity: 0;
        transform: translateX(28px);
        transition:
          opacity 0.7s 0.1s cubic-bezier(0.22, 1, 0.36, 1),
          transform 0.7s 0.1s cubic-bezier(0.22, 1, 0.36, 1);
      }
      .rvr.on {
        opacity: 1;
        transform: translateX(0);
      }

      /* RESPONSIVE */
      @media (max-width: 1000px) {
        nav {
          padding: 0 24px;
        }
        .nav-links {
          display: none;
          position: fixed;
          top: 78px;
          left: 0;
          right: 0;
          background: rgba(255, 255, 255, 0.97);
          backdrop-filter: blur(20px);
          flex-direction: column;
          padding: 22px;
          gap: 0;
          border-bottom: 1px solid rgba(200, 149, 42, 0.12);
          z-index: 500;
        }
        .nav-links.open {
          display: flex;
        }
        .nav-links li {
          width: 100%;
          border-bottom: 1px solid rgba(200, 149, 42, 0.07);
        }
        .nav-links a {
          display: block;
          padding: 13px 0;
          font-size: 0.92rem;
        }
        .nav-cta {
          margin-top: 10px;
          text-align: center;
        }
        .hamburger {
          display: flex;
        }
        .topbar {
          padding: 8px 20px;
          font-size: 0.68rem;
          flex-direction: column;
          gap: 4px;
          text-align: center;
        }
        .hero-inner {
          grid-template-columns: 1fr;
          padding: 60px 24px;
          gap: 36px;
          min-height: auto;
          padding-top: 100px;
        }
        .hr {
          display: none;
        }
        .hero-stats {
          grid-template-columns: repeat(2, 1fr);
          gap: 20px;
        }
        .sec {
          padding: 64px 24px;
        }
        .srv-grid {
          grid-template-columns: 1fr 1fr;
        }
        .num-grid {
          grid-template-columns: 1fr 1fr;
        }
        .why-layout {
          grid-template-columns: 1fr;
          gap: 40px;
        }
        .proc-wrap {
          grid-template-columns: 1fr 1fr;
        }
        .proc-wrap::before {
          display: none;
        }
        .ab-layout {
          grid-template-columns: 1fr;
          gap: 40px;
        }
        .float-stat {
          display: none;
        }
        .tg {
          grid-template-columns: 1fr;
        }
        .ct-layout {
          grid-template-columns: 1fr;
          gap: 40px;
        }
        .ct-form {
          padding: 30px 22px;
        }
        .ft-grid {
          grid-template-columns: 1fr 1fr;
          gap: 32px;
        }
        .frow {
          grid-template-columns: 1fr;
        }
      }
      @media (max-width: 560px) {
        .srv-grid {
          grid-template-columns: 1fr;
        }
        .num-grid {
          grid-template-columns: 1fr 1fr;
        }
        .ft-grid {
          grid-template-columns: 1fr;
        }
        .why-cards {
          grid-template-columns: 1fr;
        }
        .hero-stats {
          grid-template-columns: repeat(2, 1fr);
        }
      }
      .toast {
        position: fixed;
        top: 20px; /* 👈 upar show hoga (modern look) */
        right: 20px;
        background: #111827; /* dark premium */
        color: #fff;
        padding: 14px 22px;
        border-radius: 10px;
        font-size: 14px;
        font-weight: 500;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
        transition: all 0.4s ease;
        z-index: 9999;
        min-width: 220px;
      }

      /* show state */
      .toast.show {
        opacity: 1;
        transform: translateY(0) scale(1);
      }

      /* success */
      .toast.success {
        background: #16a34a;
      }

      /* error */
      .toast.error {
        background: #dc2626;
      }