 :root {
      --accent:   #E65C00;
      --accent2:  #FF8C2A;
      --gold:     #D4870A;
      --gold-lt:  #F5A623;
      --maroon:   #8B1A1A;
      --maroon-lt:#C0392B;
      --bg-a:     #FFF8F0;   /* ivory cream */
      --bg-b:     #FFF3E0;   /* warm saffron tint */
      --bg-c:     #FEF9F4;   /* near white */
      --text:     #1C0A00;
      --text-2:   #4A2000;
      --text-3:   #7A4010;
      --border:   rgba(230,92,0,0.18);
      --shadow:   rgba(139,26,26,0.12);
      --font-head: 'Playfair Display', Georgia, serif;
      --font-body: 'DM Sans', 'Segoe UI', sans-serif;
      --font-deco: 'Yatra One', cursive;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      background: var(--bg-a);
      color: var(--text);
      overflow-x: hidden;
    }

    /* ── Shared helpers ── */
    .section-pad  { padding: 90px 0; }
    .section-title {
      font-family: var(--font-head);
      font-size: clamp(1.9rem, 4.5vw, 3rem);
      font-weight: 800;
      color: var(--maroon);
      line-height: 1.15;
    }
    .section-sub {
      font-size: clamp(1rem, 2vw, 1.15rem);
      color: var(--text-2);
      line-height: 1.7;
      font-weight: 400;
    }
    .gold-bar {
      display: inline-block;
      width: 60px; height: 4px;
      background: linear-gradient(90deg, var(--accent), var(--gold-lt));
      border-radius: 2px;
      margin: 0.7rem 0;
    }
    .badge-pill {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      background: rgba(230,92,0,0.1);
      border: 1.5px solid rgba(230,92,0,0.3);
      border-radius: 50px;
      padding: 0.3rem 1.1rem;
      font-size: 0.76rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 1rem;
    }

    /* ── Buttons ── */
    .btn-saffron {
      background: linear-gradient(135deg, var(--accent), #FF6B00);
      color: #fff;
      border: none;
      border-radius: 50px;
      padding: 0.9rem 2.4rem;
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 0.95rem;
      letter-spacing: 0.04em;
      text-decoration: none;
      display: inline-block;
      box-shadow: 0 6px 24px rgba(230,92,0,0.4);
      transition: all 0.3s ease;
    }
    .btn-saffron:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 32px rgba(230,92,0,0.55);
      color: #fff;
    }
    .btn-outline-saffron {
      background: transparent;
      color: var(--accent);
      border: 2px solid var(--accent);
      border-radius: 50px;
      padding: 0.85rem 2.2rem;
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 0.95rem;
      text-decoration: none;
      display: inline-block;
      transition: all 0.3s ease;
    }
    .btn-outline-saffron:hover {
      background: var(--accent);
      color: #fff;
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(230,92,0,0.35);
    }
    .btn-maroon {
      background: linear-gradient(135deg, var(--maroon), #B22222);
      color: #fff;
      border: none;
      border-radius: 50px;
      padding: 0.75rem 2rem;
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 0.88rem;
      text-decoration: none;
      display: inline-block;
      transition: all 0.3s ease;
      box-shadow: 0 4px 16px rgba(139,26,26,0.3);
    }
    .btn-maroon:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(139,26,26,0.45);
      color: #fff;
    }

    /* ============================================================
       NAVBAR
    ============================================================ */
    .navbar-custom {
      background: rgba(255,248,240,0.97);
      border-bottom: 1px solid var(--border);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      padding: 0.75rem 0;
      transition: all 0.3s ease;
    }
    .navbar-custom.scrolled {
      box-shadow: 0 4px 24px rgba(230,92,0,0.12);
      padding: 0.5rem 0;
    }
    .brand-name {
      font-family: var(--font-deco);
      font-size: 1.35rem;
      color: var(--maroon);
      letter-spacing: 0.02em;
    }
    .brand-diya { font-size: 1.4rem; }
    .navbar-custom .nav-link {
      font-family: var(--font-body);
      font-size: 0.88rem;
      font-weight: 500;
      color: var(--text-2) !important;
      letter-spacing: 0.04em;
      padding: 0.5rem 0.9rem !important;
      transition: color 0.25s;
      position: relative;
    }
    .navbar-custom .nav-link::after {
      content: '';
      position: absolute;
      bottom: 2px; left: 0.9rem; right: 0.9rem;
      height: 2px;
      background: var(--accent);
      transform: scaleX(0);
      transition: transform 0.25s;
    }
    .navbar-custom .nav-link:hover { color: var(--accent) !important; }
    .navbar-custom .nav-link:hover::after { transform: scaleX(1); }
    .navbar-toggler { border: 1.5px solid var(--border); border-radius: 8px; }
    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23E65C00' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    /* ============================================================
       HERO SECTION — VIDEO BG, LIGHT OVERLAY
    ============================================================ */
    #hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
    }

    .hero-video-wrap {
      position: absolute;
      inset: 0;
      z-index: 0;
    }
    .hero-video-wrap video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* WARM LIGHT overlay — makes text sharp and readable */
    .hero-overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
       linear-gradient(180deg, rgba(255, 248, 240, 0.55) 0%, rgb(255 200 120 / 65%) 35%, rgb(255 140 50 / 82%) 65%, rgba(255, 248, 240, 0.70) 100%);
    }

    /* Decorative mandala ring */
    .hero-mandala {
      position: absolute;
      width: 700px; height: 700px;
      border-radius: 50%;
      border: 1.5px solid rgba(230,92,0,0.15);
      top: 50%; left: 50%;
      transform: translate(-50%,-50%);
      z-index: 1;
      animation: spin-slow 60s linear infinite;
      pointer-events: none;
    }
    .hero-mandala::before {
      content: '';
      position: absolute;
      inset: 60px;
      border-radius: 50%;
      border: 1px solid rgba(212,135,10,0.12);
    }
    .hero-mandala::after {
      content: '';
      position: absolute;
      inset: 130px;
      border-radius: 50%;
      border: 1px solid rgba(230,92,0,0.1);
    }
    @keyframes spin-slow { to { transform: translate(-50%,-50%) rotate(360deg); } }

    /* Floating light orbs */
    .orb {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      z-index: 1;
    }
    .orb-1 { width:180px;height:180px;background:radial-gradient(circle,rgba(255,165,50,0.35),transparent 70%);top:15%;left:8%;animation:pulse-orb 4s ease-in-out infinite; }
    .orb-2 { width:140px;height:140px;background:radial-gradient(circle,rgba(230,92,0,0.25),transparent 70%);top:20%;right:10%;animation:pulse-orb 5s ease-in-out 1s infinite; }
    .orb-3 { width:200px;height:200px;background:radial-gradient(circle,rgba(255,200,80,0.3),transparent 70%);bottom:20%;left:15%;animation:pulse-orb 6s ease-in-out 2s infinite; }
    .orb-4 { width:120px;height:120px;background:radial-gradient(circle,rgba(212,135,10,0.28),transparent 70%);bottom:25%;right:8%;animation:pulse-orb 4.5s ease-in-out 0.5s infinite; }
    @keyframes pulse-orb { 0%,100%{transform:scale(1);opacity:0.8;} 50%{transform:scale(1.3);opacity:1;} }

    /* Hero content */
    .hero-content {
      position: relative;
      z-index: 2;
      padding: 140px 0 90px;
    }
    .hero-eyebrow {
      font-family: var(--font-body);
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--maroon);
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      background: rgba(255,248,240,0.85);
      border: 1.5px solid rgba(139,26,26,0.2);
      border-radius: 50px;
      padding: 0.4rem 1.3rem;
      margin-bottom: 1.5rem;
      backdrop-filter: blur(4px);
      animation: fadeUp 0.7s ease both;
    }
    .hero-heading {
      font-family: var(--font-head);
      font-size: clamp(2.6rem, 8vw, 5.5rem);
      font-weight: 800;
      line-height: 1.08;
      color: var(--maroon);
      margin-bottom: 0.5rem;
      animation: fadeUp 0.8s ease 0.1s both;
      text-shadow: 0 2px 20px rgba(255,248,240,0.8);
    }
    .hero-heading em {
      font-style: italic;
      color: var(--accent);
      display: block;
    }
 .hero-subhead {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    color: white;
    line-height: 1.75;
    max-width: 800px;
    margin: 1rem auto 2.5rem;
    animation: fadeUp 0.9s ease 0.2s both;
    border-radius: 12px;
    padding: 0.8rem 1.4rem;
}
    .hero-btns {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      justify-content: center;
      animation: fadeUp 1s ease 0.3s both;
      margin-bottom: 3.5rem;
    }
    .hero-stats {
      display: inline-flex;
      flex-wrap: wrap;
      gap: 0;
      background: rgba(255,248,240,0.88);
      border: 1.5px solid rgba(230,92,0,0.2);
      border-radius: 20px;
      overflow: hidden;
      animation: fadeUp 1s ease 0.4s both;
      backdrop-filter: blur(6px);
      box-shadow: 0 8px 32px rgba(230,92,0,0.15);
    }
    .hero-stat {
      padding: 1.1rem 2rem;
      text-align: center;
      border-right: 1px solid rgba(230,92,0,0.15);
    }
    .hero-stat:last-child { border-right: none; }
    .hero-stat-n {
      font-family: var(--font-head);
      font-size: 1.9rem;
      font-weight: 700;
      color: var(--accent);
      line-height: 1;
    }
    .hero-stat-l {
      font-size: 0.72rem;
      font-weight: 500;
      color: var(--text-3);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-top: 0.2rem;
    }
    .scroll-cue {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.3rem;
      color: var(--text-2);
      font-size: 0.7rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      font-weight: 500;
      animation: bounce-down 2s ease-in-out infinite;
    }
    @keyframes bounce-down { 0%,100%{transform:translateX(-50%) translateY(0);} 50%{transform:translateX(-50%) translateY(8px);} }
    @keyframes fadeUp { from{opacity:0;transform:translateY(28px);} to{opacity:1;transform:translateY(0);} }

    /* ============================================================
       TRUST BAR
    ============================================================ */
    .trust-bar {
      background: var(--accent);
      padding: 0;
      overflow: hidden;
    }
    .trust-bar-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 0;
    }
    .trust-item {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      padding: 20px;
      border-right: 1px solid rgba(255,255,255,0.2);
      color: #fff;
      font-size: 0.92rem;
      font-weight: 500;
    }
    .trust-item:last-child { border-right: none; }
    .trust-item i { font-size: 1.1rem; opacity: 0.85; }
    .trust-item strong { font-weight: 700; }

    /* ============================================================
       SECTION A — UPCOMING EVENTS  (BG: warm cream)
    ============================================================ */
    #events {
      background: var(--bg-a);
    }
    .events-header-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-direction: column;
    text-align: center;
}.events-header-row a {
    margin: auto;
}
    .event-card-new {
      background: #fff;
      border-radius: 22px;
      overflow: hidden;
      box-shadow: 0 4px 24px rgba(139,26,26,0.09), 0 1px 4px rgba(0,0,0,0.04);
      border: 1.5px solid rgba(230,92,0,0.1);
      transition: all 0.35s ease;
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    .event-card-new:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 50px rgba(139,26,26,0.15), 0 4px 12px rgba(0,0,0,0.06);
      border-color: rgba(230,92,0,0.3);
    }
    .event-card-img {
      height: 220px;
      overflow: hidden;
      position: relative;
    }
    .event-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .event-card-new:hover .event-card-img img { transform: scale(1.06); }
    .event-card-img::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.35));
    }
    .event-card-date {
      position: absolute;
      top: 14px; left: 14px;
      background: var(--accent);
      color: #fff;
      border-radius: 12px;
      padding: 0.4rem 0.85rem;
      z-index: 2;
      font-weight: 700;
      line-height: 1.1;
      text-align: center;
      box-shadow: 0 3px 12px rgba(230,92,0,0.4);
    }
    .event-card-date .day { font-size: 1.4rem; display: block; }
    .event-card-date .mon { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.9; }
    .event-card-type {
      position: absolute;
      top: 14px; right: 14px;
      background: rgba(255,248,240,0.92);
      color: var(--maroon);
      border-radius: 50px;
      padding: 0.25rem 0.75rem;
      font-size: 0.7rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      z-index: 2;
    }
    .event-card-body {
      padding: 1.5rem 1.6rem 1.8rem;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .event-card-title {
      font-family: var(--font-head);
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--maroon);
      margin-bottom: 0.8rem;
      line-height: 1.25;
    }
    .event-meta-row {
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
      margin-bottom: 1rem;
    }
    .event-meta-item {
      display: flex;
      align-items: center;
      gap: 0.55rem;
      font-size: 0.85rem;
      color: var(--text-3);
      font-weight: 400;
    }
    .event-meta-item i {
      color: var(--accent);
      font-size: 0.95rem;
      flex-shrink: 0;
    }
    .event-card-desc {
      font-size: 0.88rem;
      color: var(--text-2);
      line-height: 1.7;
      flex: 1;
      margin-bottom: 1.4rem;
    }

    /* ============================================================
       SECTION B — WHY / PURPOSE  (BG: saffron tint)
    ============================================================ */
    #why {
      background: var(--bg-b);
    }
    .why-card-new {
      background: #fff;
      border-radius: 20px;
      padding: 2rem 1.6rem;
      text-align: left;
      border: 1.5px solid rgba(230,92,0,0.1);
      box-shadow: 0 3px 16px rgba(139,26,26,0.07);
      transition: all 0.35s ease;
      height: 100%;
          text-align: justify;
    }
    .why-card-new:hover {
      transform: translateY(-6px);
      border-color: var(--accent);
      box-shadow: 0 12px 36px rgba(230,92,0,0.15);
    }
   .why-icon-wrap {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(230, 92, 0, 0.1), rgba(212, 135, 10, 0.12));
    border: 2px solid rgba(230, 92, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    margin: auto;
        margin-bottom: 20px;
}.why-icon-wrap img {
    width: 40px;
}p.purpose-chip-desc {
    text-align: justify;
}
    .why-card-title {
      font-family: var(--font-head);
      font-size: 22px;
      font-weight: 700;
      color: var(--maroon);
      margin-bottom: 0.6rem;
      text-align:center;
    }
    .why-card-text { font-size: 0.88rem; color: var(--text-2); line-height: 1.7; }

    /* ============================================================
       SECTION C — WHAT WE OFFER  (BG: cream)
    ============================================================ */
    #services { background: var(--bg-a); }
    .service-tile {
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      border: 1.5px solid rgba(230,92,0,0.09);
      box-shadow: 0 2px 14px rgba(139,26,26,0.06);
      transition: all 0.3s ease;
      height: 100%;
    }
    .service-tile:hover {
      transform: translateY(-5px);
      border-color: rgba(230,92,0,0.25);
      box-shadow: 0 10px 30px rgba(230,92,0,0.14);
    }
    .service-tile-img {
      height: 260px;
      overflow: hidden;
    }
    .service-tile-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .service-tile:hover .service-tile-img img { transform: scale(1.07); }
    .service-tile-body {
      padding: 1.1rem 1.2rem 1.4rem;
    }
    .service-tile-icon { font-size: 1.6rem; margin-bottom: 0.4rem; display: block; }
    .service-tile-title { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--maroon); margin-bottom: 0.3rem;    text-align: center; }
    .service-tile-desc { font-size: 15px; color: var(--text-3); line-height: 1.6; }

    /* ============================================================
       SECTION D — PURPOSE  (BG: saffron tint)
    ============================================================ */
    #purpose { background: var(--bg-b); }
    .purpose-row {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 1.2rem;
    }
    .purpose-chip {
      background: #fff;
      border-radius: 14px;
      padding: 1.25rem 1.4rem;
      border: 1.5px solid rgba(230,92,0,0.1);
      transition: all 0.3s ease;
    }
    .purpose-chip:hover {
      border-color: var(--accent);
      transform: translateX(5px);
      box-shadow: 0 6px 20px rgba(230,92,0,0.12);
    }
    .purpose-chip-icon {
      width: 44px; height: 44px;
      flex-shrink: 0;
      background: linear-gradient(135deg, rgba(230,92,0,0.12), rgba(212,135,10,0.1));
      border-radius: 12px;
      font-size: 1.25rem;
      border: 1px solid rgba(230,92,0,0.15);
          display: flex;
    justify-content: center;
    align-items: center;
    }.purpose-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}
    .purpose-chip-title { font-family: var(--font-head); font-size: 17px; font-weight: 700; color: var(--maroon); margin-bottom: 0.25rem;text-align: center; }
    .purpose-chip-desc { font-size: 15px; color: var(--text-3); line-height: 1.6; }

    /* ============================================================
       SECTION E — CTA BANNER  (BG: accent)
    ============================================================ */
    #cta-banner {
      background: linear-gradient(135deg, var(--accent) 0%, #FF8C00 50%, var(--gold) 100%);
      position: relative;
      overflow: hidden;
    }
    #cta-banner::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Ccircle cx='200' cy='200' r='190' fill='none' stroke='rgba(255,255,255,0.08)' stroke-width='1'/%3E%3Ccircle cx='200' cy='200' r='120' fill='none' stroke='rgba(255,255,255,0.06)' stroke-width='1'/%3E%3Ccircle cx='200' cy='200' r='60' fill='none' stroke='rgba(255,255,255,0.05)' stroke-width='1'/%3E%3C/svg%3E") center/cover;
      opacity: 0.4;
    }
    .cta-heading {
      font-family: var(--font-head);
      font-size: clamp(1.8rem, 5vw, 3.2rem);
      font-weight: 800;
      color: #fff;
      line-height: 1.15;
    }
    .cta-sub { font-size: 1.05rem; color: rgba(255,255,255,0.88); line-height: 1.7; max-width: 540px; }
    .btn-white {
      background: #fff;
      color: var(--accent);
      border: none;
      border-radius: 50px;
      padding: 0.9rem 2.4rem;
      font-weight: 700;
      font-size: 0.95rem;
      text-decoration: none;
      display: inline-block;
      transition: all 0.3s ease;
      box-shadow: 0 6px 24px rgba(0,0,0,0.2);
    }
    .btn-white:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.25); color: var(--accent); }
    .btn-outline-white {
      background: transparent;
      color: #fff;
      border: 2px solid rgba(255,255,255,0.6);
      border-radius: 50px;
      padding: 0.85rem 2.2rem;
      font-weight: 600;
      font-size: 0.95rem;
      text-decoration: none;
      display: inline-block;
      transition: all 0.3s ease;
    }
    .btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: #fff; color: #fff; transform: translateY(-3px); }

    /* ============================================================
       SECTION F — ABOUT US  (BG: cream white)
    ============================================================ */
    #about { background: var(--bg-c); }
    .about-img-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 220px 200px;
      gap: 12px;
    }
    .about-img-grid .ai-big {
      grid-row: span 2;
      border-radius: 20px;
      overflow: hidden;
    }
    .about-img-grid .ai-sm {
      border-radius: 14px;
      overflow: hidden;
    }
    .about-img-grid img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .about-img-grid div:hover img { transform: scale(1.05); }

    .about-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(139,26,26,0.08);
      border: 1.5px solid rgba(139,26,26,0.15);
      border-radius: 50px;
      padding: 0.35rem 1.1rem;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--maroon);
      margin-bottom: 1rem;
    }
    .about-quote-block {
      background: linear-gradient(135deg, rgba(230,92,0,0.07), rgba(212,135,10,0.06));
      border-left: 4px solid var(--accent);
      border-radius: 0 14px 14px 0;
      padding: 1.4rem 1.6rem;
      margin: 1.5rem 0;
    }
    .about-quote-text {
      font-family: var(--font-head);
      font-size: clamp(1.05rem, 2.2vw, 1.3rem);
      font-style: italic;
      color: var(--maroon);
      line-height: 1.65;
    }
    .about-body-text {
      font-size: 0.95rem;
      color: var(--text-2);
      line-height: 1.82;
    }
    .mv-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: 1.5rem; }
    .mv-box {
      background: #fff;
      border-radius: 16px;
      padding: 1.5rem;
      border: 1.5px solid rgba(230,92,0,0.12);
      box-shadow: 0 2px 12px rgba(139,26,26,0.06);
      transition: all 0.3s ease;
    }
    .mv-box:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 8px 24px rgba(230,92,0,0.12); }
    .mv-box-label { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; color: var(--accent); margin-bottom: 0.5rem; }
    .mv-box-text { font-family: var(--font-head); font-size: 0.98rem; font-style: italic; color: var(--text-2); line-height: 1.65; }

    .represents-list { margin-top: 1.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem 1.5rem; }
    .repr-item {
      display: flex;
      align-items: center;
      gap: 0.55rem;
      font-size: 0.9rem;
      color: var(--text-2);
      padding: 0.4rem 0;
      border-bottom: 1px solid rgba(230,92,0,0.08);
      font-weight: 400;
    }
    .repr-dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }

    /* ============================================================
       BOOKING FORM  (BG: saffron tint)
    ============================================================ */
    #booking { background: var(--bg-b); }
    .booking-card {
      background: #fff;
      border-radius: 26px;
      padding: 3rem;
      box-shadow: 0 8px 48px rgba(139,26,26,0.1), 0 2px 8px rgba(0,0,0,0.04);
      border: 1.5px solid rgba(230,92,0,0.12);
    }
    .form-label-custom {
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--text-3);
      margin-bottom: 0.4rem;
      display: block;
    }
    .form-ctrl {
      width: 100%;
      background: var(--bg-a);
      border: 1.5px solid rgba(230,92,0,0.2);
      border-radius: 12px;
      padding: 0.8rem 1rem;
      font-family: var(--font-body);
      font-size: 0.92rem;
      color: var(--text);
      transition: all 0.25s ease;
      outline: none;
    }
    .form-ctrl:focus {
      border-color: var(--accent);
      background: #fff;
      box-shadow: 0 0 0 3px rgba(230,92,0,0.12);
    }
    .form-ctrl::placeholder { color: rgba(122,64,16,0.45); }
    select.form-ctrl option { background: #fff; color: var(--text); }
    textarea.form-ctrl { resize: none; }
    .booking-note {
      background: rgba(230,92,0,0.06);
      border: 1.5px dashed rgba(230,92,0,0.25);
      border-radius: 12px;
      padding: 0.9rem 1.2rem;
      font-size: 16px;
      color: var(--text-3);
      text-align: center;
      margin-top: 0.5rem;
    }

    /* ============================================================
       CONTACT  (BG: cream)
    ============================================================ */
    #contact { background: var(--bg-a); }
    .contact-card {
      background: #fff;
      border-radius: 16px;
      padding: 1.4rem;
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      border: 1.5px solid rgba(230,92,0,0.1);
      box-shadow: 0 2px 12px rgba(139,26,26,0.06);
      transition: all 0.3s ease;
    }
    .contact-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 8px 24px rgba(230,92,0,0.12); }
    .contact-icon-box {
      width: 50px; height: 50px;
      background: linear-gradient(135deg, var(--accent), var(--gold-lt));
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem; color: #fff; flex-shrink: 0;
      box-shadow: 0 4px 14px rgba(230,92,0,0.3);
    }
    .c-label { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-3); }
    .c-value { font-size: 0.94rem; color: var(--text); font-weight: 500; }
    .btn-wa {
      background: linear-gradient(135deg, #25D366, #128C7E);
      color: #fff; border: none; border-radius: 50px;
      padding: 0.85rem 2rem;
      font-weight: 600; font-size: 0.9rem;
      text-decoration: none;
      display: inline-flex; align-items: center; gap: 0.6rem;
      transition: all 0.3s ease;
      box-shadow: 0 4px 18px rgba(37,211,102,0.3);
    }
    .btn-wa:hover { color:#fff; transform:translateY(-3px); box-shadow:0 8px 28px rgba(37,211,102,0.45); }
    .map-box {
      background: var(--bg-b);
      border: 1.5px solid var(--border);
      border-radius: 18px;
      height: 260px;
      display: flex; align-items: center; justify-content: center;
      flex-direction: column; gap: 0.8rem;
      color: var(--text-3);
    }
    .map-box i { font-size: 2.5rem; color: var(--accent); opacity: 0.5; }
    .map-box p { font-size: 0.88rem; text-align: center; }

    /* ============================================================
       FOOTER
    ============================================================ */
    footer {
      background: var(--maroon);
      padding: 4rem 0 1.5rem;
    }
    .footer-brand-name { font-family: var(--font-deco); font-size: 1.4rem; color: var(--gold-lt); }
    .footer-tagline { font-size: 0.84rem; color: rgba(255,243,224,0.75); line-height: 1.7; }
    .footer-h { font-size: 0.73rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; color: var(--gold-lt); margin-bottom: 1rem; }
    .footer-a { display: block; font-size: 0.84rem; color: rgba(255,243,224,0.7); text-decoration: none; padding: 0.25rem 0; transition: color 0.25s; }
    .footer-a:hover { color: var(--gold-lt); }
    .footer-ci { display: flex; gap: 0.6rem; align-items: flex-start; margin-bottom: 0.7rem; }
    .footer-ci i { color: var(--gold-lt); margin-top: 0.15rem; flex-shrink: 0; font-size: 0.9rem; }
    .footer-ci span { font-size: 0.82rem; color: rgba(255,243,224,0.7); }
    .social-btn {
      width: 38px; height: 38px;
      background: rgba(255,243,224,0.1);
      border: 1px solid rgba(255,243,224,0.2);
      border-radius: 10px;
      display: inline-flex; align-items: center; justify-content: center;
      color: rgba(255,243,224,0.7); font-size: 1rem; text-decoration: none;
      transition: all 0.25s ease;
    }
    .social-btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-3px); }
    .footer-bottom { border-top: 1px solid rgba(255,243,224,0.12); margin-top: 3rem; padding-top: 1.4rem; font-size: 0.78rem; color: rgba(255,243,224,0.45); text-align: center; }

    /* ── Scroll reveal ── */
    .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }


    /* Responsive */
    @media (max-width: 768px) {
      .about-img-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
      .about-img-grid .ai-big { grid-row: span 1; height: 240px; }
      .about-img-grid .ai-sm { height: 180px; }
      .mv-row { grid-template-columns: 1fr; }
      .represents-list { grid-template-columns: 1fr; }
      .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); width: 100%; }
      .hero-stats {
        /* flex-direction: column; */
        align-items: center;
        justify-content: center;
    }
      .hero-stat { border-right: none; border-bottom: 1px solid rgba(230,92,0,0.1); }
      .hero-stat:last-child { border-bottom: none; }
      .booking-card { padding: 2rem 1.5rem; }
      .events-header-row { align-items: flex-start;justify-content: left; }
          footer {
    overflow: hidden;
}

#about {
    overflow: hidden;
}#contact {
    overflow: hidden;
}
    }
    @media (max-width: 576px) {
      .hero-btns a { display: block; width: 100%; text-align: center; }
    }
    
     .hero {
      position: relative;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 42px;
      padding: 56px 6% 40px;
      overflow: hidden;
    }

    .hero:before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 52px 52px;
      pointer-events: none;
      mask-image: linear-gradient(to bottom, black, transparent 88%);
    }

    .hero-content, .hero-card { position: relative; z-index: 1; }

    .tagline {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 9px 14px;
      border: 1px solid rgba(255,154,77,0.35);
      border-radius: 999px;
      color: var(--saffron-light);
      background: rgba(255,107,26,0.10);
      margin-bottom: 20px;
      font-weight: 600;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    
    section#booking .section-title p, section#details p {
    font-size: 16px;
}

.hero {
    padding: 120px 6% 40px;
}.hero-actions a {
    text-decoration: none;
}section#booking h2 {
    color: black;
}
 
