/*top bar*/

/* =========================================
   MOBILE TOP CONTACT BAR
   ========================================= */

.mobile-top-bar {
    display: none;
}

@media (max-width: 768px) {

    .mobile-top-bar {
        display: flex;
        width: 100%;
        height: 35px;
        align-items: center;
        justify-content: center;
        gap: 12px;

        background: #8f171b;
        border-top:1px solid goldenrod;
        border-bottom:1px solid goldenrod;

        color: #fff;
        font-family: 'Poppins', sans-serif;
        font-size: 12px;
        font-weight: 600;
    }

    .mobile-top-bar a {
        display: flex;
        align-items: center;
        gap: 6px;

        color: white;
        text-decoration: none;
        white-space: nowrap;
    }

    .mobile-phone i {
        color: #fd1b00;
        font-size: 12px;
    }

    .mobile-whatsapp {
        color: white !important;
    }

    .mobile-whatsapp i {
        color: #09b613;
        font-size: 14px;
    }

    .top-divider {
        width: 1px;
        height: 17px;
        background: rgba(255,255,255,.55);
    }

    .mobile-top-bar a:hover {
        opacity: .85;
    }
}


/*end*/

/*navbar css start */

/*=====================================================
      PREMIUM ASTROLOGY NAVBAR - PART 1
======================================================*/
:root{
    --gold:#D4AF37;
    --gold-dark:#B8860B;
    --purple:#6D28D9;
    --purple-dark:#4C1D95;
    --white:#ffffff;
    --text:#1F1B2E;
    --border:#EFE6D0;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Poppins,sans-serif;
overflow-x:hidden;
}


/*==============================
HEADER
==============================*/

.astro-header{

position:relative;

top:0;
left:0;

width:100%;


z-index:99999;

padding-bottom :3px;
padding-top:3px;

transition:.45s;

background:#fff;

border-bottom:1px solid #eee;

backdrop-filter:none;

box-shadow:0 8px 30px rgba(0,0,0,.05);

}



/*==============================
CONTAINER
==============================*/

.astro-nav-container{

max-width:1350px;

margin:auto;

display:flex;

align-items:center;

justify-content:space-between;

padding:0 35px;

}


/*==============================
LOGO
==============================*/

.astro-logo{

display:flex;

align-items:center;

text-decoration:none;

}

.astro-logo img{

width:210px;

transition:.45s;

animation:logoFloat 4s ease-in-out infinite;

}

@keyframes logoFloat{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-4px);

}

100%{

transform:translateY(0);

}

}

.astro-logo:hover img{

transform:scale(1.05);

filter:

drop-shadow(0 0 12px rgba(255,211,105,.7))

drop-shadow(0 0 20px rgba(124,58,237,.45));

}


/*==============================
MENU
==============================*/

.astro-menu{

display:flex;

align-items:center;

}

.astro-menu ul{

display:flex;

align-items:center;

gap:35px;

list-style:none;

}

.astro-menu ul li{

position:relative;

}


/*==============================
MENU LINKS
==============================*/

.astro-menu ul li>a{

position:relative;

display:flex;

align-items:center;

gap:8px;

text-decoration:none;

font-size:17px;

font-weight:600;

letter-spacing:.4px;

color:black;

transition:.35s;

padding:12px 0;

}

.astro-menu ul li>a::after{

content:"";

position:absolute;

left:0;

bottom:-3px;

width:0;

height:2px;

/*background:*/

/*linear-gradient(*/

/*90deg,*/

/*var(--gold),*/

/*var(--purple)*/

/*);*/

transition:.35s;

border-radius:20px;

}

.astro-menu ul li>a:hover{

color:var(--gold);

}

.astro-menu ul li>a:hover::after{

width:100%;

}

.astro-menu ul li>a.active{

color:black;

font-weight:700;

}

.astro-menu ul li>a.active::after{
    
width:100%;
height:3px;

}


/*==============================
CALL BUTTON
==============================*/

.astro-right{

display:flex;

align-items:center;

gap:25px;

}

.astro-call{

display:flex;

align-items:center;

gap:10px;

padding:13px 22px;

border-radius:50px;

text-decoration:none;

font-size:14px;

font-weight:700;

color:black;

/*background:*/

/*linear-gradient(*/

/*135deg,*/

/*var(--purple),*/

/*#4f1fc8*/

/*);*/
background:

linear-gradient(

135deg,

var(--gold),

#e7b328

);

transition:.4s;

box-shadow:

0 10px 25px rgba(124,58,237,.30);

}

.astro-call i{

color:#f4dd19;

}

.astro-call:hover{

transform:translateY(-4px);

/*background:*/

/*linear-gradient(*/

/*135deg,*/

/*var(--gold),*/

/*#e7b328*/

/*);*/
background:

linear-gradient(

135deg,

var(--purple),

#4f1fc8

);

color:red;

box-shadow:

0 15px 35px rgba(255,211,105,.35);

}

.astro-call:hover i{

color:goldenrod;

}


/*==============================
HAMBURGER
==============================*/

.astro-toggle{

display:none;

width:45px;

height:45px;

border-radius:50%;

cursor:pointer;

align-items:center;

justify-content:center;

flex-direction:column;

gap:6px;

background:#fff;

border:1px solid #ddd;


transition:.35s;

}

.astro-toggle span{

width:24px;

height:3px;

background:black;

transition:.35s;

border-radius:10px;

}

.astro-toggle:hover{

border-color:var(--gold);

background:#FAF7EF;

box-shadow:

0 0 20px rgba(124,58,237,.35);

}

.astro-toggle:hover span{

background:var(--gold);

}


/*==============================
CLOSE BUTTON
==============================*/

.astro-close{

display:none;

position:absolute;

top:25px;

right:25px;

font-size:25px;

cursor:pointer;

color:#ff0f0f;

transition:.35s;

}

.astro-close:hover{

transform:rotate(180deg);

color:var(--gold-dark);

}


/*=====================================================
        PREMIUM NAVBAR CSS - PART 2
======================================================*/


/*==============================
PREMIUM DROPDOWN
==============================*/

.astro-dropdown{
position:relative;
}

.astro-dropdown>a i{
font-size:12px;
transition:.35s;
}

.astro-dropdown:hover>a i{
transform:rotate(180deg);
color:var(--gold);
}


/* Dropdown Panel */

.astro-dropdown-menu{

position:absolute;

top:120%;

left:0;

width:320px;


backdrop-filter:blur(20px);

background:#FAF7EF;

border:1px solid #ECE3CC;

border-radius:18px;

padding:15px 0;

opacity:0;

visibility:hidden;

transform:translateY(20px);

transition:.45s ease;

box-shadow:

0 20px 60px rgba(0,0,0,.45),

0 0 40px rgba(124,58,237,.18);

overflow:hidden;

z-index:999;

}


/* Decorative Glow */

.astro-dropdown-menu::before{

content:"";

position:absolute;

top:-80px;

left:-80px;

width:180px;

height:180px;

background:rgba(124,58,237,.18);

filter:blur(80px);

pointer-events:none;

}

.astro-dropdown-menu::after{

content:"";

position:absolute;

bottom:-60px;

right:-60px;

width:150px;

height:150px;

background:rgba(255,211,105,.10);

filter:blur(60px);

pointer-events:none;

}


/* Show */

.astro-dropdown:hover .astro-dropdown-menu{

opacity:1;

visibility:visible;

transform:translateY(0);

}


/* Links */

.astro-dropdown-menu a{

display:flex;

align-items:center;

gap:12px;

padding:14px 24px;

font-size:14px;

font-weight:500;

color:#333;

text-decoration:none;

transition:.35s;

position:relative;

overflow:hidden;

}


.astro-dropdown-menu a:hover{

color:white;

background:#7c3aed;

border-bottom: 2px solid black;

padding-left:34px;

border-radius:30px;

}

/* Gold Dot */

.astro-dropdown-menu a::before{

 content: "☀";

color:var(--gold);

font-size:17px;

opacity:0;

transform:translateX(-10px);

transition:.35s;

}


/* Hover Background */

.astro-dropdown-menu a::after{

content:"";

position:absolute;

left:0;

top:0;

width:0;

height:100%;

background:

linear-gradient(

90deg,

rgba(124,58,237,.25),

rgba(255,211,105,.12)

);

transition:.4s;

z-index:-1;

}


/* Hover */

.astro-dropdown-menu a:hover{

padding-left:34px;

color:var(--gold);

}

.astro-dropdown-menu a:hover::before{

opacity:1;

transform:translateX(0);

}

.astro-dropdown-menu a:hover::after{

width:100%;

}



/*==============================
MENU HOVER GLOW
==============================*/

.astro-menu ul li{

transition:.35s;

}

.astro-menu ul li:hover{

transform:translateY(-2px);

}



/*==============================
ACTIVE LINK GLOW
==============================*/

.astro-menu ul li>a.active{

text-shadow:

0 0 12px rgba(255,211,105,.5);

}



/*==============================
NAVBAR SHIMMER
==============================*/

.astro-header::before{

content:"";

position:absolute;

top:0;

left:-120%;

width:35%;

height:100%;

background:

linear-gradient(

90deg,

transparent,

rgba(255,255,255,.08),

transparent

);

transform:skewX(-20deg);

animation:navShine 9s linear infinite;

}

@keyframes navShine{

100%{

left:160%;

}

}



/*==============================
PURPLE GLOW
==============================*/

.astro-header::after{

content:"";

position:absolute;

left:50%;

top:-100px;

transform:translateX(-50%);

width:450px;

height:180px;

/*background:rgba(124,58,237,.18);*/

filter:blur(100px);

pointer-events:none;

}



/*==============================
MENU FADE ANIMATION
==============================*/

.astro-menu ul li{

animation:fadeMenu .8s ease both;

}

.astro-menu ul li:nth-child(2){

animation-delay:.1s;

}

.astro-menu ul li:nth-child(3){

animation-delay:.2s;

}

.astro-menu ul li:nth-child(4){

animation-delay:.3s;

}

.astro-menu ul li:nth-child(5){

animation-delay:.4s;

}

@keyframes fadeMenu{

from{

opacity:0;

transform:translateY(-15px);

}

to{

opacity:1;

transform:translateY(0);

}

}



/*==============================
CALL BUTTON PULSE
==============================*/

.astro-call{

position:relative;

overflow:hidden;

}

.astro-call::before{

content:"";

position:absolute;

width:220px;

height:220px;

background:rgba(255,255,255,.18);

border-radius:50%;

left:-220px;

top:-80px;

transition:.7s;

}

.astro-call:hover::before{

left:120%;

}



/*==============================
LOGO GLOW
==============================*/

.astro-logo{

position:relative;

}

.astro-logo::after{

content:"";

position:absolute;

left:50%;

top:50%;

transform:translate(-50%,-50%);

width:180px;

height:80px;

background:rgba(255,211,105,.08);

filter:blur(50px);

pointer-events:none;

animation:logoGlow 4s ease infinite;

}

@keyframes logoGlow{

0%{

opacity:.2;

transform:translate(-50%,-50%) scale(1);

}

50%{

opacity:.7;

transform:translate(-50%,-50%) scale(1.2);

}

100%{

opacity:.2;

transform:translate(-50%,-50%) scale(1);

}

}



/*=====================================================
        PREMIUM NAVBAR CSS - PART 3
======================================================*/


/*==============================
MOBILE RESPONSIVE
==============================*/

@media (max-width:991px){

.astro-call{
display:none;
}

.astro-toggle{
display:flex;
z-index:10001;
}

.astro-menu{
    border-radius:20px;

  position: fixed;
    top:0;
    right:-100%;
    width:100%;
    max-width:320px;
    height:80vh;
    overflow-y:auto;
    overflow-x:hidden;
background:#fff;

backdrop-filter:blur(60px);

padding:100px 35px 40px;

display:flex;

flex-direction:column;

justify-content:flex-start;

align-items:flex-start;

transition:.45s ease;

overflow-y:auto;

box-shadow:
-20px 0 60px rgba(0,0,0,.5);

border-left:4px solid darkgold;

}

.astro-menu.active{

right:0;

}


html,
body{
    overflow-x:hidden;
    width:100%;
}

.astro-menu ul{

width:100%;

display:flex;

flex-direction:column;

gap:0;

}

.astro-menu ul li{

width:100%;

border-bottom:1px solid #f2f2f2;

}

.astro-menu ul li a{

color:#222;

font-weight:600;

width:100%;

padding:18px 0;

font-size:17px;

/*justify-content:space-between;*/

}

.astro-menu ul li a:hover{

color:var(--gold-dark);

}
.astro-close{

display:block;

}

}


/*==============================
MOBILE DROPDOWN
==============================*/

@media (max-width:991px){

.astro-dropdown-menu{

position:static;

width:100%;

margin-top:10px;

opacity:1;

visibility:visible;

display:none;

transform:none;

padding:8px 0;

border-radius:12px;

background:rgba(255,255,255,.03);

box-shadow:none;

border:1px solid rgba(255,211,105,.08);

}

.astro-dropdown.open .astro-dropdown-menu{

display:block;

animation:mobileDrop .35s ease;

}

@keyframes mobileDrop{

from{

opacity:0;

transform:translateY(-10px);

}

to{

opacity:1;

transform:translateY(0);

}

}

.astro-dropdown-menu a{

padding:13px 15px;

font-size:14px;

}

}


/*==============================
MOBILE CTA BUTTONS
==============================*/

.astro-mobile-buttons{

display:none;

margin-top:35px;

width:100%;

}

@media (max-width:991px){

.astro-mobile-buttons{

display:flex;

flex-direction:column;

gap:15px;

}

.call-btn{

width:100%;

padding:15px;

border-radius:50px;

text-align:center;

text-decoration:none;

font-size:15px;

font-weight:600;

transition:.35s;

display:flex;

justify-content:center;

align-items:center;

gap:10px;

}

.call-btn{

background:
linear-gradient(135deg,#7C3AED,#5B2BD8);

color:#fff;

}

.call-btn:hover{

transform:translateY(-4px);

box-shadow:
0 10px 30px rgba(124,58,237,.35);

}


}


/*==============================
OVERLAY
==============================*/

.astro-overlay{

position:fixed;

left:0;
top:0;

width:100%;
height:100%;

background:rgba(0,0,0,.65);

backdrop-filter:blur(5px);

opacity:0;

visibility:hidden;

transition:.35s;

z-index:9998;

}

.astro-overlay.active{

opacity:1;

visibility:visible;

}




/* Hide hamburger when menu is open */

.astro-menu.active + .astro-right .astro-toggle{
    display:none;
}

/*==============================
HAMBURGER ANIMATION


.astro-toggle.active span:nth-child(1){

transform:
translateY(8px)
rotate(45deg);

}

.astro-toggle.active span:nth-child(2){

opacity:0;

}

.astro-toggle.active span:nth-child(3){

transform:
translateY(-8px)
rotate(-45deg);

}
==============================*/

/*==============================
SCROLLBAR
==============================*/

.astro-menu::-webkit-scrollbar{

width:6px;

}

.astro-menu::-webkit-scrollbar-thumb{

background:#FFD369;

border-radius:30px;

}


/*==============================
SMALL MOBILE
==============================*/

@media(max-width:576px){

.astro-nav-container{

padding:0 18px;

}

.astro-logo img{

width:150px;

}

.astro-menu{

width:70%;

max-width:100%;

padding:90px 30px 30px;

border-top: 4px solid purple;
border-bottom: 4px solid purple;

}

.astro-menu ul li a{

font-size:18px;

padding:16px 0;

font-weight:bolder;

}

.call-btn{

padding:14px;

font-size:14px;

}

}


/*==============================
FLOATING PARTICLES
==============================*/

.astro-header .particle{

position:absolute;

width:4px;

height:4px;

background:#FFD369;

border-radius:50%;

opacity:.3;

animation:particleMove 12s linear infinite;

}

@keyframes particleMove{

0%{

transform:translateY(0);

opacity:0;

}

20%{

opacity:.6;

}

100%{

transform:translateY(80px);

opacity:0;

}

}


/*==============================
SMOOTH TRANSITIONS
==============================*/

.astro-menu,
.astro-menu a,
.astro-dropdown-menu,
.astro-toggle,
.astro-call{

transition:all .35s ease;

}

/*-------------------------------------*/







/*------------- whatsapp,call  css---------- */
/*=====================================================
PREMIUM FLOATING BUTTONS
======================================================*/

.float-btn{

position:fixed;

bottom:25px;

width:55px;
height:55px;

border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

text-decoration:none;

overflow:hidden;

z-index:99999;

color:#fff;

font-size:28px;

backdrop-filter:blur(15px);

border:2px solid rgba(255,255,255,.12);

transition:.45s ease;

animation:floatMove 3s ease-in-out infinite;

}

/*==================================
LEFT WHATSAPP
==================================*/

.whatsapp-btn{

left:30px;

background:
linear-gradient(
135deg,
#25D366,
#159947
);

box-shadow:
0 15px 35px rgba(37,211,102,.35),
0 0 30px rgba(37,211,102,.25);

}


/*==================================
RIGHT CALL
==================================*/

.call-btn{

right:30px;

background:
linear-gradient(
135deg,
#7C3AED,
#4A1DB7
);

box-shadow:
0 15px 35px rgba(124,58,237,.35),
0 0 30px rgba(124,58,237,.25);

}


/*==================================
ICON
==================================*/

.float-btn i{

position:relative;

z-index:5;

transition:.35s;

font-size:30px;

}


/*==================================
HOVER
==================================*/

.float-btn:hover{

transform:
translateY(-8px)
scale(1.08);

}

.float-btn:hover i{

transform:
rotate(15deg)
scale(1.15);

}


/*==================================
SHINE EFFECT
==================================*/

.float-btn::before{

content:"";

position:absolute;

width:220px;
height:220px;

background:
linear-gradient(
120deg,
transparent,
rgba(255,255,255,.45),
transparent
);

left:-250px;
top:-70px;

transform:rotate(25deg);

transition:.7s;

}

.float-btn:hover::before{

left:180%;

}


/*==================================
RIPPLE
==================================*/

.float-btn::after{

content:"";

position:absolute;

inset:-8px;

border-radius:50%;

border:2px solid rgba(255,255,255,.25);

animation:ripple 2.2s infinite;

}


/*==================================
GLOW
==================================*/

.call-btn{

animation:
floatMove 3.5s ease-in-out infinite,
purpleGlow 2s ease-in-out infinite alternate;

}

.whatsapp-btn{

animation:
floatMove 3.5s ease-in-out infinite,
greenGlow 2s ease-in-out infinite alternate;

}


@keyframes purpleGlow{

from{

box-shadow:
0 0 0 rgba(124,58,237,.4),
0 0 18px rgba(124,58,237,.3);

}

to{

box-shadow:
0 0 28px rgba(124,58,237,.75),
0 0 45px rgba(255,211,105,.45);

}

}

@keyframes greenGlow{

from{

box-shadow:
0 0 0 rgba(37,211,102,.35),
0 0 18px rgba(37,211,102,.25);

}

to{

box-shadow:
0 0 28px rgba(37,211,102,.65),
0 0 45px rgba(37,211,102,.35);

}

}


/*==================================
FLOAT
==================================*/

@keyframes floatMove{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-8px);

}

}


/*==================================
RIPPLE
==================================*/

@keyframes ripple{

0%{

transform:scale(.9);

opacity:.8;

}

100%{

transform:scale(1.5);

opacity:0;

}

}


/*==================================
TOOLTIP
==================================*/

.tooltip-text{

position:absolute;

top:-48px;

background:#0f081c;

color:#fff;

padding:8px 15px;

border-radius:30px;

font-size:13px;

font-weight:600;

white-space:nowrap;

opacity:0;

visibility:hidden;

transition:.35s;

border:1px solid rgba(255,211,105,.2);

box-shadow:
0 10px 25px rgba(0,0,0,.35);

}

.tooltip-text::after{

content:"";

position:absolute;

left:50%;

bottom:-6px;

transform:translateX(-50%) rotate(45deg);

width:12px;
height:12px;

background:#0f081c;

}


/* Show tooltip */

.float-btn:hover .tooltip-text{

opacity:1;

visibility:visible;

top:-58px;

}


/*==================================
MOBILE
==================================*/
/*==============================
MOBILE FLOATING
==============================*/

@media (max-width:768px){

.whatsapp-btn{

position:fixed !important;

left:15px;

right:auto;

bottom:18px;

top:auto;

width:58px;

height:58px;

z-index:999999;

}

.call-btn{

position:fixed !important;

right:15px;

left:auto;

bottom:18px;

top:auto;

width:58px;

height:58px;

z-index:999999;

}

.float-btn{

font-size:22px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

}

.tooltip-text{

display:none;

}

}

/*------------- footer css---------- */

   /* ==============================
   FOOTER
================================ */

.mystic-footer{
    background:#06030d;
    position:relative;
    overflow:hidden;
    padding-top:40px;
    color:#fff;
    font-family:Poppins,sans-serif;
}

/* Animated Gold Stars */

.footer-stars{
    position:absolute;
    inset:0;
    background-image:
        radial-gradient(#ffd369 1px,transparent 1px);
    background-size:45px 45px;
    opacity:.15;
    animation:moveStars 30s linear infinite;
    pointer-events:none;
}

@keyframes moveStars{
    from{
        transform:translateY(0);
    }

    to{
        transform:translateY(80px);
    }
}


/* ==============================
   FOOTER GRID - 4 COLUMNS
================================ */

.mystic-container{
    max-width:1350px;
    margin:auto;
    padding:0 30px;
    display:grid;
    grid-template-columns:1.4fr .95fr 1fr .95fr;
    gap:8px;
    position:relative;
    z-index:2;
    align-items:stretch;
}


/* ==============================
   FOOTER BOX
================================ */

.footer-box{
    background:rgba(255,255,255,.03);
    backdrop-filter:blur(12px);
    border:1px solid grey;
    border-radius:28px;
    padding:20px;
    transition:.45s;
    position:relative;
    overflow:hidden;
    box-shadow: 0 15px 35px rgba(124, 58, 237, .25), 0 0 20px rgb(255 255 255 / 38%);
}

.footer-box::before{
    content:"";
    position:absolute;
    left:-100%;
    top:0;
    width:100%;
    height:2px;
    background:linear-gradient(
        90deg,
        transparent,
        #FFD369,
        transparent
    );
    transition:.8s;
}

.footer-box:hover::before{
    left:100%;
}

.footer-box:hover{
    transform:translateY(-20px);
    box-shadow:
        0 15px 35px rgba(124,58,237,.35),
        0 0 20px rgba(255,211,105,.18);
    border-color:rgba(255,211,105,.7);
}


/* ==============================
   HEADINGS
================================ */

.footer-box h3{
    color:#FFD369;
    margin:0 0 20px;
    font-size:20px;
    position:relative;
}

.footer-box h3::after{
    content:"";
    display:block;
    width:50px;
    height:2px;
    margin-top:10px;
    background:linear-gradient(
        90deg,
        #FFD369,
        #7c3aed
    );
    background-size:200% 100%;
    animation:lineMove 4s linear infinite;
}

@keyframes lineMove{
    0%{
        background-position:0% 0;
    }

    100%{
        background-position:200% 0;
    }
}


/* ==============================
   LOGO & BRAND
================================ */

.footer-logo{
    width:240px;
    max-width:100%;
    display:block;
    transition:.5s;
}

.footer-logo:hover{
    transform:scale(1.05);
    filter:drop-shadow(0 0 15px #FFD369);
}

.brand-box p{
    color:#d5d5d5;
    line-height:1.9;
    margin:18px 0 0;
}


/* ==============================
   LINKS
================================ */

.footer-box ul{
    padding:0;
    margin:0;
    list-style:none;
}

.footer-box li{
    margin:14px 0;
    color:#ddd;
    transition:.35s;
}

.footer-box li:hover{
    padding-left:8px;
}

.footer-box a{
    color:#ddd;
    text-decoration:none;
    transition:.35s;
}

.footer-box a:hover{
    color:#FFD369;
}

.footer-box i{
    color:red;
    margin-right:10px;
}


/* ==============================
   CONTACT
================================ */

.footer-box p{
    margin:14px 0;
    line-height:1.6;
    color:#ddd;
    overflow-wrap:anywhere;
    word-break:break-word;
}


/* ==============================
   SOCIAL ICONS
================================ */

.footer-social{
    display:flex;
    gap:14px;
    margin-top:25px;
    flex-wrap:wrap;
}

.footer-social a{
    width:45px;
    height:45px;
    border-radius:20%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(124,58,237,.15);
    border:1px solid rgba(255,211,105,.35);
    color:#FFD369;
    transition:.4s;
}

.footer-social a i{
    margin:0;
}

.footer-social a:hover{
    background:linear-gradient(
        135deg,
        #7c3aed,
        #FFD369
    );
    color:#fff;
    transform:translateY(-6px) rotate(12deg) scale(1.08);
    box-shadow:0 0 25px rgba(124,58,237,.55);
}


/* ==============================
   MAP
================================ */

.footer-map{
    overflow:hidden;
    border-radius:15px;
    border:2px solid rgba(255,211,105,.35);
    height:190px;
    transition:.4s;
}

.footer-map:hover{
    transform:scale(1.03);
    box-shadow:0 0 25px rgba(124,58,237,.45);
}

.footer-map iframe{
    width:100%;
    height:100%;
    border:0;
}


/* ==============================
   FOOTER BOTTOM
================================ */

.footer-bottom{
    margin-top:35px;
    border-top:1px solid rgba(255,255,255,.08);
    text-align:center;
    padding:25px 15px;
    position:relative;
    z-index:2;
}

.footer-bottom p{
    color:#bbb;
    margin:0;
    font-size:14px;
}


/* ==============================
   TABLET
================================ */

@media(max-width:992px){

    .mystic-container{
        grid-template-columns:repeat(2,1fr);
        gap:22px;
    }

}


/* ==============================
   MOBILE
================================ */

@media(max-width:768px){

    .mystic-container{
        grid-template-columns:repeat(2,1fr);
        gap:18px;
        padding:0 15px 25px;
    }
      /* Our Location - Full Width */
    .mystic-container .footer-box:nth-child(4){
        grid-column:1 / 3;
    }


    /* Brand Full Width */

    .brand-box{
        grid-column:1 / 3;
        text-align:center;
    }

    .footer-logo{
        width:190px;
        margin:0 auto;
    }

    .footer-social{
        justify-content:center;
    }

    .footer-box{
        padding:15px;
    }

    .footer-box h3{
        font-size:17px;
        margin-bottom:16px;
    }

    .footer-box p{
        font-size:13px;
        line-height:1.6;
        margin:10px 0;
    }

    .footer-box li{
        font-size:14px;
        margin:12px 0;
    }

    .footer-map{
        height:175px;
        border-radius:12px;
    }

}


/* ==============================
   SMALL MOBILE
================================ */

@media(max-width:480px){

    .mystic-container{
        grid-column:1 / 3;
        gap:6px;
        padding:0 10px 20px;
    }
      .mystic-container .footer-box:nth-child(4){
        grid-column:1 / 3;
    }

    .brand-box{
        grid-column:1 / 3;
    }

    .footer-box{
        padding:12px;
        border-radius:14px;
    }

    .footer-box h3{
        font-size:15px;
    }

    .footer-box h3::after{
        width:35px;
    }

    .footer-box p{
        font-size:11px;
        line-height:1.55;
    }

    .footer-box li{
        font-size:12px;
    }

    .footer-box i{
        margin-right:5px;
    }

    .footer-map{
        height:140px;
    }

    .footer-social{
        gap:10px;
    }

    .footer-social a{
        width:38px;
        height:38px;
    }

    .footer-bottom{
        margin-top:20px;
        padding:20px 10px;
    }

    .footer-bottom p{
        font-size:11px;
    }

}

/*footer css */





/* =========================================================
   WHITE PREMIUM ASTROLOGY REDESIGN - APPENDED OVERRIDES
   ========================================================= */
:root{
  --gold:#d79a20;
  --gold-dark:#b97700;
  --purple:#6b35b5;
  --purple-dark:#45247f;
  --ink:#202334;
  --muted:#666b7b;
  --cream:#fffaf2;
  --line:#eee4d4;
  --surface:#ffffff;
}

html{scroll-behavior:smooth;}
body{
  background:#fff !important;
  color:var(--ink) !important;
  font-family:'Poppins',sans-serif;
}
body *{border-color:var(--line);}

/* NAVBAR */
.astro-header{
  background:rgba(255,255,255,.96) !important;
  border-bottom:1px solid #ececf1 !important;
  box-shadow:0 8px 30px rgba(33,34,47,.06) !important;
}
.astro-menu ul li>a,
.astro-menu ul li>a.active{color:#252735 !important;}
.astro-menu ul li>a:hover{color:var(--purple) !important;}
.astro-call{
  background:linear-gradient(135deg,#8f171b,#8f171b) !important;
  color:white !important;
  box-shadow:0 10px 25px rgba(215,154,32,.22) !important;
}
.astro-call:hover{
  background:linear-gradient(135deg,var(--purple),#8b57ce) !important;
  color:#fff !important;
}
.astro-dropdown-menu{
  background:#fff !important;
  border:1px solid #eee8dd !important;
  box-shadow:0 18px 50px rgba(38,32,57,.12) !important;
}
.astro-dropdown-menu a{color:#343343 !important;}
.astro-dropdown-menu a:hover{
  background:#f7f1ff !important;
  color:var(--purple) !important;
}

/* HERO */
.hero-banner{
  background:#fffdf9 !important;
  border-bottom:1px solid #efe6d7;
  
}
.hero-banner::after{
  content:"";
  position:absolute;
  inset:auto 0 0;
  height:80px;
  pointer-events:none;
  background:linear-gradient(transparent,rgba(255,255,255,.9));
  z-index:2;
}
.hero-slide{filter:brightness(1.03) contrast(.98);}
.hero-dot{background:#ddd7cc !important;border:1px solid #fff;}
.hero-dot.active{background:var(--gold) !important;}

/* MARQUEE */
marquee{
  /*background-color: #4c1d95 !important;*/
  /*color:white !important;*/
  border:1px solid #ecd9a8 !important;
  border-radius:0 !important;
  margin-top:0 !important;
}

/* SHARED SECTION HEADING */
.section-tag,
.pp-title-label,
.ppc-section-label,
.astro-small-title{
  color:var(--purple) !important;
  letter-spacing:2px !important;
}
.section-header h2,
.pp-service-heading h2,
.ppc-main-title,
.astro-services-heading h2,
.review-heading h2{
  color:var(--ink) !important;
}
.section-header h2 span,
.pp-service-heading h2 strong,
.ppc-main-title span,
.astro-services-heading h2 strong{
  color:#8f171b !important;
  -webkit-text-fill-color:currentColor !important;
}
.section-header p,
.pp-service-heading p,
.ppc-description,
.astro-services-heading p,
.review-heading p{
  color:black !important;
}

/* WHY CHOOSE */
.why-choose-section{
  background:
    radial-gradient(circle at 15% 25%,rgba(215,154,32,.10),transparent 24%),
    radial-gradient(circle at 85% 70%,rgba(107,53,181,.08),transparent 25%),
    #fff !important;
  padding:40px 20px !important;
}
.bg-grid{opacity:.16 !important;}
.bg-grid{
  background-image:
    linear-gradient(rgba(107,53,181,.08) 1px,transparent 1px),
    linear-gradient(90deg,rgba(215,154,32,.07) 1px,transparent 1px) !important;
}
.bg-glow{opacity:.12 !important;}
.section-tag{
  background:#fffaf1 !important;
  border:1px solid #ecd9b1 !important;
}
.feature-box,
.counter-card,
.process-card{
  background:#fff !important;
  color:var(--ink) !important;
  border:1px solid #ece8df !important;
  box-shadow:0 12px 35px rgba(30,27,45,.06) !important;
}
.feature-box:hover,
.counter-card:hover,
.process-card:hover{
  box-shadow:0 20px 45px rgba(77,45,130,.12) !important;
}
.feature-box h4,
.counter-card h3,
.process-heading h3,
.process-card h4{color:#5c21b7 !important;}
.feature-box p,
.counter-card span,
.process-heading p,
.process-card p{color:black !important;}
.feature-box .icon,
.process-card span{
  background:linear-gradient(135deg,#fff0bd,#efb443) !important;
  color:#4b3508 !important;
}
.chakra-center .outer-ring,
.chakra-center .middle-ring,
.chakra-center .inner-ring{
  border-color:#ff9800 !important;
}
.center-glow{opacity:.20 !important;}
.process-line{
  background:linear-gradient(90deg,#e6d4a8,var(--gold),#e6d4a8) !important;
}
.cta-box{
  background:linear-gradient(135deg,#fffaf0,#ffffff) !important;
  border:1px solid #ead9b7 !important;
  box-shadow:0 14px 35px rgba(35,28,50,.07) !important;
}
.cta-box h3{color:var(--ink) !important;}
.cta-box p{color:var(--muted) !important;}
.cta-box a,
.astro-consult-btn,
.ppc-submit-btn{
  background:linear-gradient(135deg,#d92828,#8c59cf) !important;
  color:#fff !important;
  box-shadow:0 10px 25px rgba(107,53,181,.20) !important;
}

/* SPECIALIZED SERVICES */
.pp-new-services{
  background:
    radial-gradient(circle at 0 0,rgba(215,154,32,.07),transparent 22%),
    radial-gradient(circle at 100% 100%,rgba(107,53,181,.06),transparent 24%),
    #fafafa !important;
}
.pp-service-heading strong{color:var(--purple) !important;}
.pp-astro-card{
  background:#fff !important;
  /*border:1px solid #ebe8e2 !important;*/
  box-shadow:0 12px 30px rgba(30,32,45,.07) !important;
}
.pp-astro-card:hover{box-shadow:0 20px 42px rgba(107,53,181,.14) !important;}
.pp-astro-content,
.pp-astro-content h3{color:#000000 !important;}
.pp-astro-content p{color:black !important;}
.pp-card-category{color:#ff0c0c !important;}
.pp-service-tags span{
  background:#f7f1ff !important;
  color:var(--purple) !important;
  border:1px solid #e7dafa !important;
}
.pp-whatsapp-btn{
  background:#e8f8ee !important;
  color:#17884c !important;
  border:2px solid #bfe7cf !important;
}
.pp-contact-btn{
  background:#fff8e7 !important;
  color:#8a5a00 !important;
  border:2px solid #efd69c !important;
}

/* CONTACT / CONSULTATION */
.ppc-contact-section{
  background:
    radial-gradient(circle at 15% 25%,rgba(215,154,32,.10),transparent 26%),
    radial-gradient(circle at 85% 65%,rgba(107,53,181,.08),transparent 25%),
    #faecbd !important;
}
.ppc-contact-left,
.ppc-contact-right,
.ppc-form-card,
.ppc-form-border{
  color:var(--ink) !important;
}
.ppc-feature{
  background:#fff !important;
  border:1px solid #ece7dd !important;
  box-shadow:0 8px 24px rgba(33,34,47,.05) !important;
}
.ppc-feature-text h4,
.ppc-form-heading h3{color:var(--ink) !important;}
.ppc-feature-text p{color:var(--muted) !important;}
.ppc-feature-icon,
.ppc-form-icon{
  background:#fff6df !important;
  color:#ff0000 !important;
  border:2px solid #eedaa7 !important;
}
.ppc-form-card{
  background:#fff !important;
  border:1px solid #e9e4dc !important;
  box-shadow:0 18px 45px rgba(40,33,54,.09) !important;
}
.ppc-form-group input,
.ppc-form-group select,
.ppc-form-group textarea{
  background:#fafafa !important;
  color:var(--ink) !important;
  border:1px solid #e5e3e8 !important;
}
.ppc-form-group input:focus,
.ppc-form-group select:focus,
.ppc-form-group textarea:focus{
  border-color:var(--purple) !important;
  box-shadow:0 0 0 3px rgba(107,53,181,.10) !important;
}
.ppc-form-security{color:var(--muted) !important;}
.ppc-orb{opacity:.12 !important;}
.ppc-ring{border-color:rgba(215,154,32,.18) !important;}

/* GUIDANCE / BENEFITS */
.astro-services-section{
  background:
    radial-gradient(circle at 18% 55%,rgba(215,154,32,.08),transparent 22%),
    radial-gradient(circle at 82% 35%,rgba(107,53,181,.06),transparent 22%),
    #fff !important;
}
.astro-services-intro h3,
.astro-service-card h3{color:#6d28d9 !important;}
.astro-services-intro p,
.astro-service-card p{color:black !important;}
.astro-service-card{
  background:#fff !important;
  border:1px solid #ebe6dd !important;
  box-shadow:0 10px 28px rgba(33,34,47,.06) !important;
}
.astro-service-card:hover{
  box-shadow:0 18px 40px rgba(107,53,181,.12) !important;
}
.astro-card-icon{
  background:#f8f0ff !important;
  color:#ef1313 !important;
  border-color:#e6d9f7 !important;
}
.astro-orbit-ring{border-color:rgba(215,154,32,.45) !important;}
.astro-orbit-circle{
  background:#fffaf0 !important;
  color:var(--purple) !important;
  box-shadow:0 0 0 12px rgba(215,154,32,.05) !important;
}

/* REVIEWS */
.review-section{
  background:linear-gradient(180deg,#e9e7ee,#fff) !important;
  color:var(--ink) !important;
}
.review-card{
  background:#fff !important;
  border:1px solid #ece8f0 !important;
  box-shadow:0 12px 32px rgba(33,34,47,.2) !important;
}
.review-card h3,
.review-card h4{color:var(--ink) !important;}
.review-card p{color:var(--muted) !important;}
.review-badge{color:var(--gold-dark) !important;}
.swiper-pagination-bullet{background:#d7d0e4 !important;opacity:1 !important;}
.swiper-pagination-bullet-active{background:var(--purple) !important;}
.swiper-button-next,
.swiper-button-prev{
  color:var(--purple) !important;
  background:#fff !important;
  border:1px solid #e8e2ee !important;
  box-shadow:0 6px 18px rgba(50,40,70,.08) !important;
}

/* FOOTER */
.mystic-footer{
  background:linear-gradient(135deg,#fcfaf6,#f4eff9) !important;
  color:var(--ink) !important;
  border-top:1px solid #e7dfd2;
}
.footer-stars{opacity:.08 !important;}
.footer-box{
  background:rgba(255,255,255,.86) !important;
  border:1px solid #e8e1d7 !important;
  box-shadow:0 10px 28px rgba(33,34,47,.06) !important;
}
.footer-box h3,
.footer-box p,
.footer-box a,
.footer-bottom p{color:black !important;}
.footer-box p{color:black !important;}
.footer-box ul li a:hover{color:var(--purple) !important;}
.footer-social a{
  background:#fff !important;
  border:1px solid #e7e1d7 !important;
  color:var(--purple) !important;
}
.footer-map iframe{filter:grayscale(.15) saturate(.85);}
.footer-bottom{
  border-top:1px solid #e8e1d7 !important;
  background:transparent !important;
}

/* FLOATING BUTTONS */
.tooltip-text{
  background:#fff !important;
  color:var(--ink) !important;
  border:1px solid #e7e1d7 !important;
  box-shadow:0 10px 25px rgba(33,34,47,.12) !important;
}
.tooltip-text::after{background:#fff !important;border-right:1px solid #e7e1d7;border-bottom:1px solid #e7e1d7;}

/* MOBILE */
@media(max-width:991px){
  .astro-menu{background:#fff !important;border-left:3px solid var(--gold) !important;}
  .why-choose-section,.pp-new-services,.ppc-contact-section,.astro-services-section{padding-left:15px !important;padding-right:15px !important;}
}
@media(max-width:576px){
  .astro-logo img{width:145px !important;}
  .section-header h2,.pp-service-heading h2,.ppc-main-title,.astro-services-heading h2,.review-heading h2{font-size:28px !important;}
  .cta-box{gap:20px !important;}
}

/* Prevent old dark inline styles from leaking into the page */
body[style],
.why-choose-section[style],
.pp-new-services[style],
.ppc-contact-section[style],
.astro-services-section[style],
.review-section[style]{background-color:#fff !important;}

/*---------------------*/

/* =====================================================
   PREMIUM BORDERS & BORDER RADIUS
   MAROON + CREAM + GOLD THEME
   ===================================================== */

:root {
    --maroon: #941d1d;
    --dark-maroon: #741313;
    --gold: #d89b23;
    --light-gold: #f3d38a;
    --cream: #fff8ee;
    --card-bg: #fffdf9;
    --border-light: #ead9c4;
}


/* =====================================================
   1. FEATURE CARDS
   ===================================================== */

.feature-box {
    background: var(--card-bg) !important;
    border: 1px solid var(--border-light) !important;
    border-left: 4px solid var(--gold) !important;
    border-radius: 12px !important;
    overflow: hidden;
    transition: 0.4s ease;
}

.feature-box:hover {
    border-color: var(--gold) !important;
    border-left-color: var(--maroon) !important;
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(116, 19, 19, 0.12) !important;
}


/* =====================================================
   2. COUNTER CARDS
   ===================================================== */

.counter-card {
    background: var(--card-bg) !important;
    border: 1px solid var(--border-light) !important;
    border-top: 3px solid var(--gold) !important;
    border-radius: 12px !important;
    overflow: hidden;
}

.counter-card:hover {
    border-color: var(--gold) !important;
    transform: translateY(-5px);
}

.counter-card h3,
.counter-card .counter-number {
    color: var(--maroon) !important;
}


/* =====================================================
   3. PROCESS CARDS
   ===================================================== */

.process-card {
    background: var(--card-bg) !important;
    border: 1px solid var(--border-light) !important;
    border-radius: 25px !important;
    overflow: hidden;
    transition: 0.4s ease;
}

.process-card:hover {
    border-color: var(--gold) !important;
    box-shadow: 0 15px 35px rgba(116, 19, 19, 0.10) !important;
}

.process-card span {
    border: 2px solid var(--light-gold) !important;
}


/* =====================================================
   4. MAIN CTA BOX
   ===================================================== */

.cta-box {
    background: #f4e0c3 !important;
    border: 1px solid var(--gold) !important;
    border-radius: 16px !important;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(116, 19, 19, 0.18) !important;
}


/* =====================================================
   5. SERVICE CARDS
   ===================================================== */

.pp-astro-card {
    background: var(--card-bg) !important;
    border: 3px solid #ce1d23 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    transition: 0.4s ease;
}

.pp-astro-card:hover {
    border-color: var(--gold) !important;
    transform: translateY(-12px);
    box-shadow: 0 22px 45px rgba(116, 19, 19, 0.4) !important;
}


/* SERVICE IMAGE */

.pp-card-image {
    border-bottom: 3px solid var(--gold) !important;
    overflow: hidden !important;
}

.pp-card-image img {
    transition: transform 0.5s ease;
}

.pp-astro-card:hover .pp-card-image img {
    transform: scale(1.06);
}


/* SERVICE TAGS */

.pp-service-tags span,
.pp-astro-content .tag {
    background: #fff5d8 !important;
    border: 1px solid #edd59a !important;
    border-radius: 20px !important;
    color: #875a08 !important;
}


/* SERVICE BUTTONS */

.pp-whatsapp-btn,
.pp-contact-btn {
    border-radius: 26px !important;
}


/* =====================================================
   6. CONSULTATION FEATURES
   ===================================================== */

.ppc-feature {
    background: var(--card-bg) !important;
    border: 1px solid #ff9800 !important;
    border-left: 4px solid var(--gold) !important;
    border-radius: 10px !important;
    overflow: hidden;
}

.ppc-feature:hover {
    border-color: var(--gold) !important;
}


/* =====================================================
   7. CONSULTATION FORM
   ===================================================== */

.ppc-form-card {
    background: #fffaf2 !important;
    border: 2px solid var(--maroon) !important;
    border-radius: 16px !important;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(116, 19, 19, 0.12) !important;
}


/* FORM INPUTS */

.ppc-form-group input,
.ppc-form-group select,
.ppc-form-group textarea {
    background: #fffdf9 !important;
    border: 1px solid #e5cdb5 !important;
    border-radius: 8px !important;
}

.ppc-form-group input:focus,
.ppc-form-group select:focus,
.ppc-form-group textarea:focus {
    border-color: var(--maroon) !important;
    box-shadow: 0 0 0 3px rgba(148, 29, 29, 0.08) !important;
}


/* SUBMIT BUTTON */

.ppc-submit-btn {
    border: 1px solid #c78713 !important;
    border-radius: 8px !important;
}


/* =====================================================
   8. GUIDANCE INTRO BOX
   ===================================================== */

.astro-services-intro {
    background: linear-gradient(145deg, #fff9ec, #fffdf9) !important;
    /*border: 1px solid #e6cf9e !important;*/
    border-radius: 18px !important;
    overflow: hidden;
}


/* =====================================================
   9. GUIDANCE SERVICE CARDS
   ===================================================== */

.astro-service-card {
    background: var(--card-bg) !important;
    border-left: 1px solid var(--gold) !important;
    border-right: 1px solid var(--gold) !important;
    border-bottom: 6px double var(--gold) !important;
    border-top: 6px double var(--gold) !important;
    border-radius: 20px !important;
    overflow: hidden;
    transition: 0.4s ease;
    
}

.astro-service-card:hover {
    border-color: var(--gold) !important;
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(116, 19, 19, 0.12) !important;
}


/* =====================================================
   10. REVIEW CARDS
   ===================================================== */

.review-card {
    border: 1px solid black !important;
    /*border-top: 3px solid var(--gold) !important;*/
    border-radius: 14px !important;
    overflow: hidden;
}

.review-card:hover {
    border-color: var(--gold) !important;
    transform: translateY(-5px);
}


/* =====================================================
   11. NAVIGATION BUTTON
   ===================================================== */

.astro-call {
    border: 1px solid var(--gold) !important;
    border-radius: 6px !important;
}


/* =====================================================
   12. FOOTER CARDS
   ===================================================== */

.footer-box {
    background: rgba(255, 253, 249, 0.98) !important;
    border: 2px solid #8f171b !important;
    border-radius: 12px !important;
    overflow: hidden;
    transition: 0.3s ease;
}

.footer-box:hover {
    border-color: var(--gold) !important;
    transform: translateY(-4px);
}


/* FOOTER SOCIAL ICONS */

.footer-social a {
    border: 2px solid #8f171b !important;
    border-radius: 8px !important;
}


/* =====================================================
   13. CHAKRA CENTER
   ===================================================== */

.chakra-center .center-circle {
    border: 3px solid var(--gold) !important;
    border-radius: 50% !important;
}


/* =====================================================
   14. SECTION SEPARATOR
   ===================================================== */

.why-choose-section,
.pp-new-services,
.ppc-contact-section,
.astro-services-section {
    border-bottom: 1px solid rgba(216, 155, 35, 0.18);
}


/* =====================================================
   MOBILE BORDER ADJUSTMENTS
   ===================================================== */

@media (max-width: 768px) {

    .feature-box {
        border-left-width: 3px !important;
        border-radius: 10px !important;
    }

    .counter-card,
    .process-card,
    .pp-astro-card,
    .astro-service-card {
        border-radius: 10px !important;
    }

    .ppc-form-card {
        border-radius: 14px !important;
    }

    .cta-box {
        border-radius: 12px !important;
    }

    .footer-box {
        border-radius: 10px !important;
    }
}

/*---------------*/

/*faq*/

/* =====================================================
   COMPACT PSYCHIC PANDIT FAQ
===================================================== */

.pp-compact-faq {

  position:relative;

  overflow:hidden;

  padding:
    40px 20px;

  background:

    radial-gradient(
      circle at 15% 20%,
      rgba(216,168,48,.10),
      transparent 27%
    ),

    radial-gradient(
      circle at 85% 75%,
      rgba(117,60,151,.10),
      transparent 28%
    ),

    linear-gradient(
      135deg,
      #e7a3a5,
      #faf5ff,
      #fffaf0
    );
}


.pp-faq-inner {

  width:min(1080px,100%);

  margin:auto;

  position:relative;

  z-index:2;
}


/* =====================================================
   HEADING
===================================================== */

.pp-compact-heading {

  text-align:center;

  max-width:650px;

  margin:
    0 auto 45px;
}


.pp-faq-label {

  margin-bottom:12px;

  color:#bd8b20;

  font-size:13px;

  font-weight:700;

  letter-spacing:3px;
}


.pp-compact-heading h2 {

  margin:0;

  color:#2a1738;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(35px,4vw,48px);

  line-height:1.1;

  font-weight:400;
}


.pp-compact-heading h2 span {

  color:#4c1d95;
}


.pp-compact-heading p {

  margin:
    15px auto 0;

  color:#756b7b;

  font-size:13px;

  line-height:1.75;

}


/* =====================================================
   GRID
===================================================== */

.pp-compact-grid {

  display:grid;

  grid-template-columns:
    repeat(2,1fr);

  gap:14px;
}


/* =====================================================
   CARD
===================================================== */

.pp-compact-card {

  position:relative;

  overflow:hidden;

  border:
    1px solid
    rgba(202,153,42,.25);

  border-radius:14px;

  background:
    rgba(255,255,255,.72);

  box-shadow:
    0 8px 25px
    rgba(53,27,67,.05);

  transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;
}


.pp-compact-card:hover {

  transform:
    translateY(-3px);

  border-color:
    rgba(203,153,42,.65);

  box-shadow:
    0 14px 35px
    rgba(53,27,67,.10);
}


.pp-compact-card.active {

  border-color:
    rgba(204,154,42,.7);

  box-shadow:
    0 14px 38px
    rgba(67,32,79,.11);
}


/* =====================================================
   QUESTION
===================================================== */

.pp-compact-question {

  display:grid;

  grid-template-columns:
    38px 1fr 30px;

  align-items:center;

  gap:10px;

  width:100%;

  min-height:66px;

  padding:
    10px 15px;

  border:0;

  background:transparent;

  text-align:left;

  cursor:pointer;

  font-family:inherit;
}


.pp-compact-number {

  display:flex;

  align-items:center;

  justify-content:center;

  width:30px;
  height:30px;

  border-radius:50%;

 color: rgb(242, 242, 242);
    background: linear-gradient(145deg, #4c1d95, #4c1d95);

  font-size:11px;

  font-weight:700;
}


.pp-compact-title {

  color:#321b43;

  font-size:13px;

  font-weight:600;

  line-height:1.4;

  transition:
    color .3s ease;
}


.pp-compact-card:hover
.pp-compact-title {

  color:#9b6913;
}


.pp-compact-card.active
.pp-compact-title {

  color:#956311;
}


/* =====================================================
   PLUS
===================================================== */

.pp-compact-plus {

  display:flex;

  align-items:center;

  justify-content:center;

  width:28px;
  height:28px;

  border-radius:50%;

  color:#a77516;

  background:#fff6dc;

  border:
    1px solid
    rgba(204,153,39,.25);

  font-size:21px;

  transition:
    transform .4s ease,
    background .3s ease,
    color .3s ease;
}


.pp-compact-card.active
.pp-compact-plus {

  transform:rotate(45deg);

  color:#fff;

  background:
    linear-gradient(
      135deg,
      #d4a334,
      #9b58b3
    );
}


/* =====================================================
   ANSWER
===================================================== */

.pp-compact-answer {

  display:grid;

  grid-template-rows:0fr;

  transition:
    grid-template-rows
    .5s
    cubic-bezier(.22,1,.36,1);
}


.pp-compact-card.active
.pp-compact-answer {

  grid-template-rows:1fr;
}


.pp-answer-inner {

  min-height:0;

  overflow:hidden;

  display:flex;

  gap:10px;

  align-items:flex-start;

  padding:
    0 18px 0 63px;

  opacity:0;

  transform:
    translateY(-8px);

  transition:
    padding .45s ease,
    opacity .35s ease,
    transform .45s ease,
    background .4s ease;
}


.pp-compact-card.active
.pp-answer-inner {

  padding:
    14px 18px 17px 63px;

  opacity:1;

  transform:
    translateY(0);
}


.pp-answer-star {

  flex-shrink:0;

  margin-top:2px;

  color:#bd8c20;

  font-size:14px;
}


.pp-answer-inner p {

  margin:0;

  color:#62586a;

  font-size:11.5px;

  line-height:1.7;
}


/* =====================================================
   ANSWER COLORS
===================================================== */

.pp-compact-card[data-color="gold"]
.pp-answer-inner {

  background:
    linear-gradient(
      100deg,
      rgba(255,244,204,.92),
      rgba(255,251,237,.7)
    );
}


.pp-compact-card[data-color="purple"]
.pp-answer-inner {

  background:
    linear-gradient(
      100deg,
      rgba(239,225,255,.94),
      rgba(250,246,255,.72)
    );
}


.pp-compact-card[data-color="blue"]
.pp-answer-inner {

  background:
    linear-gradient(
      100deg,
      rgba(226,239,255,.94),
      rgba(248,251,255,.75)
    );
}


.pp-compact-card[data-color="rose"]
.pp-answer-inner {

  background:
    linear-gradient(
      100deg,
      rgba(255,229,235,.94),
      rgba(255,248,250,.75)
    );
}


.pp-compact-card[data-color="green"]
.pp-answer-inner {

  background:
    linear-gradient(
      100deg,
      rgba(226,248,234,.94),
      rgba(248,255,250,.75)
    );
}


.pp-compact-card[data-color="orange"]
.pp-answer-inner {

  background:
    linear-gradient(
      100deg,
      rgba(255,235,211,.94),
      rgba(255,250,243,.75)
    );
}


/* =====================================================
   ACTIVE GOLD EDGE
===================================================== */

.pp-compact-card.active::before {

  content:"";

  position:absolute;

  left:0;
  top:0;
  bottom:0;

  width:3px;

  background:
    linear-gradient(
      180deg,
      #e7bb4b,
      #9954b0
    );

  box-shadow:
    0 0 12px
    rgba(216,168,47,.6);
}


/* =====================================================
   MOBILE
===================================================== */

@media(max-width:700px) {

  .pp-compact-faq {

    padding:
      35px 15px;
  }


  .pp-compact-heading {

    margin-bottom:32px;
  }


  .pp-compact-heading h2 {

    font-size:28px;
    font-family: cursive;

  }


  .pp-compact-heading p {

    font-size:12px;
  }


  .pp-compact-grid {

    grid-template-columns:1fr;

    gap:11px;
  }


  .pp-compact-question {

    min-height:62px;

    grid-template-columns:
      35px 1fr 28px;

    padding:
      9px 12px;
  }


  .pp-compact-number {

    width:28px;
    height:28px;
  }


  .pp-compact-title {

    font-size:12.5px;
  }


  .pp-compact-plus {

    width:26px;
    height:26px;
  }


  .pp-compact-card.active
  .pp-answer-inner {

    padding:
      13px 14px 16px 30px;
  }

}
/*-----entry animations */
/* =========================================
   FAQ SECTION ENTRY
========================================= */

.pp-compact-card {
  opacity: 0;
  transform: translateY(45px);
  filter: blur(6px);

  transition:
    opacity .65s ease,
    transform .7s cubic-bezier(.22,1,.36,1),
    filter .7s ease,
    box-shadow .35s ease,
    border-color .35s ease;
}


/* =========================================
   ONE-BY-ONE DELAYS
========================================= */

.pp-compact-card:nth-child(1) {
  transition-delay: 0s;
}

.pp-compact-card:nth-child(2) {
  transition-delay: .12s;
}

.pp-compact-card:nth-child(3) {
  transition-delay: .24s;
}

.pp-compact-card:nth-child(4) {
  transition-delay: .36s;
}

.pp-compact-card:nth-child(5) {
  transition-delay: .48s;
}

.pp-compact-card:nth-child(6) {
  transition-delay: .60s;
}

.pp-compact-card:nth-child(7) {
  transition-delay: .72s;
}

.pp-compact-card:nth-child(8) {
  transition-delay: .84s;
}


/* =========================================
   WHEN SECTION ENTERS SCREEN
========================================= */

.pp-compact-faq.questions-visible
.pp-compact-card {

  opacity: 1;

  transform:
    translateY(0);

  filter:
    blur(0);
}


/* =========================================
   LITTLE GOLD LINE
========================================= */

.pp-compact-card::before {

  content: "";

  position: absolute;

  left: 0;
  top: 0;

  width: 0;
  height: 2px;

  /*background:*/
  /*  linear-gradient(*/
  /*    90deg,*/
  /*    #d8aa3b,*/
  /*    #a45bb7*/
  /*  );*/

  transition:
    width .55s ease;

  z-index: 5;
}


.pp-compact-faq.questions-visible
.pp-compact-card::before {

  width: 100%;
}


/* =========================================
   NUMBER POP
========================================= */

.pp-compact-card
.pp-compact-number {

  transform: scale(.7);

  opacity: .3;

  transition:
    transform .45s cubic-bezier(.22,1,.36,1),
    opacity .4s ease;
}


.pp-compact-faq.questions-visible
.pp-compact-card
.pp-compact-number {

  transform: scale(1);

  opacity: 1;
}


/* =========================================
   MOBILE
========================================= */

@media(max-width:700px) {

  .pp-compact-card {

    transform:
      translateY(30px);

    filter:
      blur(4px);
  }

  .pp-compact-card:nth-child(1) {
    transition-delay: 0s;
  }

  .pp-compact-card:nth-child(2) {
    transition-delay: .10s;
  }

  .pp-compact-card:nth-child(3) {
    transition-delay: .20s;
  }

  .pp-compact-card:nth-child(4) {
    transition-delay: .30s;
  }

  .pp-compact-card:nth-child(5) {
    transition-delay: .40s;
  }

  .pp-compact-card:nth-child(6) {
    transition-delay: .50s;
  }

  .pp-compact-card:nth-child(7) {
    transition-delay: .60s;
  }

  .pp-compact-card:nth-child(8) {
    transition-delay: .70s;
  }

}


/* =========================================
   REDUCED MOTION
========================================= */

@media(prefers-reduced-motion: reduce) {

  .pp-compact-card {

    opacity: 1 !important;

    transform: none !important;

    filter: none !important;

    transition: none !important;
  }

}

