/* Home Page Specific Styles */
.hero-section {
    height: 100vh;
    padding: 0px !important;
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 0;
    /* Hero starts at top */
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 800px;
    text-align: center;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: fadeInUp 1s forwards;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    animation: fadeInUp 1s 0.2s forwards;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeInUp 1s 0.4s forwards;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Grid System */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {

    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}

/* Why Choose Icons */
.card-icon {
    font-size: 2.5rem;
    color: var(--brand-gold);
    margin-bottom: 1.5rem;
}

/* Track Cards */
.track-card {
    position: relative;
    display: flex;
    flex-direction: column;
}

.track-tag {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--accent);
    color: #000;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
}

.track-features {
    margin: 1.5rem 0;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
    flex-grow: 1;
}

.track-features li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.track-features li i {
    color: #22c55e;
}

/* Swiper Customize */
.swiper-button-next,
.swiper-button-prev {
    color: var(--brand-gold);
}

@media (max-width: 1024px) {

    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }
}

.swiper-pagination-bullet-active {
    background: var(--brand-gold);
}

.text-gold {
    color: var(--brand-gold);
}


.mobile-sticky-bar a {
    font-size: 12px !important;
}

.mobile-sticky-bar .btn-primary {
    font-size: 12px !important;
}


@media (max-width: 480px) {
    .hero-btns {
        font-size: 12px !important;
    }
}

/* --- Program Tracks Section Styles (Imported) --- */
:root {
    --orange: #e67e22;
    --orange-d: #c9640f;
    --orange-l: #fff3e6;
    --orange-ll: #fffaf4;
    --navy: #1a2744;
    --navy-l: #243660;
    --bg-creamy: #f7f4ef;
    --surface: #ffffff;
    --track-border: #e8e0d4;
    --track-text: #2a1f0e;
    --track-muted: #7a6a55;
    --track-hint: #b0a090;
    --track-hover: rgba(0, 0, 0, 0.04);
    --serif: 'Outfit', sans-serif;
    --sans: 'Inter', sans-serif;
}

[data-theme="dark"] {
    --navy: var(--text-main);
    --bg-creamy: var(--bg-alt);
    --surface: var(--bg-main);
    --track-border: var(--border);
    --track-text: var(--text-main);
    --track-muted: var(--text-muted);
    --track-hint: var(--text-muted);
    --track-hover: rgba(255, 255, 255, 0.05);
    --orange-l: rgba(230, 126, 34, 0.1);
    --orange-ll: rgba(230, 126, 34, 0.05);
}

/* Section Shared */
.section {
    padding: 80px 5%;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--orange);
    letter-spacing: .09em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.section-title-imported {
    font-family: var(--serif);
    font-size: clamp(28px, 4vw, 48px);
    color: var(--navy);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 15px;
    letter-spacing: -.02em;
    text-transform: capitalize;
}

.section-title-imported em {
    color: var(--orange);
    font-style: normal;
}

.section-sub {
    font-size: 15px;
    color: var(--track-muted);
    font-weight: 400;
    /* max-width: 520px; */
    margin-bottom: 48px;
}

/* Audience Buckets */
.buckets-wrap {
    padding: 52px 5%;
    /* background: var(--bg-creamy); */
}

.buckets-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 28px;
    align-items: start;
}

.buckets-nav {
    position: sticky;
    top: 80px;
}

.bnav-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--track-hint);
    margin-bottom: 10px;
}

.bnav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    cursor: pointer;
    transition: background .18s;
    margin-bottom: 2px;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    font-family: var(--sans);
}

.bnav-item:hover {
    background: var(--track-hover);
}

.bnav-item.active {
    background: var(--surface);
    box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
}

.bnav-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    transition: transform .2s;
}

.bnav-item.active .bnav-dot {
    transform: scale(1.3);
}

.bnav-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.2;
}

.bnav-sub {
    font-size: 11px;
    color: var(--track-muted);
    margin-top: 1px;
}

.bnav-count {
    margin-left: auto;
    font-size: 10px;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 20px;
    background: var(--bg-creamy);
    color: var(--track-muted);
    flex-shrink: 0;
}

.bnav-item.active .bnav-count {
    color: var(--orange);
}

.bucket-panel {
    display: none;
}

.bucket-panel.active {
    display: block;
    animation: riseIn .3s ease both;
}

@keyframes riseIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

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

/* Persona Header */
.bpanel-head {
    border-radius: 1rem;
    padding: 20px 28px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.bpanel-head::after {
    content: '';
    position: absolute;
    right: -30px;
    bottom: -30px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
}

.bph-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.bph-left {
    flex: 1;
    min-width: 0;
}

.bph-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 4px;
}

.bph-title {
    font-family: var(--serif);
    font-size: clamp(18px, 2.2vw, 24px);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 6px;
}

.bph-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, .65);
    line-height: 1.55;
    max-width: 460px;
    margin-bottom: 10px;
}

.bph-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.bph-tag {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .85);
    border: 1px solid rgba(255, 255, 255, .18);
}

.bph-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.bph-stat {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 10px;
    padding: 10px 14px;
    text-align: center;
    min-width: 90px;
}

.bph-stat-num {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.bph-stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, .5);
    margin-top: 2px;
}

.bph-cta {
    font-family: var(--sans);
    font-size: 13.5px;
    font-weight: 600;
    background: #fff;
    border: none;
    padding: 9px 16px;
    border-radius: 7px;
    cursor: pointer;
    transition: opacity .2s, transform .15s;
    white-space: nowrap;
}

.bph-cta:hover {
    opacity: .9;
    transform: translateY(-1px);
}

/* Course Cards */
.bcards-grid {
    display: grid;
    gap: 12px;
}

.bc2 {
    background: var(--surface);
    border: 1px solid var(--track-border);
    border-radius: 1rem;
    overflow: hidden;
    transition: box-shadow .2s, transform .2s;
    display: flex;
    flex-direction: column;
}

.bc2:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

[data-theme="dark"] .bc2:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.bc2.bc2-primary {
    border-width: 2px;
}

.bc2-stripe {
    height: 3px;
    width: 100%;
    flex-shrink: 0;
}

.bc2-body {
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.bc2-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.bc2-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bc2-icon svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bc2-badges {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.bc2-badge {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 20px;
}

.bc2-title {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2px;
    line-height: 1.15;
}

.bc2-subtitle {
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: 8px;
}

.bc2-desc {
    font-size: 13.5px;
    color: var(--track-muted);
    line-height: 1.55;
    margin-bottom: 12px;
    min-height: 54px;
}

.bc2-feats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    margin-bottom: 14px;
}

.bc2-feat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--track-text);
}

.bc2-feat-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    flex-shrink: 0;
}

.bc2-divider {
    height: 1px;
    background: var(--track-border);
    margin-bottom: 12px;
    margin-top: auto;
}

.bc2-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.bc2-price {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
}

.bc2-emi {
    font-size: 10px;
    color: var(--track-muted);
    margin-top: 1px;
}

.bc2-btn {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 7px;
    border: none;
    cursor: pointer;
    transition: background .18s, transform .13s;
    white-space: nowrap;
}

.bc2-btn:hover {
    transform: translateY(-1px);
}

.anim-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.anim-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

@media(max-width:900px) {
    .buckets-inner {
        grid-template-columns: 1fr;
    }

    .buckets-nav {
        position: static;
        display: flex;
        gap: 6px;
        overflow-x: auto;
        padding-bottom: 12px;
        margin-bottom: 8px;
    }

    .bnav-label {
        display: none;
    }

    .bnav-item {
        flex-shrink: 0;
        padding: 8px 12px;
        border: 1.5px solid var(--track-border);
        width: auto;
    }

    .bnav-item.active {
        border-color: var(--orange);
    }

    .bnav-sub,
    .bnav-count {
        display: none;
    }

    .bph-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .bph-right {
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
        justify-content: space-between;
    }

    .bcards-grid {
        grid-template-columns: 1fr !important;
    }
}

/* --- New Flagship Programs Design (Based on User Image) --- */
.flagship-section {
    padding: 100px 0;
    background: var(--bg-alt);
}

.flagship-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.f-card {
    background: var(--bg-main);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
}

.f-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.f-image-wrap {
    position: relative;
    height: 280px;
}

.f-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.f-price-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #fff;
    color: var(--brand-navy);
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.25rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.f-content {
    padding: 40px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.f-eyebrow {
    color: var(--brand-gold);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.f-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 18px;
    color: var(--text-main);
}

.f-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.f-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 35px;
}

.f-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
}

.f-feature i {
    color: var(--brand-gold);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.f-actions {
    display: flex;
    gap: 15px;
    margin-top: auto;
}

.f-actions .btn {
    flex: 1;
    padding: 15px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 12px;
}

.btn-orange {
    background: var(--brand-gold);
    color: #fff;
}

.btn-orange:hover {
    background: var(--brand-accent);
    color: #fff;
}

.btn-outline-orange {
    border: 2px solid var(--brand-gold);
    color: var(--brand-gold);
    background: transparent;
}

.btn-outline-orange:hover {
    background: var(--brand-gold);
    color: #fff;
}

@media (max-width: 992px) {
    .flagship-grid {
        grid-template-columns: 1fr;
    }

    .f-title {
        font-size: 1.75rem;
    }

    .f-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* --- Premium Interactive Home Page Programs (NEW DESIGN) --- */
.hp-programs {
    background: var(--bg-main);
    position: relative;
    overflow: hidden;
}

.hp-programs::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(230, 126, 34, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.hp-grid {
    display: flex;
    flex-direction: column;
    gap: 100px;
    margin-top: 80px;
}

.hp-item {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
}

.hp-item:nth-child(even) {
    flex-direction: row-reverse;
}

.hp-visual {
    flex: 1.2;
    position: relative;
    height: 500px;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.hp-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hp-item:hover .hp-visual img {
    transform: scale(1.05);
}

.hp-info {
    flex: 1;
    z-index: 1;
}

.hp-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(230, 126, 34, 0.1);
    color: var(--brand-gold);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.hp-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.1;
    margin-bottom: 25px;
}

.hp-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 500px;
}

.hp-features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 45px;
}

.hp-feat {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--text-main);
}

.hp-feat i {
    color: var(--brand-gold);
    font-size: 1.2rem;
}

.hp-price-tag {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-gold);
    margin-bottom: 30px;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.hp-strike-price {
    font-size: 1.2rem;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 500;
}

.hp-price-tag span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.hp-btns {
    display: flex;
    gap: 20px;
}

.hp-btns .btn {
    padding: 18px 35px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: var(--transition);
}

.hp-btns .btn:hover {
    transform: translateY(-3px);
}

@media (max-width: 1024px) {

    .hp-item,
    .hp-item:nth-child(even) {
        flex-direction: column;
        gap: 40px;
    }

    .hp-visual {
        width: 100%;
        height: 400px;
    }

    .hp-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .hp-features-list {
        grid-template-columns: 1fr;
    }

    .hp-btns {
        flex-direction: column;
    }
}

/* --- Aspirant Pain Point Section --- */
.pp-section {
    /* padding: 100px 0; */
    background: var(--bg-alt);
    overflow: hidden;
}

.pp-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

.pp-content {
    flex: 1.2;
}

.pp-intro {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.7;
}

.pp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.pp-item {
    background: var(--bg-main);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pp-item:hover {
    transform: translateY(-5px);
    border-color: var(--brand-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.pp-thought {
    display: flex;
    gap: 12px;
    font-weight: 700;
    color: var(--text-main);
    font-size: 1rem;
}

.pp-thought i {
    color: #e74c3c;
    margin-top: 3px;
}

.pp-solution {
    display: flex;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.95rem;
    padding-top: 15px;
    border-top: 1px dashed var(--border);
}

.pp-solution i {
    color: #27ae60;
    margin-top: 3px;
}

.pp-closing {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 35px;
}

.pp-btns {
    display: flex;
    gap: 20px;
}

.pp-btns .btn {
    padding: 15px 30px;
    font-weight: 700;
}

.pp-visual {
    flex: 0.8;
    position: relative;
}

.pp-visual img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1100px) {
    .pp-layout {
        flex-direction: column;
        gap: 60px;
        text-align: center;
    }

    .pp-visual {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
        order: -1;
    }

    .pp-content h2.section-title {
        text-align: center !important;
    }
}

@media (max-width: 768px) {
    .pp-section {
        padding: 60px 0;
    }

    .pp-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .pp-intro {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .pp-closing {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .pp-btns {
        flex-direction: column;
        width: 100%;
    }

    .pp-btns .btn {
        width: 100%;
        text-align: center;
    }

    .pp-item {
        padding: 20px;
    }

    .pp-thought span,
    .pp-solution span {
        font-size: 0.9rem;
    }
}

/* --- Why Choose Section (New) --- */
.why-choose {
    /* padding: 100px 0; */
    background: var(--bg-main);
}

.wc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Center the last item (7th item) when there are 3 columns */
@media (min-width: 992px) {
    .wc-card:last-child:nth-child(3n - 2) {
        grid-column: 2;
    }
}

/* Handle 2 columns on medium screens */
@media (max-width: 991px) and (min-width: 769px) {
    .wc-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wc-card:last-child:nth-child(odd) {
        grid-column: 1 / span 2;
        justify-self: center;
        width: calc(50% - 15px);
    }
}

/* Stagger delay for 7th item in grid-reveal */
.grid-reveal>.reveal:nth-child(7) {
    transition-delay: 0.7s;
}

.wc-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: var(--bg-alt);
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.wc-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand-gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.wc-icon {
    width: 60px;
    height: 60px;
    background: rgba(230, 126, 34, 0.1);
    color: var(--brand-gold);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.wc-info h3 {
    font-size: 1.25rem;
    color: var(--text-main);
    margin-bottom: 10px;
}

.wc-info p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .wc-grid {
        grid-template-columns: 1fr;
    }

    .wc-btns {
        flex-direction: column;
    }

    .wc-btns .btn {
        width: 100%;
        text-align: center;
    }
}

/* --- MindGENIE AI Mentor Section (Bento Box Redesign) --- */
.mg-mentor-section {
    padding: 100px 0;
    background: var(--bg-main);
}

.mg-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.mg-bento-card {
    background: var(--bg-main);
    border-radius: 30px;
    padding: 30px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.mg-bento-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    border-color: var(--brand-gold);
}

/* Main Visual Card - Spans 2x2 */
.mg-bento-main {
    grid-column: span 2;
    grid-row: span 2;
    padding: 0;
    background: var(--bg-alt);
}

.mg-bento-visual {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.mg-bento-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.mg-bento-main:hover .mg-bento-visual img {
    transform: scale(1.05);
}

.mg-bento-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(10, 17, 32, 0.9) 0%, transparent 100%);
    color: #fff;
}

.mg-bento-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #fff;
}

.mg-bento-overlay p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.5;
}

/* Feature Cards */
.mg-bento-feature {
    background: var(--bg-tint);
    border: none;
}

.mg-bento-icon {
    width: 45px;
    height: 45px;
    background: var(--bg-main);
    color: var(--brand-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.mg-bento-card:hover .mg-bento-icon {
    background: var(--brand-gold);
    color: #fff;
    transform: rotate(10deg);
}

.mg-bento-feature h4 {
    font-size: 1.15rem;
    color: var(--text-main);
    margin-bottom: 10px;
}

.mg-bento-feature p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Highlight Card - Full Width at Bottom */
.mg-bento-highlight {
    grid-column: span 4;
    background: var(--brand-navy);
    color: #fff;
    text-align: center;
    padding: 40px;
    justify-content: center;
}

.mg-bento-highlight p {
    font-size: 1.3rem;
    font-style: italic;
    color: #fff;
}

.mg-bento-highlight strong {
    color: var(--brand-gold);
}

@media (max-width: 1100px) {
    .mg-bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mg-bento-highlight {
        grid-column: span 2;
    }
}

@media (max-width: 650px) {
    .mg-bento-grid {
        grid-template-columns: 1fr;
    }

    .mg-bento-main,
    .mg-bento-highlight {
        grid-column: span 1;
    }

    .mg-bento-main {
        height: 400px;
    }
}

.assessment_title {
    font-size: 3rem !important;
}

/* --- Testimonies Swiper Section --- */
.testimonies-swiper-section {
    /* padding: 100px 0; */
    background: var(--bg-alt);
    position: relative;
    overflow: hidden;
}

.testimonies-swiper {
    padding: 40px 50px 80px !important;
    width: 100%;
    margin: 0 auto;
}

.testi-card {
    background: var(--bg-main);
    padding: 40px 30px;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonies-swiper .swiper-slide {
    height: auto;
    /* Ensures flex-grow/height: 100% works on cards */
}

.testi-quote-icon {
    font-size: 3rem;
    color: var(--brand-gold);
    opacity: 0.15;
    margin-bottom: 20px;
}

.testi-text {
    font-size: 1.05rem;
    color: var(--text-main);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.testi-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.testi-author h4 {
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 2px;
}

.testi-author p {
    font-size: 0.9rem;
    color: var(--brand-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonies-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--brand-gold);
    opacity: 0.3;
}

.testimonies-swiper .swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 10px;
    opacity: 1;
}

@media (max-width: 768px) {
    .testi-card {
        padding: 40px 25px;
    }

    .testi-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 600px) {
    .testimonies-swiper {
        padding: 30px 20px 60px !important;
    }
}