/* ================= GLOBAL ================= */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #ffffff;
    overflow-x: hidden;
    color: #1a1a1a;
}
a {
  text-decoration: none;
}
.highlight-color{
    color: #d4a373;
}
/*-----fa fa icons---*/

/*-------buttons-----*/

.button-1{
    background: linear-gradient(135deg, #e4b44414, #fcfbf8b3);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid hsl(42 75% 58% / .25);
    color: hsl(42 75% 45%);
    letter-spacing: .3em;
    text-transform: uppercase;
    font-size: .75rem;
    line-height: 1rem;
    padding: 0.8rem 0.9rem 0.8rem 0.8rem ;
    border-radius: 1rem;
    margin-bottom: .5rem;
}

.button-2{
    background: linear-gradient(135deg, #e4b44414, #fcfbf8b3);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid hsl(42 75% 58% / .25);
    color: hsl(42 75% 45%);
    letter-spacing: .3em;
    text-transform: uppercase;
    font-size: .75rem;
    line-height: 1rem;
    padding: 0.8rem 0.9rem 0.8rem 0.8rem ;
    border-radius: 0.625rem;
    /* margin-bottom: .5rem; */
    font-weight:400;
    
}

.btn-gold-2{
    position:relative;
    overflow:hidden;
    background:linear-gradient(135deg,#CFA94B,#F0CF7A);
    color:#1A1A1A;
    border:none;
    padding: 0.8rem 0.9rem 0.8rem 0.8rem ;
    font-size: .75rem;
    border-radius: 0.625rem;
    font-weight:400;
    line-height: 1rem;
    text-transform: uppercase;
    letter-spacing: .3em;
    backdrop-filter:blur(12px);
    box-shadow: 0 10px 30px rgba(207,169,75,.28), inset 0 1px 1px rgba(255,255,255,.35);
    transition:.4s ease;
    opacity: 1!important;
   visibility: visible !important;
   display: inline-block !important;
}

.btn-gold-2::before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:80%;
    height:100%;
    background:rgba(255,255,255,.35);
    transform:skewX(-25deg);
    transition:.8s;
}

.btn-gold-2:hover::before{
    left:130%;
}



.btn-secondary-custom{
    background: rgba(255,255,255,0.05);
    color: #E6C36A;
    border: 1px solid rgba(212,175,55,0.4);
    padding: 12px 28px;
    border-radius: 10px;
    backdrop-filter: blur(8px);
    transition: 0.3s ease;
    opacity: 1 !important;
   visibility: visible !important;
   display: inline-block !important;
}

.btn-secondary-custom:hover{
    background: rgba(212,175,55,0.1);
    box-shadow: 0 0 15px rgba(212,175,55,0.3);
}

/* ================= HERO WRAPPER ================= */
/*.hero-wrapper {
    position: relative;
    min-height: 100%;
    overflow: hidden;*/

    /* soft luxury base tint */
    /*background: linear-gradient(
        180deg,
        #ffffff 0%,
        #fffaf2 50%,
        #ffffff 100%
    );*/
}
/* ================= CENTER GLOW ================= */
.hero-wrapper .center-glow {
    position: absolute;

    width: 700px;
    height: 700px;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    background:
        radial-gradient(
            circle,
            rgba(249,232,195,0.55) 0%,
            rgba(212,163,115,0.20) 35%, transparent 70%
        );

    filter: blur(80px);

    animation: pulseGlow 8s ease-in-out infinite;

    z-index: 0;
}

/* ================= ANIMATION ================= */

@keyframes pulseGlow {

    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.08);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
}




/* ================= HERO WRAPPER ================= */


/* ================= MOVING GLOW 1 ================= */
.hero-wrapper::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(249,232,195,0.7),
        transparent 70%
    );

    top: -100px;
    left: -100px;
    filter: blur(60px);
    animation: moveGlow1 12s ease-in-out infinite;
    z-index: 0;
}

/* ================= MOVING GLOW 2 ================= */
/*.hero-wrapper::after {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    background:
        radial-gradient(
            circle,
            rgba(249,232,195,0.45),
            transparent 70%
        );

    top: 50%;
    right: -180px;
    transform: translateY(-50%);
    filter: blur(90px);
    animation: moveGlow2 18s ease-in-out infinite;
    z-index: -0;
}*/
/* ================= ANIMATIONS ================= */

@keyframes moveGlow1 {

    0% {
        transform: translate(0,0) scale(1);
    }

    50% {
        transform: translate(80px,40px) scale(1.1);
    }

    100% {
        transform: translate(0,0) scale(1);
    }
}

@keyframes moveGlow2 {

    0% {
        transform: translate(0,0) scale(1);
    }

    50% {
        transform: translate(-60px,-30px) scale(1.08);
    }

    100% {
        transform: translate(0,0) scale(1);
    }
}

/* ================= BACKGROUND ================= */
.hero-wrapper::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 30%, #f9e8c3, transparent 40%),
                radial-gradient(circle at 80% 70%, #d4a373, transparent 40%),
                radial-gradient(circle at 50% 50%, #ffffff, transparent 60%);
    filter: blur(90px);
    animation: moveBg 18s infinite linear;
    z-index: 0;
}

@keyframes moveBg {
    0% { transform: translate(0,0) scale(1); }
    50% { transform: translate(-60px,40px) scale(1.05); }
    100% { transform: translate(0,0) scale(1); }
}

/* ================= HERO WRAPPER ================= */


/* ================= NAVBAR ================= */
.glass-navbar {
    background: rgba(255,255,255,1);
    backdrop-filter: blur(18px);
    /* border-radius: 20px; */
    margin: 15px;
    padding: 10px 20px;
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.05); */
    position: relative;
    z-index: 2;
}

.logo img{
    font-weight: 600;
    width: 12rem; 
    height: 4rem;   
}
.logo span { color: #d4a373; }

.nav-link {
    color: #707070 !important;
    font-weight: 500;
    font-size: 1.0rem;
    font-family: Inter, system-ui, sans-serif;
    
}
.navbar-collapse ul li {
    padding: 0px 10px 0px 10px;
}
.navbar-collapse ul li a:hover {
     color: #3f240d!important;
     font-weight: 500;
}
.navbar-nav li.nav-item{
    
   
}
.navbar-nav .nav-link.active {
    color: #3f240d!important;
    /* background-color: #0d6efd; */
    /* border-radius: 5px; */
}


/* HERO */

/* TEXT CARD */
.soft-card {
    background: rgba(255,255,255,0.45);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 30px;
    padding: 45px;
    box-shadow:
        0 20px 40px rgba(0,0,0,0.05),
        inset 0 1px 0 rgba(255,255,255,0.6);
}

/* IMAGE */
/* .soft-image {
    max-width: 85%;
    animation: floatImage 5s ease-in-out infinite;
} */

@keyframes floatImage {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

/* BUTTON */
.btn-primary {
    padding: 10px 24px;
    border-radius: 30px;
    border: none;
    background: linear-gradient(
        135deg,
        #f9e8c3,
        rgba(255,255,255,0.9)
    );
    transition: 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

/* BUTTON */
.btn-gold {
    background: linear-gradient(135deg, #f9e8c3, #ffffff);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 30px;
    padding: 8px 18px;
}

/* ================= HERO ================= */
.hero {
    position: relative;
    z-index: 2;
    /* padding-top: 80px; */
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.soft-card {
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(18px);
    border-radius: 25px;
    padding: 40px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.hero-img{
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);

}

 .hero-heading {
    font-family:'Cormorant Garamond',serif;
    font-size:78px;
    line-height:1.05;
    color:#1A1A1A;
    margin-bottom:10px;
    font-weight:600;
}

.soft-image {
    max-width: 100%;
    animation: float 5s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

.hero-text-1{
    box-sizing:border-box;
    color : rgb(103, 103, 126);
    display : block;
    font-family : Inter, system-ui, sans-serif;
    font-feature-settings : normal;
    font-size : 18px;
    font-variation-settings : normal;
}
.hero-text-2{
    box-sizing :border-box;
    color:rgba(103, 103, 126, 0.8);
    display:block;
    font-family : Inter, system-ui, sans-serif;
    font-feature-settings :normal;
    font-size :14px;
    font-style : italic;
    font-variation-settings :normal;
}
/* ================= SECTIONS ================= */
.section {
    padding: 80px 0;
}

.card-soft {
    background: rgba(255,255,255,0.7);
    border-radius: 20px;
    padding: 25px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.card-soft:hover {
    transform: translateY(-5px);
}

/* ================= CTA ================= */
.cta {
    background: #fff7e6;
    padding: 60px;
    text-align: center;
    border-radius: 20px;
}

/* ================= FOOTER ================= */
footer {
    padding: 20px;
    /* text-align: center; */
    border-top: 1px solid #eee;
}

/* ================= OFFCANVAS ================= */
.glass-offcanvas {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(20px);
}

.mobile-menu {
    list-style: none;
    padding: 0;
}

.mobile-menu li {
    margin: 15px 0;
}

.mobile-menu a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
}

/* ================= FIXED HEADER ON SCROLL ================= */

.glass-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    margin: 0; /* important */
    border-radius: 0; /* clean fixed look */
    transition: all 0.4s ease;
}

/* scroll effect */
.glass-navbar.scrolled {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(22px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* push content down because navbar fixed */
.hero-wrapper {
    padding-top: 4rem;
}


/* BASE NAVBAR */
.glass-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    margin: 0;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(12px);
    transition: all 0.4s ease;
}

/* SCROLLED STATE (STRONG GLASS) */
.glass-navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(28px);  /* 🔥 increased blur */
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* ================= HERO WRAPPER ================= */


/* ================= CENTER DIVINE GLOW ================= */
.center-glow {
    position: absolute;
    width: 750px;
    height: 750px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background:
        radial-gradient(
            circle,
            rgba(196, 168, 109, 0.65) 0%,
            rgba(151, 101, 52, 0.18) 35%,
            transparent 70%
        );

    filter: blur(90px);
    animation: pulseGlow 8s ease-in-out infinite;
    z-index: 0;
}

/* ================= GLOW PULSE ================= */
@keyframes pulseGlow {

    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.85;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.08);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.85;
    }
}

/* ================= ORBIT RINGS ================= */
.orbit {
    position: absolute;
    border: 1px solid rgba(212,163,115,0.15);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.orbit-1 {
    width: 500px;
    height: 500px;
    animation: rotateOrbit 25s linear infinite;
}

.orbit-2 {
    width: 700px;
    height: 700px;
    animation: rotateOrbitReverse 35s linear infinite;
}

/* ROTATION */
@keyframes rotateOrbit {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes rotateOrbitReverse {
    from {
        transform: translate(-50%, -50%) rotate(360deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(0deg);
    }
}

/* ================= FLOATING PARTICLES ================= */
.particles span {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(235, 162, 5, 0.9);
    /* background: rgba(249,232,195,0.7); */
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(194, 173, 129, 0.8);
    animation: floatParticle 12s linear infinite;
}

/* PARTICLE POSITIONS */
.particles span:nth-child(1) {
    top: 20%;
    left: 25%;
    animation-duration: 10s;
}

.particles span:nth-child(2) {
    top: 70%;
    left: 20%;
    animation-duration: 14s;
}

.particles span:nth-child(3) {
    top: 30%;
    right: 25%;
    animation-duration: 12s;
}

.particles span:nth-child(4) {
    bottom: 15%;
    right: 18%;
    animation-duration: 16s;
}

.particles span:nth-child(5) {
    top: 50%;
    left: 50%;
    animation-duration: 18s;
}

/* FLOATING ANIMATION */
@keyframes floatParticle {

    0% {
        transform: translateY(0px) scale(1);
        opacity: 0.4;
    }

    50% {
        transform: translateY(-40px) scale(1.3);
        opacity: 1;
    }

    100% {
        transform: translateY(0px) scale(1);
        opacity: 0.4;
    }
}

/* ================= GLASS CARD IMPROVEMENT ================= */
.soft-card {

    background: rgba(255,255,255,0.35);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255,255,255,0.4);
    box-shadow:
        0 20px 45px rgba(0,0,0,0.06),
        inset 0 1px 0 rgba(255,255,255,0.7);
    position: relative;
    z-index: 2;
}


/*-movements--*/
/* .hero-wrapper {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #ffffff;
} */

/* Soft breathing movement */
.hero-wrapper::before {
    content: "";
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    background: radial-gradient(
        circle at 30% 30%,
        rgba(249,232,195,0.6),
        transparent 60%
    ),
    radial-gradient(
        circle at 70% 70%,
        rgba(212,163,115,0.25),
        transparent 60%
    );
    filter: blur(90px);
    animation: softDrift 18s ease-in-out infinite;
    z-index: 0;
}

@keyframes softDrift {

    0% {
        transform: translate(0px, 0px) scale(1);
    }

    50% {
        transform: translate(30px, -25px) scale(1.05);
    }

    100% {
        transform: translate(0px, 0px) scale(1);
    }
}

.center-glow {
    animation: glowMove 10s ease-in-out infinite;
}

@keyframes glowMove {

    0% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-48%, -52%) scale(1.08);
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}
/* ORBITS gentle slow rotate */
.orbit-1 {
    animation: rotateSlow 60s linear infinite;
}

.orbit-2 {
    animation: rotateSlowReverse 90s linear infinite;
}

@keyframes rotateSlow {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes rotateSlowReverse {
    from { transform: translate(-50%, -50%) rotate(360deg); }
    to { transform: translate(-50%, -50%) rotate(0deg); }
}
/*------2nd section heading-------*/
.section-heading{
    font-size: 3.3rem;
    color: black!important;
    font-family: Cormorant Garamond, serif;
    z-index: 9999;
    
}
img.second-section-image {
   
  width: 100%;
  height: 100%;
  object-fit: cover;
  
}
.section-second{
    position: relative;
}
.second-section-card-body{
    padding: 0.8rem 0.9rem 0.8rem 0.8rem ;
    font-size: .85rem;
    border-radius: 0.625rem;
    font-weight:400;
    line-height: 1rem;
    /* text-transform: uppercase; */
}

.glass-panel {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(1.8rem);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  border-radius: 0.680;
  padding: 0.1rem 0.9rem 0.1rem 0.8rem ;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
}

.glass-panel:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow:
        0 12px 36px rgba(0, 0, 0, 0.3),
        0 0 12px rgba(255, 255, 255, 0.08);
}

.glass-panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.12),
        transparent
    );

    transform: skewX(-25deg);
    transition: 0.8s;
}

.icon-box {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, #a08643, #F0CF7A);
    color: #0B0F1A;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(207,169,75,0.25);
    color: white;
    font-size: 1.200rem;
}
.card{
    border: none;
}

/* GOLD highlight using your gradient */
.highlight {
    background: linear-gradient(135deg, #CFA94B, #F0CF7A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    position: relative;
      text-shadow: 
        0 0 6px rgba(207, 169, 75, 0.35),
        0 0 12px rgba(240, 207, 122, 0.25);
}

/* subtle luxury glow (gold tone) */
.highlight {
    text-shadow: 0 0 10px rgba(207, 169, 75, 0.25);
}

/* optional underline shimmer effect */
.highlight::after {
    content: "";
    display: block;
    width: 60%;
    height: 2px;
    margin: 6px auto 0;
    background: linear-gradient(135deg, #CFA94B, #F0CF7A);
    border-radius: 10px;
    opacity: 0.6;
}
.highlight::after {
    display: none;
}
/*----third section----*/

.astro-card {
    height: 100%;
    width: 100%;
    background: #ffffff;
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    border: 1px solid #f1f1f1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    text-decoration: none;
    color: inherit;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* Hover effect */
.astro-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 18px 45px rgba(0,0,0,0.12),
        0 0 18px rgba(207,169,75,0.15);
}

/* subtle shine effect */
.astro-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(207,169,75,0.15),
        transparent
    );

    transform: skewX(-25deg);
}

.astro-card:hover::before {
    left: 140%;
    transition: 0.8s;
}

/* Icon */
.icon-box {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg,#CFA94B,#F0CF7A);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0B0F1A;
    box-shadow: 0 4px 10px rgba(207,169,75,0.25);
}

/* Content */
.card-content {
    text-align: left;
}

.card-content .card-content-1{
    box-sizing: border-box;
    color: rgb(19, 19, 32);
    display: block;
    font-family: "Cormorant Garamond", serif;
    font-feature-settings: normal;
    font-size: 1.150rem;
    font-variation-settings: normal;
    font-weight: 400;
}

.hindi-text {
   font-family : Inter, system-ui, sans-serif;
    font-feature-settings : normal;
    font-size : 12px;
    font-style : italic;
    font-variation-settings : normal;
    height : 16px;
    line-height : 12px;
    color:rgba(201, 149, 29, 0.9);
}

.card-content span {
    color: #6B7280;
    font-size: 14px;
    line-height: 1.6;
}

/*-----floating-----*/
.floating-consult-btn {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 50px;
    background: linear-gradient(135deg, #CFA94B, #F0CF7A);
    color: #0B0F1A;
    font-weight: 400;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: all 0.3s ease;
    font-size: .75rem;
    border-radius: 0.625rem;
    font-weight:400;
    line-height: 1rem;
    text-transform: uppercase;
    letter-spacing: .3em;
}

.floating-consult-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 35px rgba(207,169,75,0.35);
}

.floating-consult-btn {
    animation: pulseGlow 2.2s infinite;
}





@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(207,169,75,0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(207,169,75,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(207,169,75,0);
    }
}
/*----modal---*/
.glass-modal {
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.15);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

/* Gold Button */
.btn-gold {
    background: linear-gradient(135deg, #CFA94B, #F0CF7A);
    border: none;
    color: #0B0F1A;
    font-weight: 600;
    padding: 10px;
    border-radius: 10px;
}

/* ===== RESPONSIVE PANNA CARD ===== */

.panna-card{
    background: rgba(255,255,255,0.68);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(212,163,115,0.18);
    border-radius: 28px;
    overflow: hidden;
    transition: 0.4s ease;
    box-shadow: 0 20px 45px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.6);
    height: 100%;
}

.panna-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 25px 55px rgba(0,0,0,0.12), 0 0 20px rgba(207,169,75,0.15);
}

/* IMAGE */

.panna-image{
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.panna-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.panna-card:hover .panna-image img{
    transform: scale(1.05);
}

/* CONTENT */

.panna-content{
    padding: 1rem;
}

/* TOP */

.panna-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 0px;
}

/* TITLE */

.panna-title{
    color:rgb(19, 19, 32);
    display:block;
    font-family : "Cormorant Garamond", serif;
    font-feature-settings : normal;
    font-size : 1.600rem;
    font-variation-settings : normal;
    font-weight : 400;
    height : 28px;
    letter-spacing : -0.2px;
    line-height : 28px;
    }

/* PLANET */

.planet-tag{
    background: linear-gradient(135deg, #e4b44414, #fcfbf8b3);
    border: 1px solid hsl(42 75% 58% / .25);
    color: hsl(42 75% 42%);
    padding: 0.525rem 0.825rem;
    border-radius: 700px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .18em;
    white-space: nowrap;
}

/* HEADING */

.panna-heading{
    box-sizing:border-box;
    color : rgba(19, 19, 32, 0.9);
    display : block;
    font-family : Inter, system-ui, sans-serif;
    font-feature-settings : normal;
    font-size : 0.850rem;
    font-style : italic;
    font-variation-settings : normal;
    height: 2.5rem;
    line-height : 20px;
    margin-block-end : 8px;
    margin-block-start : 0px;
    margin-bottom : 8px;
    margin-inline-end : 0px;
    margin-inline-start : 0px;
    margin-left : 0px;
    margin-right : 0px;
    margin-top : 0px;
    tab-size : 4;
    text-size-adjust : 100%;
}
.panna-card-second-title{
    color :rgb(146, 146, 151);
    display :block;
    font-family : Inter, system-ui, sans-serif;
    font-feature-settings :normal;
    font-size : 0.750rem;
    font-variation-settings :normal;
    height :16px;
    font-weight: 200;
    letter-spacing :1.2px;
    line-height :16px;
    margin-block-end :12px;
    margin-block-start :0px;
    margin-bottom :12px;
    margin-inline-end :0px;
    margin-inline-start :0px;
    margin-left :0px;
    margin-right :0px;
    margin-top :0px;
    tab-size :4;
    text-size-adjust :100%;
    text-transform :uppercase;
    unicode-bidi :isolate;
}

/* DESCRIPTION */
.panna-desc{
    box-sizing : border-box;
    color : rgb(103, 103, 126);
    display : flow-root;
    font-family : Inter, system-ui, sans-serif;
    font-feature-settings : normal;
    font-size : 12px;
    font-variation-settings : normal;
    height : 32px;
    line-height : 16px;
    margin-block-end : 16px;
    margin-block-start : 0px;
    margin-bottom : 16px;
}

/* BUTTON */

.panna-btn{
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg,#CFA94B,#F0CF7A);
    color:#1A1A1A;
    padding: 0.460rem 0.200rem;
    border-radius: 0.650rem;
    font-size: .76rem;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
    transition:.4s ease;
    box-shadow : 0 10px 30px rgba(207,169,75,.28),
        inset 0 1px 1px rgba(255,255,255,.35);
}
.panna-link-btn{
    color: hsl(42 75% 42%);
    font-size: .860rem;
    font-weight: 400;
    text-decoration: none;
    transition:.4s ease;
}

.panna-btn::before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:80%;
    height:100%;
    background:rgba(255,255,255,.35);
    transform:skewX(-25deg);
    transition:.8s;
}

.panna-btn:hover::before{
    left:130%;
}

.panna-btn:hover{
    transform: translateY(-2px);
    box-shadow:  0 18px 35px rgba(207,169,75,.35);
}

/* ================= MOBILE ================= */

@media(max-width: 767px){

    .panna-content{
        padding: 22px;
    }

    .panna-image{
        height: 240px;
    }

    .panna-title{
        color:rgb(19, 19, 32);
        display:block;
        font-family : "Cormorant Garamond", serif;
        font-feature-settings : normal;
        font-size : 1.600rem;
        font-variation-settings : normal;
        font-weight : 400;
        height : 28px;
        letter-spacing : -0.2px;
        line-height : 28px;
    }

    .panna-heading{
        box-sizing:border-box;
        color : rgba(19, 19, 32, 0.9);
        display : block;
        font-family : Inter, system-ui, sans-serif;
        font-feature-settings : normal;
        font-size : 0.850rem;
        font-style : italic;
        font-variation-settings : normal;
        height: 2.5rem;
        line-height : 20px;
        margin-block-end : 8px;
        margin-block-start : 0px;
        margin-bottom : 2px;
        margin-inline-end : 0px;
        margin-inline-start : 0px;
        margin-left : 0px;
        margin-right : 0px;
        margin-top : 0px;
        tab-size : 4;
        text-size-adjust : 100%;
    }

    .panna-desc{
        box-sizing : border-box;
        color : rgb(103, 103, 126);
        display : flow-root;
        font-family : Inter, system-ui, sans-serif;
        font-feature-settings : normal;
        font-size : 12px;
        font-variation-settings : normal;
        height : 32px;
        line-height : 16px;
        margin-block-end : 16px;
        margin-block-start : 0px;
        margin-bottom : 5px;
    }

    .planet-tag{
        background: linear-gradient(135deg, #e4b44414, #fcfbf8b3);
        border: 1px solid hsl(42 75% 58% / .25);
        color: hsl(42 75% 42%);
        padding: 0.525rem 0.825rem;
        border-radius: 700px;
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .18em;
        white-space: nowrap;
    }

    .panna-btn{
        font-size: .68rem;
        letter-spacing: .14em;
        padding: 14px 16px;
    }
}

/*-------rotate----*/
    @import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600&display=swap');

    .wrapper{
      position:relative;
      width:650px;
      height:650px;
      display:flex;
      justify-content:center;
      align-items:center;
      transform-style:preserve-3d;
    }

    /* IMAGE RING */

    .ring{
      --width:120px;
      --translate:280px;
      position:relative;
      width:var(--width);
      aspect-ratio:16/9;
      transform-style:preserve-3d;
      animation:spin 30s linear infinite;
    }

    .ring img{
      position:absolute;
      width:100%;
      height:130%;
      object-fit:cover;
      border-radius:16px;
      /* border:2px solid rgba(255,255,255,.15); */
      /* box-shadow:
      0 10px 25px rgba(0,0,0,.5),
      0 0 20px rgba(255,215,0,.2); */
      transform:
      rotateY(calc(var(--i) * 60deg))
      translateZ(var(--translate));
    }

    @keyframes spin{
      from{
        transform:
        perspective(1400px)
        rotateX(-12deg)
        rotateY(0deg);
      }

      to{
        transform:
        perspective(1400px)
        rotateX(-12deg)
        rotateY(360deg);
      }
    }

    /* CENTER ASTROLOGY */

    .center{
      position:absolute;
      width:280px;
      height:280px;
      border-radius:50%;
      display:flex;
      justify-content:center;
      align-items:center;
      /* background:
      radial-gradient(circle,
      rgba(45,25,80,.95),
      rgba(10,5,20,.98)); */
      background:linear-gradient(135deg,#302301,#6e5a27);                
      box-shadow:
      0 0 60px rgba(255,215,0,.2),
      inset 0 0 30px rgba(255,255,255,.08);
      z-index:10;
    }

    /* ROTATING ZODIAC SIGNS */

    .zodiac-wheel{
      position:absolute;
      width:100%;
      height:100%;
      border-radius:50%;
      animation:rotateWheel 18s linear infinite;
    }

    @keyframes rotateWheel{
      from{
        transform:rotate(0deg);
      }

      to{
        transform:rotate(360deg);
      }
    }

    .sign{
      position:absolute;
      left:50%;
      top:50%;
      width:40px;
      height:40px;
      margin:-20px;
      display:flex;
      justify-content:center;
      align-items:center;
      color:rgb(165, 142, 11);
      font-size:28px;
      font-weight:bold;
      text-shadow:
      0 0 8px rgb(168, 145, 12),
      0 0 15px rgb(170, 112, 5),
      0 0 25px rgb(167, 143, 12);
    }

    /* CENTER TEXT */

    .middle{
      position:absolute;
      width:130px;
      height:130px;
      border-radius:50%;

      display:flex;
      justify-content:center;
      align-items:center;
      flex-direction:column;

      border:2px solid rgba(255,215,0,.4);

      background:
      radial-gradient(circle,
      rgba(255,215,0,.08),
      rgba(255,255,255,.02));

      box-shadow:
      0 0 25px rgba(255,215,0,.25);
    }

    .moon{
      font-size:50px;
      color:gold;

      text-shadow:
      0 0 12px gold,
      0 0 25px orange;
    }

    .title{
      margin-top:8px;
      font-family:'Cinzel', serif;
      color:#ffd86b;
      font-size:18px;
      letter-spacing:3px;
      text-shadow:0 0 10px gold;
    }

    @media(max-width:768px){

      .wrapper{
        width:100%;
        height:100vh;
      }

      .center{
        width:220px;
        height:220px;
      }

      .ring{
        --width:80px;
        --translate:180px;
      }

      .sign{
        font-size:20px;
      }

      .middle{
        width:100px;
        height:100px;
      }

      .moon{
        font-size:38px;
      }

      .title{
        font-size:12px;
      }
    }

/*-----text-shimmer---*/
.astro-watch-first-1{
    background: linear-gradient(90deg, #c9951d, #ffc94d, #c9951d);
    font-size: 2.100rem;
    font-weight:400;
    height:40px;
    letter-spacing:-0.36px;
    line-height:40px;
    margin-block-end:16px;
    margin-block-start:0px;
    margin-bottom:16px;
    margin-inline-end:0px;
    margin-inline-start:0px;
    margin-left:0px;
    margin-right:0px;
    margin-top:0px;
    tab-size:4;
    text-size-adjust:100%;
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: italic;
    animation: shimmer 4s linear infinite;
    font-family:"Cormorant Garamond", serif;
    font-feature-settings:normal;    
    font-variation-settings:normal;

}
.astro-watch-text{
    color:rgb(103, 103, 126);
    display:block;
    font-family:Inter, system-ui, sans-serif;
    font-feature-settings:normal;
    font-size:18px;
    font-variation-settings:normal;
    height:56px;
    line-height:28px;
    margin-block-end:0px;
    margin-block-start:0px;
    margin-bottom:0px;
    margin-inline-end:0px;
    margin-inline-start:0px;
    margin-left:0px;
    margin-right:0px;
    margin-top:0px;
    tab-size:4;
    text-size-adjust:100%;
    unicode-bidi:isolate;
}


/* ================= GAMESTONES GLASS CARD ================= */

.gamestones-card{
    position: relative;
    background: rgba(255,255,255,0.42);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border: 1px solid rgba(212,163,115,0.18);
    border-radius: 32px;
    overflow: hidden;
    transition: 0.45s ease;
    box-shadow:
    0 25px 50px rgba(0,0,0,0.06),
    inset 0 1px 0 rgba(255,255,255,0.7);
}

.gamestones-card::before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:60%;
    height:100%;
    background: linear-gradient( 120deg, transparent,  rgba(255,255,255,0.22), transparent );
    transform: skewX(-25deg);
    transition:1s;
}

.gamestones-card:hover::before{
    left:140%;
}

.gamestones-card:hover{
    transform: translateY(-10px);
    box-shadow:
    0 35px 70px rgba(0,0,0,0.12),
    0 0 25px rgba(207,169,75,0.14);
}

/* ================= IMAGE ================= */

.gamestones-image{
    height: 320px;
    overflow: hidden;
}

.gamestones-image img{
    width:100%;
    height:100%;
    object-fit: cover;
    transition: .7s ease;
}

.gamestones-card:hover .gamestones-image img{
    transform: scale(1.06);
}

/* ================= CONTENT ================= */

.gamestones-content{
    padding: 1.4rem;
}

/* ================= TOP ================= */

.gamestones-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:14px;
    margin-bottom:14px;
}

/* ================= MINI LABEL ================= */

.gamestones-subtitle{
    color: rgba(201,149,29,0.85);
    font-size:.72rem;
    letter-spacing:.25em;
    text-transform:uppercase;
    margin-bottom:4px;
    font-family:Inter,sans-serif;
}

/* ================= TITLE ================= */

.gamestones-title{
    font-family:"Cormorant Garamond",serif;
    font-size:2.2rem;
    line-height:1;
    color:#1A1A1A;
    margin:0;
}

/* ================= PLANET TAG ================= */

.gamestones-tag{
    background: linear-gradient( 135deg,  rgba(228,180,68,.12),  rgba(255,255,255,.7) );
    border:1px solid rgba(212,163,115,.18);
    color:hsl(42 75% 42%);
    padding:.65rem 1rem;
    border-radius:999px;
    font-size:.7rem;
    letter-spacing:.2em;
    text-transform:uppercase;
    font-weight:600;
    white-space:nowrap;
    backdrop-filter: blur(12px);
}

/* ================= HEADING ================= */

.gamestones-heading{
    font-size:1rem;
    line-height:1.7;
    color:rgba(19,19,32,.95);
    font-style:italic;
    margin-bottom:8px;
    font-family:Inter,sans-serif;
}

/* ================= DESCRIPTION ================= */

.gamestones-desc{
    color:rgb(103,103,126);
    font-size:.88rem;
    line-height:1.7;
    /* margin-bottom:1.4rem; */
    font-family:Inter,sans-serif;
}

/* ================= GRID ================= */

.gamestones-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
    margin-bottom:1.5rem;
}

/* ================= INFO BOX ================= */

.gamestones-info{
    padding:14px;
    border-radius:18px;
    background: rgba(255,255,255,0.35);
    backdrop-filter: blur(14px);
    border:1px solid rgba(255,255,255,0.16);
    transition:.35s ease;
}

.gamestones-info:hover{
    transform: translateY(-3px);
    background: rgba(255,255,255,0.48);
}

.gamestones-info span{
    display:block;
    font-size:.66rem;
    letter-spacing:.12em;
    text-transform:uppercase;
    color:#9b8b63;
    margin-bottom:6px;
    font-family:Inter,sans-serif;
}

.gamestones-info strong{
    color:#1A1A1A;
    font-size:.88rem;
    font-weight:600;
    line-height:1.5;
    font-family:Inter,sans-serif;
}

.gamestones-full{
    grid-column: span 2;
}

/* ================= BUTTON AREA ================= */

.gamestones-actions{
    display:flex;
    flex-direction:column;
    gap:14px;
}

/* ================= PRIMARY BUTTON ================= */

.gamestones-btn{
    position:relative;
    overflow:hidden;
    text-decoration:none;
    text-align:center;

    background: linear-gradient( 135deg,#CFA94B,#F0CF7A );
    color:#1A1A1A;
    padding:15px 20px;
    border-radius:16px;
    font-size:.76rem;
    text-transform:uppercase;
    letter-spacing:.18em;
    font-weight:600;
    transition:.4s ease;
    box-shadow:
    0 10px 25px rgba(207,169,75,.28),
    inset 0 1px 1px rgba(255,255,255,.35);
}

.gamestones-btn::before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:80%;
    height:100%;
    background:rgba(255,255,255,.3);
    transform:skewX(-25deg);
    transition:.8s;
}

.gamestones-btn:hover::before{
    left:130%;
}

.gamestones-btn:hover{
    transform:translateY(-3px);
    box-shadow: 0 20px 40px rgba(207,169,75,.38);
}

/* ================= SECONDARY LINK ================= */

.gamestones-link{
    text-align:center;
    text-decoration:none;
    color:hsl(42 75% 42%);
    font-size:.85rem;
    transition:.3s ease;
    font-family:Inter,sans-serif;
}

.gamestones-link:hover{
    opacity:.7;
}

/* ================= MOBILE ================= */

@media(max-width:768px){

    .gamestones-image{
        height:260px;
    }

    .gamestones-title{
        font-size:1.8rem;
    }

    .gamestones-grid{
        grid-template-columns:1fr;
    }

    .gamestones-full{
        grid-column:span 1;
    }

    .gamestones-tag{
        font-size:.62rem;
    }
}

/* SAME HEIGHT FOR ALL CARDS */

.gamestones-card{
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* IMAGE FIX HEIGHT */

.gamestones-image{
    height: 320px;
    flex-shrink: 0;
}

/* CONTENT FULL STRETCH */

.gamestones-content{
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* DESCRIPTION AREA SAME HEIGHT */

.gamestones-heading{
    /* min-height: 56px; */
}

.gamestones-desc{
    /* min-height: 52px; */
}

/* GRID AUTO STRETCH */

.gamestones-grid{
    flex-grow: 1;
}

/* BUTTONS ALWAYS BOTTOM */

.gamestones-actions{
    margin-top: auto;
}

/*----rudraksha card---*/

/* IMAGE WRAPPER */
.gamestones-image{
    position: relative;
}

/* TOP LEFT "NATURAL" LABEL ON IMAGE */
.rashi-tag{
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #CFA94B, #F0CF7A);
    color: #1A1A1A;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 999px;
    letter-spacing: .1em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    z-index: 2;
}

/* IDEAL TEXT (HIGHLIGHTED BUT NOT BOX) */
.gamestones-ideal{
    margin: 12px 0 18px 0;
    font-family: Inter, sans-serif;
    font-size: 13px;
    line-height: 1.6;
    color: #4a4a5a;
}

/* "IDEAL FOR:" HIGHLIGHT */
.ideal-label{
    font-weight: 700;

    background: linear-gradient(135deg, #CFA94B, #F0CF7A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-right: 6px;
}

.gamestones-ideal{
    margin: 10px 0 14px 0;   /* reduced gap */
    line-height: 1.4;        /* tighter text flow */
}

.ideal-label{
    margin-right: 6px;
    display: inline;
}


/*==========Rudraksha Button===========*/
.rudraksh-btn{
    position:relative;
    overflow:hidden;
    text-decoration:none;
    text-align:center;
    background: linear-gradient( 135deg,#CFA94B,#F0CF7A );
    color:#1A1A1A;
    padding:15px 20px;
    border-radius:16px;
    font-size:.66rem;
    text-transform:uppercase;
    letter-spacing:.18em;
    font-weight:600;
    transition:.4s ease;
    box-shadow:
    0 10px 25px rgba(207,169,75,.28),
    inset 0 1px 1px rgba(255,255,255,.35);
}

.rudraksh-btn::before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:80%;
    height:100%;
    background:rgba(255,255,255,.3);
    transform:skewX(-25deg);
    transition:.8s;
}

.rudraksh-btn:hover::before{
    left:130%;
}

.rudraksh-btn:hover{
    transform:translateY(-3px);
    box-shadow:  0 20px 40px rgba(207,169,75,.38);
}


/*========other pages hero section=========*/
.hero-wrapper2 {
    position: relative;
    min-height: 40vh;
    overflow: hidden;
    /* soft luxury base tint */
    background: linear-gradient( 180deg,  #ffffff 0%,  #fffaf2 50%,  #ffffff 100%
    );
}

.hero2 {
    position: relative;
    z-index: 2;
    min-height: 100%;
    display: flex-wrap;
    align-items: center;
    margin:5% 0% 5% 0%;
}
/* =========================
   GLASS CARD
========================= */

.prosperity-glass-card{

    position: relative;
    margin-top: 10rem !important;
    padding: 4rem;
    border-radius: 32px;
    background: rgba(255,255,255,0.38);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.28);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.5);

    overflow: hidden;
}

/* GLOW EFFECT */
.prosperity-glass-card::before{
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    top: -180px;
    right: -120px;
    background: radial-gradient(circle,rgba(207,169,75,0.28),transparent 70%);
    filter: blur(50px);
    z-index: 0;
}

/* CONTENT ABOVE GLOW */
.prosperity-glass-card > div{
    position: relative;
    z-index: 2;
}

/* BADGE */
.prosperity-badge{
    display: inline-flex;
    align-items: center;
    padding: .75rem 1rem;
    border-radius: 999px;
    background:linear-gradient( 135deg, rgba(207,169,75,0.18), rgba(240,207,122,0.12)  );
    border: 1px solid rgba(207,169,75,0.25);
    color: #CFA94B;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .25em;
    margin-bottom: 1.5rem;
}

/* TITLE */
.prosperity-title{
    font-family: "Cormorant Garamond", serif;
    font-size: 3rem;
    line-height: 1.05;
    color: #151515;
    margin-bottom: 1.4rem;
    font-weight: 500;
}

/* TEXT */
.prosperity-text{
    color: rgb(103,103,126);
    font-size: 1rem;
    line-height: 1.9;
    font-family: Inter, sans-serif;
    max-width: 620px;
    margin-bottom: 2rem;
}

/* BUTTON */
.prosperity-btn{
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.6rem;
    border-radius: 14px;
    background: linear-gradient( 135deg,  #CFA94B,  #F0CF7A );
    color: #1A1A1A;
    text-decoration: none;
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .22em;
    overflow: hidden;
    box-shadow:  0 12px 30px rgba(207,169,75,.28), inset 0 1px 1px rgba(255,255,255,.35);
    transition: .4s ease;
}

.prosperity-btn:hover{
    transform: translateY(-3px);
    color: #1A1A1A;
}

/* LIST */
.prosperity-list{
    list-style: none;
    padding: 0;
    margin: 0;
}

/* LIST ITEM */
.prosperity-list li{
    position: relative;
    padding-left: 30px;
    margin-bottom: 1.4rem;
    color: #2d2d2d;
    font-size: 1rem;
    line-height: 1.6;
    font-family: Inter, sans-serif;
}

/* GOLD DOT */
.prosperity-list li::before{
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(  135deg,  #CFA94B,  #F0CF7A );
    box-shadow: 0 0 12px rgba(207,169,75,.45);
}

/* =========================
   MOBILE
========================= */

@media(max-width: 991px){

    .prosperity-glass-card{
        padding: 2rem;
    }

    .prosperity-title{
        font-size: 2.8rem;
    }

    .prosperity-text{
        font-size: .95rem;
        line-height: 1.8;
    }
}
/*-----modal----*/

    /* Glass Modal */
    .glass-modal{
        /* background: rgba(17, 17, 17, 0.55); */
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        border: 1px solid rgba(255, 215, 0, 0.2);
        border-radius: 22px;
        box-shadow: 0 8px 40px rgba(0,0,0,0.45);
        overflow: hidden;
    }

    .maindate-star{
        color: red;
    }
    /* Golden Text */
    .gold-text{
        /* color: #d4af37; */
        /* color: #3f240d; */
        color: white;
    }

    /* Glass Inputs */
    .glass-input{
        background: rgba(255,255,255,0.08);
        border: 1px solid rgba(212,175,55,0.35);
        /* color: #f5d77a; */
         /* color: #3f240d; */
         color: white;
        border-radius: 12px;
        padding: 12px 15px;
        transition: 0.3s ease;
    }

    .glass-input::placeholder{
        /* color: rgba(255, 223, 120, 0.7); */
        /* color: #3f240d; */
        color: white;
    }

    .glass-input:focus{
        background: rgba(255,255,255,0.12);
        border-color: #d4af37;
        box-shadow: 0 0 12px rgba(212,175,55,0.35);
        color: #fff;
    }

    /* Select Option */
    .glass-input option{
        background: #111;
        /* color: #d4af37; */
         color: #3f240d;

    }

    /* Labels */
    .form-label{
        font-weight: 500;
        margin-bottom: 8px;
    }

    /* Gold Button */
    .btn-gold{
        background: linear-gradient(135deg, #d4af37, #f5d77a);
        color: #111;
        font-weight: 700;
        border: none;
        padding: 12px;
        border-radius: 14px;
        transition: 0.3s ease;
    }

    .btn-gold:hover{
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(212,175,55,0.4);
        color: #000;
    }

    /* White Close Icon */
    .btn-close{
        filter: invert(1);
    }

    /*=====subscription price card===========*/

    /* GOLD highlight using your gradient */
.subscription-plan {
    background: linear-gradient(135deg, #CFA94B, #F0CF7A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    position: relative;
    text-shadow:   0 0 6px rgba(207, 169, 75, 0.35), 0 0 12px rgba(240, 207, 122, 0.25);
    font-size: 2.5rem!important;
}

/* subtle luxury glow (gold tone) */
.subscription-plan {
    text-shadow: 0 0 10px rgba(207, 169, 75, 0.25);
}

/* optional underline shimmer effect */
.subscription-plan::after {
    content: "";
    display: block;
    width: 60%;
    height: 2px;
    margin: 6px auto 0;
    background: linear-gradient(135deg, #CFA94B, #F0CF7A);
    border-radius: 10px;
    opacity: 0.6;
}
.subscription-plan::after {
    display: none;
}

@media(max-width: 768px)
{
    .hero-wrapper
    {
        padding:30% 0% 20% 0%;
        box-sizing: border-box;    
    }
    .hero2
    {
            
    }
   
    .glass-panel
    {
        margin-top: 20px!important;
    }
    
    .astro-watch-hero-img img
    {
        margin-top:20px;    
    }
    
    .hero-btn-2
    {
     margin-left:-35px;   
    }
    h1.hero-heading
    {
        font-size: 3rem!important;
      line-height: 1.05!important;     
    }
    .modal
    {
        margin: 10% 0% 30% 0%;
    } 
    
    .floating-consult-btn {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 50px;
    background: linear-gradient(135deg, #CFA94B, #F0CF7A);
    color: #0B0F1A;
    font-weight: 400;
    font-size: 12px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: all 0.3s ease;
    font-size: .60rem;
    border-radius: 0.625rem;
    font-weight:400;
    line-height: 1rem;
    text-transform: uppercase;
    letter-spacing: .3em;
}  
}

/*-----consultation card----*/
.pricing-card{
      /* background: rgba(255,255,255,0.08); */
      background: rgba(255, 255, 255, 0.38);;
      border: 1px solid rgba(255,255,255,0.1);
      backdrop-filter: blur(10px);
      border-radius: 24px;
      padding: 35px 25px;
      color: white;
      transition: 0.4s;
      position: relative;
      overflow: hidden;
      height: 100%;
      box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
      
    }

    .pricing-card:hover{
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    }

    .pricing-card h3{
      font-size: 30px;
      font-weight: 700;
      margin-bottom: 15px;
    }

    .price{
      font-size: 50px;
      font-weight: bold;
      color: #facc15;
    }

    .price span{
      font-size: 18px;
      color: #cbd5e1;
    }

    .pricing-card ul{
      list-style: none;
      padding: 0;
      margin: 30px 0;
    }

    .pricing-card ul li{
      padding: 10px 0;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      /* color: #e2e8f0; */
      box-sizing: border-box;
    color: rgb(0, 0, 0)!important;
    display: block;
    /*font-family: "Cormorant Garamond", serif;*/
    font-family: Inter, sans-serif;
    font-feature-settings: normal;
    font-size: 1.150rem;
    font-variation-settings: normal;
    font-weight: 400;
    }

    .btn-astro{
      background: #facc15;
      border: none;
      color: #000;
      font-weight: 600;
      padding: 12px 30px;
      border-radius: 50px;
      transition: 0.3s;
    }

    .btn-astro:hover{
      background: #fde047;
      transform: scale(1.05);
    }

    .popular-badge{
      position: absolute;
      top: 15px;
      right: -35px;
      background: #ef4444;
      color: white;
      padding: 8px 40px;
      transform: rotate(45deg);
      font-size: 13px;
      font-weight: 600;
    }

    @media(max-width:768px){
      .section-title{
        font-size: 34px;
      }

      .price{
        font-size: 40px;
      }
    }
    .card-img img{
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #facc15;
  margin-bottom: 15px;
}
.qr{
    margin-top: 15px;
    text-align: center;
}

.qr img{
    width: 180px;
    border-radius: 10px;
}
.off-price
{
color:Red;    
}

.prosperity-glass-card-astrologer{
    
    backdrop-filter: blur(24px);
    box-shadow: rgba(0, 0, 0, 0.08) 0px 20px 60px, rgba(255, 255, 255, 0.5) 0px 1px 0px inset;
    margin-top: 4rem !important;
    padding: 1.5rem;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.38);
    border-width: 1px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.28);
    border-image: initial;
    overflow: hidden;    
}
.prosperity-card-title-astrologer {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.8rem;
    line-height: 1.05;
    color: rgb(21, 21, 21);
    margin-bottom: 1.4rem;
    font-weight: 500;
}

.subscription-plan-card {
    background: linear-gradient(135deg, #CFA94B, #F0CF7A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    position: relative;
    text-shadow:   0 0 6px rgba(207, 169, 75, 0.35), 0 0 12px rgba(240, 207, 122, 0.25);
    font-size: 2.0rem!important;
}
.subscription-plan-txt
{
   color:red;
   font-weight:6000; 
}
