:root {
    --primary: #7C3AED;
    --secondary: #A78BFA;
    --accent: #F59E0B;
    --text-main: #1E1B4B;
    --text-light: #6B7280;
    --bg-light: #FAF5FF;
    --glass: rgba(255, 255, 255, 0.85);
    --card-shadow: 0 20px 40px -15px rgba(124, 58, 237, 0.15);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
html {
    scroll-behavior: smooth;
}
body {
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
}
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0.5rem 0;
    transition: var(--transition);
}
.nav-container {
    width: 100%;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-text {
    display: flex;
    flex-direction: column;
}
.logo-text .brand {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}
.logo-text .dept {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 600;
    letter-spacing: 1px;
}
.nav-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
    padding-left: 2rem;
    position: relative;
}
.nav-row {
    display: flex;
    list-style: none;
    gap: 1rem;
    margin-bottom: 0;
    width: 100%;
    justify-content: flex-end;
    align-items: center;
}
.nav-row.bottom {
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    gap: 1.5rem;
    margin-top: 0.5rem;
}
.nav-row.bottom.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}
@media (min-width: 1101px) {
    .nav-wrapper:has(.nav-row.top .nav-item:hover) .nav-row.bottom.active {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}
.desktop-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(124, 58, 237, 0.1);
    color: var(--primary);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    margin-left: 0.5rem;
    border: 1px solid rgba(124, 58, 237, 0.1);
}
.desktop-toggle:hover {
    background: var(--primary);
    color: white;
}
.desktop-toggle.active i {
    transform: rotate(180deg);
}
@media (max-width: 1100px) {
    .nav-container {
        padding: 0 1.5rem;
    }
    .mobile-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        z-index: 1001;
        width: 40px;
        height: 40px;
        border-radius: 8px;
        transition: var(--transition);
        color: var(--primary);
        font-size: 30px;
        line-height: 1;
    }
    .desktop-toggle {
        display: none;
    }
    .nav-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding: 80px 1rem 2rem;
        overflow-y: auto;
    }
    .nav-wrapper.active {
        right: 0;
    }
    .nav-row {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem !important;
        width: 100% !important;
        margin-bottom: 0;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }
    .nav-row.bottom {
        margin-top: 0.75rem;
    }
    .nav-item {
        transition: opacity 0.2s ease;
    }
    .nav-wrapper:has(.nav-item:hover) .nav-item:not(:hover) {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
    .nav-item:hover {
        z-index: 10;
    }
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0.5rem 0 0.5rem 1.5rem;
        display: none;
        min-width: auto;
        width: 100%;
        border: none;
        background: transparent;
    }
    .nav-item:hover .dropdown,
    .nav-item:focus-within .dropdown {
        display: block;
    }
    .nav-item:hover .nav-link {
        background: rgba(124, 58, 237, 0.08);
        color: var(--primary);
    }
    .nav-link {
        justify-content: center;
        width: 100%;
        text-align: center;
        background: rgba(124, 58, 237, 0.03);
    }
}
.nav-item {
    position: relative;
}
.nav-link {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-link:hover {
    background: rgba(124, 58, 237, 0.05);
    color: var(--primary);
}
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 240px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown a {
    display: block;
    padding: 0.6rem 1rem;
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.85rem;
    border-radius: 6px;
    transition: var(--transition);
}
.dropdown a:hover {
    background: var(--bg-light);
    color: var(--primary);
    padding-left: 1.25rem;
}
.mobile-toggle {
    display: none;
    color: var(--primary);
    cursor: pointer;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: var(--transition);
}
.mobile-toggle:hover {
    background: rgba(124, 58, 237, 0.1);
}
.slider-controls {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}
.nav-btn {
    width: 45px;
    height: 45px;
    border: 1px solid #e2e8f0;
    background: white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--text-main);
}
.nav-btn:hover {
    border-color: var(--text-main);
    background: var(--bg-light);
}
.nav-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}
.progress-bar {
    flex-grow: 1;
    max-width: 200px;
    height: 2px;
    background: #e2e8f0;
    position: relative;
    border-radius: 1px;
}
.progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: black;
    width: 33%;
    transition: width 0.3s ease, left 0.3s ease;
}
@media (min-width: 1025px) {
    .slider-controls {
        display: none !important;
    }
    .programs-track {
        transform: none !important;
        justify-content: center;
        flex-wrap: wrap;
    }
    .program-card {
        flex: 0 0 calc(33.333% - 2rem);
    }
}
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.4);
}
.back-to-top.active {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    background: #6D28D9;
    transform: translateY(-3px);
}
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
    background: linear-gradient(135deg, #0D0B1F 0%, #1A1040 35%, #2D1B69 70%, #4C1D95 100%);
}
.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}
.hero-glow-1 {
    width: 600px;
    height: 600px;
    background: rgba(124, 58, 237, 0.35);
    top: -120px;
    left: -80px;
    animation: floatGlow 9s ease-in-out infinite;
}
.hero-glow-2 {
    width: 450px;
    height: 450px;
    background: rgba(167, 139, 250, 0.2);
    bottom: -60px;
    right: 8%;
    animation: floatGlow 12s ease-in-out infinite reverse;
}
@keyframes floatGlow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, 25px); }
}
.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(124, 58, 237, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124, 58, 237, 0.08) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 2;
}
.hero-bg-img {
    position: absolute;
    right: 0;
    top: 0;
    width: 52%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}
.hero-bg-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.5) 22%, black 52%);
    mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.5) 22%, black 52%);
}
.hero-container {
    max-width: 1800px;
    width: 100%;
    margin: 0 auto;
    padding: 4rem 3rem;
    position: relative;
    z-index: 3;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(124, 58, 237, 0.2);
    border: 1px solid rgba(167, 139, 250, 0.4);
    color: #C4B5FD;
    padding: 0.5rem 1.1rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
}
.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 2.8vw, 2.8rem);
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}
.hero-highlight {
    background: linear-gradient(135deg, #A78BFA, #F59E0B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-intro {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.85;
    margin-bottom: 2.5rem;
    max-width: 580px;
}
.hero-intro-wrap {
    position: relative;
}
.hero-intro-toggle {
    display: none;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.9rem 2rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}
.btn-hero-primary {
    background: var(--primary);
    color: white;
    border: 2px solid var(--primary);
    box-shadow: 0 8px 28px rgba(124, 58, 237, 0.45);
}
.btn-hero-primary:hover {
    background: #6D28D9;
    border-color: #6D28D9;
    box-shadow: 0 14px 38px rgba(124, 58, 237, 0.65);
    transform: translateY(-2px);
}
.btn-hero-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
}
.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.65);
    transform: translateY(-2px);
}
.hero-content {
    max-width: 640px;
}
@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.stat-num {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}
.stat-label {
    display: block;
    font-size: 0.7rem;
    color: rgba(196, 181, 253, 0.85);
    margin-top: 5px;
    font-weight: 500;
}
.hero-scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.35);
    animation: bounceDown 2.2s ease-in-out infinite;
    z-index: 2;
}
@keyframes bounceDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.7rem;
    }
    .hero-bcom {
        white-space: nowrap;
    }
}
@media (max-width: 900px) {
    .hero-container {
        padding: 3rem 2rem;
        text-align: center;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero-title {
        font-size: clamp(2rem, 5.5vw, 2.5rem);
    }
    .hero-intro {
        font-size: 1.05rem;
        margin-left: auto;
        margin-right: auto;
        max-height: 5.9rem;
        overflow: hidden;
        transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
        margin-bottom: 0.4rem;
    }
    .hero-intro.expanded {
        max-height: 30rem;
        margin-bottom: 2.5rem;
    }
    .hero-intro-toggle {
        display: block;
        background: none;
        border: none;
        color: rgba(255, 255, 255, 0.45);
        font-size: 1.3rem;
        letter-spacing: 4px;
        cursor: pointer;
        padding: 0.2rem 0 1.75rem;
        font-family: inherit;
        line-height: 1;
        transition: color 0.2s ease;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-intro-toggle:hover {
        color: var(--accent);
    }
    .hero-intro-toggle.hidden {
        display: none;
    }
    .hero-buttons { justify-content: center; }
    .hero-badge { margin-left: auto; margin-right: auto; }
    .hero-bg-img { opacity: 0.2; width: 100%; }
}
.vm-section {
    padding: 7rem 2rem;
    content-visibility: auto;
    contain-intrinsic-size: auto 600px;
    background: linear-gradient(160deg, #FAF5FF 0%, #F3E8FF 50%, #EDE9FE 100%);
    position: relative;
    overflow: hidden;
}
.vm-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.07) 0%, transparent 70%);
    pointer-events: none;
}
.vm-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.06) 0%, transparent 70%);
    pointer-events: none;
}
.vm-container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.vm-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.section-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(124, 58, 237, 0.08);
    color: var(--primary);
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    border: 1px solid rgba(124, 58, 237, 0.18);
}
.section-heading {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.2;
}
.vm-vision-card {
    background: linear-gradient(135deg, #0F0A1E 0%, #1E1B4B 40%, #3B1F8C 80%, #5B21B6 100%);
    border-radius: 28px;
    padding: 3.5rem 4rem;
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 4rem;
}
.vm-particle-dot {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: white;
    box-shadow:
        0 0 6px 3px rgba(255, 255, 255, 0.9),
        0 0 16px 6px rgba(167, 139, 250, 0.7),
        0 0 32px 12px rgba(124, 58, 237, 0.35);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10;
}
.vm-vision-card::before {
    content: '\201C';
    position: absolute;
    top: -2rem;
    right: 3rem;
    font-size: 22rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    pointer-events: none;
}
.vm-vision-card::after {
    content: '';
    position: absolute;
    top: -80px;
    right: 10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 65%);
    pointer-events: none;
}
.vm-vision-icon-wrap {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    background: rgba(167, 139, 250, 0.15);
    border: 1.5px solid rgba(167, 139, 250, 0.45);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #A78BFA;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.1), 0 0 16px rgba(167, 139, 250, 0.5), 0 0 32px rgba(124, 58, 237, 0.25);
}
.vm-vision-body {
    position: relative;
    z-index: 1;
}
.vm-sublabel {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(196, 181, 253, 0.85);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}
.vm-vision-text {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.05rem, 1.8vw, 1.35rem);
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.75;
    font-weight: 400;
    font-style: italic;
    border-left: 3px solid rgba(167, 139, 250, 0.5);
    padding-left: 1.5rem;
}
.vm-mission-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.vm-mission-header::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(124, 58, 237, 0.3), transparent);
}
.vm-mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.vm-mission-card {
    background: white;
    border-radius: 20px;
    padding: 2.2rem 2rem;
    border: 1px solid rgba(124, 58, 237, 0.08);
    border-top: 3px solid var(--primary);
    box-shadow: 0 4px 24px rgba(124, 58, 237, 0.06);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.vm-mission-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at bottom right, rgba(124, 58, 237, 0.05), transparent 70%);
    border-radius: 20px 0 20px 0;
}
.vm-mission-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(124, 58, 237, 0.14);
}
.vm-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.2rem;
}
.vm-card-icon {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12), 0 0 14px rgba(124, 58, 237, 0.45), 0 0 28px rgba(124, 58, 237, 0.2);
}
.vm-mission-card:hover .vm-card-icon {
    background: rgba(124, 58, 237, 0.08);
    color: var(--primary);
}
.vm-card-num {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(124, 58, 237, 0.08);
    line-height: 1;
    transition: var(--transition);
}
.vm-mission-card:hover .vm-card-num {
    background: linear-gradient(135deg, #8756dc, #F43F5E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.vm-mission-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.85;
}
@media (max-width: 900px) {
    .vm-vision-card {
        flex-direction: column;
        padding: 2.5rem 2rem;
        gap: 1.5rem;
        text-align: center;
    }
    .vm-vision-text {
        border-left: none;
        border-top: 3px solid rgba(167, 139, 250, 0.5);
        padding-left: 0;
        padding-top: 1.2rem;
        text-align: left;
    }
    .vm-mission-grid {
        grid-template-columns: 1fr;
    }
    .vm-section {
        padding: 5rem 1.5rem;
    }
}
@media (min-width: 901px) and (max-width: 1100px) {
    .vm-vision-card {
        padding: 2.5rem 3rem;
    }
}
.why-section {
    padding: 7rem 5rem;
    content-visibility: auto;
    contain-intrinsic-size: auto 700px;
    background: white;
    position: relative;
    overflow: hidden;
}
.why-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(124, 58, 237, 0.05) 1.5px, transparent 1.5px);
    background-size: 28px 28px;
    pointer-events: none;
}
.why-container {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
    position: relative;
    z-index: 1;
}
.why-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(124, 58, 237, 0.08);
    color: var(--primary);
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    border: 1px solid rgba(124, 58, 237, 0.18);
}
.why-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.55rem, 2.6vw, 2.2rem);
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.25;
    margin-bottom: 1.25rem;
}
.why-title .why-accent {
    background: linear-gradient(135deg, var(--primary), #A855F7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.why-intro {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 1.75rem;
}
.why-subheading {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.why-subheading::before {
    content: '';
    width: 4px;
    height: 1em;
    background: var(--primary);
    border-radius: 2px;
    flex-shrink: 0;
}
.why-sub-text {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.75rem;
    padding-left: 12px;
}
.why-highlights-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.why-highlights-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(124, 58, 237, 0.25), transparent);
}
.why-karunya-block {
    border-left: 3px solid #7F77DD;
    background: #EEEDFE;
    padding: 12px 16px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 1.75rem;
}
.why-karunya-block .why-subheading {
    margin-bottom: 0.5rem;
}
.why-karunya-block .why-sub-text {
    margin-bottom: 0;
    padding-left: 0;
}
.why-highlights {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.why-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--text-main);
    font-weight: 500;
    line-height: 1.5;
    padding: 10px 0;
    border-bottom: 1px solid #e5e5e5;
}
.why-item:last-child {
    border-bottom: none;
}
.why-item-dot {
    width: 22px;
    height: 22px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 1px;
}
.why-cta {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}
.why-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: 1.5px solid #534AB7;
}
.why-btn-primary {
    background: #534AB7;
    color: white;
}
.why-btn-primary:hover {
    background: #4338CA;
    border-color: #4338CA;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(83, 74, 183, 0.35);
}
.why-btn-outline {
    background: transparent;
    color: #534AB7;
}
.why-btn-outline:hover {
    background: #EEEDFE;
    transform: translateY(-2px);
}
.why-img-wrap {
    position: relative;
    height: 100%;
}
.why-img-grid {
    display: grid;
    grid-template-columns: 3fr 2.5fr;
    gap: 8px;
    height: 100%;
    min-height: 520px;
}
.why-img-top-wrap {
    position: relative;
    height: 100%;
}
.why-img-stack {
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 100%;
}
.why-img-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.13);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.why-img-item:hover {
    transform: scale(1.02) translateY(-3px);
    box-shadow: 0 20px 48px rgba(124, 58, 237, 0.18);
}
.why-img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.why-img-feature {
    height: 100%;
}
.why-img-feature img {
    object-position: 25% 40%;
}
@media (max-width: 1279px) {
    .why-img-feature img {
        object-position: 22% 38%;
    }
}
@media (max-width: 1023px) {
    .why-img-feature img {
        object-position: 20% 35%;
    }
}
@media (max-width: 767px) {
    .why-img-feature img {
        object-position: 18% 30%;
    }
}
.why-img-sm {
    flex: 1;
    min-height: 0;
}
.why-float-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: white;
    border-radius: 14px;
    padding: 0.7rem 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18), 0 2px 6px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
    border: 1px solid rgba(124, 58, 237, 0.08);
}
.why-badge-icon {
    width: 38px;
    height: 38px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15), 0 0 14px rgba(124, 58, 237, 0.5), 0 0 26px rgba(124, 58, 237, 0.2);
}
.why-badge-text strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
}
.why-badge-text span {
    font-size: 0.7rem;
    color: var(--text-light);
}
@media (max-width: 1024px) {
    .why-section { padding: 5rem 2rem; }
    .why-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .why-img-grid { height: auto; min-height: auto; grid-template-columns: 1fr 1fr; }
    .why-img-wrap { height: auto; }
    .why-img-top-wrap { height: 260px; }
    .why-img-stack { flex-direction: row; height: 180px; }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .why-img-wrap  { height: auto; }
    .why-img-grid  {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 72px 1fr;
        height: 510px;
        min-height: 510px;
        column-gap: 10px;
        row-gap: 0;
        position: relative;
    }
    .why-img-top-wrap {
        grid-row: 1;
        grid-column: 1;
        height: 100%;
        position: static;
    }
    .why-img-stack { display: contents; }
    .why-img-stack > .why-img-sm:nth-child(1) {
        grid-row: 1; grid-column: 2;
        flex: none; height: 100%; min-height: 0;
    }
    .why-img-stack > .why-img-sm:nth-child(2) {
        grid-row: 3; grid-column: 1;
        flex: none; height: 100%; min-height: 0;
    }
    .why-img-stack > .why-img-sm:nth-child(3) {
        grid-row: 3; grid-column: 2;
        flex: none; height: 100%; min-height: 0;
    }
    .why-float-badge {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        bottom: auto;
        z-index: 10;
        white-space: nowrap;
    }
}
.why-carousel-mobile { display: none; }
@media (max-width: 768px) {
    .why-img-grid { display: none !important; }
    .why-carousel-mobile {
        display: block;
        position: relative;
        overflow: hidden;
        border-radius: 16px;
        height: 300px;
    }
    .why-carousel-track {
        display: flex;
        height: 100%;
        transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform;
    }
    .why-carousel-slide {
        min-width: 100%;
        height: 100%;
        position: relative;
        overflow: hidden;
        border-radius: 16px;
    }
    .why-carousel-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    .why-carousel-slide .why-float-badge {
        bottom: 12px;
        left: auto;
        right: 12px;
    }
    .why-carousel-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.92);
        border: none;
        border-radius: 50%;
        width: 34px;
        height: 34px;
        cursor: pointer;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
        font-size: 1.25rem;
        font-weight: 700;
        transition: background 0.2s ease;
        line-height: 1;
    }
    .why-carousel-btn:hover { background: #fff; }
    .why-carousel-btn--prev { left: 10px; }
    .why-carousel-btn--next { right: 10px; }
}
.prog-section {
    padding: 7rem 2rem 8rem;
    content-visibility: auto;
    contain-intrinsic-size: auto 800px;
    background: linear-gradient(135deg, #1E1B4B 0%, #2D1B69 55%, #4C1D95 100%);
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 60px), 0 100%);
}
.prog-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(167, 139, 250, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(167, 139, 250, 0.05) 1px, transparent 1px);
    background-size: 55px 55px;
    pointer-events: none;
}
.prog-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.prog-header {
    text-align: center;
    margin-bottom: 3rem;
}
.dark-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(167, 139, 250, 0.15);
    color: #C4B5FD;
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    border: 1px solid rgba(167, 139, 250, 0.25);
}
.dark-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.dark-intro {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.85;
    max-width: 680px;
    margin: 0 auto;
}
.prog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.prog-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.prog-card:hover {
    border-color: rgba(167, 139, 250, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.35);
}
.prog-card-img {
    width: 100%;
    height: 320px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}
.prog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.prog-card:hover .prog-card-img img { transform: scale(1.06); }
.prog-card-img::after {
    display: none;
}
.prog-card-body {
    padding: 1.5rem 1.75rem 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.prog-degree-badge {
    display: inline-block;
    background: rgba(167, 139, 250, 0.15);
    color: #C4B5FD;
    padding: 0.28rem 0.75rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid rgba(167, 139, 250, 0.28);
    margin-bottom: 0.85rem;
    width: fit-content;
}
.prog-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}
.prog-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.1rem;
}
.prog-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
}
.prog-meta-item i { color: #A78BFA; }
.prog-divider {
    border: none;
    border-top: 1px solid rgba(167, 139, 250, 0.15);
    margin: 0 0 1.1rem;
}
.prog-focus-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(167, 139, 250, 0.65);
    margin-bottom: 0.75rem;
}
.prog-tag-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 1.5rem;
    flex: 1;
}
.prog-tag-pill {
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.78);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    border: 1px solid rgba(167, 139, 250, 0.28);
    background: rgba(167, 139, 250, 0.07);
    transition: var(--transition);
}
.prog-tag-pill:hover {
    background: rgba(167, 139, 250, 0.2);
    border-color: rgba(167, 139, 250, 0.55);
    color: white;
}
.prog-enroll-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid rgba(167, 139, 250, 0.45);
    border-radius: 8px;
    padding: 0.65rem 1.4rem;
    width: fit-content;
    transition: var(--transition);
}
.prog-enroll-btn:hover {
    background: rgba(167, 139, 250, 0.15);
    border-color: rgba(167, 139, 250, 0.75);
    gap: 12px;
}
@media (max-width: 768px) {
    .prog-grid { grid-template-columns: 1fr; }
    .prog-section { clip-path: none; padding-bottom: 7rem; }
}
.infra-section {
    padding: 8rem 2rem 7rem;
    content-visibility: auto;
    contain-intrinsic-size: auto 600px;
    background: white;
    position: relative;
    z-index: 1;
    margin-top: -60px;
}
.infra-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(124, 58, 237, 0.045) 1.5px, transparent 1.5px);
    background-size: 28px 28px;
    pointer-events: none;
}
.infra-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.infra-header {
    text-align: center;
    margin-bottom: 3rem;
}
.infra-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.infra-card {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 2.2rem 2rem;
    border: 1px solid rgba(124, 58, 237, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.infra-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(124, 58, 237, 0.12);
    border-color: rgba(124, 58, 237, 0.2);
}
.infra-card-icon {
    width: 52px;
    height: 52px;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 50%;
    border: 1.5px solid rgba(124, 58, 237, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 1.25rem;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.06), 0 0 16px rgba(124, 58, 237, 0.35), 0 0 30px rgba(124, 58, 237, 0.12);
}
.infra-stat {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.4rem;
}
.infra-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.6rem;
}
.infra-card-desc {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.75;
}
@media (max-width: 768px) {
    .infra-grid { grid-template-columns: 1fr; }
    .infra-section { margin-top: 0; }
}
.recruiter-wrap {
    margin-top: 3.5rem;
    border-top: 1px solid rgba(124, 58, 237, 0.1);
    padding-top: 2.5rem;
}
.recruiter-label {
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 2rem;
}
.recruiter-strip {
    overflow: hidden;
    position: relative;
}
.recruiter-track {
    display: flex;
    align-items: center;
    width: max-content;
    will-change: transform;
    transform: translateZ(0);
    animation: recruiterScroll 55s linear infinite;
}
.recruiter-track:hover {
    animation-play-state: paused;
}
.recruiter-logo-wrap {
    width: 140px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: 0 30px;
    transition: transform 0.35s ease;
}
.recruiter-logo-wrap:hover {
    transform: scale(1.12);
}
.recruiter-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}
.recruiter-logo-wrap--lg {
    width: 170px;
    height: 68px;
}
@keyframes recruiterScroll {
    0%   { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}
.career-section {
    padding: 8rem 2rem 7rem;
    background: linear-gradient(135deg, #0D0B1F 0%, #1E1B4B 45%, #2D1B69 100%);
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 60px, 100% 0, 100% 100%, 0 100%);
    margin-top: -60px;
}
.career-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(124, 58, 237, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124, 58, 237, 0.07) 1px, transparent 1px);
    background-size: 55px 55px;
    pointer-events: none;
}
.career-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
.career-left .dark-title {
    margin-bottom: 1.25rem;
}
.career-left .dark-intro {
    max-width: 100%;
    margin: 0 0 2rem;
}
.career-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}
.career-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(167, 139, 250, 0.15);
    border-radius: 12px;
    padding: 0.85rem 1rem;
    transition: all 0.2s ease;
}
.career-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(127, 119, 221, 0.8);
    transform: translateX(4px);
}
.career-item-num {
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    color: rgba(167, 139, 250, 0.6);
    min-width: 22px;
}
.career-item-icon {
    width: 36px;
    height: 36px;
    background: rgba(127, 119, 221, 0.18);
    border: 1px solid rgba(127, 119, 221, 0.25);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #AFA9EC;
    flex-shrink: 0;
}
.career-item-text {
    flex: 1;
    min-width: 0;
}
.career-item-title {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.3;
}
.career-item-sub {
    display: block;
    font-size: 11px;
    color: white;
    opacity: 0.45;
    margin-top: 2px;
    line-height: 1.3;
}
.career-item-arrow {
    opacity: 0.35;
    color: white;
    flex-shrink: 0;
    margin-left: auto;
    transition: opacity 0.2s ease;
}
.career-item:hover .career-item-arrow {
    opacity: 0.8;
}
.career-pills {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.career-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(127, 119, 221, 0.4);
    border-radius: 20px;
    padding: 7px 14px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
    transition: all 0.2s ease;
}
.career-pill:hover {
    border-color: rgba(127, 119, 221, 0.8);
    background: rgba(255, 255, 255, 0.08);
}
@media (max-width: 900px) {
    .career-container { grid-template-columns: 1fr; gap: 3rem; }
    .career-section { clip-path: none; margin-top: 0; padding-top: 7rem; }
    .career-grid { grid-template-columns: 1fr; }
    .career-left {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .career-left .dark-chip {
        align-self: center;
    }
    .career-left .dark-intro {
        text-align: center;
    }
    .career-pill {
        background: none;
        border: none;
        border-radius: 0;
        padding: 4px 0;
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.65);
    }
    .career-pill:hover {
        background: none;
        border: none;
    }
    .career-pills {
        gap: 4px;
    }
    .career-item-extra {
        display: none;
    }
    .career-item-extra.expanded {
        display: flex;
    }
}
.career-readmore-btn {
    display: none;
}
@media (max-width: 900px) {
    .career-readmore-btn {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        margin-top: 0.75rem;
        background: rgba(255, 255, 255, 0.07);
        border: 1px solid rgba(167, 139, 250, 0.3);
        border-radius: 8px;
        padding: 0.6rem 1.25rem;
        color: rgba(196, 181, 253, 0.9);
        font-size: 0.85rem;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.2s ease, border-color 0.2s ease;
        font-family: inherit;
    }
    .career-readmore-btn:hover {
        background: rgba(255, 255, 255, 0.12);
        border-color: rgba(167, 139, 250, 0.6);
    }
}
footer {
    background: #050505;
    color: white;
    padding: 5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2.5rem;
}
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
.testimonials-section {
    background: #F8F8F8;
    content-visibility: auto;
    contain-intrinsic-size: auto 500px;
    padding: 7rem 2rem;
}
.testi-container {
    max-width: 1300px;
    margin: 0 auto;
}
.testi-header {
    text-align: center;
    margin-bottom: 3rem;
}
.testi-subtext {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.85;
    margin-top: 0.5rem;
}
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.testi-card {
    background: #fff;
    border: 0.5px solid #e5e5e5;
    border-left: 3px solid rgba(124, 58, 237, 0.4);
    border-radius: 12px;
    padding: 1.75rem;
    transition: border-color 0.2s ease;
    display: flex;
    flex-direction: column;
}
.testi-card:hover {
    border-color: rgba(124, 58, 237, 0.35);
    border-left-color: var(--primary);
}
.testi-quote-icon {
    font-size: 3rem;
    line-height: 1;
    color: var(--primary);
    opacity: 0.25;
    font-family: Georgia, serif;
    margin-bottom: 0.25rem;
    display: block;
}
.testi-body {
    font-size: 0.875rem;
    line-height: 1.75;
    color: var(--text-light);
    font-style: italic;
    flex: 1;
}
.testi-divider {
    border: none;
    border-top: 1px solid #e5e5e5;
    margin: 1rem 0;
}
.testi-student-row {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testi-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.testi-student-info {
    flex: 1;
    min-width: 0;
}
.testi-student-name {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.3;
}
.testi-student-role {
    font-size: 0.75rem;
    color: var(--text-light);
    line-height: 1.4;
}
.testi-stars {
    font-size: 0.8rem;
    color: var(--accent);
    letter-spacing: 1px;
    flex-shrink: 0;
}
@media (max-width: 1024px) {
    .testi-grid {
        display: block;
        overflow: hidden;
        position: relative;
    }
    .testi-track {
        display: flex;
        will-change: transform;
    }
    .testi-track .testi-card {
        flex-shrink: 0;
        box-sizing: border-box;
    }
}
@media (max-width: 560px) {
    .testimonials-section {
        padding: 5rem 1.5rem;
    }
}
.faq-section {
    background: #fff;
    content-visibility: auto;
    contain-intrinsic-size: auto 700px;
    padding: 7rem 2rem;
}
.faq-container {
    max-width: 1300px;
    margin: 0 auto;
}
.faq-layout {
    display: grid;
    grid-template-columns: 36% 1fr;
    gap: 5rem;
    align-items: center;
}
.faq-left {
    display: flex;
    flex-direction: column;
}
.faq-left-header {
    display: flex;
    flex-direction: column;
}
.faq-left-header .section-chip {
    align-self: flex-start;
}
.faq-left-header .section-heading {
    margin: 0.75rem 0 1rem;
}
.faq-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 2rem;
}
.faq-info-card {
    background: var(--primary);
    border-radius: 12px;
    padding: 1.75rem;
    color: #fff;
}
.faq-info-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: #fff;
}
.faq-info-card p {
    font-size: 0.875rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.80);
    margin-bottom: 1.25rem;
}
.faq-contact-btn {
    display: block;
    width: 100%;
    background: #fff;
    color: var(--primary);
    border: none;
    border-radius: 8px;
    padding: 0.7rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    margin-bottom: 1.25rem;
    transition: background 0.2s ease, color 0.2s ease;
}
.faq-contact-btn:hover {
    background: rgba(255,255,255,0.88);
    color: var(--primary);
}
.faq-info-rows {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.faq-info-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.75);
}
.faq-info-row svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    opacity: 0.75;
}
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1.65rem;
}
.faq-item {
    background: rgba(124, 58, 237, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(124, 58, 237, 0.12);
    overflow: hidden;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.faq-item.open {
    background: #fff;
    border-color: rgba(124, 58, 237, 0.35);
}
.faq-question-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.75rem;
    cursor: pointer;
    gap: 12px;
    user-select: none;
}
.faq-item-num {
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--text-light);
    min-width: 22px;
    flex-shrink: 0;
    opacity: 0.7;
}
.faq-item.open .faq-item-num {
    color: var(--primary);
    opacity: 1;
}
.faq-question-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.5;
    transition: color 0.2s ease;
    flex: 1;
}
.faq-item.open .faq-question-text {
    color: var(--primary);
}
.faq-chevron {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--text-light);
    transition: transform 0.25s ease, color 0.2s ease;
}
.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    color: var(--primary);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.faq-answer-inner {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.75;
    padding: 0 1.25rem 1.25rem;
}
.faq-item.open .faq-answer {
    max-height: 400px;
}
@media (max-width: 900px) {
    .faq-layout {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    .faq-left {
        display: contents;
    }
    .faq-left-header {
        order: 1;
        text-align: center;
        align-items: center;
    }
    .faq-left-header .section-chip {
        align-self: center;
    }
    .faq-accordion {
        order: 2;
    }
    .faq-info-card {
        order: 3;
        position: static;
        width: 100%;
        box-sizing: border-box;
    }
    .faq-section {
        padding: 5rem 1.5rem;
    }
}
