/* ══════════════════════════════════════════════
   Hero SECTION WRAPPER
══════════════════════════════════════════════ */
/* ══ CARD ══ */
.globio-ned-design-hero-card-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 16px 40px;
}

.globio-ned-design-hero-card {
    width: 100%;
    max-width: 1080px;
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 6px 40px rgba(0, 0, 0, 0.13);
    height: 620px;
}

/* ══ TOP WHITE ══ */
.globio-ned-design-hero-top {
    background-image: url('/public/assets/images/top.avif');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    text-align: center;
    padding: 22px 40px 0;
    position: relative;
}

.globio-ned-design-hero-pill {
    margin: auto;
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    border: 1px solid #FFC636;
    border-radius: 999px;
    padding: 5px 0px;
    padding-right: 5px;
    font-size: 16px;
    font-weight: 500;
    color: #333333;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #FFEED3, #FFEED3);
    margin-top: 20px;
    width: 340px;

}

.globio-ned-design-hero-pill-btn {
    padding: 5px 10px;
    border: none;
    background: #FFC636;
    color: #333333;
    font-size: 16px;
    font-weight: 600;
    line-height: 21px;
    border-radius: 999px;
}

.globio-ned-design-hero-card h1 {
    font-size: 44px;
    font-weight: 600;
    color: #333333;
    line-height: 1.12;
    margin-top: 15px;
    margin-bottom: 15px;
}

.globio-ned-design-hero-sub {
    font-size: 20px;
    color: #151616;
    font-weight: 400;
    margin-bottom: 15px;
}

.globio-ned-design-hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-bottom: 52px;
}

.globio-ned-design-hero-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 400;
    color: #606060;
}

.globio-ned-design-hero-stat svg {
    width: 25px;
    height: 25px;
    flex-shrink: 0;
}

/* spacer so white area extends below stats to hold the logo */
.globio-ned-design-hero-white-spacer {
    height: 110px;
    position: relative;
}

/* ══ BLUE SECTION ══ */
.globio-ned-design-hero-blue-section {
    background: #2327BD;
    border-radius: 50% 50% 0 0 / 36% 36% 0 0;
    position: relative;
    padding-top: 60px;
    padding-bottom: 22px;
    padding-left: 40px;
    padding-right: 40px;
    width: 100%;
    height: 300px;
}

.globio-ned-design-hero-blue-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/public/assets/images/bottom-hero.png') center/cover no-repeat;
    opacity: 0.1;
    z-index: 1;
}

.globio-ned-design-hero-logo-wrap {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    width: 150px;
    height: 150px;
}

@keyframes globio-ned-design-hero-logoPulse {
    0% {
        transform: scale(1) rotate(-3deg);
    }

    50% {
        transform: scale(1.15) rotate(3deg);
    }

    100% {
        transform: scale(1) rotate(-3deg);
    }
}

.globio-ned-design-hero-logo-box {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    animation: globio-ned-design-hero-logoPulse 3s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}


.globio-ned-design-hero-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 6;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    border: 2px solid rgba(255, 255, 255, 0.52);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.globio-ned-design-hero-play svg {
    margin-left: 3px;
}

.globio-ned-design-hero-note {
    position: absolute;
    top: -110px;
    left: calc(50% + 86px);
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: caveat;
    font-size: 16px;
    color: #18223d;
    white-space: nowrap;
    pointer-events: none;
    z-index: 30;
}

/* ══ FEATURE BOXES ══ */
.globio-ned-design-hero-features {
    position: absolute;
    bottom: 100px;
    left: 40px;
    right: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    margin: auto;
}

.globio-ned-design-hero-feat {
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.globio-ned-design-hero-feat-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border: 1.5px solid rgba(255, 255, 255, 0.42);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.globio-ned-design-hero-feat-label {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255);
    font-weight: 400;
    margin-bottom: 2px;
    white-space: nowrap;
}

.globio-ned-design-hero-feat-value {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    letter-spacing: -0.2px;
}

/* ===============================
   ✅ TABLET (≤768px)
================================= */
@media (max-width: 768px) {

    .globio-ned-design-hero-card {
        height: auto;
    }

    .globio-ned-design-hero-top {
        padding: 20px 0px;
    }

    .globio-ned-design-hero-card h1 {
        font-size: 32px;
        line-height: 1.2;
    }

    .globio-ned-design-hero-sub {
        font-size: 16px;
    }

    .globio-ned-design-hero-stat {
        font-size: 16px;
    }

    .globio-ned-design-hero-stats {
        gap: 5px;
        margin-bottom: 35px;
        flex-wrap: wrap;
    }

    .globio-ned-design-hero-white-spacer {
        height: 80px;
    }

    .globio-ned-design-hero-blue-section {
        height: auto;
        padding: 70px 20px 30px;
        border-radius: 40% 40% 0 0 / 25% 25% 0 0;
    }

    /* logo */
    .globio-ned-design-hero-logo-wrap {
        width: 120px;
        height: 120px;
        top: -60px;
    }

    .globio-ned-design-hero-logo-box {
        width: 120px;
        height: 120px;
    }

    .globio-ned-design-hero-in-text {
        font-size: 64px;
    }

    /* ✅ FEATURES → 2-2 */
    .globio-ned-design-hero-features {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;

        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 40px;
    }

    .globio-ned-design-hero-feat {
        width: 100%;
    }

    .globio-ned-design-hero-feat-label {
        font-size: 13px;
    }

    .globio-ned-design-hero-feat-value {
        font-size: 14px;
    }

    .globio-ned-design-hero-note {
        top: -60px;
        left: calc(50% + 60px);
        font-size: 11px;
    }
}


/* ===============================
   ✅ MOBILE (≤480px)
   All cards vertical
================================= */
@media (max-width: 480px) {
    .globio-ned-design-hero-card h1 {
        font-size: 24px;
    }

    .globio-ned-design-hero-pill {
        width: 300px;
        font-size: 12px;
    }

    .globio-ned-design-hero-sub {
        font-size: 14px;
    }

    .globio-ned-design-hero-stat {
        font-size: 14px;
    }

    .globio-ned-design-hero-blue-section {
        padding: 60px 14px 20px;
    }

    /* logo */
    .globio-ned-design-hero-logo-wrap {
        width: 130px;
        height: 130px;
        top: -50px;
    }

    .globio-ned-design-hero-logo-box {
        width: 130px;
        height: 130px;
    }

    .globio-ned-design-hero-in-text {
        font-size: 50px;
    }

    /* ✅ FEATURES → 1 column */
    .globio-ned-design-hero-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .globio-ned-design-hero-feat {
        padding: 10px;
    }

    .globio-ned-design-hero-feat-icon {
        width: 28px;
        height: 28px;
    }

    .globio-ned-design-hero-feat-label {
        font-size: 12px;
    }

    .globio-ned-design-hero-feat-value {
        font-size: 13px;
    }

    .globio-ned-design-hero-note {
        top: -90px;
        left: 40%;
        font-size: 16px;
    }
}


/* ===============================
   ✅ SMALL MOBILE (≤325px)
================================= */
@media (max-width: 325px) {

    .globio-ned-design-hero-card h1 {
        font-size: 20px;
    }

    .globio-ned-design-hero-pill {
        width: 260px;
        font-size: 11px;
    }

    .globio-ned-design-hero-pill-btn {
        font-size: 11px;
    }

    .globio-ned-design-hero-sub {
        font-size: 12px;
    }

    .globio-ned-design-hero-stat {
        font-size: 12px;
    }

    .globio-ned-design-hero-logo-wrap {
        width: 120px;
        height: 120px;
        top: -40px;
    }

    .globio-ned-design-hero-logo-box {
        width: 120px;
        height: 120px;
    }

    .globio-ned-design-hero-in-text {
        font-size: 40px;
    }

    .globio-ned-design-hero-feat {
        gap: 8px;
        padding: 8px;
    }

    .globio-ned-design-hero-feat-icon {
        width: 24px;
        height: 24px;
    }

    .globio-ned-design-hero-feat-label {
        font-size: 11px;
    }

    .globio-ned-design-hero-feat-value {
        font-size: 12px;
    }

    .globio-ned-design-hero-note {
        top: -80px;
        left: 40%;
        font-size: 12px;
    }
}


/* ══════════════════════════════════════════════
   Struggling SECTION WRAPPER
══════════════════════════════════════════════ */
.globio-new-design-section {
    position: relative;
    padding: 72px 20px 40px;
    /* background-color: #f0f7fc; */
    overflow: hidden;
    box-sizing: border-box;
    width: 100%;
}

/* Soft vignette over grid */
.globio-new-design-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.globio-new-design-inner {
    position: relative;
    z-index: 1;
    max-width: 1080px;
    margin: 0 auto;
    overflow: hidden;
}

/* ══════════════════════════════════════════════
   HEADING
══════════════════════════════════════════════ */
.globio-new-design-heading {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 52px;
    line-height: 1.2;
}

.globio-new-design-heading .globio-ned-design-struggling-wave {
    display: inline-block;
    position: relative;
    color: #333333;
}

.globio-new-design-heading .globio-ned-design-struggling-wave::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 100%;
    height: 12px;
    background: url("/public/assets/images/headingwave.svg") no-repeat center / auto 100%;
}

.globio-new-design-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.2fr;
    grid-template-rows: auto auto;
    gap: 10px;
    align-items: stretch;
}

.globio-ned-design-struggling-card-arrows {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 100%;
    /* FIX */
    min-height: 400px;
}

.globio-ned-design-struggling-card-typing {
    grid-column: 2;
    grid-row: 1;
    max-width: 470px;
}

.globio-ned-design-struggling-row2 {
    grid-column: 2;
    grid-row: 2;
    gap: 12px;
    align-items: stretch;
    display: grid;
    grid-template-columns: 170px 1fr;
    max-width: 470px;
}

/* ══════════════════════════════════════════════
   BASE CARD SHARED STYLES
══════════════════════════════════════════════ */
.globio-ned-design-struggling-card {
    background: #DAE4FA;
    border-radius: 20px;
    padding: 28px 26px;
    box-sizing: border-box;
}

/* ══════════════════════════════════════════════
   CARD 1 — ARROWS (tall left card)
══════════════════════════════════════════════ */
.globio-ned-design-struggling-card-arrows {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 520px;
    min-height: 350px;
    color: #333333;
}

.globio-ned-design-struggling-arrows-viewport {
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.globio-ned-design-struggling-arrows-viewport img {
    width: 200px;
    height: 200px;
}

.globio-ned-design-struggling-arrows-track {
    display: flex;
    align-items: center;
    gap: 28px;
    animation: globio-ned-design-struggling-arrows-move 50s linear infinite;
    width: max-content;
}

@keyframes globio-ned-design-struggling-arrows-move {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.globio-ned-design-struggling-arrow-icon {
    width: 180px;
    height: 180px;
    flex-shrink: 0;
}

.globio-ned-design-struggling-card-arrows .globio-ned-design-struggling-bottom-label {
    margin-top: 26px;
    color: #333333;
}

/* ══════════════════════════════════════════════
   CARD 2 — TYPING (right row 1)
══════════════════════════════════════════════ */
.globio-ned-design-struggling-card-typing {
    background: #DAE4FA;
}

.globio-ned-design-struggling-typing-headline {
    font-size: 44px;
    font-weight: 600;
    line-height: 52px;
    color: #333333;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
}

.globio-ned-design-struggling-cursor {
    display: inline-block;
    width: 3px;
    height: 34px;
    background: #2281b8;
    border-radius: 2px;
    flex-shrink: 0;
    animation: globio-ned-design-struggling-blink 0.65s step-end infinite;
}

@keyframes globio-ned-design-struggling-blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.globio-ned-design-struggling-typing-static-heading {
    font-size: 20px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 7px;
    display: block;
}

.globio-ned-design-struggling-typing-static-body {
    font-size: 18px;
    color: #333333;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 26px;
}

/* ══════════════════════════════════════════════
   CARD 3 — EMOJI (small square)
══════════════════════════════════════════════ */
.globio-ned-design-struggling-card-emoji {
    background: #ffffff;
    border: 2px solid #03538b;
    border-radius: 18px;
    padding: 20px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
    box-sizing: border-box;
    overflow: hidden;
}

.globio-ned-design-struggling-emoji-viewport {
    overflow: hidden;
    width: 100%;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
    gap: 12px;
    display: flex;
    justify-content: center;
}

.globio-ned-design-struggling-emoji-track {
    display: flex;
    align-items: center;
    gap: 10px;
    animation: globio-ned-design-struggling-emoji-move 12s linear infinite;
    width: max-content;
}

@keyframes globio-ned-design-struggling-emoji-move {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.globio-ned-design-struggling-emoji-track span {
    font-size: 32px;
    flex-shrink: 0;
    line-height: 1;
    background: rgb(192, 190, 190);
    padding: 8px;
    border-radius: 50%;
}

.globio-ned-design-struggling-emoji-label {
    font-size: 17px;
    font-weight: 600;
    color: #333333;
    line-height: 24px;
}

/* ══════════════════════════════════════════════
   CARD 4 — MONETIZE
══════════════════════════════════════════════ */
.globio-ned-design-struggling-card-monetize {
    background: #DAE4FA;
    border-radius: 18px;
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    text-align: center;
}

/* ══════════════════════════════════════════════
   SHARED LABEL STYLES
══════════════════════════════════════════════ */
.globio-ned-design-struggling-bottom-label strong {
    font-size: 28px;
    font-weight: 600;
    color: #333333;
    display: block;
    margin-bottom: 7px;
    line-height: 32px;
    letter-spacing: 0;
}

.globio-ned-design-struggling-card-monetize strong {
    font-size: 20px;
    font-weight: 600;
    color: #333333;
    display: block;
    margin-bottom: 7px;
    line-height: 28px;
}

.globio-ned-design-struggling-bottom-label p {
    font-size: 17px;
    color: #333333;
    line-height: 1.6;
}

@media (max-width: 768px) {

    .globio-new-design-heading {
        font-size: 26px;
        margin-bottom: 35px;
    }

    .globio-new-design-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .globio-ned-design-struggling-card-arrows {
        order: 1;
        width: 100%;
        min-height: 220px;
    }

    .globio-ned-design-struggling-card-typing {
        order: 3;
        max-width: 100%;
    }

    .globio-ned-design-struggling-row2 {
        order: 2;
        display: grid;
        grid-template-columns: 200px 1fr;
        gap: 12px;
        max-width: 100%;
    }

    /* sizing */
    .globio-ned-design-struggling-arrow-icon {
        width: 120px;
        height: 120px;
    }

    .globio-ned-design-struggling-typing-headline {
        font-size: 28px;
    }

    .globio-ned-design-struggling-typing-static-heading {
        font-size: 18px;
    }

    .globio-ned-design-struggling-typing-static-body {
        font-size: 15px;
    }

    .globio-ned-design-struggling-bottom-label strong {
        font-size: 24px;
    }

    .globio-ned-design-struggling-bottom-label p {
        font-size: 14px;
    }


}

@media (max-width: 480px) {

    .globio-new-design-section {
        padding: 20px 14px;
    }

    .globio-new-design-heading {
        font-size: 22px;
        line-height: 1.3;
    }

    .globio-ned-design-struggling-row2 {
        gap: 12px;
        grid-template-columns: 150px 1fr;
    }

    .globio-ned-design-struggling-card {
        padding: 18px 16px;
        border-radius: 16px;
    }

    .globio-ned-design-struggling-card-arrows {
        min-height: 180px;
    }

    .globio-ned-design-struggling-emoji-viewport img {
        gap: 12px;
        height: 45px;
        width: 45px;
    }

    .globio-ned-design-struggling-arrows-viewport img {
        width: 180px;
        height: 180px;
    }

    .globio-ned-design-struggling-typing-headline {
        margin-bottom: 10px;
    }

    .globio-ned-design-struggling-typing-static-heading {
        font-size: 16px;
    }

    .globio-ned-design-struggling-typing-static-body {
        font-size: 14px;
        line-height: 1.4;
    }

    .globio-ned-design-struggling-emoji-label {
        font-size: 14px;
    }

    .globio-ned-design-struggling-card-monetize strong {
        font-size: 18px;
        line-height: 24px;
    }
}

@media (max-width: 325px) {

    .globio-new-design-heading {
        font-size: 18px;
    }

    .globio-ned-design-struggling-card {
        padding: 14px 12px;
    }

    .globio-ned-design-struggling-row2 {
        gap: 12px;
        grid-template-columns: 130px 1fr;
    }

    .globio-ned-design-struggling-card-emoji {
        padding: 12px 10px;
        display: flex;
        gap: 10px;
    }

    .globio-ned-design-struggling-emoji-viewport {
        gap: 12px;
    }


    .globio-ned-design-struggling-emoji-viewport img {
        gap: 12px;
        height: 40px;
        width: 40px;
    }

    .globio-ned-design-struggling-card-monetize {
        padding: 12px 10px;
    }

    .globio-ned-design-struggling-arrow-icon {
        width: 40px;
        height: 40px;
    }

    .globio-ned-design-struggling-typing-headline {
        font-size: 22px;
    }

    .globio-ned-design-struggling-typing-static-heading {
        font-size: 14px;
    }

    .globio-ned-design-struggling-typing-static-body {
        font-size: 14px;
    }

    .globio-ned-design-struggling-bottom-label strong {
        font-size: 20px;
    }

    .globio-ned-design-struggling-bottom-label p {
        font-size: 14px;
    }

    .globio-ned-design-struggling-emoji-label {
        font-size: 12px;
    }

    .globio-ned-design-struggling-card-monetize strong {
        font-size: 16px;
        line-height: 20px;
    }
}

/* --------------------------------- */
/* ------- Ai Card Section --------- */
/* --------------------------------- */
.globio-ai-card-section {
    padding: 20px 20px;
}

.globio-ai-card {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* WRAPPER */
.globio-ai-card-wrapper {
    position: relative;
    width: 850px;
    max-width: 1080px;
    padding: 50px 0;
}

/* ICON GROUP */
.globio-ai-card-icon-group {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 20;
}

/* BADGE */
.globio-ai-card-badge {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef2ff;
    border: 1px solid rgba(255, 255, 255, 0.7);
    position: relative;
}

.globio-ai-card-badge img {
    width: 40px;
    height: 40px;
}

.globio-ai-card-badge:first-child {
    margin-right: -20px;
    z-index: 2;
}

/* ========================= */
/* 🔥 MAIN CARD FIXED */
/* ========================= */

.globio-ai-card-card {
    position: relative;
    border-radius: 22px;
    padding: 60px 40px 40px;
    overflow: hidden;
    background: linear-gradient(180deg, #141662 0%, #2327BD 90%);

}


/* 🔥 SUBTLE INNER LIGHT */
.globio-ai-card-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.08),
            transparent 40%);
    pointer-events: none;
}

/* HEADLINE */
.globio-ai-card-headline {
    text-align: center;
    margin-bottom: 32px;
}

.globio-ai-card-headline h2 {
    font-size: 40px;
    line-height: 48px;
    font-weight: 400px;
    width: 80%;
    margin: auto;
}

/* TEXT COLORS FIXED */
.globio-ai-card-bold {
    color: #ffffff;
    font-weight: 400;
}

.globio-ai-card-muted {
    color: #9fb3ff;
    /* brighter than before */
    font-weight: 600;
}

/* FEATURES */
.globio-ai-card-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.globio-ai-card-feat {
    background: rgba(255, 255, 255, .96);
    border-radius: 14px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 13px;
    transition: .2s;
}

.globio-ai-card-feat:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .09);
}

.globio-ai-card-chk {
    width: 26px;
    height: 26px;
    border-radius: 7px;
    background: linear-gradient(145deg, #3b50d4, #2538bb);
    display: flex;
    align-items: center;
    justify-content: center;
}

.globio-ai-card-chk svg {
    width: 13px;
    height: 13px;
}

.globio-ai-card-text {
    font-size: 14px;
    color: #1a1d2e;
}

.globio-ai-card-hi {
    color: #3040c4;
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .globio-ai-card-features {
        grid-template-columns: 1fr;
    }

    .globio-ai-card-headline h2 {
        font-size: 26px;
        line-height: 30px;
    }

    .globio-ai-card-card {
        padding: 50px 20px 25px;
    }

    .globio-ai-card-badge {
        width: 60px;
        height: 60px;
    }

    .globio-ai-card-badge svg {
        width: 30px;
        height: 30px;
    }
}

/* Grow Banner */
/* ===== MAIN BANNER ===== */
.globio-banner {
    position: relative;
    width: 100vw;
    height: clamp(200px, 42vw, 420px);
    overflow: hidden;
    background: #ffffff;
}

/* ===== TILTED BAND ===== */
.globio-banner-band {
    position: absolute;
    left: -6%;
    right: -6%;
    top: 50%;
    transform: translateY(-50%) rotate(-2.5deg);
    height: clamp(130px, 28vw, 265px);
    background: #2327BD;
    z-index: 1;
}

/* ===== CONTENT ===== */
.globio-banner-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: clamp(6px, 1.5vw, 14px);
    padding: 0 clamp(16px, 5vw, 60px);

    transform: translateY(-50%) rotate(-2.5deg);
    top: 50%;
}

/* TEXT STYLES */
.globio-banner-title {
    font-size: 32px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.15;
    opacity: 0;
    transform: translateY(16px);
    animation: globioRise 0.55s ease forwards 0.2s;
}

.globio-banner-subtitle {
    font-size: 32px;
    font-style: italic;
    color: #ffffff;
    font-weight: 400;
    opacity: 0;
    transform: translateY(16px);
    animation: globioRise 0.55s ease forwards 0.45s;
}

.globio-banner-highlight {
    font-size: 48px;
    font-weight: 700;
    font-style: italic;
    color: #ffffff;
    opacity: 0;
    transform: translateY(16px);
    animation: globioRise 0.55s ease forwards 0.7s;
}

/* ANIMATION */
@keyframes globioRise {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media screen and (max-width:768px) {
    .globio-banner-highlight {
        font-size: 30px;
    }

    .globio-banner-title {
        font-size: 20px;
    }

    .globio-banner-subtitle {
        font-size: 20px;
    }
}

@media screen and (max-width:480px) {
    .globio-banner-highlight {
        font-size: 18px;
    }

    .globio-banner-title {
        font-size: 15px;
    }

    .globio-banner-subtitle {
        font-size: 13px;
    }


}


/* Course Curriculum */
.globio-design-course-curriculum-wrapper {
    width: 100%;
    padding: 60px clamp(16px, 5vw, 40px);
}

/* ===========================
           PAGE — two column layout
        =========================== */
.globio-design-course-curriculum-page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===========================
           LEFT SIDE
        =========================== */
.globio-design-course-curriculum-hero-main {
    position: sticky;
    top: 40px;
}

.globio-design-course-curriculum-info {
    margin-bottom: 40px;
}

.globio-design-course-curriculum-heading-upper {
    font-size: 40px;
    font-weight: 600;
    line-height: 48px;
    color: #071A34;
}

.globio-design-course-curriculum-heading-upper .globio-ned-design-struggling-wave-curr {
    font-size: 40px;
    font-weight: 600;
    line-height: 48px;
    color: #071A34;
}

.globio-design-course-curriculum-heading-upper .globio-ned-design-struggling-wave-curr {
    display: inline-block;
    position: relative;
    color: #071A34;
}

.globio-design-course-curriculum-heading-upper .globio-ned-design-struggling-wave-curr::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 100%;
    height: 12px;
    background: url("/public/assets/images/headingwave.svg") no-repeat center / auto 100%;
}

/* ===== VIDEO CARD ===== */
.globio-banner-video-card {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
    cursor: pointer;
}

.globio-banner-video-thumb {
    width: 100%;
    display: block;
    height: 300px;
    object-fit: cover;
}

/* dark overlay at bottom */
.globio-banner-video-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent 60%);
    pointer-events: none;
}

/* PLAY BUTTON */
.globio-banner-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: rgba(0, 0, 0, 0.72);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: background 0.25s ease, transform 0.25s ease;
}

.globio-banner-video-play::before {
    content: "";
    border-left: 18px solid #fff;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    margin-left: 5px;
}

.globio-banner-video-card:hover .globio-banner-video-play {
    background: rgba(0, 0, 0, 0.88);
    transform: translate(-50%, -50%) scale(1.08);
}

/* ===== COURSE OVERVIEW BADGE ===== */
.globio-video-badge-section {
    position: relative;
}

.globio-video-badge {
    position: absolute;
    top: -10px;
    left: 14px;
    background: #2327BD;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 16px;
    padding: 6px 14px;
    transform: rotate(-4deg);
    z-index: 4;
    letter-spacing: 0;
    font-family: caveat;
}

/* ===========================
           RIGHT SIDE — CARDS
        =========================== */
.globio-design-course-curriculum-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.globio-design-course-curriculum-color-card {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    gap: 20px;
    background: linear-gradient(135deg, #7E83EC, #585EE4);
    border-radius: 16px;

    opacity: 0.2;
    transform: translateY(50px) scale(0.97);

    transition:
        opacity 0.5s ease,
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);

    will-change: transform, opacity;
}

/* last card */
.globio-design-course-curriculum-color-card:last-child {
    background: linear-gradient(135deg, #2327BD, #1E2096);
}

/* ACTIVE */
.globio-design-course-curriculum-color-card.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.globio-design-course-curriculum-color-card.gccc-visible {
    opacity: 1;
}

.globio-design-course-curriculum-color-card-icon {
    padding: 10px;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #181B7B;
    border-radius: 10px;
    height: 56px;
    width: 56px;
    flex-shrink: 0;
}

.globio-design-course-curriculum-color-card-icon img {
    height: 32px;
    width: 32px;
}

.globio-design-course-curriculum-color-card-body h3 {
    color: white;
    font-size: 22px;
    line-height: 27px;
    font-weight: 600;
}

.globio-design-course-curriculum-color-card-body p {
    color: #ffffff;
    font-size: 20px;
    line-height: 27px;
    font-weight: 300;
}


.globio-banner-video-card-mobile {
    display: none;
}

.globio-video-badge-section-mobile {
    display: none;
}

/* ===========================
           RESPONSIVE: 1024px
        =========================== */
@media (max-width: 1024px) {
    .globio-design-course-curriculum-wrapper {
        padding: 50px 30px;
    }

    .globio-design-course-curriculum-page {
        gap: 40px;
    }

    .globio-design-course-curriculum-heading-upper {
        font-size: 32px;
        line-height: 40px;
    }

    .globio-design-course-curriculum-heading-upper .globio-ned-design-struggling-wave-curr {
        font-size: 32px;
    }

    .globio-design-course-curriculum-heading {
        font-size: 50px;
        line-height: 56px;
    }

    .globio-design-course-curriculum-color-card-body h3 {
        font-size: 18px;
        line-height: 22px;
    }

    .globio-design-course-curriculum-color-card-body p {
        font-size: 16px;
        line-height: 22px;
    }
}

/* ===========================
           RESPONSIVE: 768px
        =========================== */
@media (max-width: 768px) {
    .globio-design-course-curriculum-wrapper {
        padding: 40px 20px;
    }

    /* single column */
    .globio-design-course-curriculum-page {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .globio-design-course-curriculum-hero-main {
        position: relative;
        top: auto;
    }

    .globio-design-course-curriculum-info {
        text-align: center;
        margin-bottom: 20px;
    }

    .globio-design-course-curriculum-heading-upper {
        font-size: 28px;
        line-height: 36px;
    }

    .globio-design-course-curriculum-heading-upper .globio-ned-design-struggling-wave-curr {
        font-size: 28px;
    }

    .globio-design-course-curriculum-heading {
        font-size: 44px;
        line-height: 50px;
    }

    .globio-banner-video-thumb {
        height: 340px;
    }

    .globio-banner-video-card {
        display: none;
    }

    .globio-banner-video-card-mobile {
        display: block;
    }

    .globio-video-badge-section {
        display: none;
    }

    .globio-video-badge-section-mobile {
        display: block;
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
        background: #4169E1;
    }

    .globio-design-course-curriculum-heading-upper .globio-ned-design-struggling-wave-curr::after {
        bottom: -5px;
    }
}

/* ===========================
           RESPONSIVE: 480px
        =========================== */
@media (max-width: 480px) {
    .globio-design-course-curriculum-wrapper {
        padding: 30px 16px;
    }

    .globio-design-course-curriculum-heading-upper {
        font-size: 22px;
        line-height: 28px;
    }

    .globio-design-course-curriculum-heading {
        font-size: 36px;
        line-height: 40px;
    }

    .globio-design-course-curriculum-heading-upper .globio-ned-design-struggling-wave-curr {
        font-size: 22px;
    }

    .globio-banner-video-thumb {
        height: 200px;
    }

    .globio-design-course-curriculum-color-card {
        padding: 16px;
        gap: 14px;
        border-radius: 14px;
    }

    .globio-design-course-curriculum-color-card-icon {
        height: 48px;
        width: 48px;
        padding: 8px;
    }

    .globio-design-course-curriculum-color-card-icon img {
        height: 28px;
        width: 28px;
    }

    .globio-design-course-curriculum-color-card-body h3 {
        font-size: 16px;
        line-height: 20px;
    }

    .globio-design-course-curriculum-color-card-body p {
        font-size: 14px;
        line-height: 20px;
        margin-top: 6px;
    }
}

/* ===========================
           RESPONSIVE: 325px
        =========================== */
@media (max-width: 325px) {
    .globio-design-course-curriculum-heading-upper {
        font-size: 24px;
        line-height: 24px;
    }

    .globio-design-course-curriculum-heading-upper .globio-ned-design-struggling-wave-curr {
        font-size: 24px;
    }

    .globio-design-course-curriculum-heading {
        font-size: 28px;
        line-height: 32px;
    }

    .globio-design-course-curriculum-color-card {
        padding: 14px 12px;
        gap: 12px;
        border-radius: 12px;
    }

    .globio-design-course-curriculum-color-card-icon {
        height: 42px;
        width: 42px;
        padding: 6px;
    }

    .globio-design-course-curriculum-color-card-icon img {
        height: 24px;
        width: 24px;
    }

    .globio-design-course-curriculum-color-card-body h3 {
        font-size: 14px;
        line-height: 18px;
    }

    .globio-design-course-curriculum-color-card-body p {
        font-size: 12px;
        line-height: 17px;
        margin-top: 4px;
    }
}

/* Course Instructor */

.globio-new-design-course-teacher-section {
    width: 100%;
    padding: 40px 60px;
}

.globio-new-design-course-teacher-container {
    display: grid;
    grid-template-columns: 50% 1fr;
    align-items: stretch;
    max-width: 1080px;
    margin: auto;
}

/* ===== LEFT CARD ===== */
.globio-new-design-course-teacher-left {
    background: #CDD0F980;
    border-radius: 22px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    min-height: 470px;
    width: 520px;
}

.globio-new-design-course-teacher-left>* {
    position: relative;
    z-index: 1;
}

/* TITLE */
.globio-new-design-course-teacher-title {
    font-size: 48px;
    font-weight: 700;
    color: #333333;
    line-height: 56px;
    margin-bottom: 6px;
}

/* SUBTITLE */
.globio-new-design-course-teacher-subtitle {
    font-size: 16px;
    font-weight: 500;
    color: #2f5be8;
    margin-bottom: 24px;
    letter-spacing: 0.01em;
}

/* STATS */
.globio-new-design-course-teacher-stats {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.globio-new-design-course-teacher-stats div h3 {
    font-size: 32px;
    font-weight: 600;
    color: #2327BD;
    line-height: 38px;
}

.globio-new-design-course-teacher-stats div p {
    font-size: 16px;
    color: #333333;
    line-height: 19px;
    font-weight: 400;
}

/* IMAGE WRAPPER */
.globio-new-design-course-teacher-img-wrapper {
    position: absolute;
    bottom: 0;
    right: -4px;
    width: 350px;
    z-index: 2;
}

.globio-new-design-course-teacher-img-wrapper img {
    width: 100%;
    position: relative;
    z-index: 2;
    display: block;
}

/* FOOTER */
.globio-new-design-course-teacher-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px 22px;
    background: rgba(8, 18, 46, 0.88);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.55;
    z-index: 3;
}

/* ========================= */
/* RIGHT SIDE                */
/* ========================= */
.globio-new-design-course-teacher-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* CARD WRAP — badge ka container, flex stretch ke liye */
.globio-card-wrap {
    position: relative;
    padding-top: 14px;
    /* badge ke liye space */
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* BADGE */
.globio-badge {
    position: absolute;
    top: 0px;
    left: 16px;
    background: #3b4df5;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 6px;
    transform: rotate(-8deg);
    z-index: 5;
}

/* DESKTOP CARD */
.globio-new-design-course-teacher-card {
    border-radius: 20px;
    padding: 0px 15px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    color: #fff;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    flex: 1;
    gap: 16px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, #000000, #585EE4);
}

.globio-new-design-course-teacher-card>* {
    position: relative;
    z-index: 1;
}

/* TEXT — vertically centered */
.globio-new-design-course-teacher-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding: 20px 0;
    margin-top: 10px;
    flex: 1;
}

.globio-new-design-course-teacher-text h4 {
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 0;
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

/* Role */
.globio-new-design-course-teacher-text .role {
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF;
    display: block;
    margin-top: 3px;
    margin-bottom: 10px;
    font-weight: 400;
    letter-spacing: 0;
}

/* IMAGE — bottom aligned, overflow se bahar */
.globio-new-design-course-teacher-img {
    width: 200px;
    height: 200px;
    flex-shrink: 0;
    margin-bottom: -1px;
    margin-right: -20px;
    align-self: flex-end;
}

.globio-new-design-course-teacher-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 14px;
    display: block;
}

/* hidden on desktop */
.globio-new-design-course-teacher-carousel-wrap {
    display: none;
}

/* ========================= */
/* 1080px                    */
/* ========================= */
@media (max-width: 1080px) {
    .globio-new-design-course-teacher-section {
        padding: 40px 24px;
    }

    .globio-new-design-course-teacher-container {
        grid-template-columns: 50% 1fr;
        max-width: 100%;
        gap: 20px;
    }

    .globio-new-design-course-teacher-left {
        width: 100%;
        min-height: 440px;
    }

    .globio-new-design-course-teacher-img-wrapper {
        width: 300px;
    }

    .globio-new-design-course-teacher-title {
        font-size: 36px;
        line-height: 44px;
    }

    .globio-new-design-course-teacher-stats div h3 {
        font-size: 26px;
        line-height: 32px;
    }

    .globio-new-design-course-teacher-text h4 {
        font-size: 22px;
        line-height: 28px;
    }

    .globio-new-design-course-teacher-text .role {
        font-size: 12px;
        line-height: 17px;
    }

    .globio-new-design-course-teacher-img {
        width: 150px;
        height: 150px;
        margin-bottom: -30px;
        margin-right: -8px;
    }
}

/* ========================= */
/* 768px                     */
/* ========================= */
@media (max-width: 768px) {
    .globio-new-design-course-teacher-section {
        padding: 20px 10px;
    }

    .globio-new-design-course-teacher-container {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .globio-new-design-course-teacher-left {
        min-height: 340px;
        padding: 20px;
    }

    .globio-new-design-course-teacher-title {
        font-size: 26px;
    }

    .globio-new-design-course-teacher-img-wrapper {
        width: 240px;
    }

    .globio-new-design-course-teacher-right {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    /* card wrap mobile */
    .globio-card-wrap {
        flex: unset;
    }

    .globio-new-design-course-teacher-card {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        padding: 30px 14px 0px;
        border-radius: 16px;
        min-height: 150px;
        flex: unset;
    }

    .globio-new-design-course-teacher-text {
        padding: 0;
    }

    .globio-new-design-course-teacher-text h4 {
        font-size: 18px;
        line-height: 22px;
        margin-bottom: 6px;
    }

    .globio-new-design-course-teacher-text .role {
        font-size: 12px;
        line-height: 16px;
    }

    .globio-new-design-course-teacher-img {
        width: 200px;
        height: 200px;
        margin-bottom: -15px;
        margin-right: -20px;
    }

    .globio-new-design-course-teacher-img img {
        width: 100%;
        height: 100%;
        border-radius: 10px;
    }
}

/* ========================= */
/* 480px                     */
/* ========================= */
@media screen and (max-width: 480px) {
    .globio-new-design-course-teacher-img-wrapper {
        width: 200px;
        margin-top: 30px;
    }

    .globio-new-design-course-teacher-card {
        padding: 20px 15px 0px;
        gap: 10px;
    }

    .globio-new-design-course-teacher-img {
        width: 160px;
        height: 160px;
        margin-bottom: -10px;
    }

    .globio-new-design-course-teacher-img img {
        width: 100%;
        height: 100%;
        border-radius: 10px;
    }

    .globio-new-design-course-teacher-carousel-wrap {
        display: none !important;
    }
}

/* ========================= */
/* 325px                     */
/* ========================= */
@media screen and (max-width: 325px) {
    .globio-new-design-course-teacher-card {
        padding: 20px 10px 0px;
        gap: 5px;
    }

    .globio-new-design-course-teacher-stats div h3 {
        font-size: 20px;
        line-height: 28px;
    }

    .globio-new-design-course-teacher-stats div p {
        font-size: 14px;
        line-height: 16px;
        font-weight: 400;
    }

    .globio-new-design-course-teacher-img {
        width: 130px;
        height: 150px;
        margin-right: -14px;
        margin-bottom: -15px;
    }

    .globio-new-design-course-teacher-img img {
        width: 100%;
        height: 100%;
        border-radius: 10px;
    }

    .globio-new-design-course-teacher-carousel-wrap {
        display: none !important;
    }
}


/* Testimonial Section */

/* ===== SECTION WRAPPER ===== */
.globio-main-page-testimonial-section {
    padding: 40px 20px 80px;
}

/* HEADING */
.globio-main-page-testimonial-heading {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    letter-spacing: 0;
    margin-bottom: 40px;
    color: #333333;
}

.globio-main-page-testimonial-highlight-phone {
    display: none;
}

.globio-main-page-testimonial-heading .globio-main-page-testimonial-heading-border {
    position: relative;
    display: inline-block;
}

.globio-main-page-testimonial-heading .globio-main-page-testimonial-heading-border::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    width: 130%;
    height: 12px;
    background: url("/public/assets/images/headingwave.svg") no-repeat center;
    background-size: contain;
}

/* VIDEO CARDS WRAPPER */
.globio-main-page-testimonial-video-wrapper {
    display: flex;
    gap: 20px;
    justify-content: center;
    max-width: 1248px;
    margin: 0 auto 40px auto;
}

.globio-main-page-testimonial-video-card {
    width: 403px;
    min-width: 0;
    flex: 1 1 0;
    max-width: 403px;
    background: #CDD0F980;
    padding: 20px;
    border-radius: 16px;
}

.globio-main-page-testimonial-video-thumb {
    width: 100%;
    aspect-ratio: 355 / 202;
    background: #FFFFFF;
    border-radius: 12px;
    margin-bottom: 10px;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.globio-main-page-testimonial-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* DARK OVERLAY (optional premium look) */
.globio-main-page-testimonial-video-thumb::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
    cursor: pointer;

}

/* PLAY BUTTON */
.globio-main-page-testimonial-video-thumb::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px;
    cursor: pointer;

}

.globio-main-page-testimonial-video-card h4 {
    margin: 5px 0;
    font-size: 28px;
    line-height: 36px;
    font-weight: 600;
    color: #333333;
}

.globio-main-page-testimonial-video-card p {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #333333;
}

/* ── SLIDER OUTER WRAPPER ── */
.globio-main-page-testimonial-slider {
    background: white;
    border-radius: 16px;
    border: 2px solid #CDD0F9;
    padding: 20px 60px;
    position: relative;
    overflow: hidden;
    max-width: 1248px;
    /* height: 345px; */
    margin: 0 auto;
    box-shadow: 0 0 6px #CDD0F9;
}

/* ── TRACK: no gap, width = 100% so each slide = 100% ── */
.globio-main-page-testimonial-track {
    display: flex;
    transition: transform 0.4s ease;
    width: 100%;
    gap: 0;
}

/* ── SLIDE ── */
.globio-main-page-testimonial-slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    gap: 30px;
    min-width: 100%;
    display: flex;
    justify-content: center;

}

.globio-main-page-testimonial-slide-inner {
    display: flex;
    margin: 0 auto;
    width: calc(100% - 120px);
    display: flex;
    align-items: center;
    gap: 30px;
}

/* USER IMAGE */
.globio-main-page-testimonial-user {
    flex-shrink: 0;
}

.globio-main-page-testimonial-user img {
    width: 233px;
    height: 275px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

/* CONTENT */
.globio-main-page-testimonial-content {
    flex: 1;
    min-width: 0;
    padding: 42px 0 42px 40px;
}

.globio-main-page-testimonial-content h3 {
    color: #333333;
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
}

.globio-main-page-testimonial-role {
    font-size: 16px;
    color: #333333;
    line-height: 24px;
    font-weight: 400;
}

.globio-main-page-testimonial-text {
    font-size: 20px;
    margin-top: 30px;
    line-height: 28px;
    font-weight: 400;
    color: #333333;
    width: 100%;
}

/* DOTS ROW */
.globio-main-page-testimonial-dots {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 10px;
}

/* DOTS INNER */
.globio-main-page-testimonial-dots-inner {
    display: flex;
    align-items: center;
    gap: 10px;
}

.globio-main-page-testimonial-dots-inner span {
    width: 10px;
    height: 10px;
    background: #0000001A;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
    display: inline-block;
}

.globio-main-page-testimonial-dots-inner span.active {
    background: #00000080;
    transform: scale(1.2);
}

/* ARROWS */
.globio-main-page-testimonial-arrow {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.globio-main-page-testimonial-arrow svg {
    width: 25px;
    height: 25px;
}

/* ══════════════════════════════
           RESPONSIVE
        ══════════════════════════════ */

/* 1024px */
@media (max-width: 1024px) {
    .globio-main-page-testimonial-slider {
        padding: 20px 40px;
    }

    .globio-main-page-testimonial-user img {
        width: 180px;
        height: 215px;
    }

    .globio-main-page-testimonial-content {
        padding: 20px 0 20px 30px;
    }

    .globio-main-page-testimonial-content h3 {
        font-size: 20px;
    }

    .globio-main-page-testimonial-text {
        font-size: 17px;
        margin-top: 20px;
    }

    .globio-main-page-testimonial-video-card {
        max-width: none;
    }

    .globio-main-page-testimonial-video-card h4 {
        font-size: 22px;
    }
}

/* 768px */
@media (max-width: 768px) {
    .globio-main-page-testimonial-heading {
        font-size: 22px;
    }

    .globio-main-page-testimonial-video-wrapper {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 8px;
        flex-wrap: nowrap;
    }

    .globio-main-page-testimonial-video-card {
        padding: 15px;
        max-width: 340px;
        height: auto;
        display: flex;
        flex-direction: column-reverse;
        justify-content: space-between;
    }


    .globio-main-page-testimonial-video-card h4 {
        font-size: 20px;
        line-height: 28px;
    }

    .globio-main-page-testimonial-slider {
        padding: 20px 30px;
    }

    .globio-main-page-testimonial-user img {
        width: 140px;
        height: 170px;
    }

    .globio-main-page-testimonial-content {
        padding: 10px 0 10px 0px;
    }

    .globio-main-page-testimonial-content h3 {
        font-size: 18px;
        line-height: 26px;
    }

    .globio-main-page-testimonial-role {
        font-size: 14px;
    }

    .globio-main-page-testimonial-text {
        font-size: 15px;
        margin-top: 14px;
        line-height: 24px;
    }
}

/* 480px */
@media (max-width: 480px) {
    .globio-main-page-testimonial-section {
        padding: 40px 25px;
    }

    .globio-main-page-testimonial-heading {
        font-size: 20px;
        margin-bottom: 26px;
    }

    .globio-main-page-testimonial-heading .globio-main-page-testimonial-heading-border::after {
        display: none;
    }

    .globio-main-page-testimonial-highlight-phone {
        display: block;
        font-size: 40px;
        line-height: 48px;
        color: #2327BD;
    }

    .globio-main-page-testimonial-highlight {
        display: none;
    }

    .globio-main-page-testimonial-slider {
        padding: 0px;
        padding-bottom: 15px;
        border-radius: 12px;
    }


    .globio-main-page-testimonial-slide-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        /* gap: 16px; */
        padding: 10px 0;
    }

    .globio-main-page-testimonial-content h3 {
        font-size: 24px;
    }

    .globio-main-page-testimonial-role {
        font-size: 16px;
    }

    .globio-main-page-testimonial-text {
        font-size: 14px;
        line-height: 22px;
        width: 300px;
        margin: auto;
        margin-top: 10px;
        display: flex;
        text-align: center;
        justify-content: center;
    }

    .globio-main-page-testimonial-video-card {
        min-width: 320px;
        flex: 0 0 320px;
        max-width: 340px;
        padding: 16px;
    }


    .globio-main-page-testimonial-video-thumb {
        margin-top: 10px;
    }

    .globio-main-page-testimonial-video-text p {
        font-size: 12px;
        line-height: 18px;
    }

    .globio-main-page-testimonial-video-text p span {
        display: none;
    }

    .globio-main-page-testimonial-video-card h4 {
        font-size: 18px;
        line-height: 24px;
    }

    /* DOTS ROW */
    .globio-main-page-testimonial-dots {
        justify-content: center;
        gap: 10px;
        margin-top: 10px;
    }
}

/* 325px */
@media (max-width: 325px) {
    .globio-main-page-testimonial-section {
        padding: 30px 20px;
    }

    .globio-main-page-testimonial-video-card {
        min-width: 280px;
        flex: 0 0 280px;
        max-width: 280px;
        padding: 10px;
    }

    .globio-main-page-testimonial-slider {
        padding: 14px 10px;
        border-radius: 10px;
    }

    .globio-main-page-testimonial-text {
        width: 230px;
    }

    .globio-main-page-testimonial-dots-inner span {
        width: 8px;
        height: 8px;
    }

}

/* Guarantee Section */
/* SECTION */
/* CONTAINER */
.globio-new-design-guarantee-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1100px;
    margin: auto;
}

/* LEFT IMAGE */
.globio-new-design-guarantee-left img {
    width: 270px;
    height: auto;
    display: block;
}

/* RIGHT CONTENT */
.globio-new-design-guarantee-right {
    max-width: 520px;
}

/* HEADINGS */
.globio-new-design-guarantee-right h2 {
    font-size: 36px;
    font-weight: 600;
    color: #2327BD;
    line-height: 44px;
}

.globio-new-design-guarantee-right h3 {
    font-size: 36px;
    font-weight: 600;
    color: #071A34;
    margin-bottom: 20px;
    line-height: 44px;
}

/* ITEMS */
.globio-new-design-guarantee-right .item {
    margin-bottom: 18px;
}

.globio-new-design-guarantee-right h4 {
    color: #2327BD;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
}

.globio-new-design-guarantee-right p {
    font-size: 16px;
    color: #333;
    line-height: 22px;
}

/* STRIP */
.globio-new-design-guarantee-strip {
    margin-top: 60px;
    background: #1a1a80;
    transform: rotate(-2deg);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* TRACK */
.globio-new-design-guarantee-track {
    display: flex;
    width: max-content;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: scrollLoop 20s linear infinite;
}

/* TEXT */
.scroll-content {
    white-space: nowrap;
    color: #fff;
    font-size: 14px;
    padding: 12px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ANIMATION */
@keyframes scrollLoop {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {


    .globio-new-design-guarantee-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .globio-new-design-guarantee-left img {
        width: 200px;
    }

    .globio-new-design-guarantee-right h2,
    .globio-new-design-guarantee-right h3 {
        font-size: 22px;
        line-height: 30px;
    }

    .globio-new-design-guarantee-strip {
        margin-top: 20px;
    }
}

/* EXTRA SMALL */
@media (max-width: 480px) {
    .globio-new-design-guarantee-content {
        padding: 0 15px;
    }

    .globio-new-design-guarantee-right h4 {
        font-size: 18px;
    }

    .globio-new-design-guarantee-right p {
        font-size: 14px;
    }
}

/* Pricing Section */
/* Pricing Section */
.globio-new-landing-main-pricing-section-wrapper {
    padding: 60px 20px 80px;
    max-width: 1440px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

.globio-new-landing-main-pricing-section-heading {
    text-align: center;
    margin-bottom: 40px;
    padding: 0;
}

.globio-new-landing-main-pricing-section-heading h2 {
    font-size: 38px;
    font-weight: 700;
    color: #333333;
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
    margin: 0;
    padding: 0;
}

.globio-new-landing-main-pricing-section-heading h2 span {
    display: inline-block;
    position: relative;
}

.globio-new-landing-main-pricing-section-heading h2 span::after {
    content: '';
    display: block;
    width: 120px;
    height: 3px;
    background: #FFC636;
    margin: 6px auto 0;
    border-radius: 4px;
}

.globio-new-landing-main-pricing-section-cards-desktop {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 24px;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
}

.globio-new-landing-main-pricing-section-card-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 0 0 332px;
    max-width: 332px;
    border-radius: 16px;
    border: 1px solid #00000040;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.globio-new-landing-main-pricing-section-card-wrap {
    position: relative;
    overflow: hidden;
    /* important */
}

/* 🔥 RIBBON BADGE */
.globio-new-landing-main-pricing-section-badge {
    position: absolute;
    top: 18px;
    right: -60px;
    font-family: caveat;
    background: #F7CC44;
    color: #181B7B;
    font-weight: 700;
    line-height: 20px;
    font-size: 16px;
    letter-spacing: 0.5px;
    padding: 8px 60px;
    text-align: center;
    transform: rotate(45deg);
    z-index: 10;
}

.globio-new-landing-main-pricing-section-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
    overflow: visible;
    box-sizing: border-box;
    margin: 0;
}

.globio-new-landing-main-pricing-section-card::before {
    content: '';
    position: absolute;
    inset: 0;
    top: 0;
    background: url(/public/assets/images/pricingvector.png) top center / cover no-repeat;
    border-radius: 16px;
    height: 265px;
    z-index: 1;
}

.globio-new-landing-main-pricing-section-card-featured {
    background: #181B7B;
    color: #fff;
}

.globio-new-landing-main-pricing-section-card-title {
    font-size: 22px;
    font-weight: 600;
    color: #333333;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    margin-bottom: 10px;
    margin-top: 0;
    padding: 0;
    line-height: normal;
}

.globio-new-landing-main-pricing-section-card-featured .globio-new-landing-main-pricing-section-card-title {
    color: #ffffff;
}

.globio-new-landing-main-pricing-section-card-price {
    font-size: 48px;
    font-weight: 600;
    color: #333333;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    margin-bottom: 24px;
    margin-top: 0;
    padding: 0;
    line-height: 1.1;
}

.globio-new-landing-main-pricing-section-card-featured .globio-new-landing-main-pricing-section-card-price {
    color: #ffffff;
}

.globio-new-landing-main-pricing-section-features {
    list-style: none;
    flex: 1;
    margin-bottom: 28px;
    margin-top: 0;
    padding: 0;
}

.globio-new-landing-main-pricing-section-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    color: #333333;
    padding: 4px 0;
    margin: 0;
    line-height: 1.4;
}

.globio-new-landing-main-pricing-section-card-featured .globio-new-landing-main-pricing-section-feature-item {
    color: #ffffff;
}

.globio-new-landing-main-pricing-section-feature-item--excluded span.globio-new-landing-main-pricing-section-feature-text {
    text-decoration: line-through;
    color: #606060;
}

.globio-new-landing-main-pricing-section-feature-icon--check {
    background: transparent;
    color: #2327BD;
    flex-shrink: 0;
}

.globio-new-landing-main-pricing-section-card-featured .globio-new-landing-main-pricing-section-feature-icon--check {
    color: #ffffff;
}

.globio-new-landing-main-pricing-section-feature-icon--cross {
    background: transparent;
    color: #DC2626;
    flex-shrink: 0;
}

.globio-new-landing-main-pricing-section-btn {
    display: block;
    width: 70%;
    margin: 0 auto;
    padding: 16px 0;
    border-radius: 50px;
    background: #F7CC44;
    color: #181B7B;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    line-height: normal;
    letter-spacing: normal;
}

.globio-new-landing-main-pricing-section-btn:hover {
    transform: scale(0.90);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    background: #F7CC44;
    color: #1a1a1a;
    text-decoration: none;
}

.globio-new-landing-main-pricing-section-refund {
    text-align: center;
    font-size: 12px;
    font-family: 'Poppins', sans-serif;
    color: #606060;
    margin-top: 12px;
    margin-bottom: 0;
    padding: 0;
    line-height: 14px;
    font-weight: 500;
}

.globio-new-landing-main-pricing-section-card-featured .globio-new-landing-main-pricing-section-refund {
    color: #ffffff;
}

.globio-new-landing-main-pricing-section-mobile-slider {
    display: none;
    position: relative;
    width: 100%;
}

.globio-new-landing-main-pricing-section-slider-track {
    display: flex;
    will-change: transform;
    margin: 0;
    padding: 0;
}

.globio-new-landing-main-pricing-section-slide {
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 30px;
    padding-bottom: 20px;
    box-sizing: border-box;
    overflow: hidden;
}

.globio-new-landing-main-pricing-section-slide-inner {
    position: relative;
    width: 100%;
    max-width: 338px;
    display: flex;
    flex-direction: column;
    border: 1px solid #00000040;
    border-radius: 16px;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.globio-new-landing-main-pricing-section-dots {
    display: none;
    gap: 12px;
    width: 80px;
    height: 30px;
    margin: 12px auto 0;
    border-radius: 16px;
    justify-content: center;
    align-items: center;
    background: #F5F5F5;
    padding: 0;
}

.globio-new-landing-main-pricing-section-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #0000001A;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s;
    padding: 0;
    margin: 0;
    border: none;
}

.globio-new-landing-main-pricing-section-dot--active {
    background: #00000080;
    transform: scale(1.2);
}

/* ================= BUTTON ================= */
.globio-main-button {
    position: relative;
    border: none;
    background-color: #F7CC44;
    padding: 10px 28px;
    cursor: pointer;
    overflow: hidden;
    border-radius: 30px;
    width: 100%;
}

.globio-main-button a {
    position: relative;
    border: none;
    background-color: #F7CC44;
    padding: 12px 60px;
    cursor: pointer;
    overflow: hidden;
    border-radius: 30px;
    text-decoration: none;
}

/* ===== BUTTON TEXT ===== */
.globio-main-button span {
    position: relative;
    z-index: 5;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: 0;
    color: #181B7B;
    white-space: nowrap;
}

/* ===== CENTERED SVG ===== */
.globio-main-button::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("/public/assets/images/btnanimation.svg") center center / contain no-repeat;
    transform: translateX(0);
    opacity: 1;
    transition: transform 0.5s ease, opacity 1s ease;
}

/* ===== HOVER ANIMATION ===== */
.globio-main-button:hover::after {
    transform: translateX(120%);
    opacity: 0;
}

/* ===== MOBILE ===== */
@media(max-width:768px) {
    .globio-main-button {
        padding: 10px 28px;
        width: 90%;
    }

    .globio-main-button span {
        font-size: 16px;
    }
}

@media (max-width: 1024px) {
    .globio-new-landing-main-pricing-section-wrapper {
        padding: 50px 0 60px;
    }

    .globio-new-landing-main-pricing-section-heading {
        margin-bottom: 30px;
        padding: 0 20px;
    }

    .globio-new-landing-main-pricing-section-heading h2 {
        font-size: 28px;
    }

    .globio-new-landing-main-pricing-section-cards-desktop {
        display: none;
    }

    .globio-new-landing-main-pricing-section-mobile-slider {
        display: block;
        overflow: hidden;
    }

    .globio-new-landing-main-pricing-section-dots {
        display: flex;
    }

    .globio-new-landing-main-pricing-section-card-price {
        font-size: 38px;
    }

}

@media (max-width: 768px) {
    .globio-new-landing-main-pricing-section-wrapper {
        padding: 50px 0 30px;
    }

    .globio-new-landing-main-pricing-section-heading {
        margin-bottom: 30px;
        padding: 0 20px;
    }

    .globio-new-landing-main-pricing-section-heading h2 {
        font-size: 28px;
    }

    .globio-new-landing-main-pricing-section-mobile-slider {
        display: block;
        overflow: hidden;
    }

    .globio-new-landing-main-pricing-section-dots {
        display: flex;
    }

    .globio-new-landing-main-pricing-section-slide {
        display: flex;
        flex-shrink: 0;
    }

    .globio-new-landing-main-pricing-section-slide-inner {
        width: 100%;
        max-width: 338px;
    }

    .globio-new-landing-main-pricing-section-card-wrap {
        flex: 0 0 338px;
        max-width: 338px;
    }

    .globio-new-landing-main-pricing-section-card {
        flex: 0 0 360px;
        max-width: 360px;
    }

}

@media (max-width: 325px) {
    .globio-new-landing-main-pricing-section-wrapper {
        padding: 50px 0 20px;
    }

    .globio-new-landing-main-pricing-section-card {
        padding: 36px 10px 20px;
    }

    .globio-new-landing-main-pricing-section-feature-item {
        font-size: 13px;
    }
}

/* FAQS Section */
.globio-new-design-FAQs-wrapper {
    position: relative;
    z-index: 1;
}

/* sticky container */
.globio-new-design-FAQs-page {
    overflow: visible;
}

/* LEFT SIDE HEADING FIXED */
.globio-new-design-FAQs-hero-main {
    top: 40px;
    align-self: flex-start;
}

.globio-new-design-FAQs-cards {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: auto;
    height: auto;
    overflow: visible;
}

/* smooth scroll */
.globio-new-design-FAQs-cards::-webkit-scrollbar {
    width: 6px;
}

.globio-new-design-FAQs-cards::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.globio-new-design-FAQs-page {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0px;
    padding: 60px 60px 80px;
}

.globio-new-design-FAQs-hero {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
    max-width: 600px;
    justify-content: end;
}

.globio-new-design-FAQs-heading {
    font-size: 40px;
    font-weight: 600;
    color: #1a2332;
    line-height: 40px;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.globio-new-design-FAQs-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    margin-left: 150px;
}

.globio-new-design-FAQs-heading span {
    text-decoration: underline;
    text-decoration-color: #3b82f6;
    text-decoration-style: wavy;
    text-underline-offset: 5px;
}

.globio-new-design-FAQs-subtext {
    font-size: 20px;
    color: #212831;
    margin-bottom: 32px;
}

.globio-new-design-FAQs-illustration {
    width: 220px;
    height: auto;
}


.globio-new-design-FAQs-card {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #181B7B;
    padding: 5px;
}


.globio-new-design-FAQs-card-toggle {
    display: none;
}


.globio-new-design-FAQs-card:has(.globio-new-design-FAQs-card-toggle:checked) {
    border: 1px solid rgb(12, 6, 34);
    background: #DAE4FA80;
}

.globio-new-design-FAQs-card-header-icon {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px 0;
}

.globio-new-design-FAQs-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 15px;
    cursor: pointer;
    font-size: 18px;
    line-height: 27px;
    font-weight: 600;
    color: #071A34;
    user-select: none;
    transition: filter 0.15s;
}

.globio-new-design-FAQs-card-header:hover {
    filter: brightness(0.96);
}

.globio-new-design-FAQs-icon-btn {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.3s ease, background 0.2s;
    background: transparent;
}

.globio-new-design-FAQs-icon-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.globio-new-design-FAQs-card-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s ease, padding 0.3s ease;
    padding: 0 5px;
}

.globio-new-design-FAQs-card-toggle:checked~.globio-new-design-FAQs-card-header-icon .globio-new-design-FAQs-icon-btn svg {
    transform: rotate(45deg);
}

.globio-new-design-FAQs-card-toggle:checked~.globio-new-design-FAQs-card-body {
    max-height: 280px;
    padding: 2px 15px 18px;
}


.globio-new-design-FAQs-card-body p {
    font-size: 16px;
    line-height: 24px;
    color: #071A34;
}

.globio-new-design-FAQs-card-whatsapp-btn {
    margin: 10px 15px;
}

.globio-new-design-FAQs-card-whatsapp-btn a {
    text-decoration: none;
}

.globio-new-design-FAQs-card-whatsapp-btn a button {
    padding: 4px 12px;
    background: #2B9F55;
    border-radius: 999px;
    border: none;
    color: white;
    font-size: 14px;
    font-weight: 500;
    line-height: 22.4px;
    letter-spacing: 0;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {

    .globio-new-design-FAQs-hero-main {
        position: static;
        top: 40px;
        align-self: flex-start;
    }

    .globio-new-design-FAQs-page {
        padding: 40px 16px 60px;
        flex-direction: column;
        position: relative;
        height: auto;
        overflow: visible;
    }

    .globio-new-design-FAQs-heading {
        font-size: 2rem;
        text-align: center;
        margin: auto;
    }

    .globio-new-design-FAQs-illustration {
        width: 180px;
    }

    .globio-new-design-FAQs-info {
        margin-bottom: 50px;
        text-align: center;
    }

    .globio-new-design-FAQs-wrapper {
        height: auto;
    }


    .globio-new-design-FAQs-cards {
        transform: none !important;
    }

}

@media (max-width: 480px) {
    .globio-new-design-FAQs-page {
        padding: 30px 20px 50px;
    }

    .globio-new-design-FAQs-info {
        width: 100%;
        margin-left: 10px;
        text-align: center;
        justify-content: flex-end;
    }
    .globio-new-design-FAQs-info {
        margin-bottom: 0px;
        text-align: center;
    }

    .globio-new-design-FAQs-heading {
        font-size: 24px;
        text-align: center;
    }

    .globio-new-design-FAQs-card-body {
        padding: 0 16px;
    }

    .globio-new-design-FAQs-card-toggle:checked~.globio-new-design-FAQs-card-body {
        padding: 2px 16px 14px;
    }

}

@media (max-width: 325px) {
    .globio-new-design-FAQs-heading {
        font-size: 1.35rem;
    }

    .globio-new-design-FAQs-illustration {
        width: 120px;
    }

    .globio-new-design-FAQs-card-header {
        font-size: 0.85rem;
        padding: 12px 14px;
    }

    .globio-new-design-FAQs-icon-btn {
        width: 26px;
        height: 26px;
    }

    .globio-new-design-FAQs-info {
        margin-left: 8px;
    }
}


/* Footer Card */
.globio-new-design-footer-motiv-card {
    padding: 50px 60px 120px;
    display: flex;
    justify-content: center;
}

/* CARD */
.globio-new-design-footer-motiv-card-inner {
    max-width: 1100px;
    height: 500px;
    width: 100%;
    border-radius: 26px;
    text-align: center;
    background: linear-gradient(180deg, #A5AAF3, #f5f6ff);
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    background-clip: padding-box;
    padding: 50px 0px;

}

/* Gradient Border */
.globio-new-design-footer-motiv-card-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 26px;
    padding: 3px;

    background: linear-gradient(to bottom,
            #181B7B,
            rgba(24, 27, 123, 0.6),
            rgba(24, 27, 123, 0.25),
            rgba(24, 27, 123, 0.08));

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* IMAGE */
.globio-new-design-footer-motiv-card-inner img {
    width: 300px;
    height: 300px;
}

/* QUOTE */
.globio-new-design-footer-motiv-card-quote {
    font-size: 40px;
    font-style: italic;
    color: #071A34;
    margin-bottom: 15px;
    line-height: 48px;
    font-weight: 500;
    letter-spacing: -0.8px;
    font-family: Rethink Sans;
}

/* AUTHOR */
.globio-new-design-footer-motiv-card-author {
    font-size: 40px;
    line-height: 48px;
    font-weight: 500;
    font-family: Reenie Beanie;
    color: #606060;
    letter-spacing: -0.8px;
}

/* ✅ MOBILE RESPONSIVE (ONLY SCALE DOWN) */

@media (max-width: 768px) {
    .globio-new-design-footer-motiv-card {
        padding: 30px 30px 0px;
        display: flex;
        justify-content: center;
        margin-top: 0;
    }

    .globio-new-design-footer-motiv-card-inner {
        padding: 30px 20px;
    }

    .globio-new-design-footer-motiv-card-inner img {
        width: 200px;
        height: 200px;
    }

    .globio-new-design-footer-motiv-card-quote {
        line-height: 36px;
        font-size: 30px;
    }

    .globio-new-design-footer-motiv-card-author {
        font-size: 30px;
    }
}

/* ✅ MOBILE RESPONSIVE (ONLY SCALE DOWN) */
@media (max-width: 325px) {
    .globio-new-design-footer-motiv-card {
        padding: 30px 10px 0px;
        display: flex;
        justify-content: center;
    }

    .globio-new-design-footer-motiv-card-inner {
        padding: 30px 20px;
    }

    .globio-new-design-footer-motiv-card-inner img {
        width: 200px;
        height: 200px;
    }

    .globio-new-design-footer-motiv-card-quote {
        font-size: 25px;
        line-height: 30px;
    }

    .globio-new-design-footer-motiv-card-author {
        font-size: 30px;
    }
}