:root {
    --gold: #C9A24D;
    --ivory: #FAF9F6;
    --teal: #10383A;
    --sage: #666E51;
    --header-height: 90px;
    --glass-bg: rgba(250, 249, 246, 0.1);
    --glass-border: rgba(201, 162, 77, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--ivory);
    font-family: 'Montserrat', sans-serif;
    color: var(--teal);
    overflow-x: hidden;
    width: 100%;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px; /* thoda patla height */
  z-index: 1000;
  display: flex;
  align-items: center;

  /* halka transparent glass background */
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 0.3s ease;
}

/* Scrolled State Logic */
.header.scrolled {
  height: 64px; /* scroll par aur patla */
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}


.nav-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.hero {
    margin-top: 0; /* No top margin */
    padding-top: 0; /* Remove extra padding */
    height: 100vh;
    display: flex;
    align-items: center;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.logo-symbol {
    color: var(--gold);
    font-size: 1.8rem;
    transition: transform 0.6s ease;
}

.logo:hover .logo-symbol {
    transform: rotate(180deg);
}

.logo-text {
    font-family: 'Cinzel Decorative', cursive;
    font-weight: 600;
    letter-spacing: 0.15em;   /* spacing kam */
    font-size: 1.10rem;
      /* text chota */
    white-space: nowrap;     /* line break na ho */
}
@media (max-width: 768px) {
    .logo-text {
        font-size: 0.80rem;   /* same size (layout safe) */
        letter-spacing: 0.1em;
        transform: scale(1.20);   /* only visually bigger */
        transform-origin: left;   /* left se zoom hoga */
        display: inline-block;
    }
}



/* Desktop Menu */
.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-item {
    text-decoration: none;
    color: var(--teal);
    font-size: 0.80rem;          /* original size */
    text-transform: uppercase;
    font-weight: 600;            /* thoda bold */
    letter-spacing: 0.15em;
    position: relative;

    transform: scale(1.15);      /* bigger looks, no layout change */
    transform-origin: center;
    display: inline-block;       /* required for scale */
}

.nav-item::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.nav-item:hover::after {
    width: 100%;
}
@media (max-width: 768px) {
    .nav-item {
        transform: scale(1.20);     /* mobile me bada dikhayega */
        transform-origin: center;
        display: inline-block;
    }
}
.btn-gold {
    text-decoration: none;
    background-color: var(--gold);
    color: white;
    padding: 12px 24px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    border: 1px solid var(--gold);
}

.btn-gold:hover {
    background-color: transparent;
    color: var(--gold);
}

/* Moon Widget */
.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.moon-widget {
    display: flex;
    align-items: center;
    gap: 12px;
}

.moon-info {
    text-align: right;
    line-height: 1;
}

.phase-label {
    display: block;
    font-size: 0.55rem;
    color: var(--sage);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.phase-name {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gold);
}
@media (max-width: 768px) {
    .phase-label {
        font-size: 0.36rem;
        letter-spacing: 0.4px;
    }

    .phase-name {
        font-size: 0.48rem;
        font-weight: 500;
    }

    .moon-icon {
        width: 22px;
        height: 22px;
    }
}

/* Mobile Toggle */
/* --- Ultra-Symmetric Menu Toggle --- */

.menu-toggle {
    position: relative;
    width: 28px;
    height: 28px; /* Square box for perfect rotation */
    display: none; 
    align-items: center;
    justify-content: center;
    z-index: 1100;
    background: transparent !important;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 0;
}

/* Bars ko absolute position dena taaki wo center mein align hon */
.bar {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--teal);
    transition: transform 0.5s cubic-bezier(0.7, 0, 0.3, 1), background-color 0.3s ease;
    border-radius: 4px;
}

/* Pehli bar: Thoda upar */
.bar:nth-child(1) {
    transform: translateY(-5px);
}

/* Dusri bar: Thoda niche */
.bar:nth-child(2) {
    transform: translateY(5px);
}

/* --- ACTIVE STATE (The Perfect X) --- */

.menu-toggle.active .bar {
    background-color: var(--gold); /* Overlay par color change */
}

/* Dono bars ko center (0) pe laake rotate karna */
.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(0) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
    transform: translateY(0) rotate(-45deg);
}

/* Mobile responsive */
@media (max-width: 1024px) {
    .menu-toggle {
        display: flex;
    }
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: var(--teal);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    z-index: 999;
}

.mobile-links {
    list-style: none;
    text-align: center;
}

.mobile-links li {
    margin: 25px 0;
    opacity: 0;
}

.mobile-links a {
    font-family: 'Cinzel Decorative';
    font-size: 2rem;
    color: var(--ivory);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
}

:root {
    --gold: #C9A24D;
    --ivory: #FAF9F6;
    --teal: #10383A;
    --sage: #666E51;
}

.hero-celestial {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at center, #ffffff 0%, var(--ivory) 100%);
    overflow: hidden;
    padding: 80px 4%; 
background: transparent;
}


/* --- 2. Background Chakra --- */
.chakra-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

.zodiac-chakra {
    width: 80vh;
    height: 80vh;
    background: url('img/astrology-zodiac-signs-circular-illustration-png.png') no-repeat center;
    background-size: contain;
    opacity: 0.15;
    filter: blur(2px) sepia(100%) saturate(200%) hue-rotate(10deg);
    animation: rotateChakra 180s linear infinite;
}

@keyframes rotateChakra {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* --- 3 & 4. Grid & Portraits --- */
/* --- Desktop Layout (Default) --- */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    grid-template-areas: "husband content wife"; /* Named areas for total control */
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.husband { grid-area: husband; }
.content-zone { grid-area: content; }
.wife { grid-area: wife; }

/* --- Mobile Layout Fix --- */
@media (max-width: 1024px) {
    .hero-celestial {
        padding-top: 140px; /* Space for Navbar */
        padding-bottom: 60px;
        align-items: flex-start;
    }

    .hero-grid {
        grid-template-columns: 1fr 1fr; /* 2 columns for images */
        grid-template-areas: 
            "content content"   /* Text takes full width on top */
            "husband wife";     /* Images stay side-by-side below */
        gap: 40px 10px;
    }

    .content-zone {
        margin-bottom: 20px;
    }

    .hero-h1 {
        font-size: 2.4rem;
        line-height: 1.2;
    }

    .portrait-frame {
        width: 130px;
        height: 170px;
        border-radius: 65px;
        margin: 0 auto;
    }

    /* Husband aur Wife ko mobile pe thoda tilt karna styling ke liye */
    /*.husband { transform: rotate(-3deg); }
    .wife { transform: rotate(3deg); }*/

    .hero-btns {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .btn-gold-shimmer, .btn-outline {
        width: 100%;
        max-width: 280px;
    }
}

.portrait-zone {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.0s ease;
}

/*.portrait-zone.husband { transform: translateY(-20px); }
.portrait-zone.wife { transform: translateY(20px); }*/

.portrait-frame {
    position: relative;
    width: 240px;
    height: 340px;
    border-radius: 120px;
    border: 1px solid rgba(201, 162, 77, 0.3);
    padding: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.portrait-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 112px;
}

.aura-glow {
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    opacity: 0.2;
    z-index: -1;
    filter: blur(20px);
}

/* --- 5. Text Stack --- */
.content-zone { text-align: center; }

.hero-h1 {
    font-family: 'Cinzel Decorative', cursive;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--teal);
    line-height: 1.1;
    margin-bottom: 20px;
}

.glow-text {
    color: var(--gold);
    text-shadow: 0 0 20px rgba(201, 162, 77, 0.4);
}

.hero-p {
    color: var(--sage);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 40px;
}

/* --- 6. Beautiful Buttons --- */
.btn-gold-shimmer {
    background: var(--gold);
    color: #fff;
    padding: 16px 36px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(201, 162, 77, 0.2);
    margin-bottom: 12px;
}

.btn-gold-shimmer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-25deg);
    transition: 0.75s;
}

.btn-gold-shimmer:hover::before { left: 150%; }

/* --- 8. Mobile Adaptation --- */
/* PC/Desktop: Is wrapper ka asar khatam kar do */
@media (min-width: 1025px) {
    .portrait-row-mobile {
        display: contents; /* Grid areas automatically manage images */
    }
}

/* Mobile Fix: Images Side-by-Side */
@media (max-width: 1024px) {
    .hero-celestial {
        padding-top: 130px; /* Navbar se gap */
    }

    .hero-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .portrait-row-mobile {
        display: flex; /* Images ko ek line mein layega */
        flex-direction: row; 
        justify-content: center;
        gap: 15px; /* Dono ke beech ka gap */
        width: 100%;
        margin-top: 20px;
    }

    .portrait-zone {
        flex: 1; /* Dono ko barabar jagah milegi */
        max-width: 150px;
    }

    .portrait-frame {
        width: 100%;
        height: 180px; /* Choti screen ke liye perfect height */
        border-radius: 70px;
    }

    .portrait-meta h3 {
        font-size: 0.85rem;
        margin-top: 8px;
    }
}
/* ============================
   FINAL MOBILE FIX (NO CONFLICT)
   ============================ */
@media (max-width: 1024px) {
    .hero-celestial {
        padding-top: 140px; /* navbar gap */
        padding-bottom: 60px;
        align-items: flex-start;
    }

    /* Keep GRID on mobile (DON'T switch to flex) */
    .hero-grid {
        display: grid;
        grid-template-columns: 1fr 1fr; /* 2 columns for portraits */
        grid-template-areas:
            "content content"     /* text full width */
            "husband wife";       /* portraits side-by-side */
        gap: 28px 14px;
        width: 100%;
    }

    .content-zone {
        margin-bottom: 10px;
    }

    .hero-h1 {
        font-size: 2.4rem;
        line-height: 1.2;
    }

    /* Portrait sizing for mobile */
    .portrait-frame {
        width: 140px;
        height: 180px;
        border-radius: 70px;
        margin: 0 auto;
    }

    /* Remove desktop translateY on mobile so they align properly */
  /* .portrait-zone.husband,
    .portrait-zone.wife {
        transform: none;
    }

    /* Optional slight tilt (keep it subtle & premium) */
   /* .portrait-zone.husband { transform: rotate(-2deg); }
    .portrait-zone.wife { transform: rotate(2deg); }

    /* Buttons stacked on mobile */
    .hero-btns {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 12px;
    }

    .btn-gold-shimmer,
    .btn-outline {
        width: 100%;
        max-width: 280px;
    }

    /* Meta text smaller */
    .portrait-meta h3 {
        font-size: 0.9rem;
        margin-top: 10px;
    }

    .portrait-meta span {
        font-size: 0.78rem;
    }
}
:root {
    --gold: #C9A24D;
    --ivory: #FAF9F6;
    --teal: #10383A;
    --sage: #666E51;
}

/* ===============================
   ACTION STRIP (UPGRADED)
   =============================== */
.action-strip {
    position: relative;
    background-color: var(--ivory);
    padding: 120px 5%;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

/* Background decor must NOT block clicks */
.strip-bg-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

/* Mandala: softer + more premium */
.zodiac-mandala-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(900px, 95vw);
    height: min(900px, 95vw);
    transform: translate(-50%, -50%);
    background: url('img/tarot-psychic-reading-playing-card-energy-energy-removebg-preview.png') no-repeat center;
    background-size: contain;
    opacity: 0.045;
    filter: blur(1.5px) sepia(100%) saturate(180%) hue-rotate(8deg);
}

/* Soft cosmic auras */
.sharp-aura {
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(201, 162, 77, 0.18) 0%, transparent 70%);
    filter: blur(90px);
    opacity: 0.9;
}

.aura-1 { top: -8%; left: -6%; }
.aura-2 { bottom: -10%; right: -6%; }

/* ===============================
   CONTAINER
   =============================== */
.action-container {
    position: relative;
    z-index: 10;
    max-width: 1300px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ===============================
   CARD (PREMIUM GLASS)
   =============================== */
.action-card{
  position: relative;
  border-radius: 28px;
  padding: 62px 44px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;

  /* ✅ Premium teal-ivory glass */
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(201,162,77,0.14), transparent 55%),
    radial-gradient(120% 90% at 0% 100%, rgba(16,56,58,0.16), transparent 55%),
    linear-gradient(180deg, rgba(250,249,246,0.92), rgba(236,232,224,0.86));

  backdrop-filter: blur(18px);
  border: 1px solid rgba(16,56,58,0.10);

  box-shadow:
    0 30px 80px rgba(16,56,58,0.16),
    inset 0 1px 0 rgba(255,255,255,0.55);

  transition: transform .6s cubic-bezier(.19,1,.22,1),
              box-shadow .6s cubic-bezier(.19,1,.22,1);
  will-change: transform;
}

.action-card:hover{
  transform: translateY(-14px) scale(1.02);
  box-shadow:
    0 45px 120px rgba(16,56,58,0.26),
    0 0 0 1px rgba(201,162,77,0.22),
    inset 0 1px 0 rgba(255,255,255,0.65);
}


/* ===============================
   NEW: ENERGY RING (UNIQUE)
   =============================== */
.card-energy-ring {
    position: absolute;
    inset: -1px;
    border-radius: 24px;
    background: conic-gradient(
        from 0deg,
        transparent,
        rgba(201, 162, 77, 0.28),
        transparent,
        rgba(201, 162, 77, 0.18),
        transparent
    );
    opacity: 0;
    filter: blur(7px);
    pointer-events: none;
    transition: opacity 0.6s ease;
    animation: spinRing 7s linear infinite;
}

@keyframes spinRing {
    to { transform: rotate(360deg); }
}

/* Luxury Shine Overlay */
.glass-shine {
    position: absolute;
    inset: 0;
    border-radius: 22px;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.45) 0%,
        rgba(255,255,255,0.1) 30%,
        transparent 55%,
        rgba(201,162,77,0.08) 100%
    );
    opacity: 0;
    pointer-events: none;
    transition: 0.7s ease;
}

/* Hover: lift + glow */
.action-card:hover {
    transform: translateY(-14px);
    border-color: rgba(201, 162, 77, 0.55);
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 22px 60px rgba(201, 162, 77, 0.12);
}

.action-card:hover .glass-shine { opacity: 1; }
.action-card:hover .card-energy-ring { opacity: 1; }

/* ===============================
   ICON (CINEMATIC)
   =============================== */
.action-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 26px;
    display: grid;
    place-items: center;
    position: relative;
}

/* soft icon glow behind */
.action-icon::before {
    content: "";
    position: absolute;
    inset: -18px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(201,162,77,0.25) 0%, transparent 65%);
    filter: blur(10px);
    opacity: 0.55;
    pointer-events: none;
}

.action-icon svg {
    width: 100%;
    height: 100%;
    transition: transform 0.65s ease, filter 0.65s ease;
}

.action-card:hover .action-icon svg {
    transform: rotate(10deg) scale(1.12);
    filter: drop-shadow(0 0 10px rgba(201,162,77,0.55));
}

/* ===============================
   TEXT
   =============================== */
.tenor-font {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 1.55rem;
    color: var(--teal);
    margin-bottom: 12px;
    letter-spacing: 0.2px;
}

.jost-font {
    font-family: 'Jost', sans-serif;
    color: var(--sage);
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 320px;
}

/* ===============================
   CTA (ENERGY UNDERLINE)
   =============================== */
.action-cta {
    position: relative;
    z-index: 20;
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.35s ease;
    padding: 6px 10px;
}

/* underline wave */
.action-cta::after {
    content: "";
    position: absolute;
    left: 10%;
    bottom: 0px;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.45s ease;
    opacity: 0.9;
}

.action-card:hover .action-cta::after {
    transform: scaleX(1);
}

.action-cta:hover {
    color: var(--teal);
    letter-spacing: 2px;
}

/* ===============================
   RESPONSIVE
   =============================== */
@media (max-width: 1024px) {
    .action-strip {
        padding: 70px 20px;
    }

    .action-container {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .action-card {
        padding: 44px 26px;
    }

    .zodiac-mandala-bg {
        width: 520px;
        height: 520px;
        opacity: 0.035;
    }

    .sharp-aura {
        width: 320px;
        height: 320px;
        filter: blur(80px);
    }
}

/* Mobile performance safety */
@media (max-width: 768px) {
    .card-energy-ring { display: none; } /* keep smooth on phones */
    .action-card { transform: none; }
}
.about-us {
    background-color: #FAF9F6;
    padding: 120px 8%;
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr; /* 60/40 Split */
    gap: 80px;
    align-items: center;
}

/* --- Left Side Styling --- */
.sub-heading-gold {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.cinzel-heading {
    font-family: 'Cinzel Decorative', cursive;
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    color: var(--teal);
    line-height: 1.1;
    margin-bottom: 40px;
}

.narrative-body p {
    font-family: 'Montserrat', sans-serif;
    color: var(--sage);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    max-width: 600px;
}

.founder-branding {
    margin-top: 50px;
    display: flex;
    gap: 40px;
}

.founder-item {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    color: var(--teal);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.gold-dot {
    width: 8px;
    height: 8px;
    background-color: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold);
}

/* --- Right Side: Floating Frame --- */
.about-visual {
    display: flex;
    justify-content: center;
}

.floating-glass-frame {
    position: relative;
    width: 100%;
    max-width: 450px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(201, 162, 77, 0.2);
    border-radius: 300px 300px 20px 20px; /* Elegant arched top */
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.05);
}

.frame-inner {
    position: relative;
    overflow: hidden;
    border-radius: 285px 285px 15px 15px;
    aspect-ratio: 4/5;
}

.founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(0.2) contrast(1.1); /* Subtle artistic filter */
}

.frame-halo {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    opacity: 0.3;
}

/* --- Responsive Stacking --- */
@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }
    
    .narrative-body p { margin: 0 auto 25px; }
    
    .founder-branding {
        justify-content: center;
        flex-direction: column;
        gap: 20px;
    }
}
/* ==============================
   ABOUT SECTION BACKGROUND ONLY
   (NO HTML CHANGE REQUIRED)
   ============================== */

.about-us {
    position: relative;
    overflow: hidden;
}

/* Zodiac Mandala */
.about-us::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 900px;
    height: 900px;
    transform: translate(-50%, -50%);
    background: url("https://royaltyfreefootages.com/upload/video/Astrology%20Zodiac%20wheel%20png,%20Zodiac%20wheel%20png%20image,%20Zodiac%20sign%20wheel%20transparent%20png%20images%20download_1658935620.png") no-repeat center;
    background-size: contain;
    opacity: 0.055;
    filter: blur(2.2px) sepia(100%) saturate(180%) hue-rotate(8deg);
    animation: aboutMandalaRotate 180s linear infinite;
    pointer-events: none;
    z-index: 0;
}

/* Glowing Stars Layer */
.about-us::after {
    content: "";
    position: absolute;
    inset: -20%;
    background-image:
        radial-gradient(1px 1px at 10% 20%, rgba(201,162,77,0.65), transparent 55%),
        radial-gradient(1px 1px at 25% 70%, rgba(16,56,58,0.25), transparent 55%),
        radial-gradient(1.2px 1.2px at 45% 35%, rgba(201,162,77,0.55), transparent 55%),
        radial-gradient(1px 1px at 60% 60%, rgba(201,162,77,0.75), transparent 55%),
        radial-gradient(1px 1px at 75% 15%, rgba(16,56,58,0.22), transparent 55%),
        radial-gradient(1.2px 1.2px at 85% 80%, rgba(201,162,77,0.60), transparent 55%),
        radial-gradient(1px 1px at 35% 50%, rgba(201,162,77,0.45), transparent 55%);
    opacity: 0.7;
    animation: aboutStarsDrift 22s linear infinite, aboutStarsTwinkle 4.5s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

/* Keep all content above background */
.about-us > * {
    position: relative;
    z-index: 2;
}

/* Animations */
@keyframes aboutMandalaRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to   { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes aboutStarsDrift {
    from { transform: translate(0, 0); }
    to   { transform: translate(-30px, 20px); }
}

@keyframes aboutStarsTwinkle {
    0%, 100% { opacity: 0.55; }
    50% { opacity: 0.95; }
}

/* Mobile Optimization */
@media (max-width: 1024px) {
    .about-us::before {
        width: 520px;
        height: 520px;
        opacity: 0.045;
    }
    .about-us::after {
        opacity: 0.55;
    }
}
/* ==============================
   ASTRO SERVICES – THEME BENTO
   ============================== */

.astro-services{
  background: var(--ivory);
  padding: 120px 6%;
  position: relative;
  overflow: hidden;
}

.services-wrap{
  max-width: 1400px;
  margin: 0 auto;
}

.services-head{
  text-align: center;
  margin-bottom: 48px;
}

.services-sub{
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: .85rem;
  margin-bottom: 14px;
}

.services-title{
  font-family: 'Cinzel Decorative', cursive;
  color: var(--teal);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.12;
  margin-bottom: 14px;
}

.services-desc{
  font-family: 'Montserrat', sans-serif;
  color: var(--sage);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 1.05rem;
}

/* Bento grid */
.bento-grid{
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(12, 1fr);
}

/* Card base */
.service-card{
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 26px 24px;
  border-radius: 22px;

  background: rgba(255,255,255,.45);
  backdrop-filter: blur(22px);
  border: 1px solid rgba(201,162,77,.16);
  box-shadow: 0 18px 55px rgba(16,56,58,.06);

  transition: transform .55s cubic-bezier(.19,1,.22,1),
              border-color .55s cubic-bezier(.19,1,.22,1),
              background .55s cubic-bezier(.19,1,.22,1);
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
}

/* Sizing */
.card-lg,
.card-md,
.card-sm{
    grid-column: span 4;   /* sab same width */
    min-height: 220px;    /* sab same height */
}


/* Top row inside */
.service-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.service-icon{
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--gold);
  opacity: .95;
}

.service-tag{
  font-family: 'Syne', sans-serif;
  font-size: .75rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(16,56,58,.06);
  border: 1px solid rgba(201,162,77,.18);
  padding: 8px 12px;
  border-radius: 999px;
}

.service-name{
  font-family: 'Tenor Sans', sans-serif;
  color: var(--teal);
  font-size: 1.35rem;
  line-height: 1.25;
  margin: 0;
}

.card-lg .service-name{ font-size: 1.55rem; }
.card-sm .service-name{ font-size: 1.2rem; }

.service-copy{
  font-family: 'Montserrat', sans-serif;
  color: var(--sage);
  line-height: 1.75;
  margin: 0;
  max-width: 52ch;
}

.service-cta{
  margin-top: auto;
  font-family: 'Syne', sans-serif;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-size: .82rem;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

/* CTA energy underline */
.service-cta::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:100%;
  height:1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .45s ease;
  opacity: .9;
}

/* Zodiac watermark per service */
.service-wm{
  position: absolute;
  inset: 0;
  opacity: 0.06;
  filter: blur(1px);
  transform: scale(1.05);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 70%;
  pointer-events: none;
  z-index: 0;
}

/* Use different watermark per card (simple but effective) */
.tarot .service-wm{ background-image: url("img/tarot-psychic-reading-playing-card-energy-energy-removebg-preview.png"); }
.astrology .service-wm{ background-image: url("img/Horoscope-circle-Zodiac-signs-Astrolog-Graphics-70483386-1-removebg-preview.png"); }
.numerology .service-wm{ background-image: url("img/pngtree-decorative-floral-number-9-on-transparent-background-png-image_14214920.png"); }
.vastu .service-wm{ background-image: url("img/images (1).jpg"); }
.moksha .service-wm{ background-image: url("https://png.pngtree.com/png-vector/20250228/ourmid/pngtree-om-symbol-in-orange-and-brown-gradient-png-image_15605182.png"); }
.candle .service-wm{ background-image: url("https://m.media-amazon.com/images/I/71NghPAkaWL._AC_UF350,350_QL80_.jpg"); }
.chakra .service-wm{ background-image: url("img/unnamed-removebg-preview (1).png"); }
.crystals .service-wm{ background-image: url("img/5ab8403e1ff8aac0ecd21c91447afb0f-removebg-preview.png"); }
.coach .service-wm{ background-image: url(""); }
.oil .service-wm{ background-image: url(""); }

/* Active Border (light trace) */
.active-border{
  position: absolute;
  inset: 0;
  border-radius: 22px;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  background:
    conic-gradient(
      from 0deg,
      transparent 0 55%,
      rgba(201,162,77,.9) 60%,
      transparent 70% 100%
    );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1px; /* 1px perimeter */
  filter: blur(.2px);
  animation: borderTrace 2.8s linear infinite;
}

@keyframes borderTrace{
  to { transform: rotate(360deg); }
}

/* Hover / focus */
.service-card:hover,
.service-card:focus-visible{
  transform: translateY(-10px);
  border-color: rgba(201,162,77,.55);
  background: rgba(255,255,255,.62);
  outline: none;
}

.service-card:hover .active-border,
.service-card:focus-visible .active-border{
  opacity: 1;
}

.service-card:hover .service-cta::after,
.service-card:focus-visible .service-cta::after{
  transform: scaleX(1);
}

/* Icon micro motion */
.moon-icon .moon-fill{
  transform-origin: 24px 24px;
  animation: moonPulse 2.8s ease-in-out infinite;
}
@keyframes moonPulse{
  0%,100%{ opacity: .18; transform: scale(1); }
  50%{ opacity: .35; transform: scale(1.05); }
}

.orbit-icon .orbit-dot{
  transform-origin: 24px 24px;
  animation: orbitDot 2.6s linear infinite;
}
@keyframes orbitDot{
  to{ transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 1024px){
  .astro-services{ padding: 90px 20px; }

  .bento-grid{
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* “popular” appears larger */
  .card-lg, .card-md, .card-sm{
    grid-column: auto;
    min-height: auto;
    padding: 24px 20px;
  }

  .service-wm{ background-size: 85%; }
}
/* ==============================
   ACHIEVEMENTS – TIMELINE GALLERY
   Prestige: Ivory + Gold only
   ============================== */

.achievements{
  background: var(--ivory);
  padding: 120px 6%;
  position: relative;
  overflow: hidden;
}

.achievements-wrap{
  max-width: 1400px;
  margin: 0 auto;
}

.ach-head{
  text-align: center;
  margin-bottom: 44px;
}

.ach-sub{
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: .85rem;
  margin-bottom: 14px;
}

.ach-title{
  font-family: 'Cinzel Decorative', cursive;
  color: #0f2f30; /* deep teal variant but still “prestige” */
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.12;
  margin-bottom: 12px;
}

.ach-desc{
  font-family: 'Montserrat', sans-serif;
  color: rgba(16,56,58,.7);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Timeline container */
.ach-timeline{
  position: relative;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
}

.ach-track{
  display: flex;
  gap: 18px;
  min-width: max-content;
  padding: 8px 2px 18px;
}

/* Card */
.ach-card{
  position: relative;
  scroll-snap-align: start;
  width: min(430px, 86vw);
  height: 250px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(201,162,77,.22);
  background: rgba(255,255,255,.35);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 55px rgba(16,56,58,.06);
  transition: transform .55s cubic-bezier(.19,1,.22,1),
              border-color .55s cubic-bezier(.19,1,.22,1);
}

.ach-card:hover{
  transform: translateY(-10px);
  border-color: rgba(201,162,77,.55);
}

/* Big outlined year in background (Syne) */
.ach-year-bg{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: 'Syne', sans-serif;
  font-size: clamp(5.2rem, 8vw, 7.4rem);
  font-weight: 800;
  letter-spacing: 2px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,162,77,.35);
  opacity: .8;
  transform: translateY(8px);
  pointer-events: none;
}

/* Glass content overlay */
.ach-glass{
  position: absolute;
  inset: 0;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  background:
    linear-gradient(180deg, rgba(250,249,246,.0) 0%, rgba(250,249,246,.75) 55%, rgba(250,249,246,.92) 100%);
}

.ach-top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 4px;
}

.ach-pill{
  font-family: 'Syne', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: .75rem;
  color: rgba(16,56,58,.85);
  background: rgba(201,162,77,.08);
  border: 1px solid rgba(201,162,77,.22);
  padding: 8px 12px;
  border-radius: 999px;
}

/* “Gold accent moves” dot (animated via JS/GSAP) */
.ach-highlight-dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(201,162,77,.75);
  opacity: .35; /* only active one becomes 1 */
}

/* Typography */
.ach-award{
  font-family: 'Tenor Sans', sans-serif;
  color: rgba(16,56,58,.95);
  font-size: 1.35rem;
  line-height: 1.25;
  margin: 0;
}

.ach-meta{
  font-family: 'Montserrat', sans-serif;
  color: rgba(16,56,58,.65);
  line-height: 1.6;
  margin: 0;
}

/* Swipe hint */
.ach-swipe-hint{
  margin-top: 14px;
  text-align: center;
  font-family: 'Syne', sans-serif;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-size: .72rem;
  color: rgba(16,56,58,.55);
}

/* Mobile – allow vertical list feel if desired */
@media (max-width: 768px){
  .achievements{ padding: 90px 20px; }
  .ach-track{ gap: 14px; }
  .ach-card{ height: 240px; }
}
.clients-base{
  background: var(--ivory);
  padding: 120px 6%;
  overflow: hidden;
}

.clients-wrap{ max-width: 1400px; margin: 0 auto; }

.clients-head{ text-align: center; margin-bottom: 50px; }
.clients-sub{
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: .85rem;
  margin-bottom: 12px;
}
.clients-title{
  font-family: 'Cinzel Decorative', cursive;
  color: var(--teal);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 10px;
}
.clients-desc{
  font-family: 'Montserrat', sans-serif;
  color: var(--sage);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Counters */
.clients-counters{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.counter-card{
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(18px);
  border-radius: 20px;
  padding: 28px 20px;
  border: 1px solid rgba(201,162,77,0.18);
  text-align: center;
}
.syne-num{
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem,3.5vw,2.8rem);
  color: var(--teal);
  font-weight: 800;
}
.counter-label{
  margin-top: 8px;
  font-family: 'Montserrat', sans-serif;
  color: var(--sage);
}

/* Map Stage */
.map-stage{
  position: relative;
  background: rgba(255,255,255,0.30);
  backdrop-filter: blur(15px);
  border-radius: 28px;
  padding: 28px;
  border: 1px solid rgba(201,162,77,0.15);
  overflow: hidden;
}

/* Map always visible (PC + Mobile) */
.world-map{
  height: 420px;
  background: url("https://upload.wikimedia.org/wikipedia/commons/thumb/8/80/World_map_-_low_resolution.svg/1920px-World_map_-_low_resolution.svg.png") no-repeat center;
  background-size: contain;
  opacity: 0.12;
  filter: grayscale(100%);
}

/* Pins */
.map-pin{
  position: absolute;
  transform: translate(-50%, -50%);
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 5;
}

/* Dot + aura */
.pin-dot{
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(201,162,77,.85);
  position: relative;
  animation: pinPulse 2.3s ease-in-out infinite;
}
.pin-dot::after{
  content:"";
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,77,.22), transparent 65%);
  filter: blur(5px);
  opacity: .9;
  animation: auraWave 2.3s ease-in-out infinite;
}

/* Labels */
.pin-label{
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Syne', sans-serif;
  font-size: .78rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(250,249,246,0.72);
  border: 1px solid rgba(201,162,77,0.28);
  padding: 8px 12px;
  border-radius: 999px;
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: .35s ease;
  white-space: nowrap;
}

/* On hover/focus show label */
.map-pin:hover .pin-label,
.map-pin:focus-visible .pin-label{
  opacity: 1;
  transform: translateX(-50%) translateY(-6px);
}

/* Mobile: always show labels (so user understands) */
@media (max-width: 768px){
  .pin-label{
    opacity: 1;
    top: -38px;
    font-size: .72rem;
    padding: 7px 10px;
  }
  .world-map{ height: 300px; }
  .map-stage{ padding: 18px; }
}

/* Pin Animations */
@keyframes pinPulse{
  0%,100%{ transform: scale(1); opacity: .75; }
  50%{ transform: scale(1.35); opacity: 1; }
}
@keyframes auraWave{
  0%,100%{ transform: scale(.75); opacity: .55; }
  50%{ transform: scale(1.05); opacity: 1; }
}

/* Pin Positions (approx, adjust if needed) */
.pin-india{ top: 58%; left: 64%; }
.pin-uae{ top: 54%; left: 60%; }
.pin-uk{ top: 35%; left: 46%; }
.pin-usa{ top: 42%; left: 22%; }
.pin-canada{ top: 30%; left: 20%; }
.pin-aus{ top: 75%; left: 82%; }

/* Responsive counters */
@media(max-width:1024px){
  .clients-counters{ grid-template-columns:1fr; }
}
/* Map Stage - Clean */
.map-stage.map-clean{
  position: relative;
  background: rgba(255,255,255,0.30);
  backdrop-filter: blur(15px);
  border-radius: 28px;
  padding: 28px;
  border: 1px solid rgba(201,162,77,0.15);
  overflow: hidden;
}

/* Map stays same as you wanted */
.map-stage.map-clean .world-map{
  height: 420px;
  background: url("img/World_map_-_low_resolution.png") no-repeat center;
  background-size: contain;   /* keep same */
  opacity: 0.12;
  filter: grayscale(100%);
}

/* Country panel */
.country-panel{
  margin-top: 18px;
  padding: 18px 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.45);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(201,162,77,0.16);
  box-shadow: 0 16px 45px rgba(16,56,58,0.06);
  position: relative;
  overflow: hidden;
}

/* subtle luxury shine line */
.country-panel::before{
  content:"";
  position:absolute;
  top:-60%;
  left:-40%;
  width: 65%;
  height: 220%;
  background: linear-gradient(120deg, transparent 0%, rgba(201,162,77,0.10) 35%, transparent 70%);
  transform: rotate(18deg);
  opacity: .55;
  pointer-events:none;
  animation: panelSheen 8s linear infinite;
}

@keyframes panelSheen{
  0%{ transform: translateX(-20%) rotate(18deg); }
  100%{ transform: translateX(120%) rotate(18deg); }
}

.country-panel-top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.country-title{
  font-family: 'Tenor Sans', sans-serif;
  color: var(--teal);
  font-size: 1.25rem;
  margin: 0;
}

.country-badge{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(201,162,77,0.10);
  border: 1px solid rgba(201,162,77,0.22);
}

.badge-dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(201,162,77,0.65);
  animation: badgePulse 2.2s ease-in-out infinite;
}

@keyframes badgePulse{
  0%,100%{ transform: scale(1); opacity: .7; }
  50%{ transform: scale(1.4); opacity: 1; }
}

.badge-text{
  font-family: 'Syne', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: .72rem;
  color: var(--teal);
}

/* Country tags */
.country-tags{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
}

.c-tag{
  font-family: 'Syne', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: .78rem;
  color: var(--teal);

  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(250,249,246,0.85);
  border: 1px solid rgba(201,162,77,0.22);

  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
  will-change: transform;
}

.c-tag:hover{
  transform: translateY(-6px);
  border-color: rgba(201,162,77,0.55);
  box-shadow: 0 12px 26px rgba(201,162,77,0.16);
}

/* note */
.country-note{
  margin-top: 14px;
  display:flex;
  align-items:flex-start;
  gap: 12px;
}

.note-line{
  width: 3px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(180deg, var(--gold), transparent);
  margin-top: 4px;
}

.country-note p{
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--sage);
  line-height: 1.7;
  font-size: .98rem;
}

/* Responsive */
@media (max-width: 768px){
  .map-stage.map-clean{ padding: 16px; }
  .map-stage.map-clean .world-map{ height: 260px; }
  .country-panel-top{ flex-direction: column; align-items: flex-start; }
}
/* ==============================
   6) WHAT WE ADDRESS
   ============================== */
.we-address{
  background: var(--ivory);
  padding: 120px 6%;
  position: relative;
  overflow: hidden;
}

.wa-wrap{ max-width: 1400px; margin: 0 auto; }

.wa-head{ text-align: center; margin-bottom: 34px; }
.wa-sub{
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: .85rem;
  margin-bottom: 12px;
}
.wa-title{
  font-family: 'Cinzel Decorative', cursive;
  color: var(--teal);
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  margin-bottom: 10px;
}
.wa-desc{
  font-family: 'Montserrat', sans-serif;
  color: var(--sage);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Cloud container */
.wa-cloud{
  position: relative;
  margin: 40px auto 0;
  width: min(1100px, 100%);
  min-height: 340px;

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;

  gap: 14px;
  padding: 24px;

  border-radius: 26px;
  background: rgba(255,255,255,0.30);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(201,162,77,0.12);
  overflow: hidden;
}

/* subtle zen aura behind */
.wa-cloud::before{
  content:"";
  position:absolute;
  inset:-40%;
  background:
    radial-gradient(circle at 30% 30%, rgba(201,162,77,0.10), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(16,56,58,0.06), transparent 55%);
  filter: blur(30px);
  pointer-events:none;
}

/* pill base */
.wa-pill{
  position: relative;
  z-index: 2;

  border: 1px solid rgba(201,162,77,0.35);
  background: rgba(250,249,246,0.88);
  color: var(--sage);

  font-family: 'Syne', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.4px;

  border-radius: 999px;
  cursor: pointer;

  transition: transform .35s ease, box-shadow .35s ease, opacity .35s ease, border-color .35s ease;
  box-shadow: 0 10px 28px rgba(16,56,58,0.06);
  will-change: transform;

  /* floating feel */
  animation: waFloat 6s ease-in-out infinite;
}

/* varied weights */
.wa-xl,
.wa-lg,
.wa-md,
.wa-sm{
  font-size: 0.82rem;
  padding: 12px 16px;
}


@keyframes waFloat{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-6px); }
}

/* focus state (hovered pill glows, others dim) */
.wa-cloud.is-focus .wa-pill{ opacity: .45; }
.wa-cloud.is-focus .wa-pill.is-active{ opacity: 1; }

.wa-pill:hover,
.wa-pill:focus-visible{
  transform: translateY(-8px) scale(1.05);
  border-color: rgba(201,162,77,0.75);
  box-shadow: 0 18px 40px rgba(201,162,77,0.18);
  outline: none;
}

/* extra glow ring */
.wa-pill::after{
  content:"";
  position:absolute;
  inset:-12px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(201,162,77,0.14), transparent 65%);
  opacity: 0;
  transition: .35s ease;
  filter: blur(4px);
  pointer-events:none;
}
.wa-pill:hover::after,
.wa-pill:focus-visible::after{
  opacity: 1;
}

.wa-footnote{
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 12px;
  align-items: center;
}
.wa-line{
  width: 38px;
  height: 2px;
  background: rgba(201,162,77,0.55);
  border-radius: 99px;
}
.wa-footnote p{
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--sage);
}

/* Mobile: 2-column list, easy touch */
@media (max-width: 768px){
  .we-address{ padding: 90px 20px; }

  .wa-cloud{
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 18px;
  }

  .wa-pill{
    width: 100%;
    text-align: center;
    animation: none; /* stable touch */
  }

  .wa-xl,.wa-lg,.wa-md,.wa-sm{
    font-size: .76rem;
    padding: 12px 10px;
  }
}


/* ==============================
   7) OUR BELIEF
   ============================== */
.our-belief{
  background: var(--ivory);
  padding: 120px 6%;
  position: relative;
  overflow: hidden;
}

.ob-wrap{ max-width: 1400px; margin: 0 auto; }

.ob-head{ text-align: center; margin-bottom: 38px; }
.ob-sub{
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: .85rem;
  margin-bottom: 12px;
}
.ob-title{
  font-family: 'Cinzel Decorative', cursive;
  color: var(--teal);
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  margin-bottom: 10px;
}
.ob-desc{
  font-family: 'Montserrat', sans-serif;
  color: var(--sage);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.8;
}

/* belief cards */
.ob-grid{
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.ob-card{
  position: relative;
  border-radius: 22px;
  padding: 28px 22px;

  background: rgba(255,255,255,0.42);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(201,162,77,0.14);
  box-shadow: 0 18px 55px rgba(16,56,58,0.06);

  transition: transform .45s cubic-bezier(.19,1,.22,1), border-color .45s;
  overflow: hidden;
}

.ob-card:hover{
  transform: translateY(-10px);
  border-color: rgba(201,162,77,0.55);
}

/* orbit ring (unique + subtle) */
.ob-orbit{
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid rgba(201,162,77,0.35);
  opacity: .55;
  animation: orbitSpin 16s linear infinite;
}
.ob-orbit::after{
  content:"";
  position:absolute;
  top: 10px;
  left: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 16px rgba(201,162,77,0.55);
}
@keyframes orbitSpin{
  from{ transform: rotate(0deg); }
  to{ transform: rotate(360deg); }
}

.ob-card h3{
  font-family: 'Tenor Sans', sans-serif;
  color: var(--teal);
  font-size: 1.25rem;
  margin: 0 0 10px;
}

.ob-card p{
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--sage);
  line-height: 1.8;
}

/* Responsive belief */
@media (max-width: 1024px){
  .ob-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px){
  .our-belief{ padding: 90px 20px; }
  .ob-grid{ grid-template-columns: 1fr; }
}
/* ==============================
   9) WHY US (Deep Teal Anchor)
   ============================== */
.why-us{
  position: relative;
  background: var(--teal); /* Deep Teal */
  padding: 120px 6%;
  overflow: hidden;
  color: rgba(250,249,246,0.92);
}

/* Parallax dust texture layer */
.why-dust{
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 15% 20%, rgba(201,162,77,0.10), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(201,162,77,0.08), transparent 60%),
    radial-gradient(circle at 40% 60%, rgba(250,249,246,0.06), transparent 55%);
  filter: blur(18px);
  opacity: .55;
  pointer-events: none;
  transform: translateY(0);
}

/* Optional: faint zodiac watermark */
.why-us::before{
  content:"";
  position:absolute;
  top: 50%;
  left: 50%;
  width: min(900px, 85vw);
  height: min(900px, 85vw);
  transform: translate(-50%,-50%);
  background: url('img/tarot-psychic-reading-playing-card-energy-energy-removebg-preview.png') no-repeat center;
  background-size: contain;
  opacity: 0.05;
  filter: sepia(100%) saturate(180%) hue-rotate(10deg);
  pointer-events:none;
}

.why-wrap{
  position: relative;
  z-index: 5;
  max-width: 1400px;
  margin: 0 auto;
}

.why-head{
  text-align: center;
  margin-bottom: 46px;
}

.why-sub{
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 25px;
  margin-bottom: 12px;
}

.why-title{
  font-family: 'Cinzel Decorative', cursive;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.15;
  margin-bottom: 10px;
  color: rgba(250,249,246,0.96);
}

.why-desc{
  font-family: 'Montserrat', sans-serif;
  max-width: 760px;
  margin: 0 auto;
  color: rgba(250,249,246,0.78);
  line-height: 1.85;
}

/* Pillars - desktop row */
.why-pillars {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  justify-content: center;
}


/* Card style (glass on teal) */
.pillar{
  position: relative;
  padding: 26px 22px;
  border-radius: 22px;
  background: rgba(250,249,246,0.06);
  border: 1px solid rgba(201,162,77,0.16);
  backdrop-filter: blur(10px);
  transition: transform .45s cubic-bezier(.19,1,.22,1), border-color .45s, background .45s;
  overflow: hidden;
}

/* gold edge glow sweep */
.pillar::after{
  content:"";
  position:absolute;
  inset:-40%;
  background: radial-gradient(circle at 30% 30%, rgba(201,162,77,0.18), transparent 55%);
  opacity: 0;
  filter: blur(18px);
  transition: .45s ease;
  pointer-events:none;
}

.pillar:hover{
  transform: translateY(-10px);
  border-color: rgba(201,162,77,0.45);
  background: rgba(250,249,246,0.08);
}

.pillar:hover::after{ opacity: 1; }

.p-icon{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;

  color: var(--gold);
  background: rgba(201,162,77,0.10);
  border: 1px solid rgba(201,162,77,0.22);
}

.p-icon svg{ width: 22px; height: 22px; }

.pillar h3{
  font-family: 'Tenor Sans', sans-serif;
  font-size: 1.25rem;
  margin: 0 0 10px;
  color: rgba(250,249,246,0.96);
}

/* ✅ FIX: text breaking on mobile + safe wrapping everywhere */
.pillar p{
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: rgba(250,249,246,0.74);
  line-height: 1.8;
  word-break: normal;
  overflow-wrap: normal;
  white-space: normal;
  hyphens: none;
}

/* Mobile layout: icon left, text right */
/* ✅ FINAL MOBILE FIX (no glitch, no word-by-word breaks) */
@media (max-width: 1024px){
  .why-us{ padding: 90px 20px; }
  .why-pillars{ grid-template-columns: 1fr; }

  .pillar{
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr); /* ✅ IMPORTANT */
    gap: 14px;
    align-items: start;
  }

  .p-icon{ margin-bottom: 0; }

  /* ✅ wrapper (p-body) ko full width + shrink allow */
  .p-body{
    min-width: 0;
    width: 100%;
  }

  .p-body h3,
  .p-body p{
    max-width: 100%;
    width: 100%;
  }

  /* ✅ STOP weird line breaks completely */
  .p-body h3{
    margin: 2px 0 8px;
    line-height: 1.2;
    word-break: normal;
    overflow-wrap: normal;
    white-space: normal;
    hyphens: none;
  }

  .p-body p{
    line-height: 1.7;
    white-space: normal !important;
    word-break: keep-all !important;   /* ✅ never split words */
    overflow-wrap: normal !important;  /* ✅ no random breaks */
    hyphens: none !important;
  }
}
/* ==============================
   OUR STORY (Ivory + Gold + Animated Symbols)
   ============================== */
.our-story{
  position: relative;
  background: var(--ivory);
  padding: 120px 6%;
  overflow: hidden;
}

.story-wrap{
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.story-head{
  text-align: center;
  margin-bottom: 40px;
}

.story-sub{
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.story-title{
  position: relative;
  display: inline-block;
  color: var(--teal);
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 1.15;
  margin: 0;
}

.story-title-glow{
  position:absolute;
  left: 50%;
  top: 80%;
  transform: translateX(-50%);
  width: 220px;
  height: 24px;
  background: radial-gradient(circle, rgba(201,162,77,0.35), transparent 70%);
  filter: blur(10px);
  opacity: .7;
  pointer-events:none;
}

/* Layout */
.story-grid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* Paragraph */
.story-paragraph p{
  font-family: 'Montserrat', sans-serif;
  color: var(--sage);
  font-size: 1.08rem;
  line-height: 1.9;
  margin: 0;
  max-width: 720px;
}

/* Symbols */
.story-symbols{
  margin-top: 26px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.sym{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(201,162,77,0.20);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 40px rgba(16,56,58,0.05);
  color: var(--teal);
  transition: transform .35s ease, border-color .35s ease;
  animation: symFloat 6.5s ease-in-out infinite;
}

.sym:nth-child(2){ animation-duration: 7.3s; }
.sym:nth-child(3){ animation-duration: 8s; }

.sym svg{
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.sym span{
  font-family: 'Syne', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  font-size: .72rem;
  color: var(--teal);
  opacity: .9;
}

.sym:hover{
  transform: translateY(-6px);
  border-color: rgba(201,162,77,0.55);
}

@keyframes symFloat{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-6px); }
}

/* Right glass */
.story-visual{ display:flex; justify-content:center; }

.story-glass{
  position: relative;
  width: min(520px, 100%);
  border-radius: 28px;
  padding: 30px 26px;

  background: rgba(255,255,255,0.40);
  border: 1px solid rgba(201,162,77,0.16);
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 80px rgba(16,56,58,0.06);
  overflow: hidden;
}

.glass-sheen{
  position:absolute;
  inset:-60%;
  background: linear-gradient(120deg, transparent 0%, rgba(201,162,77,0.12) 35%, transparent 70%);
  transform: rotate(18deg);
  opacity: .6;
  pointer-events:none;
  animation: sheenMove 10s linear infinite;
}

@keyframes sheenMove{
  0%{ transform: translateX(-30%) rotate(18deg); }
  100%{ transform: translateX(120%) rotate(18deg); }
}

/* Sigil */
.sigil-wrap{
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
}

.sigil-ring{
  position:absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(201,162,77,0.35);
  box-shadow: 0 0 40px rgba(201,162,77,0.08);
  animation: ringSpin 22s linear infinite;
}

@keyframes ringSpin{
  from{ transform: rotate(0deg); }
  to{ transform: rotate(360deg); }
}

.sigil-core{
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,77,0.10), rgba(255,255,255,0.10) 55%, transparent 70%);
  border: 1px solid rgba(201,162,77,0.20);
  display: grid;
  place-items: center;
  color: var(--gold);
  animation: coreFloat 4.8s ease-in-out infinite;
}

@keyframes coreFloat{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-8px); }
}

.sigil-core svg{ width: 92px; height: 92px; }

/* Tagline */
.story-tagline{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  padding: 14px 14px;
  border-radius: 18px;
  background: rgba(250,249,246,0.65);
  border: 1px solid rgba(201,162,77,0.14);
}

.tag-dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 16px rgba(201,162,77,0.55);
  margin-top: 6px;
  animation: dotPulse 2.4s ease-in-out infinite;
}

@keyframes dotPulse{
  0%,100%{ transform: scale(1); opacity: .75; }
  50%{ transform: scale(1.35); opacity: 1; }
}

.story-tagline p{
  margin: 0;
  color: var(--teal);
  font-size: 1rem;
  line-height: 1.7;
}

/* Background decor */
.story-bg{
  position: absolute;
  inset: 0;
  pointer-events:none;
  z-index: 1;
}

.story-mandala{
  position:absolute;
  top: 50%;
  left: 50%;
  width: min(900px, 90vw);
  height: min(900px, 90vw);
  transform: translate(-50%,-50%);
  background: url('img/Zodiac wheel, Zodiac wheel png, Zodiac wheel png image, Zodiac wheel transparent png images download_1658935859.png') no-repeat center;
  background-size: contain;
  opacity: 0.06;
  filter: blur(1px) sepia(100%) saturate(180%) hue-rotate(10deg);
  animation: storyMandala 180s linear infinite;
}

@keyframes storyMandala{
  from{ transform: translate(-50%,-50%) rotate(0deg); }
  to{ transform: translate(-50%,-50%) rotate(360deg); }
}

.story-aura{
  position:absolute;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(201,162,77,0.12), transparent 65%);
  filter: blur(60px);
  opacity: .9;
}

.aura-left{ top: -12%; left: -10%; }
.aura-right{ bottom: -14%; right: -12%; }

.story-stars .star{
  position:absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(201,162,77,0.65);
  box-shadow: 0 0 14px rgba(201,162,77,0.35);
  opacity: .35;
  animation: starDrift 10s ease-in-out infinite;
}

.story-stars .s1{ top: 22%; left: 12%; }
.story-stars .s2{ top: 30%; left: 40%; animation-duration: 12s; }
.story-stars .s3{ top: 18%; left: 72%; animation-duration: 11s; }
.story-stars .s4{ top: 55%; left: 18%; animation-duration: 13s; }
.story-stars .s5{ top: 62%; left: 52%; animation-duration: 14s; }
.story-stars .s6{ top: 48%; left: 86%; animation-duration: 12.5s; }
.story-stars .s7{ top: 78%; left: 28%; animation-duration: 15s; }
.story-stars .s8{ top: 80%; left: 62%; animation-duration: 13.8s; }
.story-stars .s9{ top: 70%; left: 82%; animation-duration: 16s; }

@keyframes starDrift{
  0%,100%{ transform: translateY(0); opacity: .30; }
  50%{ transform: translateY(-10px); opacity: .55; }
}

/* Responsive */
@media (max-width: 1024px){
  .our-story{ padding: 90px 20px; }
  .story-grid{
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .story-paragraph p{ margin: 0 auto; }
  .story-symbols{ justify-content: center; }
  .story-glass{ margin: 0 auto; }
}

@media (max-width: 520px){
  .sigil-wrap{ width: 190px; height: 190px; }
  .sigil-core{ width: 132px; height: 132px; }
  .sigil-core svg{ width: 78px; height: 78px; }
}
/* =========================================================
   FORTE BLOCK (Updated to match WHY-US Deep Teal background)
   ========================================================= */

/* Section */
.forte-block{
  position: relative;
  padding: 110px 6%;
  overflow: hidden;
  background: var(--teal);              /* ✅ same as WHY-US */
  color: rgba(250,249,246,0.92);
  font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* Parallax dust layer (same vibe as WHY-US) */
.forte-block::after{
  content:"";
  position:absolute;
  inset:-20%;
  background:
    radial-gradient(circle at 15% 20%, rgba(201,162,77,0.10), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(201,162,77,0.08), transparent 60%),
    radial-gradient(circle at 40% 60%, rgba(250,249,246,0.06), transparent 55%);
  filter: blur(18px);
  opacity: .55;
  pointer-events:none;
  transform: translateY(0);
}

/* Zodiac watermark (same as WHY-US) */
.forte-block::before{
  content:"";
  position:absolute;
  top: 50%;
  left: 50%;
  width: min(900px, 85vw);
  height: min(900px, 85vw);
  transform: translate(-50%,-50%);
  background: url('img/cropped_circle_image (1).png') no-repeat center;
  background-size: contain;
  opacity: 0.05;
  filter: sepia(100%) saturate(180%) hue-rotate(10deg);
  pointer-events:none;
}

/* Wrap */
.forte-wrap{
  position: relative;
  z-index: 5;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

/* Card (glass on teal like WHY-US pillar) */
.forte-card{
  position: relative;
  border: 1px solid rgba(201,162,77,0.16);
  background: rgba(250,249,246,0.06);
  border-radius: 22px;
  padding: 22px 22px;
  backdrop-filter: blur(10px);
  box-shadow: 0 28px 80px rgba(0,0,0,0.18);
  overflow: hidden;
  transition: transform .45s cubic-bezier(.19,1,.22,1), border-color .45s, background .45s;
}

/* Soft gold glow sweep like WHY-US */
.forte-card::before{
  content:"";
  position:absolute;
  inset:-40%;
  background: radial-gradient(circle at 30% 30%, rgba(201,162,77,0.18), transparent 55%);
  opacity: 0;
  filter: blur(18px);
  transition: .45s ease;
  pointer-events:none;
}

.forte-card:hover{
  transform: translateY(-10px);
  border-color: rgba(201,162,77,0.45);
  background: rgba(250,249,246,0.08);
}

.forte-card:hover::before{ opacity: 1; }

/* Head */
.forte-head{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 12px;
}

.forte-bar{
  width: 52px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(201,162,77,0.95), rgba(201,162,77,0.70));
  box-shadow: 0 0 22px rgba(201,162,77,0.25);
  flex: 0 0 auto;
}

.forte-head h3{
  font-family: 'Tenor Sans', sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  margin: 0;
  color: rgba(250,249,246,0.96);
  text-transform: uppercase;
}

.forte-card p{
  margin: 0;
  line-height: 1.8;
  color: rgba(250,249,246,0.78);
  font-size: 15.5px;
}

/* Team box extra vibe */
.forte-team{ padding-bottom: 18px; }

.team-grid{
  margin-top: 14px;
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.team-col{
  position: relative;
  border: 1px solid rgba(201,162,77,0.14);
  border-radius: 18px;
  background: rgba(250,249,246,0.05);
  backdrop-filter: blur(10px);
  padding: 14px;
  overflow: hidden;
  transition: transform .45s cubic-bezier(.19,1,.22,1), border-color .45s, background .45s;
}

/* subtle gold aura inside team box */
.team-col::after{
  content:"";
  position:absolute;
  inset:-50%;
  background: radial-gradient(circle at 80% 10%, rgba(201,162,77,0.16), transparent 60%);
  filter: blur(16px);
  opacity: .9;
  pointer-events:none;
}

.team-col:hover{
  transform: translateY(-8px);
  border-color: rgba(201,162,77,0.38);
  background: rgba(250,249,246,0.07);
}

.team-name{
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(201,162,77,0.10);
  border: 1px solid rgba(201,162,77,0.22);
  color: rgba(250,249,246,0.96);
  letter-spacing: .6px;
}

.team-list{
  list-style: none;
  padding: 12px 6px 2px;
  margin: 0;
  display: grid;
  gap: 8px;
}

.team-list li{
  display:flex;
  align-items:flex-start;
  gap: 10px;
  color: rgba(250,249,246,0.78);
  font-size: 14.5px;
  line-height: 1.6;
}

/* Gold star bullet (theme match) */
.team-list li::before{
  content:"✦";
  color: rgba(201,162,77,0.95);
  text-shadow: 0 0 12px rgba(201,162,77,0.25);
  flex: 0 0 auto;
  margin-top: 1px;
}

/* Responsive */
@media (max-width: 820px){
  .team-grid{ grid-template-columns: 1fr; }
  .forte-block{ padding: 90px 20px; }
}
.why-center-text{
  /* TRUE CENTER FIX */
  display: block;
  margin: 40px auto 0;
  max-width: 820px;            /* tighter width = better center feel */
  text-align: center;

  /* PREMIUM TYPOGRAPHY */
  font-family: 'Tenor Sans', 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.95;
  letter-spacing: 0.2px;

  color: rgba(250,249,246,0.88);

  /* smooth reading */
  text-rendering: optimizeLegibility;
}

/* Elegant golden divider (luxury feel) */
.why-center-text::after{
  content:"";
  display:block;
  width: 140px;
  height: 2px;
  margin: 22px auto 0;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(201,162,77,1),
    transparent
  );
  box-shadow: 0 0 20px rgba(201,162,77,0.45);
}

/* Mobile refinement */
@media (max-width: 1024px){
  .why-center-text{
    max-width: 92%;
    margin-top: 28px;
    font-size: 1rem;
    line-height: 1.85;
    letter-spacing: 0.15px;
  }
}
/* ==============================
   FOOTER (Luxury Astrology)
   ============================== */
.site-footer{
  position: relative;
  background: var(--teal);
  color: rgba(250,249,246,0.88);
  padding: 90px 6% 0;
  overflow: hidden;
}

/* background glow */
.footer-bg{
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 20% 20%, rgba(201,162,77,0.10), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(201,162,77,0.08), transparent 60%);
  filter: blur(20px);
  opacity: .6;
  pointer-events: none;
}

.footer-wrap{
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(201,162,77,0.18);
}

/* Brand */
.footer-logo{
  font-family: 'Cinzel Decorative', cursive;
  font-size: 1.8rem;
  color: rgba(250,249,246,0.95);
  margin-bottom: 14px;
}

.footer-tagline{
  font-family: 'Montserrat', sans-serif;
  max-width: 420px;
  line-height: 1.8;
  color: rgba(250,249,246,0.72);
}

/* Links */
.footer-links{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.footer-col h4{
  font-family: 'Tenor Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 16px;
  color: var(--gold);
}

.footer-col ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li{
  margin-bottom: 10px;
}

.footer-col a{
  font-family: 'Montserrat', sans-serif;
  text-decoration: none;
  color: rgba(250,249,246,0.78);
  font-size: 0.95rem;
  transition: color .3s ease, letter-spacing .3s ease;
}

.footer-col a:hover{
  color: rgba(250,249,246,1);
  letter-spacing: .5px;
}

/* Bottom bar */
.footer-bottom{
  text-align: center;
  padding: 26px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: rgba(250,249,246,0.65);
}

/* Mobile */
@media (max-width: 1024px){
  .footer-wrap{
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-tagline{
    margin: 0 auto;
  }

  .footer-links{
    grid-template-columns: 1fr;
  }
}
/* ==============================
   FOOTER RESPONSIVE FIX (ADD-ON)
   Paste at END of footer CSS
   ============================== */

.site-footer,
.footer-wrap{
  max-width: 100%;
  overflow: hidden;              /* stop side overflow */
}

.footer-wrap{
  padding-left: 16px;
  padding-right: 16px;
}

/* ✅ MAIN FIX: footer logo/title wrap allow */
/* ==============================
   FOOTER LOGO – FORCE ONE LINE
   ============================== */

.footer-logo{
  white-space: nowrap !important;     /* ✅ ek hi line */
  word-break: normal !important;
  overflow-wrap: normal !important;

  /* 🔽 aur chhota for mobile */
  font-size: clamp(1.15rem, 4.8vw, 2.4rem);

  line-height: 1;
  letter-spacing: 0.04em;

  max-width: 100%;
  margin: 0 auto 12px;
  text-align: center;
}

/* tagline should stay readable */
.footer-tagline{
  max-width: 42ch;
  margin: 0 auto;
  text-align: center;
}

/* links alignment + spacing */
@media (max-width: 640px){
  .footer-links{
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 28px;
    text-align: center;
    justify-items: center;
  }

  .footer-col ul{
    padding: 0;
    margin: 0;
  }

  .footer-col li{
    margin: 10px 0;
  }
}

/* bottom bar safe */
.footer-bottom{
  padding-left: 16px;
  padding-right: 16px;
  text-align: center;
}

.footer-bottom p{
  max-width: 100%;
  overflow-wrap: anywhere;
}

.shiv-tilak {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 18px; /* text se thoda gap */
}

.shiv-tilak img {
    width: 85px;           /* chhota & divine */
    height: auto;
    opacity: 0.9;
    filter: drop-shadow(0 0 6px rgba(201,162,77,0.45));
    animation: tilakGlow 4s ease-in-out infinite;
}

/* Soft spiritual pulse */
@keyframes tilakGlow {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 6px rgba(201,162,77,0.35));
    }
    50% {
        transform: scale(1.08);
        filter: drop-shadow(0 0 12px rgba(201,162,77,0.65));
    }
}

/* Mobile fine-tune */
@media (max-width: 768px) {
    .shiv-tilak img {
        width: 80px;
    }
}
/* =========================
   GLOBAL ASTRO BACKGROUND (STRONG)
   ========================= */

/* =========================
   GLOBAL ASTRO BACKGROUND (STRONG)
   ========================= */

.astro-global{
  position: fixed;
  inset: 0;
  z-index: -1;              /* ✅ Always behind everything */
  pointer-events: none;
  overflow: hidden;
}

/* 1) Zodiac big watermark */
.ag-zodiac{
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(1200px, 120vw);
  height: min(1200px, 120vw);
  transform: translate(-50%, -50%);
  background: url("") no-repeat center;
  background-size: contain;

  opacity: 0.09;            /* ✅ Increase so you can SEE it */
  filter: sepia(100%) saturate(240%) hue-rotate(12deg) blur(0.4px);
  animation: agRotate 220s linear infinite;
}

/* 2) Stars pattern */
/* 2) Stars pattern (UPGRADED - more visible, premium) */
.ag-stars{
  position: absolute;
  inset: -25%;
  opacity: 0.95;                  /* ✅ more visible */
  filter: blur(0.1px);
  
  /* 3 star layers (tiny + mid + bright) */
  background-image:
    radial-gradient(circle, rgba(201,162,77,0.85) 1px, transparent 2.2px),
    radial-gradient(circle, rgba(250,249,246,0.55) 1px, transparent 2.4px),
    radial-gradient(circle, rgba(16,56,58,0.35) 1px, transparent 2.6px),
    radial-gradient(circle, rgba(201,162,77,0.95) 1.4px, transparent 3px);

  /* Dense + varied spacing (more stars) */
  background-size:
    120px 120px,
    170px 170px,
    220px 220px,
    320px 320px;

  /* offset positions for randomness */
  background-position:
    0 0,
    60px 90px,
    120px 30px,
    30px 160px;

  /* Dual animation = drift + twinkle */
  animation:
    agDrift 38s linear infinite,
    agTwinkle 6.5s ease-in-out infinite;
}


/* 3) Gold glow aura corners */
.ag-glow{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 12% 18%, rgba(201,162,77,0.18), transparent 60%),
    radial-gradient(900px 500px at 90% 22%, rgba(201,162,77,0.14), transparent 58%),
    radial-gradient(900px 500px at 60% 92%, rgba(16,56,58,0.12), transparent 62%);
  filter: blur(16px);
  opacity: 1;
}

/* Animations */
@keyframes agRotate{
  from{ transform: translate(-50%, -50%) rotate(0deg); }
  to{ transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes agDrift{
  from{ transform: translate3d(0,0,0); }
  to{ transform: translate3d(-180px, 140px, 0); }
}
@keyframes agTwinkle{
  0%,100% { opacity: 0.78; }
  50%     { opacity: 1; }
}
.astro-global::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 18% 28%, rgba(201,162,77,0.9) 0 2px, transparent 3px),
    radial-gradient(circle at 70% 18%, rgba(201,162,77,0.8) 0 2px, transparent 3px),
    radial-gradient(circle at 52% 72%, rgba(201,162,77,0.7) 0 2px, transparent 3px),
    radial-gradient(circle at 86% 58%, rgba(16,56,58,0.6) 0 2px, transparent 3px);
  opacity: .55;
  filter: blur(.2px);
  animation: agSpark 5.2s ease-in-out infinite;
  pointer-events:none;
}

@keyframes agSpark{
  0%,100%{ opacity: .25; transform: scale(1); }
  50%{ opacity: .6; transform: scale(1.03); }
}
/* =========================
   HERO CORNER GLOW EFFECT
   ========================= */

.hero-celestial{
  position: relative;
  overflow: hidden; /* important */
}

/* Wrapper */
.hero-corner-glows{
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1; /* background ke upar, content ke neeche */
}

/* Base glow style */
.hero-corner-glows .glow{
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  animation: cornerPulse 8s ease-in-out infinite;
}

/* Individual corners */
.hero-corner-glows .tl{
  top: -160px;
  left: -160px;
  background: radial-gradient(circle, rgba(201,162,77,0.55), transparent 65%);
}

.hero-corner-glows .tr{
  top: -160px;
  right: -160px;
  background: radial-gradient(circle, rgba(16,56,58,0.45), transparent 65%);
  animation-delay: 2s;
}

.hero-corner-glows .bl{
  bottom: -160px;
  left: -160px;
  background: radial-gradient(circle, rgba(16,56,58,0.35), transparent 65%);
  animation-delay: 4s;
}

.hero-corner-glows .br{
  bottom: -160px;
  right: -160px;
  background: radial-gradient(circle, rgba(201,162,77,0.45), transparent 65%);
  animation-delay: 6s;
}

/* Animation */
@keyframes cornerPulse{
  0%,100%{
    transform: scale(1);
    opacity: 0.45;
  }
  50%{
    transform: scale(1.15);
    opacity: 0.75;
  }
}

/* Mobile tuning */
@media(max-width:768px){
  .hero-corner-glows .glow{
    width: 300px;
    height: 300px;
    filter: blur(70px);
  }
}
/* =========================
   PREMIUM GLOBAL OVERLAY
   ========================= */
.astro-overlay{
  position: fixed;
  inset: 0;
  z-index: 0;              /* overlay */
  pointer-events: none;
  overflow: hidden;
}

/* Make sure your content stays above overlay */
body > *{
  position: relative;
  z-index: 2;
}

/* Big zodiac watermark (super subtle) */
.ao-zodiac{
  position:absolute;
  top: 50%;
  left: 50%;
  width: min(1200px, 120vw);
  height: min(1200px, 120vw);
  transform: translate(-50%,-50%);
  background: url("") no-repeat center;
  background-size: contain;
  opacity: .06;
  filter: sepia(100%) saturate(200%) hue-rotate(10deg) blur(0.6px);
  animation: aoRotate 220s linear infinite;
}

/* Star dust layer (more visible) */
.ao-stars{
  position:absolute;
  inset:-30%;
  background-image:
    radial-gradient(circle, rgba(201,162,77,.85) 1.2px, transparent 2.4px),
    radial-gradient(circle, rgba(16,56,58,.25) 1.2px, transparent 2.6px),
    radial-gradient(circle, rgba(201,162,77,.35) 1.4px, transparent 3px);
  background-size: 120px 120px, 190px 190px, 280px 280px;
  background-position: 0 0, 40px 70px, 110px 30px;
  opacity: .35;
  filter: blur(.15px);
  animation: aoDrift 60s linear infinite;
}

/* Floating symbols (premium slow drift) */
.ao-symbols span{
  position:absolute;
  font-family: "Cinzel Decorative", serif;
  color: rgba(201,162,77,0.22);
  text-shadow: 0 0 25px rgba(201,162,77,0.18);
  filter: blur(.15px);
  animation: aoFloat 18s ease-in-out infinite;
}

/* Place symbols randomly */
.ao-symbols span:nth-child(1){ top:12%; left:10%; font-size:22px; animation-delay:0s; }
.ao-symbols span:nth-child(2){ top:22%; left:80%; font-size:18px; animation-delay:2s; }
.ao-symbols span:nth-child(3){ top:70%; left:15%; font-size:26px; animation-delay:4s; }
.ao-symbols span:nth-child(4){ top:62%; left:72%; font-size:20px; animation-delay:1s; }
.ao-symbols span:nth-child(5){ top:40%; left:52%; font-size:16px; animation-delay:3s; }
.ao-symbols span:nth-child(6){ top:82%; left:40%; font-size:24px; animation-delay:5s; }
.ao-symbols span:nth-child(7){ top:10%; left:55%; font-size:16px; animation-delay:6s; }
.ao-symbols span:nth-child(8){ top:88%; left:86%; font-size:18px; animation-delay:2.5s; }
.ao-symbols span:nth-child(9){ top:48%; left:8%;  font-size:20px; animation-delay:1.5s; }
.ao-symbols span:nth-child(10){ top:30%; left:30%; font-size:26px; animation-delay:4.5s; }
.ao-symbols span:nth-child(11){ top:58%; left:92%; font-size:18px; animation-delay:3.8s; }
.ao-symbols span:nth-child(12){ top:75%; left:58%; font-size:22px; animation-delay:5.8s; }

@keyframes aoRotate{
  from{ transform: translate(-50%,-50%) rotate(0deg); }
  to{ transform: translate(-50%,-50%) rotate(360deg); }
}

@keyframes aoDrift{
  from{ transform: translate3d(0,0,0); }
  to{ transform: translate3d(-180px, 140px, 0); }
}

@keyframes aoFloat{
  0%{ transform: translate3d(0,0,0) rotate(0deg); opacity:.18; }
  50%{ transform: translate3d(0,-18px,0) rotate(8deg); opacity:.28; }
  100%{ transform: translate3d(0,0,0) rotate(0deg); opacity:.18; }
}

/* Mobile: keep it lighter */
@media (max-width: 768px){
  .ao-zodiac{ opacity:.04; }
  .ao-stars{ opacity:.28; }
  .ao-symbols span{ color: rgba(201,162,77,0.18); }
}
.section-boost{
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(700px 420px at 10% 20%, rgba(201,162,77,0.18), transparent 60%),
    radial-gradient(700px 420px at 90% 30%, rgba(201,162,77,0.14), transparent 60%);
  filter: blur(16px);
  opacity: .9;
}
html, body { height: 100%; }
body { position: relative; overflow-x: hidden; }

/* ✅ page wrapper always above overlay */
.site-wrap{
  position: relative;
  z-index: 5;
}

/* ✅ overlay stays behind entire website */
.astro-overlay{
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
/* =========================
   Floating WhatsApp Button – PURE GREEN
   ========================= */
.wa-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  z-index: 9999;
  text-decoration: none;

  /* ✅ WhatsApp Official Green */
  background: linear-gradient(
    145deg,
    #25D366,
    #1EBE5D
  );

  border: none;

  box-shadow:
    0 18px 45px rgba(37, 211, 102, 0.45),
    0 0 0 6px rgba(37, 211, 102, 0.18);

  transition: transform .25s ease, box-shadow .25s ease;
}

.wa-icon{
  width: 28px;
  height: 28px;
  color: #ffffff;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.25));
}

/* Hover lift */
.wa-float:hover{
  transform: translateY(-5px) scale(1.05);
  box-shadow:
    0 28px 70px rgba(37, 211, 102, 0.55),
    0 0 0 10px rgba(37, 211, 102, 0.25);
}

/* =========================
   Soft Green Pulse
   ========================= */
.wa-pulse{
  position: absolute;
  inset: -12px;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(37, 211, 102, 0.45),
    transparent 65%
  );
  filter: blur(6px);
  animation: waPulse 2.2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes waPulse{
  0%   { transform: scale(0.9); opacity: .9; }
  60%  { transform: scale(1.15); opacity: .35; }
  100% { transform: scale(0.9); opacity: .9; }
}

/* Tooltip */
.wa-tip{
  position: absolute;
  right: 70px;
  bottom: 50%;
  transform: translateY(50%);
  background: #1EBE5D;
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 14px;
  font-size: 12px;
  letter-spacing: .5px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  transition: opacity .25s ease, transform .25s ease;
}

.wa-float:hover .wa-tip{
  opacity: 1;
  transform: translateY(50%) translateX(-4px);
}

/* Mobile */
@media (max-width: 768px){
  .wa-float{
    right: 14px;
    bottom: 14px;
    width: 56px;
    height: 56px;
  }
  .wa-tip{ display:none; }
}
/* Instagram Floating Button */
.ig-float{
  position: fixed;
  right: 18px;
  bottom: 96px; /* WhatsApp ke upar */
  width: 56px;
  height: 56px;
  background: radial-gradient(circle at 30% 30%, #ffdc80, #fcaf45, #f77737, #e1306c, #833ab4);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 999;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  text-decoration: none;
}

.ig-icon{
  width: 26px;
  height: 26px;
}

.ig-pulse{
  position:absolute;
  inset:0;
  border-radius:50%;
  background: inherit;
  opacity:.45;
  animation: igPulse 2.4s infinite;
  z-index:-1;
}

@keyframes igPulse{
  0%{ transform:scale(1); opacity:.45;}
  100%{ transform:scale(1.7); opacity:0;}
}

.ig-tip{
  position:absolute;
  right:64px;
  background:#111;
  color:#fff;
  padding:6px 10px;
  border-radius:6px;
  font-size:.75rem;
  white-space:nowrap;
  opacity:0;
  transform:translateX(6px);
  transition:.25s ease;
}

.ig-float:hover .ig-tip{
  opacity:1;
  transform:translateX(0);
}
/* Top Moving Contact Number */
.top-contact-bar{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  z-index: 9999;
  pointer-events: none; /* kisi cheez ko block nahi karega */
}

.scroll-text{
  display: inline-block;
  padding-left: 100%;
  white-space: nowrap;
  font-size: 0.9rem;
  font-weight: 500;
  color: #111; /* dark text for light background */
  animation: scrollLeft 18s linear infinite;
}

/* Animation */
@keyframes scrollLeft{
  0%{
    transform: translateX(0);
  }
  100%{
    transform: translateX(-100%);
  }
}
 .join-world{
    padding: 80px 16px;
  }

  .join-wrap{
    max-width: 1100px;
    margin: 0 auto;
    padding: 34px 28px;
    border-radius: 22px;
    background: var(--teal, #173C39);
    color: rgba(250,249,246,0.92);
    border: 1px solid rgba(201,162,77,0.22);
    box-shadow: 0 26px 70px rgba(0,0,0,0.18);
    position: relative;
    overflow: hidden;
  }

  /* soft glow */
  .join-wrap::before{
    content:"";
    position:absolute;
    inset:-30%;
    background:
      radial-gradient(circle at 20% 20%, rgba(201,162,77,0.18), transparent 55%),
      radial-gradient(circle at 80% 70%, rgba(201,162,77,0.12), transparent 60%);
    filter: blur(22px);
    opacity: .75;
    pointer-events:none;
  }

  .join-wrap > *{ position: relative; z-index: 1; }

  .join-head{
    text-align: center;
    margin-bottom: 22px;
  }

  .join-kicker{
    display:inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.78rem;
    color: var(--gold, #C9A24D);
    border: 1px solid rgba(201,162,77,0.35);
    background: rgba(0,0,0,0.16);
    margin: 0 0 12px;
  }

  .join-title{
    margin: 0;
    font-size: clamp(1.7rem, 3.4vw, 2.4rem);
    letter-spacing: 0.8px;
    color: rgba(250,249,246,0.98);
  }

  .join-sub{
    margin: 10px auto 0;
    max-width: 720px;
    line-height: 1.75;
    color: rgba(250,249,246,0.74);
    font-size: 1rem;
  }

  .join-grid{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
  }

  .field label{
    display:block;
    font-size: 0.92rem;
    margin: 0 0 8px;
    color: rgba(250,249,246,0.88);
  }

  .field input{
    width: 100%;
    padding: 14px 14px;
    border-radius: 14px;
    border: 1px solid rgba(191,197,204,0.25);
    background: rgba(255,255,255,0.10);
    color: rgba(250,249,246,0.96);
    outline: none;
    transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
  }

  .field input::placeholder{
    color: rgba(250,249,246,0.60);
  }

  .field input:focus{
    border-color: rgba(201,162,77,0.70);
    box-shadow: 0 0 0 3px rgba(201,162,77,0.22);
    background: rgba(255,255,255,0.12);
  }

  /* date icon visibility on dark bg */
  .field input[type="date"]{
    color-scheme: dark;
  }

  .join-actions{
    margin-top: 18px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap: wrap;
    gap: 14px;
  }

  .join-btn{
    border: none;
    cursor: pointer;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: .3px;
    color: #0b0f12;
    background: var(--gold, #C9A24D);
    box-shadow: 0 14px 38px rgba(201,162,77,0.24);
    transition: transform .2s ease, filter .2s ease;
  }

  .join-btn:hover{ transform: translateY(-2px); filter: brightness(1.04); }

  .join-note{
    margin: 0;
    font-size: 0.92rem;
    color: rgba(250,249,246,0.68);
  }

  @media (max-width: 820px){
    .join-world{ padding: 70px 12px; }
    .join-wrap{ padding: 26px 18px; }
    .join-grid{ grid-template-columns: 1fr; }
  }
  /* Make last field full width */
.join-grid .field-full{ grid-column: 1 / -1; }

/* Multi-select UI */
.ms{ position: relative; }

.ms-btn{
  width: 100%;
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px solid rgba(191,197,204,0.25);
  background: rgba(255,255,255,0.10);
  color: rgba(250,249,246,0.96);
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.ms-btn:hover{ background: rgba(255,255,255,0.12); }

.ms-btn.is-open,
.ms-btn:focus{
  border-color: rgba(201,162,77,0.70);
  box-shadow: 0 0 0 3px rgba(201,162,77,0.22);
  outline: none;
}

.ms-text{
  display:block;
  overflow:hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: rgba(250,249,246,0.88);
}

.ms-caret{ opacity: .85; }

/* dropdown panel */
.ms-panel{
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 10px);
  background: rgba(12, 20, 22, 0.92);
  border: 1px solid rgba(201,162,77,0.22);
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 22px 60px rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
  display: none;
  max-height: 260px;
  overflow: auto;
  z-index: 50;
}

.ms-panel.open{ display:block; }

.ms-opt{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 12px;
  cursor: pointer;
  user-select: none;
}

.ms-opt:hover{
  background: rgba(255,255,255,0.06);
}

.ms-opt input{
  width: 18px;
  height: 18px;
  accent-color: var(--gold, #C9A24D);
}

.ms-opt span{
  font-size: 0.95rem;
  color: rgba(250,249,246,0.90);
}

/* scrollbar subtle */
.ms-panel::-webkit-scrollbar{ width: 10px; }
.ms-panel::-webkit-scrollbar-thumb{
  background: rgba(201,162,77,0.25);
  border-radius: 999px;
}
/* ✅ Dropdown cut fix (parent overflow hidden ko override) */
/* ✅ NAVBAR always on top + no horizontal overflow */
.site-header,
header,
.navbar{
  position: sticky;
  top: 0;
  z-index: 1000000;
  width: 100%;
  left: 0;
  right: 0;
  overflow: visible;
}

/* ✅ body horizontal cut (navbar bahar nikalna stop) */
html, body{
  overflow-x: hidden;
}

/* ✅ Join section navbar ke niche rahe (overlap nahi) */
.join-section{
  position: relative;
  z-index: 1;
  padding-top: 24px; /* adjust 16-40 as needed */
}

/* ✅ Multi-select dropdown: navbar ke neeche open ho */
.join-section .ms{
  position: relative;
  z-index: 10;
  overflow: visible;
}

.join-section .ms-panel{
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 10px);
  z-index: 9999; /* ✅ navbar se kam rakho */
  display: none;

  max-height: min(420px, calc(100vh - 220px));
  overflow-y: auto;
}

.join-section .ms-panel.open{ display:block; }

/* ✅ Only join area overflow visible */
.join-section,
.join-wrap,
.join-card{
  overflow: visible !important;
}

/* ✅ baaki pages par overflow visible mat rakho */
.services-page,
.terms-container,
.newsletter-wrap,
.newsletter-card{
  overflow: hidden;
}
/* keep your list same size */
.candle-points li{ cursor:pointer; }

/* ✅ prevent background scroll when popup open */
body.cp-lock{ overflow: hidden; }

/* ---------- Popup wrapper ---------- */
.cp-pop{
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cp-pop.open{ display:block; }

/* ---------- Overlay ---------- */
.cp-pop__bg{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ---------- Card ---------- */
.cp-pop__card{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(560px, calc(100vw - 28px));
  border-radius: 18px;
  background: rgba(13, 22, 22, .96);
  color: rgba(250,249,246,.92);
  border: 1px solid rgba(201,162,77,.22);
  box-shadow: 0 28px 80px rgba(0,0,0,.55);
  overflow: hidden;
}

/* header */
.cp-pop__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:16px 16px 10px;
}
.cp-pop__title{
  margin:0;
  font-family: "Tenor Sans", system-ui, sans-serif;
  font-size: 1.05rem;
  color: rgba(250,249,246,.96);
}
.cp-pop__close{
  width:38px; height:38px;
  border-radius:12px;
  border:1px solid rgba(201,162,77,.22);
  background: rgba(255,255,255,.06);
  color: rgba(250,249,246,.9);
  display:grid; place-items:center;
  cursor:pointer;
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
}
.cp-pop__close:hover{
  transform: scale(1.03);
  background: rgba(255,255,255,.10);
  border-color: rgba(201,162,77,.34);
}

/* body */
.cp-pop__body{ padding: 0 16px 16px; }
.cp-pop__text{
  margin:0;
  white-space: pre-line; /* ✅ line breaks show */
  line-height:1.65;
  color: rgba(250,249,246,.75);
  font-family:"Montserrat", system-ui, sans-serif;
  font-size:.98rem;
}

/* actions */
.cp-pop__actions{
  padding:14px 16px 16px;
  border-top: 1px solid rgba(201,162,77,.16);
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(0,0,0,.08));
}
.cp-pop__wa{
  display:block;
  width:100%;
  text-align:center;
  text-decoration:none;
  padding:12px 14px;
  border-radius:14px;
  background: var(--gold, #C9A24D);
  color:#0b0f0f;
  font-family:"Montserrat", system-ui, sans-serif;
  font-weight:700;
  transition: transform .15s ease, filter .2s ease;
}
.cp-pop__wa:hover{ transform: translateY(-1px); filter: brightness(1.02); }

/* smooth open */
.cp-pop.open .cp-pop__card{ animation: cpPopIn .18s ease-out both; }
@keyframes cpPopIn{
  from{ transform: translate(-50%, -48%) scale(.98); opacity:0; }
  to{ transform: translate(-50%, -50%) scale(1); opacity:1; }
}

/* mobile */
@media (max-width: 480px){
  .cp-pop__card{ border-radius: 16px; }
  .cp-pop__title{ font-size: 1rem; }
  .cp-pop__text{ font-size: .95rem; }
}

/* ❌ extra gray pseudo box kill */
.cp-pop::before,
.cp-pop::after,
.cp-pop__bg::before,
.cp-pop__bg::after{
  content: none !important;
}
/* Container just below navbar */
.lunar-strip{
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 6px 10px;
  margin-top: 90px;           /* navbar height ke hisaab se (70–90) */
  position: relative;
  z-index: 3;
}

/* Pill container */
.lunar-pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(12, 18, 28, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(201,162,77,0.22);
}

/* Text */
.lunar-text{
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
}

/* Moon icon size (text se chhota) */
.lunar-moon{
  width: 16px;
  height: 16px;
  display: inline-block;
  flex: 0 0 auto;
}
.lunar-moon svg{
  width: 100%;
  height: 100%;
  display: block;
}

/* Mobile tweaks */
@media (max-width: 480px){
  .lunar-text{ font-size: 11px; letter-spacing: .12em; }
  .lunar-moon{ width: 14px; height: 14px; }
}
