/* =========================
   ADVISOR SECTION
========================= */

.advisor-section {

    padding: 100px 20px;

    overflow: hidden;
}


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

.advisor-container {

    display: flex;

    flex-direction: row-reverse;

    align-items: center;

    justify-content: center;

    gap: 70px;

    flex-wrap: nowrap;

    max-width: 1200px;

    margin: auto;
}


/* =========================
   ADVISOR IMAGE
========================= */

.advisor-image {

    background:
        rgba(255,255,255,0.12);

    padding: 20px;

    border-radius: 60px;

    box-shadow:
        0 12px 30px rgba(75,46,131,0.08);
}

.advisor-image img {

    max-width: 280px;

    width: 100%;

    height: auto;

    border-radius: 50px;

    animation: float 4s ease-in-out infinite;
}


/* =========================
   BUBBLE
========================= */

.advisor-bubble {

    position: relative;

    background:
        rgba(255,255,255,0.08);

    backdrop-filter: blur(14px);

    border:
        2px solid rgba(217,204,255,0.3);

    color: white;

    padding: 55px 45px;

    max-width: 520px;

    border-radius: 80px;

    box-shadow:
        0 14px 35px rgba(75,46,131,0.12);

    direction: rtl;

    text-align: right;
}


/* =========================
   BUBBLE TAIL
========================= */

.advisor-bubble::before,
.advisor-bubble::after {

    content: "";

    position: absolute;

    background:
        rgba(255,255,255,0.12);

    border:
        2px solid rgba(217,204,255,0.3);

    border-radius: 50%;
}

.advisor-bubble::before {

    width: 40px;

    height: 40px;

    left: -28px;

    top: 120px;
}

.advisor-bubble::after {

    width: 24px;

    height: 24px;

    left: -58px;

    top: 150px;
}


/* =========================
   CLOUD SHAPES
========================= */

.cloud {

    position: absolute;

    background:
        rgba(255,255,255,0.12);

    border:
        2px solid rgba(217,204,255,0.3);

    border-radius: 50%;

    z-index: -1;
}

.cloud1 {

    width: 120px;

    height: 120px;

    top: -40px;

    right: 70px;
}

.cloud2 {

    width: 90px;

    height: 90px;

    top: -25px;

    left: 100px;
}

.cloud3 {

    width: 100px;

    height: 100px;

    bottom: -35px;

    right: 180px;
}


/* =========================
   TYPOGRAPHY
========================= */

.advisor-bubble h2 {

    margin-top: 0;

    margin-bottom: 24px;

    color: #ffffff;

    font-size: 2.2rem;

    font-weight: 700;

    line-height: 1.2;

    letter-spacing: -0.5px;
}

.advisor-bubble h2::after {

    content: "";

    display: block;

    width: 85px;

    height: 5px;

    margin-top: 14px;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            #7b5cff,
            #c7b7ff
        );
}

.advisor-bubble p {

    color:
        rgba(255,255,255,0.82);

    line-height: 2;

    font-size: 1.06rem;

    margin-bottom: 22px;
}


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

.advisor-bubble .btn {

    margin-top: 10px;
}