/* =====================================================
   MYSTIC LUXE TESTIMONIAL SECTION
   PREMIUM DIVINE PINK THEME
===================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

.astro-testimonial-section{

    --pink:#ff1493;
    --pink2:#ff4db8;
    --soft:#fff6fb;
    --text:#111111;
    --muted:#666666;
    --white:#ffffff;

    width:100%;

    padding:120px 20px;

    overflow:hidden;

    position:relative;

    background:
    radial-gradient(circle at top left,
    rgba(255,20,147,0.10),
    transparent 35%),

    radial-gradient(circle at bottom right,
    rgba(255,77,184,0.10),
    transparent 35%),

    linear-gradient(
        135deg,
        #fff6fb 0%,
        #ffffff 50%,
        #fff8fc 100%
    );

    font-family:'Poppins',sans-serif;
}

/* =====================================================
   SOFT GLOWS
===================================================== */

.astro-glow{

    position:absolute;

    border-radius:50%;

    filter:blur(120px);

    opacity:.18;
}

.astro-glow-1{

    width:420px;
    height:420px;

    background:#ff1493;

    top:-120px;
    left:-120px;
}

.astro-glow-2{

    width:380px;
    height:380px;

    background:#ff4db8;

    right:-100px;
    bottom:-100px;
}

/* =====================================================
   CONTAINER
===================================================== */

.astro-testimonial-container{

    width:100%;
    max-width:1450px;

    margin:auto;

    display:grid;

    grid-template-columns:420px 1fr;

    gap:70px;

    position:relative;
    z-index:2;
}

/* =====================================================
   LEFT SIDE
===================================================== */

.astro-testimonial-left{

    position:sticky;

    top:100px;

    height:fit-content;
}

/* =====================================================
   GOD IMAGE
===================================================== */

.astro-god-image{

    width:100%;
    max-width:380px;

    margin:auto;

    position:relative;
}

/* CHAKRA */

.chakra-rotate{

    position:absolute;

    inset:-45px;

    background:
    url('https://i.pinimg.com/originals/c9/78/5f/c9785f2d64a756dc6f3e2d8f5cb91889.png')
    center/contain
    no-repeat;

    opacity:.08;

    animation:rotateChakra 35s linear infinite;
}

/* IMAGE */

.astro-god-image img{

    width:100%;

    border-radius:50%;

    position:relative;
    z-index:2;

    border:10px solid rgba(255,255,255,.95);

    box-shadow:
    0 25px 60px rgba(255,20,147,.14);

    animation:floatImage 5s ease-in-out infinite;
}

/* =====================================================
   LEFT CONTENT
===================================================== */

.astro-left-content{

    margin-top:45px;

    text-align:center;
}

.astro-left-content span{

    display:inline-block;

    padding:12px 24px;

    border-radius:999px;

    background:
    linear-gradient(
        135deg,
        rgba(255,20,147,.10),
        rgba(255,77,184,.10)
    );

    color:var(--pink);

    font-size:14px;
    font-weight:800;

    margin-bottom:22px;

    letter-spacing:1px;

    text-transform:uppercase;
}

.astro-left-content h2{

    font-size:52px;

    line-height:1.15;

    color:#111;

    margin-bottom:22px;

    font-weight:900;
}

.astro-left-content h2 span{

    background:
    linear-gradient(
        90deg,
        #ff1493,
        #ff4db8
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.astro-left-content p{

    color:var(--muted);

    line-height:1.9;

    font-size:17px;
}

/* =====================================================
   RIGHT SIDE
===================================================== */

.astro-testimonial-right{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:30px;

    height:950px;

    overflow:hidden;
}

/* =====================================================
   MOVING COLUMN
===================================================== */

.testimonial-column{

    display:flex;

    flex-direction:column;

    gap:30px;
}

/* AUTO MOVE */

.move-up{

    animation:moveUp 18s linear infinite;
}

.move-down{

    animation:moveDown 18s linear infinite;
}

/* =====================================================
   CARD
===================================================== */

.testimonial-card{

    padding:38px;

    border-radius:34px;

    background:
    linear-gradient(
        135deg,
        rgba(255,255,255,.95),
        rgba(255,255,255,.88)
    );

    border:
    1px solid rgba(255,20,147,.08);

    transition:.45s ease;

    box-shadow:
    0 15px 40px rgba(255,20,147,.08);

    position:relative;

    overflow:hidden;
}

.testimonial-card:hover{

    transform:
    translateY(-10px);

    box-shadow:
    0 20px 50px rgba(255,20,147,.16);
}

/* QUOTE */

.quote{

    font-size:70px;

    color:rgba(255,20,147,.08);

    line-height:1;

    margin-bottom:15px;

    font-weight:900;
}

/* STARS */

.stars{

    color:#ff1493;

    font-size:20px;

    margin-bottom:22px;

    letter-spacing:4px;
}

/* TEXT */

.testimonial-card p{

    color:#555;

    line-height:1.9;

    font-size:16px;

    margin-bottom:32px;
}

/* USER */

.user{

    display:flex;

    align-items:center;

    gap:15px;
}

.user img{

    width:68px;
    height:68px;

    border-radius:50%;

    object-fit:cover;

    border:4px solid #fff;

    box-shadow:
    0 10px 25px rgba(255,20,147,.18);
}

.user h4{

    color:#111;

    margin-bottom:6px;

    font-size:18px;

    font-weight:800;
}

.user span{

    color:#777;

    font-size:14px;
}

/* =====================================================
   ANIMATIONS
===================================================== */

@keyframes rotateChakra{

    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }
}

@keyframes floatImage{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-15px);
    }

    100%{
        transform:translateY(0px);
    }
}

@keyframes moveUp{

    0%{
        transform:translateY(0);
    }

    100%{
        transform:translateY(-50%);
    }
}

@keyframes moveDown{

    0%{
        transform:translateY(-50%);
    }

    100%{
        transform:translateY(0);
    }
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:1200px){

    .astro-testimonial-container{

        grid-template-columns:1fr;
    }

    .astro-testimonial-left{

        position:relative;

        top:0;

        text-align:center;
    }

    .astro-god-image{

        max-width:320px;
    }
}

/* =====================================================
   TABLET
===================================================== */

@media(max-width:768px){

    .astro-testimonial-section{

        padding:80px 15px;
    }

    .astro-testimonial-right{

        grid-template-columns:1fr;

        height:auto;
    }

    .testimonial-column{

        animation:none;
    }

    .astro-left-content h2{

        font-size:38px;
    }
}

/* =====================================================
   MOBILE
===================================================== */

@media(max-width:480px){

    .astro-left-content h2{

        font-size:30px;
    }

    .testimonial-card{

        padding:26px;
    }

    .user{

        flex-direction:column;

        align-items:flex-start;
    }

    .astro-god-image{

        max-width:260px;
    }
}