/* GLOBAL FONT */
body {
    font-family: "Istok Web", sans-serif;
}

:root {
    --primary-color: #7e00a7;
    --light-color: #fcf5ff;
    --title-color: #000000;
    --text-color: #959bac;
    --border-color: #454c63;
    --font: "Istok Web", sans-serif;
    --theme-light: #dbc0e5;
}

/* ---------------- TOP BAR ---------------- */

*,
*::before,
*::after {
    box-sizing: border-box;
}

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

.top-offer-bar {
    background: #7e00a7;
    font-size: 0.9rem;
    font-family: var(--font);
}

.top-limited {
    color: var(--theme-light);
}

.bg-round {
    background: var(--primary-color);
}

/* ---------------- SEARCH BAR ---------------- */
.navbar {
    background-color: #fbf2ff;

    position: sticky;
    top: 0;

    z-index: 999;
    display: flex;
    flex-direction: column;

}

.search-bar {
    position: relative;
    width: 410px;
    height: 38px;
    border-radius: 6px;
    border: 1px solid #959bac !important;
    color: #9e9d9d !important;
    font-family: var(--font);
    font-size: 0.9rem;
}

@media (max-width:991px) {
    .search-bar {
        width: 100%;
        margin: 8px 0px;
    }
}

.search-bar input {
    border: none;
    font-family: var(--font);
    background-color: #fbf2ff;
    width: 100%;
}

.second-input:focus-visible {
    outline: none !important;
}

/* ---------------- NAVBAR ---------------- */

.nav-item {
    font-size: 0.9rem !important;
    font-family: var(--font);
    font-weight: 400;
    line-height: 100%;
}

.nav-link {
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--title-color);
    margin-right: 20px;
}

/* ---------------- BUTTONS ---------------- */

.btns {
    padding: 7px 36px;
}

.btn-purple {
    font-weight: 400;
    font-family: var(--font);
}

/* =========================
        DESKTOP LOGIN BTN
========================= */

.btn-outline-purple {
    width: 248px;
    height: 38px;

    border-radius: 6px;

    border: 1px solid var(--primary-color);
    background-color: #7E00A7;
    color: white;

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

    font-weight: 400;
    font-size: 0.96rem;
    font-family: var(--font);
    transition: 0.3s ease;
}

.btn-outline-purple:hover {
    background: var(--primary-color);
    color: white;
}

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

.mobile-actions {
    gap: 10px;
}

/* SEARCH ICON */
.mobile-search-toggle {
    width: 42px;
    height: 42px;

    border-radius: 10px;
    border: 1px solid #ddd;

    background: white;

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

    transition: 0.3s ease;
}

.mobile-search-toggle:hover {
    background: #f4e8ff;
}

.mobile-search-toggle img {
    width: 18px;
    height: 18px;
}

/* MOBILE LOGIN BUTTON */
.mobile-login-btn {
    height: 42px;
    padding: 0 18px;
    background: linear-gradient(135deg,
            #7e00a7,
            #b100e8);

    color: white;

    border-radius: 10px;

    text-decoration: none;

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

    font-size: 14px;
    font-weight: 500;

    transition: 0.3s ease;
}

.mobile-login-btn:hover {
    color: white;
    transform: translateY(-2px);
}

/* TOGGLER */
.navbar-toggler {
    border: none;
    box-shadow: none !important;
}

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

.mobile-search-dropdown {

    width: 100%;
    background-color: #fbf2ff;
    padding: 0;

    overflow: hidden;

    max-height: 0;

    opacity: 0;

    transition:
        max-height 0.35s ease,
        opacity 0.3s ease,
        padding 0.3s ease;

    /* box-shadow:
        0 10px 25px rgba(0,0,0,0.08); */
    /* position: relative;  */

}

/* ACTIVE */
.mobile-search-dropdown.active {
    max-height: 120px;

    opacity: 1;

    padding: 15px 0;


}

.mobile-search-dropdown .container {
    width: 100%;
}

/* INNER BOX */
.mobile-search-inner {

    display: flex;
    align-items: center;
    gap: 12px;

    border: 1px solid #ddd;

    border-radius: 12px;

    padding: 12px 14px;

    background: #fafafa;
    transition: 0.3s ease;
}

.mobile-search-inner img {
    width: 18px;
}

.mobile-search-inner:focus-within {
    border-color: var(--primary-color);

    box-shadow:
        0 0 0 4px rgba(126, 0, 167, 0.08);
}

.mobile-search-inner input {

    width: 100%;

    border: none;
    background: transparent;

    outline: none;

    font-size: 14px;
}

/* CLOSE BUTTON */

.mobile-search-close {

    border: none;
    background: transparent;

    width: 28px;
    height: 28px;

    border-radius: 50%;

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

    font-size: 16px;
    color: #666;

    cursor: pointer;

    transition: 0.3s ease;
}

.mobile-search-close:hover {

    background: #f3f3f3;

    color: black;
}


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

@keyframes slideDown {

    from {
        transform: translateY(-15px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

@media (max-width: 991px) {

    .search-bar {
        width: 100%;
    }
}

@media (min-width: 992px) {

    .mobile-actions {
        display: none !important;
    }

    .mobile-search-dropdown {
        display: none !important;
    }
}

@media (max-width: 576px) {

    .navbar-brand img {
        width: 140px;
    }

    .mobile-login-btn {
        padding: 0 14px;
        font-size: 13px;
    }

    .mobile-search-toggle,
    .navbar-toggler {
        width: 40px;
        height: 40px;
    }

}

/* ---------------- FORMS ---------------- */

.form-control {
    /* height: 43px; */
    border-radius: 10px;
    border: 1px solid #454c63 !important;
    color: var(--text-color) !important;
    font-family: var(--font);
    font-size: 15px;
}

.form-control:focus,
.form-control:focus-visible {
    box-shadow: none !important;
}

/* ---------------- TYPOGRAPHY ---------------- */

.mid-text {
    font-family: var(--font);
    font-weight: 700;
    font-size: 15px;
    color: var(--primary-color);
}

/* ---------------- PROGRESS ---------------- */

.progress {
    height: 9px;
    color: #f9a60c;
    --bs-progress-bar-bg: #f9a60c;
}

/* ---------------- RESPONSIVE ---------------- */

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
}

/* Hero section background same as navbar */
.hero-section {
    background-color: #FBF2FF;
    min-height: 600px;
    overflow: visible;

}

.hero-subtitle {
    font-weight: 400;
    font-size: 22px;
    color: #000;
    margin-bottom: 12px;
}

.hero-title {
    font-size: 2.6rem;
    font-weight: 400;
    color: #000;
    max-width: 455px;
    line-height: 1.35;
}



.text-purple {
    color: #7E00A7;
    font-weight: 700;
}

.career-img {
    position: absolute;
    left: 13%;
    bottom: -71%;
}

@media (max-width: 500px) {
    .career-img {
        width: 150px;
    }
}

.career-wrap {
    position: relative;
    display: inline-block;
}


.start-btn {
    background-color: #7e00a7;
    border: none;
    color: #fff;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.125rem;
    width: 206px;
    margin-top: 5rem;
    height: 50px;
}

.start-btn:hover {
    background-color: #7E00A7;
    color: #fff;
}

.text-purple {
    color: #7e00a7;
    font-weight: 700;
}

.stat-row {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    color: #7E00A7;
    font-weight: 700;
    font-size: 1.5rem;
}


.stat-number {
    font-size: 1.3rem;
    font-weight: 700;
}

.stat-label {
    font-weight: 400;
    font-size: 1.1rem;
    color: #6A6F73;
}

.stat-divider {
    border-right: 1px solid #959BAC;
    height: 50px;
    transform: scaley(1.2);
    display: inline-block;
}

.hero-visual-outer {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    /* height = CANVAS_H × scale — set per breakpoint */
    height: 409px;
    /* default: ≥1400px */
}

.hero-visual-canvas {
    position: relative;
    width: 742px;
    height: 460px;
    transform-origin: top center;
    flex-shrink: 0;
    /* scale = default ≥1400px */
    transform: scale(0.889);
}

/* ---- Elements — all positions shifted +262px from original ---- */
.circle-1 {
    position: absolute;
    width: 265px;
    height: 263px;
    top: 0;
    left: 114px;
    /* original: -92, +262 = 170 */
    z-index: 2;
    border-radius: 50%;
    overflow: hidden;
}

.circle-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.circle-2 {
    position: absolute;
    width: 389px;
    height: 381px;
    bottom: 0;
    right: 0;
    z-index: 1;
    border-radius: 50%;
    overflow: hidden;
}

.circle-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ellipse-left {
    position: absolute;
    width: 239px;
    height: 130px;
    left: -56px;
    /* original: -262, +262 = 0 */
    top: 90px;
    z-index: 10;
}

.ellipse-left img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ellipse-right {
    position: absolute;
    width: 263px;
    height: 130px;
    right: 232px;
    bottom: -2px;
    z-index: 10;
}

.ellipse-right img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.circle-small {
    position: absolute;
    width: 95px;
    height: 95px;
    border-radius: 50%;
    background: #DBC0E57D;
    top: 204px;
    left: 239px;
    z-index: 3;


}

@media (max-width: 1399px) and (min-width: 1200px) {
    .hero-visual-canvas {
        transform: scale(0.768);
    }

    .hero-visual-outer {
        height: 353px;
    }
}

/* 992px – 1199px  → scale 0.647, h=298 */
@media (max-width: 1199px) and (min-width: 992px) {
    .hero-section {
        min-height: auto;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-visual-canvas {
        transform: scale(0.647);
    }

    .hero-visual-outer {
        height: 298px;
    }
}

/* 768px – 991px  (col stacks to full width)
    scale 0.970, h=446 */
@media (max-width: 991px) and (min-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 48px 0;
    }

    .hero-title {
        font-size: 2rem;
        max-width: 100%;
    }

    .hero-visual-canvas {
        transform: scale(0.970);
    }

    .hero-visual-outer {
        height: 446px;
    }
}

/* 576px – 767px  → scale 0.728, h=335 */
@media (max-width: 767px) and (min-width: 576px) {
    .hero-section {
        padding: 40px 0 48px;
    }

    .hero-title {
        font-size: 1.8rem;
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn-purples {
        font-size: 1rem;
        padding: 10px 26px;
    }

    .stat-row {
        justify-content: center;
        gap: 16px;
    }

    .stat-number {
        font-size: 1.05rem;
    }

    .stat-label {
        font-size: 0.875rem;
    }

    .hero-visual-canvas {
        transform: scale(0.728);
    }

    .hero-visual-outer {
        height: 335px;
    }
}

/* 480px – 575px  → scale 0.615, h=283 */
@media (max-width: 575px) and (min-width: 480px) {
    .hero-section {
        padding: 36px 0 44px;
    }

    .hero-title {
        font-size: 1.6rem;
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .btn-purples {
        font-size: 0.95rem;
        padding: 10px 24px;
    }

    .stat-row {
        justify-content: center;
        gap: 14px;
    }

    .stat-number {
        font-size: 1rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .stat-divider {
        height: 32px;
    }

    .hero-visual-canvas {
        transform: scale(0.615);
    }

    .hero-visual-outer {
        height: 283px;
    }
}

/* 360px – 479px  → scale 0.453, h=208 */
@media (max-width: 479px) and (min-width: 360px) {
    .hero-section {
        padding: 32px 0 40px;
    }

    .hero-title {
        font-size: 1.4rem;
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .btn-purples {
        font-size: 0.9rem;
        padding: 9px 22px;
    }

    .stat-row {
        justify-content: center;
        gap: 12px;
    }

    .stat-number {
        font-size: 0.95rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .stat-divider {
        height: 28px;
    }

    .hero-visual-canvas {
        transform: scale(0.453);
    }

    .hero-visual-outer {
        height: 208px;
    }
}

/* < 360px  → scale 0.400, h=184 */
@media (max-width: 359px) {
    .hero-section {
        padding: 28px 0 36px;
    }

    .hero-title {
        font-size: 1.2rem;
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .btn-purples {
        font-size: 0.85rem;
        padding: 8px 18px;
    }

    .stat-row {
        justify-content: center;
        gap: 10px;
    }

    .stat-number {
        font-size: 0.875rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .stat-divider {
        height: 24px;
    }

    .hero-visual-canvas {
        transform: scale(0.330);
    }

    .hero-visual-outer {
        height: 184px;
    }
}

/* animation */

/* =========================================
   S4 PREMIUM FLOATING SYSTEM
========================================= */

/* PERFORMANCE */
.circle-1,
.circle-2,
.ellipse-left,
.ellipse-right,
.circle-small,
.hero-title,
.btn-purples,
.stat-row>div {

    will-change: transform, opacity;

    transform: translateZ(0);
}


/* FLOAT SMOOTHNESS */
.circle-1,
.circle-2,
.ellipse-left,
.ellipse-right {

    transition:
        transform 0.4s ease;
}

/* PREMIUM HOVER INTERACTION */
@media (min-width: 992px) {

    .hero-visual-canvas:hover .circle-1 {

        transform: translateY(-6px);
    }

    .hero-visual-canvas:hover .circle-2 {

        transform: translateY(6px);
    }

    .hero-visual-canvas:hover .ellipse-left {

        transform: translateX(6px);
    }

    .hero-visual-canvas:hover .ellipse-right {

        transform: translateX(-6px);
    }
}

/* BUTTON INTERACTION */
.btn-purples {

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.btn-purples:hover {

    transform: translateY(-3px);

    box-shadow:
        0 14px 30px rgba(126, 0, 167, 0.22);
}

/* STAT CARDS */
.stat-row>div {

    transition:
        transform 0.35s ease;
}

.stat-row>div:hover {

    transform: translateY(-4px);
}

/* MOBILE SAFETY */
@media (max-width: 768px) {

    .hero-visual-canvas:hover .circle-1,
    .hero-visual-canvas:hover .circle-2,
    .hero-visual-canvas:hover .ellipse-left,
    .hero-visual-canvas:hover .ellipse-right,
    .btn-purples:hover,
    .stat-row>div:hover {

        transform: none;
    }
}


/* Card section-2 */
/* Section background */

.stats-section {
    background: #ffffff;
}

/* Cards */
.stats-card {
    /* width: 200px; */
    height: 242px;
    background: linear-gradient(180deg, #ffffff 0%, #f5deff 100%);
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    transition: 0.3s ease;
}

/* Center card slightly up */
/* Center card only raised on large screens */
@media (min-width: 992px) and (max-width: 1200px) {
    .center-card {
        margin-top: -70px;
    }
}

@media (min-width: 1201px) {
    .center-card {
        margin-top: -120px;
    }
}

/* Remove raised effect on mobile/tablet */
@media (max-width: 991px) {
    .center-card {
        margin-top: 0px;
    }

    .stats-card {
        transform: translate(0px, 0px);
    }
}

/* Stat Numbers */
.stats-number {
    font-size: 3.25rem;
    font-weight: 700;
    color: #7e00a7;
    margin-bottom: 10px;
}

@media (max-width: 769px) {
    .stats-number {
        font-size: 2.3rem;
    }

    .stats-card {
        height: auto;
        padding: 1.5rem;
    }
}

/* Stat Text */
.stats-text {
    font-size: 1rem;
    font-weight: 400;
    color: #000000;
}

/* IMAGE SECTION */
.image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-bg {
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, #7e00a7 30%, #ffffff 75%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
}

.stats-image {
    position: relative;
    width: 100%;
    /* max-width: 550px; */
    z-index: 3;
}

/* animation */
/* =========================================
   S5 - PREMIUM STATS SYSTEM
========================================= */

/* PERFORMANCE */
.stats-card,
.stats-image,
.image-bg {
    will-change: transform, opacity;
    transform: translateZ(0);
}

/* STATS CARD */
.stats-card {

    position: relative;

    overflow: hidden;

    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease;
}

/* PREMIUM HOVER */
.stats-card:hover {

    transform:
        translateY(-12px);

    box-shadow:
        0 20px 45px rgba(126, 0, 167, 0.18);
}

/* LIGHT SHIMMER */
.stats-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 80%;
    height: 100%;

    background:
        linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.35),
            transparent);

    transition: 0.8s;
}

/* SHIMMER MOVE */
.stats-card:hover::before {

    left: 140%;
}

/* IMAGE */
.stats-image {
    transition:
        transform 0.5s ease;
}

/* IMAGE HOVER */
.image-container:hover .stats-image {
    transform:
        translateY(-8px) scale(1.045);

}

/* GLOW BACKGROUND */
.image-bg {
    animation:
        glowPulse 5s ease-in-out infinite;
}

/* GLOW ANIMATION */
@keyframes glowPulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {

        transform: scale(1.08);

        opacity: 1;
    }

    100% {

        transform: scale(1);

        opacity: 0.7;
    }
}

/* MOBILE */
@media (max-width: 768px) {

    .stats-card:hover {

        transform: translateY(-4px);
    }

    .image-container:hover .stats-image {

        transform: translateY(-2px);
    }
}

/* ACCESSIBILITY */
@media (prefers-reduced-motion: reduce) {

    .stats-card,
    .stats-image,
    .image-bg {

        animation: none !important;

        transition: none !important;

        transform: none !important;
    }
}


/* cards section-3 */
.continuewatching-head {
    font-weight: 700;
    font-size: 1.938rem;
    color: #000000;
}

.continuewatching-para {
    font-weight: 400;
    font-size: 1.375rem;
    color: #585858;
}

.video-wrapper {
    position: relative;
    height: 413px;
    width: 100%;
}

.video-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.play-btns {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    opacity: 0.5;
    color: #7e00a7;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 27px;
}

/* card section-4 */
.whatyoulearn-head {
    font-weight: 700;
    font-size: 2.125rem;
    color: #000;
}

.whatyoulearn-para {
    font-weight: 400;
    font-size: 1.375rem;
    color: #585858;
}

.course-card {
    border: 1px solid #7e00a7;
    border-radius: 14px;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* width: 360px;
    max-height: 396px;  */
}

/* .course-image {
    width: 100%;
    height: 238px;
    padding: 11px;
    border-radius: 14px;
    object-fit: fill;
}   */
.course-image-wrapper {
    width: 100%;
    height: 238px;
    padding: 11px;
    overflow: hidden;
}

.course-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 14px;
}

.course-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.top-row {
    padding: 0 15px 10px;
}

.fa-star {
    color: #FAC310;
}

.course-name {
    font-weight: 700;
    font-size: 1rem;
    color: #454c63;
}

.course-star {
    color: #454c63;
    font-weight: 700;
    font-size: 1.1rem;
}

@media (min-width: 767px) and (max-width: 992px) {
    .course-row {
        gap: 0.25rem !important;
    }

    .session-row {
        gap: 0.25rem !important;
    }
}

.course-below {
    margin-top: auto;
}

.course-divider {
    border-top: 1px solid #7e00a7;
    margin-bottom: 16px;
}

.course-bottomrow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px 10px 0;
}

.course-rate {
    font-size: 1.1rem;
    font-weight: 700;
    color: #7e00a7;
}

.coursebtn-business {
    background-color: #7e00a7;
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 1.1rem;
    height: 44px;
    padding: 0.3em 2.6em;
    border-radius: 10px;
    white-space: nowrap;
}


@media (max-width: 991px) {
    .coursebtn-business {
        padding: 0 35px;
        font-size: 0.95rem;
    }
}

.coursebtn-business:hover {
    background-color: #7e00a7;
}

.course-para {
    font-weight: 400;
    font-size: 0.875rem;
    color: #454c63;
}

/* animation */
/* =========================================
   S3 - COURSE CARD ANIMATION SYSTEM
========================================= */
/* =========================================
   PREMIUM COURSE INTERACTION SYSTEM
========================================= */

.course-card,
.course-image,
.coursebtn-business {
    will-change: transform, opacity;
    transform: translateZ(0);
}

/* CARD */
.course-card {

    overflow: hidden;

    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease,
        border-color 0.4s ease;

    position: relative;
}

/* PREMIUM HOVER */
.course-card:hover {

    transform:
        translateY(-14px) scale(1.01);

    box-shadow:
        0 22px 50px rgba(126, 0, 167, 0.18);

    border-color:
        rgba(126, 0, 167, 0.55);
}

/* IMAGE */
/* IMAGE WRAPPER */
.course-image-wrapper {

    position: relative;

    overflow: hidden;

    border-radius: 14px;

    transition:
        padding 0.45s ease;
}

/* IMAGE */
.course-image {

    transition:
        transform 0.8s ease;
}

/* PREMIUM IMAGE EXPANSION */
.course-card:hover .course-image-wrapper {

    padding: 6px 8px;
}

/* IMAGE SCALE */
.course-card:hover .course-image {

    transform: scale(1.01);
}

/* BUTTON */
.coursebtn-business {

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.coursebtn-business:hover {

    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(126, 0, 167, 0.22);
}

/* STAR */
.course-row i {

    transition:
        transform 0.3s ease;
}

.course-card:hover .course-row i {

    transform: scale(1.12);
}

/* TEACHER IMAGE */
.feedback-icon img {

    transition:
        transform 0.45s ease;
}

.course-card:hover .feedback-icon img {

    transform: scale(1.06);
}

/* MOBILE */
@media (max-width: 768px) {

    .course-card:hover {

        transform: none;

        box-shadow: none;
    }

    .course-card:hover .course-image,
    .course-card:hover .feedback-icon img,
    .course-card:hover .course-row i {

        transform: none;
    }

}

/* section-5 */
/* Heading and subheading */
.learning-goal {
    text-align: center;
    font-weight: 700;
    font-size: 2.375rem;
}

.learning-subtext {
    text-align: center;
    max-width: 650px;
    /* margin: 0 auto 40px; */
    color: #585858;
    font-size: 1rem;
    font-weight: 400;
}

/* Goal selection container */
.goal-selection {
    background: #fdf9ff;
    border-radius: 13px;
    width: 100%;
    padding: 1.875rem;
}

.goal-btn {
    border-radius: 10px;
    border: 1px solid #7e00a7;
    font-weight: 400;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #ffffff;
    color: #454c63;
    text-align: center;
    padding: 15px 8px;
}

.goal-btn.active,
.goal-btn:hover {
    background-color: #7e00a7;
    color: #fff;
}

/* Course section-4 */
.session-card {
    border: 1px solid #7e00a7;
    border-radius: 14px;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* width: 360px;
    max-height: 396px;  */
}

/* .session-image{
    width: 100%;
    height: 216px;
    padding: 7px;
    border-radius: 14px;
    object-fit: cover;
  } */
.session-image-wrapper {
    width: 100%;
    height: 216px;
    padding: 7px;
    overflow: hidden;
}

.session-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 14px;
}

.session-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.sessiontop-row {
    padding: 0 15px 10px;
}

.session-name {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: #454c63;
}

.session-star {
    color: #454c63;
    padding-left: 0.5rem;
    font-weight: 700;
    font-size: 1.1rem;
}

.session-row {
    margin-bottom: 0.5rem;
}

.session-below {
    margin-top: auto;
}

.session-divider {
    border-top: 1px solid #7e00a7;
    margin-bottom: 16px;
}

.session-bottomrow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px 10px;
}

.session-rate {
    font-size: 1.1rem;
    font-weight: 700;
    color: #7e00a7;
}

.sessionbtn-business {
    background-color: #7e00a7;
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 1.1rem;
    height: 44px;
    padding: 0.3em 2.6em;
    border-radius: 10px;
    /* font-size: 1.1rem;
    width: 128px;
    height: 41px; */
    text-align: center;
}

.sessionbtn-business:hover {
    background-color: #7e00a7;
}

/* work section-5 */
/* TITLE */
.section-title {
    font-size: 2.375rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.howitwork-img {
    position: absolute;
    right: 1%;
    bottom: -71%;
    width: 169px;
}

/* SECTION */
.how-it-works {
    background: #fff;
}

.sideimg {
    width: 100%;
    /* height: 591px; */
    object-fit: contain;
    object-position: center;
}

.img-wrap {
    width: 100%;
    height: 687px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.sideimg {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: bottom;
    transition:
        transform 1.2s cubic-bezier(0.19, 1, 0.22, 1),
        filter 0.6s ease;
    transform-origin: center center;
}

/* PREMIUM INSIDE ZOOM */
@media (min-width: 992px) {
    .img-wrap:hover .sideimg {
        transform: scale(1.08);
        filter:
            brightness(1.03) contrast(1.02);
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .img-wrap:hover .sideimg {
        transform: none;
    }
}

/* Right side */

/* STEP CARD */
.step-item {
    background: #fff;
    border-radius: 20px;
    padding: 16px 35px;
    box-shadow: 0 5px 21px #dbc0e57d;
}

.step-body h5 {
    font-weight: 700;
    font-size: 1.5rem;
    color: #454c63;
    margin-bottom: -1px;
}

.step-body p {
    font-weight: 400;
    margin: 0;
    font-size: 1.25rem;
    color: #454c63;
}

/* STEP NUMBER */
.step-number {
    font-size: 4.375rem;
    font-weight: 700;
    color: #dbc0e57d;
}

@media (max-width: 992px) {

    .step-body h5,
    p {
        font-size: 1rem;
    }

    .step-number {
        font-size: 3.5rem;
    }
}

/* STEP TEXT */
.step-content h6 {
    font-size: 16px;
    font-weight: 700;
    color: #2b2b2b;
    margin-bottom: 4px;
}

.step-content p {
    font-size: 14px;
    color: #6a6f73;
    margin: 0;
}

/* RESPONSIVE FIXES */

@media (min-width: 992px) and (max-width: 1200px) {
    .img-wrap {
        height: 570px;
    }

    .step-item {
        padding: 16px;
    }

    .step-body h5 {
        font-size: 1rem;
    }

    .step-body p {
        font-size: 1rem;
    }

    .step-number {
        font-size: 4rem;
    }
}

@media (min-width: 1200px) and (max-width: 1400px) {
    .img-wrap {
        height: 570px;
    }

    .step-item {
        padding: 16px 24px;
    }

    .step-body h5 {
        font-size: 1.2rem;
    }

    .step-body p {
        font-size: 1.2rem;
    }

    .step-number {
        font-size: 4.2rem;
    }
}

@media (min-width: 1400px) {
    .step-wrapper {
        margin-bottom: 2.5rem !important;
        /* mb-5 */
    }
}

@media (max-width: 992px) {

    /* For tablets or medium-sized screens */
    .img-wrap {
        height: 580px;
    }

    .sideimg {
        object-position: center;
    }
}

/* =========================================
   PROCESS TIMELINE ANIMATION SYSTEM
========================================= */

/* Smooth rendering */
.step-item,
.step-number,
.sideimg {
    will-change: transform, opacity;
    transform: translateZ(0);
}

/* Step card hover */
.step-item {
    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease;
}

.step-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(219, 192, 229, 0.28);
}

/* Image subtle zoom */
.step-item img {
    transition: transform 0.45s ease;
}

.step-item:hover img {
    transform: scale(1.06);
}

/* Side image smooth rendering */
.sideimg {
    transition: transform 0.8s ease;
}

/* Optional subtle floating */
@keyframes sideFloat {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.img-wrap {
    animation: sideFloat 6s ease-in-out infinite;
}

/* Mobile optimization */
@media (max-width: 768px) {
    .step-item:hover {
        transform: none;
    }

    .img-wrap {
        animation-duration: 8s;
    }
}

/* Reduced motion accessibility */
@media (prefers-reduced-motion: reduce) {

    .step-item,
    .step-number,
    .img-wrap,
    .sideimg {
        animation: none !important;
        transition: none !important;
        transform: none !important;
    }
}

/* section-7 */
/* SECTION BASE */
.method-wrap {
    position: relative;
    display: inline-block;
}

.method-img {
    position: absolute;
    left: 1%;
    bottom: -50%;
    /* adjust as needed */
    /* width: 120px;  */
}

.phone-hero {
    background-color: #7E00A7;
    padding: 60px 0 0 45px;
    background-image: url(../images/Home/Vector\ 2\ \(1\).png);
    background-position: right top;
    background-repeat: no-repeat;
    background-size: contain;
    overflow: hidden;
}

/* LEFT TEXT BLOCK */
.head {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
}

/* list items on left */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

@media (max-width: 1200px) {
    .features-list {
        padding-top: 1rem;
    }
}

.features-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 1.61rem;
    font-weight: 400;
    color: white;
}




/* RIGHT PHONE IMAGE WRAPPER */
.phone-wrap {
    height: 100%;
    overflow: hidden;
    align-items: flex-end;
}

.phone-image {
    height: 100%;
    /* box-shadow: -5px -7px 70px #000000; */
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    border-radius: 28px;

}

/* =========================================
    MOBILE MOCKUP HERO ANIMATION SYSTEM
    ========================================= */

/* =========================================
    S2 FIXED ANIMATION SYSTEM
    ========================================= */

.phone-image,
.features-list li,
.head,
.hero-top-decor img {
    will-change: transform, opacity;
    transform: translateZ(0);
}

/* PHONE IMAGE */
.phone-image {
    transition:
        box-shadow 0.45s ease;
}

/* DESKTOP HOVER */
@media (min-width: 992px) {

    .phone-image:hover {
        transform: translateY(-10px);
    }

    .features-list li:hover {
        transform: translateX(8px);
    }

    .features-list li img {
        transition: transform 0.3s ease;
    }

    .features-list li:hover img {
        transform: rotate(90deg);
    }
}

/* MOBILE */
@media (max-width: 768px) {

    .phone-hero {
        padding: 40px 20px 0 20px;
    }

    .head {
        text-align: center;
        font-size: 2rem;
    }

    .features-list {
        width: 100% !important;
    }

    .features-list li {
        font-size: 1.1rem;
    }

    .hero-top-decor {
        width: 100% !important;
        margin-left: 0 !important;
        justify-content: center !important;
    }

    .phone-wrap {
        margin-top: 40px;
    }

    .phone-image {
        width: 75% !important;
    }
}

/* feedback section-8 */

.testipara {
    font-weight: 400;
    font-size: 1.375rem;
    color: #7e00a7;
}

.feedback-head {
    font-size: 2.375rem;
    font-weight: 400;
}

.feedback-wrap {
    position: relative;
    display: inline-block;
}

.feedback-img {
    position: absolute;
    left: 1%;
    bottom: -50%;
    /* adjust as needed */
    /* width: 120px;  */
}

.fa {
    color: #959bac;
}

.card-feedback {
    border: 1px solid #7e00a7;
    border-radius: 10px;
    padding: 3.5rem 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feedback-footer {
    margin-top: auto;
}

.feedback-text {
    font-weight: 400;
    font-size: 0.875rem;
    color: #454c63;
    text-align: center;
    margin-bottom: 0;
}

.feedfoot-text {
    font-weight: 400;
    font-size: 1.25rem;
    color: #37436b;
}

.feedfoot-subtext {
    font-weight: 400;
    font-size: 0.875rem;
    color: #7e00a7;
    margin-bottom: 0;
}

.corner-img {
    position: absolute;
    top: 0;
    right: 12%;
    width: 64px !important;
}

/* BigImage section-9 */
.Bgbrand {
    position: relative;
    height: 750px;
}

.bigbg-img {
    position: absolute;
    z-index: 2;
    right: 88px;
}

.bigtop-img {
    position: absolute;
    z-index: 1;
    top: 387px;
}

/* -------------------------- */
/* RESPONSIVE FIXES */
/* -------------------------- */

@media (min-width: 1200px) and (max-width: 1400px) {
    .Bgbrand {
        height: 695px;
    }
}

@media (max-width: 1200px) {
    .Bgbrand {
        height: 530px;
    }
}

@media (max-width: 995px) {
    .Bgbrand {
        height: 427px;
    }
}

@media (max-width: 768px) {
    .Bgbrand {
        height: 354px;
    }
}

@media (max-width: 578px) {
    .Bgbrand {
        height: 300px;
    }
}

/* Large Tablets */
@media (max-width: 1200px) {
    .bigbg-img {
        right: 40px;
        /* reduce right gap */
        width: 80%;
        /* scale down slightly */
    }

    .bigtop-img {
        top: 280px;
        width: 80%;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .bigbg-img {
        right: 20px;
        width: 80%;
    }

    .bigtop-img {
        top: 220px;
        width: 80%;
    }
}

/* Mobile Landscape */
@media (max-width: 768px) {
    .bigbg-img {
        right: 0;
        width: 70%;
    }

    .bigtop-img {
        top: 210px;
        width: 55%;
        right: 65px;
    }
}

@media (min-width: 576px) and (max-width: 768px) {
    .bigbg-img {
        right: 0;
        width: 90%;
    }

    .bigtop-img {
        top: 170px;
        width: 90%;
        right: 65px;
    }
}

/* Mobile Portrait */
@media (max-width: 576px) {
    .bigbg-img {
        right: 0;
        width: 85%;
    }

    .bigtop-img {
        top: 170px;
        width: 80%;
    }
}

@media (max-width: 500px) {
    .bigbg-img {
        right: 0;
        width: 85%;
    }

    .bigtop-img {
        top: 145px;
        width: 80%;
    }
}

/* Small Phones */
@media (max-width: 420px) {
    .bigbg-img {
        width: 95%;
    }

    .bigtop-img {
        top: 150px;
        width: 75%;
    }
}

.brands {
    background-color: #fdf9ff;
}

.brand-para {
    font-weight: 400;
    font-size: 1.4rem;
    color: #454c63;
}

.tricks-wrap {
    position: relative;
    display: inline-block;
}

.tricks-img {
    position: absolute;
    left: -7%;
    bottom: -34%;
    /* adjust as needed */
    /* width: 120px;  */
}

.latestpara {
    font-weight: 400;
    font-size: 1.5rem;
    color: #7e00a7;
}

.latest-goal {
    font-weight: 400;
    font-size: 2.375rem;
}

.span-text {
    font-weight: 700;
    font-size: 2.375rem;
    color: #7e00a7;
}

.feedbak-icon h6 {
    font-size: 0.875rem;
    font-weight: 400;
}

/* card section-10 */
.Education-card {
    padding: 15px;
    border: 1px solid #7e00a7;
    border-radius: 14px;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.Education-image-wrapper {
    width: 100%;
    height: 229px;
    padding-bottom: 15px;
    overflow: hidden;
}

.Education-img {
    width: 100%;
    height: 100%;
    border-radius: 14px;
    object-fit: cover;
}

.Education-para {
    font-weight: 400;
    font-size: 1rem;
    color: #454c63;
}

.Education-body {
    /* display: flex;
  align-items: center;
  justify-content: space-between; */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.Education-date {
    font-weight: 400;
    font-size: 0.875rem;
    color: #959bac;
}

.readbtns {
    border: 0.5px solid #7e00a7;
    color: #7e00a7;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.93rem;
    width: fit-content;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    margin-top: 0.5rem;
}

.readbtns:hover {
    border: 0.5px solid #7e00a7;
    color: #7e00a7;
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.151),
        0 6px 6px rgba(0, 0, 0, 0.162);
}

.Teampara {
    font-weight: 400;
    font-size: 1.95rem;
    color: black;
}

.team-goal {
    font-weight: 400;
    font-size: 2.375rem;
    color: #6e7380;
}

.team-span {
    font-weight: 700;
    font-size: 2.375rem;
}

.Photo-section {
    background-color: #fafafa;
}

@media (min-width: 1253px) {
    .col-lg-custom {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

/* .profile-card {
    text-align: center;
    height: 271px;
  } */
.profile-card {
    /* height: 271px;             */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
}

.profile-image-wrapper {
    width: 188px;
    /* Figma width */
    height: 199px;
    /* Figma height */
    overflow: hidden;
}

.profile-card {
    transition: transform 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-6px);
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* prevents distortion */
    display: block;
    border-radius: 14px;
}

.profile-name {
    font-size: 1.56rem;
    font-weight: 400;
    color: #000;
}

/* ROLE */
.profile-role {
    font-weight: 400;
    font-size: 1.56rem;
    line-height: 0.9;
    color: #6e7380;
}

.profile-text {
    margin-bottom: 1.5rem;
}

@media (max-width: 576px) {
    .profile-image-wrapper {
        width: 140px;
        height: 160px;
    }
}

/* Q/A section-11 */
.question-wrap {
    position: relative;
    display: inline-block;
}

.question-img {
    position: absolute;
    left: 6%;
    bottom: -54%;
    /* adjust as needed */
    /* width: 120px;  */
}

.accordion-item {
    background-color: #fdf9ff !important;
    border: none;
}

.accordion-item .accordion-button {
    background: #fdf9ff;
    font-weight: 400;
    font-size: 1.25rem;
    color: #37436b;
}

.accordion-button:focus {
    box-shadow: none;
}

.faq-arrow {
    color: #7e00a7;
    transition: transform 0.3s ease;
    font-size: 18px;
}

.accordion-button:not(.collapsed) .faq-arrow {
    transform: rotate(180deg);
}

.accordion-button::after {
    display: none !important;
}

/* Moreinfo section-13 */
/* MAIN SECTION */
.instructor-section {
    background: #7e00a7;
    /* purple background */
}

.small {
    font-weight: 400;
    font-size: 1.375rem;
}

.large {
    font-weight: 700;
    font-size: 2.375rem;
}

/* BUTTON */
.for-more-btn {
    background: white;
    color: #7e00a7;
    padding: 0.688rem 5rem;
    font-weight: 400;
    border-radius: 10px;
    font-size: 1.1rem;
    box-shadow: 7px 12px 28px #000000;
    z-index: 3;
    position: relative;
}

/* ARROW IMAGE POSITION */
.arrow-img {
    position: absolute;
    left: -25%;
    /* pushes arrow left of button */
    top: 50%;
    transform: translateY(-50%);

    z-index: 1;
}

/* RESPONSIVE FIXES */
@media (max-width: 1100px) {
    .arrow-img {
        top: -24px;
        transform: translateX(50%);
        max-width: 160px;
    }

    .for-more-btn {
        margin-top: 40px;
    }
}

@media (max-width: 936px) {
    .arrow-img {
        left: -155px;
        top: -51px;
    }
}

@media (max-width: 770px) {
    .arrow-img {
        left: -44px;
        top: -51px;
    }
}

@media (max-width: 576px) {
    .arrow-img {
        top: -36px;
        max-width: 140px;
    }
}

/* form section-13 */

.contact-section {
    position: relative;
}

.contact-text {
    font-weight: 700;
    font-size: 2.375rem;
    color: black;
}

/* Form Inputs */
.custom-input {
    height: 60px;
    padding: 0.75rem;
    font-size: 1.1rem;
    font-weight: 400;
}

.custom-textarea {
    padding: 1.1rem;
    font-size: 1.1rem;
    resize: none;
    /* min-height: 163px !important; */
}

.submit-btn {
    background: #7e00a7;
    color: white;
    /* padding: 10px; */
    height: 60px;
    font-weight: 400;
    font-size: 1.1rem;
    border-radius: 10px;
    border: 1px solid #454c63;
}

.submit-btn:hover {
    background: #7e00a7;
    color: white;
}

/* Image Styling */
/* .contact-img {
   width: 100%;
  border-radius: 10px;
  position: relative;
  z-index: 3;
  object-fit: cover; 
} */

/* .contact-img {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 100%;
  transform: translate(0%, 0%);
} */
.image-wrapper {
    min-height: 643px;
}

.contact-img {
    position: absolute;
    right: 0;
    bottom: 32px;
    /* transform: translate(0%, -13%); */
    height: 100%;
    width: auto;
}

/* Purple Decorative Shapes */
.purple-shape-under {
    position: absolute;
    right: 0%;
    bottom: 0%;
    z-index: 1;
}

.purple-shape-top {
    position: absolute;
    right: 12%;
    bottom: 22px;
    z-index: 2;
}

.for-more-btn:hover {
    color: #fff !important;
    background-color: #7E00A7 !important;
}

/* @media  (max-width: 1300px) {
  .contact-img {
    height: 85%;
    transform: translate(0%, -14%);
  }
  .purple-shape-top{
    right: 15%;
    background-color: #FCF5FF;
  }
} */
/* @media  (max-width: 600px) {
  .contact-img {
    transform: translate(0%, -14%);
  }
} */

/*  */


/* floatin play store */
/* =========================================
   FLOATING APP DOWNLOAD
========================================= */

.floating-app-wrapper {
    position: fixed;
    left: 25px;
    bottom: 28;
    z-index: 9999;
    height: 60px;
    width: 60px;
}

/* MAIN BUTTON */
.floating-app-btn {
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    background: #7E00A7;
    box-shadow: 0 10px 30px rgba(126, 0, 167, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    animation: floatPulse 2s infinite;
    transition: 0.3s ease;
    position: relative;
}

.floating-app-btn:hover {
    transform: translateY(-4px) scale(1.08);

    box-shadow:
        0 15px 35px rgba(126, 0, 167, 0.45),
        0 0 20px rgba(126, 0, 167, 0.4);
}


/*   TOOLTIP    */

.floating-tooltip {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background: #111;
    color: white;
    padding: 8px 14px;
    border-radius: 8px;

    font-size: 13px;
    white-space: nowrap;

    opacity: 0;
    visibility: hidden;

    transition: 0.3s ease;
}

.floating-app-btn:hover .floating-tooltip {
    opacity: 1;
    visibility: visible;
}

/* .floating-app-btn i {
   font-size: 32px;
   color: white;
} */

.download-option i {
    font-size: 34px;
    color: #7E00A7;
}

.floating-app-btn img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

/* FLOATING ANIMATION */
@keyframes floatPulse {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0);
    }
}

/* POPUP */
.app-download-popup {
    position: absolute;
    bottom: 90px;
    right: 0;
    width: 260px;
    max-width: calc(100vw - 30px);

    background: rgba(22, 22, 22, 0.1);
    backdrop-filter: blur(16px);

    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;

    padding: 18px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);

    transition: 0.35s ease;
    overflow: hidden;
    box-sizing: border-box;
}

/* ACTIVE STATE */
.app-download-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* TITLE */
.app-download-popup h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

/* DOWNLOAD OPTION */
.download-option {
    display: flex;
    align-items: center;
    gap: 14px;

    text-decoration: none;

    background: white;
    border-radius: 12px;

    padding: 12px;
    margin-bottom: 12px;

    transition: 0.3s ease;
}

.download-option:hover {
    transform: translateY(-3px);
}

.download-option img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

.download-option span {
    display: block;
    font-size: 12px;
    color: #666;
}

.download-option strong {
    font-size: 15px;
    color: #111;
}


/* =========================
   RESPONSIVE DESIGN
========================= */

/* TABLET */
@media (max-width: 768px) {
    .floating-app-wrapper {
        right: 25px;
        bottom: 100px;
    }

    .floating-app-btn {
        width: 56px;
        height: 56px;
    }

    .floating-app-btn img {
        width: 28px;
        height: 28px;
    }

    .app-download-popup {
        width: 240px;
        bottom: 75px;
    }

    .floating-tooltip {
        display: none;
    }
}

/* MOBILE */
@media (max-width: 480px) {
    .floating-app-wrapper {
        right: 25px;
        bottom: 100px;
    }

    .floating-app-btn {
        width: 52px;
        height: 52px;
    }

    .floating-app-btn img {
        width: 26px;
        height: 26px;
    }

    .app-download-popup {
        width: 210px;
        right: 0;
        padding: 14px;
    }

    .app-download-popup h5 {
        font-size: 16px;
    }

    .download-option {
        gap: 10px;
        padding: 10px;
    }

    .download-option img {
        width: 34px;
        height: 34px;
    }

    .download-option strong {
        font-size: 14px;
    }

    .download-option span {
        font-size: 11px;
    }
}

/* EXTRA SMALL DEVICES */
@media (max-width: 360px) {
    .app-download-popup {
        width: 190px;
    }

    .floating-app-btn {
        width: 48px;
        height: 48px;
    }
}