/* ══════════════════════════════════════
   index_page.css  —  The Coding Expert
   (Merged & deduplicated)
══════════════════════════════════════ */

/* ── SCROLL PROGRESS BAR ── */
#scroll-prog {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), #f97316cc);
    z-index: 9999;
    width: 0%;
    transition: width 0.1s linear;
}

/* ── PAGE LOADER ── */
#loader {
    position: fixed;
    inset: 0;
    background: #0a1628;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s, visibility 0.6s;
}

#loader.hide {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -1px;
}

.loader-logo span {
    color: var(--orange);
}

.loader-bar {
    width: 180px;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    margin-top: 18px;
    overflow: hidden;
}

.loader-bar-inner {
    height: 100%;
    background: linear-gradient(90deg, var(--orange), #fbbf24);
    border-radius: 10px;
    animation: loadAnim 1.6s ease forwards;
}

@keyframes loadAnim {
    0% {
        width: 0
    }

    100% {
        width: 100%
    }
}

/* ── BACK TO TOP ── */
#backTop {
    position: fixed;
    bottom: 28px;
    left: 28px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(30, 58, 138, .35);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 500;
}

#backTop.show {
    opacity: 1;
    visibility: visible;
}

#backTop:hover {
    background: var(--orange);
    transform: translateY(-3px);
}

/* ── NAVBAR OVERRIDE ── */
.navbar-wrap {
    transition: box-shadow 0.4s;
}

.nav-top {
    transition: background 0.4s;
}

nav {
    background: var(--light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    transition: background 0.4s;
}

.nav-links a {
    color: var(--dark) !important;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    color: var(--orange-dark) !important;
}

.nav-btn {
    background: var(--navy) !important;
    border-color: var(--orange) !important;
}

.hamburger span {
    background: white !important;
}

.navbar-wrap.scrolled .nav-top {
    background: var(--navy-dark) !important;
}

.navbar-wrap.scrolled nav {
    /* background: transparent !important; */
    /* box-shadow: 14px -6px 16px 0px #000; */
    border-bottom-color: transparent !important;
}

/* ── HERO — FULLSCREEN ── */
.hero {
    margin-top: 0;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a1628 0%, #162d6e 45%, #1E3A8A 100%);
    display: flex;
    align-items: center;
    padding: 120px 5% 100px;
    position: relative;
    overflow: hidden;
}

/* Animated glowing orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    animation: orbFloat 8s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(249, 115, 22, 0.18);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 380px;
    height: 380px;
    background: rgba(30, 58, 138, 0.5);
    bottom: -80px;
    left: -80px;
    animation-delay: 3s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: rgba(249, 115, 22, 0.12);
    top: 40%;
    left: 35%;
    animation-delay: 5s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(20px, -30px) scale(1.05);
    }

    66% {
        transform: translate(-15px, 20px) scale(0.97);
    }
}

/* Grid lines decoration */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249, 115, 22, 0.18);
    border: 1px solid rgba(249, 115, 22, 0.35);
    color: var(--orange);
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
    animation: fadeSlideDown 0.7s ease both;
}

.hero h1 {
    font-size: clamp(44px, 6vw, 80px);
    font-weight: 900;
    color: white;
    line-height: 1.0;
    margin-bottom: 8px;
    animation: fadeSlideUp 0.7s 0.15s ease both;
}

.hero h1 .highlight {
    color: var(--orange);
    position: relative;
    display: inline-block;
}

.hero h1 .highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 4px;
    background: var(--orange);
    border-radius: 2px;
    animation: lineGrow 0.6s 0.8s ease both;
    transform-origin: left;
    transform: scaleX(0);
}

@keyframes lineGrow {
    to {
        transform: scaleX(1);
    }
}

/* Typing text */
.hero-typing-wrap {
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 24px;
    font-family: 'Outfit', sans-serif;
    animation: fadeSlideUp 0.7s 0.25s ease both;
    min-height: 32px;
}

.typing-static {
    color: rgba(255, 255, 255, 0.5);
}

.typing-dynamic {
    color: var(--orange);
    border-right: 3px solid var(--orange);
    padding-right: 4px;
    animation: blink 0.8s step-end infinite;
}

@keyframes blink {

    0%,
    100% {
        border-color: var(--orange)
    }

    50% {
        border-color: transparent
    }
}

.hero-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.85;
    margin-bottom: 36px;
    font-weight: 500;
    animation: fadeSlideUp 0.7s 0.35s ease both;
}

.hero-cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 44px;
    animation: fadeSlideUp 0.7s 0.45s ease both;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--navy);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 800;
    transition: all 0.25s;
    box-shadow: 0 8px 28px rgba(249, 115, 22, 0.45);
}

.btn-hero-primary:hover {
    background: var(--navy);
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(249, 115, 22, 0.55);
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.25s;
}

.btn-hero-outline:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Mini stats row */
.hero-mini-stats {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    animation: fadeSlideUp 0.7s 0.55s ease both;
}

.hero-mini-stat {
    text-align: center;
}

.hero-mini-num {
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 900;
    color: white;
    line-height: 1;
}

.hero-mini-num span {
    color: var(--orange);
}

.hero-mini-label {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 600;
    margin-top: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-mini-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
    align-self: stretch;
    margin: 4px 0;
}

/* Hero right visual */
.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeSlideUp 0.7s 0.3s ease both;
}

.hero-img-main {
    width: 320px;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.hero-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.hero-img-second {
    width: 200px;
    height: 240px;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    position: absolute;
    right: -20px;
    bottom: 0px;
    z-index: 3;
    animation: floatImg 5s ease-in-out infinite;
}

.hero-img-second img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes floatImg {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-12px)
    }
}

/* Floating badge cards */
.hero-badge {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 12px 16px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.hero-badge.b1 {
    top: 20px;
    left: -30px;
    animation: badgePop 0.6s 0.9s ease both, floatBadge1 6s 1.5s ease-in-out infinite;
}

.hero-badge.b2 {
    top: 140px;
    right: -40px;
    animation: badgePop 0.6s 1.1s ease both, floatBadge2 7s 1.7s ease-in-out infinite;
}

.hero-badge.b3 {
    bottom: 80px;
    left: -40px;
    animation: badgePop 0.6s 1.3s ease both, floatBadge3 5s 1.9s ease-in-out infinite;
}

@keyframes badgePop {
    from {
        opacity: 0;
        transform: scale(0.6)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

@keyframes floatBadge1 {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

@keyframes floatBadge2 {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(10px)
    }
}

@keyframes floatBadge3 {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-6px)
    }
}

.badge-icon {
    font-size: 24px;
}

.badge-text strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: var(--dark);
}

.badge-text span {
    font-size: 11.5px;
    color: var(--muted);
    font-weight: 600;
}

/* Hero bottom wave */
.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    line-height: 0;
}

@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* ── SCROLLING TICKER ── */
.ticker-wrap {
    background: var(--orange);
    overflow: hidden;
    padding: 12px 0;
}

.ticker-track {
    display: flex;
    animation: ticker 30s linear infinite;
    width: max-content;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 32px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: white;
    white-space: nowrap;
}

.ticker-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
}

@keyframes ticker {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* ── STATS COUNTER ── */
.stats-section {
    background: white;
    padding: 72px 5%;
}

.stats-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-card {
    text-align: center;
    padding: 36px 20px;
    position: relative;
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-4px);
}

.stat-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--navy-bg);
}

.stat-icon {
    font-size: 38px;
    margin-bottom: 12px;
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 54px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-number .suf {
    color: var(--orange);
    font-size: 30px;
}

.stat-desc {
    font-size: 14px;
    font-weight: 700;
    color: var(--muted);
    font-family: 'Outfit', sans-serif;
}

/* ── WHY US ── */
.why-section {
    background: linear-gradient(135deg, #0a1628 0%, var(--navy-dark) 50%, #1E3A8A 100%);
    padding: 90px 5%;
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.why-section .sec-label {
    background: rgba(249, 115, 22, 0.18);
    color: var(--orange);
    border-color: rgba(249, 115, 22, 0.3);
}

.why-section .sec-title {
    color: white;
}

.why-section .sec-title em {
    color: var(--orange);
}

.why-section .sec-sub {
    color: rgba(255, 255, 255, 0.65);
}

.why-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.why-feat {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px 22px;
    text-align: center;
    transition: all 0.3s;
    backdrop-filter: blur(8px);
    cursor: default;
}

.why-feat:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(249, 115, 22, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.why-feat-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.25), rgba(249, 115, 22, 0.1));
    border: 1px solid rgba(249, 115, 22, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 16px;
    transition: transform 0.3s;
}

.why-feat:hover .why-feat-icon {
    transform: scale(1.1) rotate(-5deg);
}

.why-feat h4 {
    font-size: 14.5px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
    line-height: 1.3;
}

.why-feat p {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.65;
    font-weight: 500;
}

/* ── TOOLS MARQUEE ── */
.tools-marquee {
    background: var(--navy-soft);
    padding: 22px 0;
    overflow: hidden;
    border-top: 1px solid rgba(30, 58, 138, .08);
    border-bottom: 1px solid rgba(30, 58, 138, .08);
}

.marquee-track {
    display: flex;
    animation: marqueeLeft 28s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 36px;
    white-space: nowrap;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--navy);
    border-right: 1px solid rgba(30, 58, 138, .15);
}

.marquee-item img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.marquee-item span.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
    display: inline-block;
}

@keyframes marqueeLeft {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

/* ── COURSES — TABBED ── */
.courses-section {
    background: var(--light);
    padding: 90px 5%;
}

.course-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.course-tab {
    padding: 10px 22px;
    border-radius: 50px;
    border: 2px solid var(--navy-bg);
    background: white;
    color: var(--navy);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}

.course-tab:hover,
.course-tab.active {
    background: var(--navy);
    color: white;
    border-color: var(--navy);
    box-shadow: 0 6px 18px rgba(30, 58, 138, 0.28);
}

.courses-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.course-panel {
    display: none;
}

.course-panel.active {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.course-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(30, 58, 138, 0.08);
    transition: all 0.3s;
    box-shadow: 0 4px 18px rgba(30, 58, 138, 0.07);
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px rgba(30, 58, 138, 0.18);
    border-color: var(--navy);
}

.course-top {
    height: 190px;
    overflow: hidden;
    position: relative;
}

.course-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.course-card:hover .course-top img {
    transform: scale(1.07);
}

.course-top-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: linear-gradient(transparent, rgba(15, 30, 61, 0.6));
}

.course-body {
    padding: 24px;
}

.course-tag {
    font-family: 'Outfit', sans-serif;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--navy);
    background: var(--navy-soft);
    padding: 4px 10px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 10px;
}

.course-body h3 {
    font-size: 17px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 9px;
}

.course-body p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 16px;
    font-weight: 500;
}

.course-feats {
    list-style: none;
    margin-bottom: 20px;
}

.course-feats li {
    font-size: 13px;
    color: var(--text);
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 7px;
    font-weight: 500;
}

.course-feats li::before {
    content: '✓';
    color: var(--navy);
    font-weight: 800;
    font-size: 12px;
}

.btn-sm {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--navy);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.2s;
}

.btn-sm:hover {
    background: var(--orange);
    transform: translateX(3px);
}

/* ── SKILL BARS ── */
.skill-bars-section {
    padding: 90px 5%;
    background: #fff;
}

.skill-bars-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.skill-bars-left .sec-label {
    margin-bottom: 10px;
}

.skill-bars-left p {
    color: var(--muted);
    line-height: 1.8;
    margin-top: 16px;
    font-size: 16px;
}

.skill-bars-list {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.skill-bar-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.skill-bar-label {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--dark);
}

.skill-bar-pct {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 15px;
    color: var(--orange);
}

.skill-bar-track {
    height: 10px;
    background: var(--navy-soft);
    border-radius: 20px;
    overflow: hidden;
}

.skill-bar-fill {
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(90deg, var(--navy), var(--orange));
    width: 0%;
    transition: width 1.4s cubic-bezier(.22, 1, .36, 1);
}

.skill-bars-right {
    position: relative;
}

.skill-img-wrap {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(30, 58, 138, .18);
}

.skill-img-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.skill-float-card {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    padding: 14px 20px;
    box-shadow: 0 8px 32px rgba(30, 58, 138, .18);
    font-family: 'Outfit', sans-serif;
}

.skill-float-card.c1 {
    bottom: -20px;
    left: -20px;
}

.skill-float-card.c2 {
    top: -20px;
    right: -20px;
}

.skill-float-card strong {
    display: block;
    font-size: 22px;
    font-weight: 900;
    color: var(--navy);
}

.skill-float-card span {
    font-size: 12px;
    color: var(--muted);
    font-weight: 600;
}

/* ── LEARNING PATH TIMELINE ── */
.timeline-section {
    padding: 90px 5%;
    background: linear-gradient(135deg, #0a1628 0%, #162d6e 60%, #1E3A8A 100%);
    position: relative;
    overflow: hidden;
}

.timeline-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.timeline-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.timeline-inner .sec-head .sec-label {
    background: rgba(249, 115, 22, .2);
    color: var(--orange);
}

.timeline-inner .sec-title {
    color: #fff;
}

.timeline-inner .sec-sub {
    color: rgba(255, 255, 255, .7);
}

.timeline-steps {
    display: flex;
    margin-top: 56px;
    position: relative;
}

.timeline-steps::before {
    content: '';
    position: absolute;
    top: 38px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--orange), rgba(249, 115, 22, .2));
    z-index: 0;
}

.timeline-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.ts-num {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy-light), var(--orange));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 24px;
    color: #fff;
    box-shadow: 0 0 0 6px rgba(249, 115, 22, .15), 0 8px 30px rgba(249, 115, 22, .3);
    margin-bottom: 20px;
    transition: transform .3s;
}

.timeline-step:hover .ts-num {
    transform: scale(1.12);
}

.ts-icon {
    font-size: 26px;
    margin-bottom: 6px;
}

.ts-label {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 16px;
    color: #fff;
    margin-bottom: 6px;
}

.ts-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, .65);
    line-height: 1.6;
    max-width: 140px;
}

/* ── FACULTIES — SCROLL CARDS ── */
.faculties-section {
    background: white;
    padding: 90px 5%;
}

.faculty-scroll-outer {
    overflow: hidden;
    position: relative;
}

.faculty-scroll-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faculty-slide {
    flex: 0 0 calc((100% - 72px) / 4);
    min-width: 0;
    background: white;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(30, 58, 138, 0.1);
    box-shadow: 0 4px 18px rgba(30, 58, 138, 0.07);
    transition: all 0.3s;
}

.faculty-slide:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(30, 58, 138, 0.18);
    border-color: var(--navy);
}

.faculty-photo {
    height: 220px;
    overflow: hidden;
}

.faculty-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.45s;
}

.faculty-slide:hover .faculty-photo img {
    transform: scale(1.06);
}

.faculty-info {
    padding: 20px 18px 24px;
    text-align: center;
}

.faculty-role-tag {
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--orange-dark);
    background: var(--orange-light);
    padding: 4px 12px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 8px;
}

.faculty-info h3 {
    font-size: 17px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 6px;
}

.faculty-info p {
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.6;
    font-weight: 500;
}

.faculty-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}

.fac-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--navy-bg);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.fac-dot.active {
    width: 28px;
    border-radius: 5px;
    background: var(--navy);
}

/* ── SWIPER FACULTY ── */
.swiper-faculty {
    margin-top: 40px;
    padding-bottom: 50px;
}

.swiper-faculty .swiper-slide {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(30, 58, 138, .1);
    transition: transform .3s;
}

.swiper-faculty .swiper-slide:hover {
    transform: translateY(-6px);
}

.fac-swipe-photo {
    height: 260px;
    overflow: hidden;
}

.fac-swipe-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform .5s;
}

.swiper-faculty .swiper-slide:hover .fac-swipe-photo img {
    transform: scale(1.07);
}

.fac-swipe-body {
    padding: 22px 24px;
}

.fac-swipe-tag {
    display: inline-block;
    background: var(--orange-light);
    color: var(--orange-dark);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.fac-swipe-body h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 6px;
}

.fac-swipe-body p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
}

.fac-swipe-socials {
    display: flex;
    gap: 8px;
    margin-top: 14px;
}

.fac-soc {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--navy-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: background .2s, transform .2s;
}

.fac-soc:hover {
    background: var(--navy);
    transform: scale(1.1);
}

/* ── TESTIMONIALS — AUTO SLIDER ── */
.testi-section {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    padding: 90px 5%;
    position: relative;
    overflow: hidden;
}

.testi-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.testi-section .sec-label {
    background: rgba(249, 115, 22, 0.18);
    color: var(--orange);
    border-color: rgba(249, 115, 22, 0.3);
}

.testi-section .sec-title {
    color: white;
}

.testi-section .sec-title em {
    color: var(--orange);
}

.testi-slider-wrap {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.testi-track {
    display: flex;
    gap: 24px;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.testi-slide {
    flex: 0 0 calc((100% - 48px) / 3);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    padding: 34px 28px;
    backdrop-filter: blur(8px);
    transition: all 0.3s;
    position: relative;
}

.testi-slide:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.testi-big-quote {
    font-family: 'Outfit', sans-serif;
    font-size: 80px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.testi-stars-row {
    color: var(--orange);
    font-size: 16px;
    letter-spacing: 3px;
    margin-bottom: 14px;
    margin-top: 28px;
}

.testi-text {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.85;
    font-style: italic;
    font-weight: 500;
    margin-bottom: 24px;
}

.testi-person {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-av {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: white;
    font-size: 17px;
    flex-shrink: 0;
}

.testi-name-text {
    font-size: 14.5px;
    font-weight: 800;
    color: white;
    font-family: 'Outfit', sans-serif;
}

.testi-role-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.testi-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 36px;
}

.testi-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.25);
    background: transparent;
    color: white;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.testi-arrow:hover {
    background: var(--orange);
    border-color: var(--orange);
}

.testi-dots {
    display: flex;
    gap: 8px;
}

.testi-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.testi-dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--orange);
}

/* ── SWIPER TESTIMONIALS ── */
.testi-swiper-wrap {
    margin-top: 40px;
    padding-bottom: 50px;
}

.swiper-testi .swiper-slide {
    background: linear-gradient(135deg, #0d1f4e, #1E3A8A);
    border-radius: 20px;
    padding: 32px;
    color: #fff;
}

.testi-swipe-quote {
    font-size: 60px;
    line-height: .8;
    color: var(--orange);
    font-family: 'Outfit', sans-serif;
    margin-bottom: 10px;
}

.testi-swipe-stars {
    font-size: 18px;
    color: #fbbf24;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testi-swipe-text {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 22px;
}

.testi-swipe-person {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testi-swipe-av {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 18px;
    color: #fff;
    flex-shrink: 0;
}

.testi-swipe-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 15px;
}

.testi-swipe-role {
    font-size: 12px;
    color: rgba(255, 255, 255, .6);
}

/* ── ACHIEVEMENT STRIP ── */
.achievement-strip {
    background: linear-gradient(135deg, var(--orange-dark), var(--orange));
    padding: 40px 5%;
}

.achievement-strip-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.ach-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
}

.ach-icon {
    font-size: 32px;
}

.ach-text strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
}

.ach-text span {
    font-size: 13px;
    opacity: .85;
    font-weight: 600;
}

/* ── VIDEO CTA ── */
.video-cta {
    padding: 90px 5%;
    background: #fff;
}

.video-cta-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.vcta-left .sec-label {
    margin-bottom: 10px;
}

.vcta-left h2 {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--dark);
    margin: 10px 0 16px;
}

.vcta-left h2 em {
    font-style: normal;
    color: var(--orange);
}

.vcta-left p {
    color: var(--muted);
    line-height: 1.8;
    font-size: 16px;
}

.vcta-btns {
    display: flex;
    gap: 16px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.btn-vcta {
    padding: 14px 28px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: all .3s;
}

.btn-vcta.primary {
    background: var(--navy);
    color: #fff;
    box-shadow: 0 6px 20px rgba(249, 115, 22, .35);
}

.btn-vcta.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, .45);
}

.btn-vcta.outline {
    background: transparent;
    color: var(--navy) !important;
    /* border: 2px solid var(--navy); */
}

.btn-vcta.outline:hover {
    background: var(--navy);
    color: #fff;
}

.vcta-video {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(30, 58, 138, .2);
    cursor: pointer;
}

.vcta-video img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform .5s;
}

.vcta-video:hover img {
    transform: scale(1.05);
}

.vcta-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .95);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .2);
    transition: transform .3s;
}

.play-btn:hover {
    transform: scale(1.1);
}

.play-btn::after {
    content: '';
    border-left: 28px solid var(--orange);
    border-top: 17px solid transparent;
    border-bottom: 17px solid transparent;
    margin-left: 5px;
}

/* Video Modal */
#videoModal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .88);
    z-index: 9998;
    display: none;
    align-items: center;
    justify-content: center;
}

#videoModal.open {
    display: flex;
}

.vm-inner {
    position: relative;
    width: 90%;
    max-width: 800px;
}

.vm-inner iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
    border-radius: 12px;
}

.vm-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
}

/* ── BLOG PREVIEW ── */
.blog-preview {
    background: var(--light);
    padding: 90px 5%;
}

.blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    max-width: 1100px;
    margin: 0 auto;
}

.bp-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(30, 58, 138, 0.08);
    box-shadow: 0 4px 18px rgba(30, 58, 138, 0.07);
    transition: all 0.3s;
}

.bp-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 54px rgba(30, 58, 138, 0.16);
    border-color: var(--navy);
}

.bp-thumb {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.bp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s;
}

.bp-card:hover .bp-thumb img {
    transform: scale(1.07);
}

.bp-cat {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--navy);
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.bp-body {
    padding: 22px;
}

.bp-body h3 {
    font-size: 17px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.35;
    transition: color 0.2s;
}

.bp-card:hover .bp-body h3 {
    color: var(--navy);
}

.bp-body p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 16px;
    font-weight: 500;
}

.bp-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bp-date {
    font-size: 12px;
    color: var(--muted);
    font-weight: 600;
}

.bp-read {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: var(--navy);
    transition: color 0.2s;
}

.bp-card:hover .bp-read {
    color: var(--orange);
}

/* ── FAQ ACCORDION ── */
.faq-section {
    padding: 90px 5%;
    background: var(--light);
}

.faq-inner {
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    margin-top: 44px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(30, 58, 138, .07);
    border: 1px solid rgba(30, 58, 138, .07);
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--dark);
    transition: background .2s;
}

.faq-q:hover {
    background: var(--navy-soft);
}

.faq-q.open {
    background: var(--navy-soft);
    color: var(--navy);
}

.faq-icon {
    font-size: 20px;
    transition: transform .3s;
    color: var(--orange);
}

.faq-q.open .faq-icon {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .3s;
}

.faq-a.open {
    max-height: 200px;
    padding: 0 24px 20px;
}

.faq-a p {
    color: var(--muted);
    line-height: 1.8;
    font-size: 15px;
}

/* ── CTA BANNER ── */
.cta-banner {
    background: var(--orange);
    padding: 70px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    pointer-events: none;
}

.cta-banner h2 {
    font-size: clamp(26px, 4vw, 46px);
    font-weight: 900;
    color: white;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.cta-banner p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 32px;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.cta-banner-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.btn-cta-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--orange-dark);
    padding: 15px 32px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 800;
    transition: all 0.25s;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-cta-white:hover {
    background: var(--dark);
    color: white;
    transform: translateY(-3px);
}

.btn-cta-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2.5px solid white;
    color: white;
    padding: 13px 28px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.25s;
}

.btn-cta-outline-white:hover {
    background: white;
    color: var(--orange-dark);
    transform: translateY(-2px);
}

/* ── CONTACT QUICK ── */
.contact-quick {
    background: white;
    padding: 90px 5%;
}

.contact-quick-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.cq-left .sec-sub {
    margin-bottom: 28px;
}

.cq-info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cq-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.cq-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.cq-info-item strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}

.cq-info-item span {
    font-size: 13.5px;
    color: var(--muted);
    font-weight: 500;
}

.cq-form {
    background: var(--light);
    border-radius: 22px;
    padding: 36px;
    border: 1px solid rgba(30, 58, 138, 0.08);
    box-shadow: 0 8px 36px rgba(30, 58, 138, 0.08);
}

.cq-form .form-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 22px;
    font-family: 'Outfit', sans-serif;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.form-group label {
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
    font-family: 'Outfit', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    border: 1.5px solid rgba(30, 58, 138, 0.16);
    border-radius: 10px;
    padding: 11px 14px;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 90px;
}

.btn-submit-form {
    width: 100%;
    background: var(--navy);
    color: white;
    padding: 14px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 15px;
    transition: all 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-submit-form:hover {
    background: var(--orange);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(249, 115, 22, 0.35);
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 960px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-left {
        order: 2;
    }

    .hero-right {
        order: 1;
        margin-bottom: 40px;
    }

    .hero-mini-stats {
        justify-content: center;
    }

    .hero-cta-row {
        justify-content: center;
    }

    .hero-badge.b1,
    .hero-badge.b2,
    .hero-badge.b3 {
        display: none;
    }

    .why-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .course-panel.active {
        grid-template-columns: repeat(2, 1fr);
    }

    .faculty-slide {
        flex: 0 0 calc((100% - 24px) / 2);
    }

    .testi-slide {
        flex: 0 0 calc((100% - 24px) / 2);
    }

    .blog-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-quick-inner {
        grid-template-columns: 1fr;
    }

    .stats-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .skill-bars-inner {
        grid-template-columns: 1fr;
    }

    .skill-bars-right {
        display: none;
    }

    .video-cta-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .timeline-steps {
        flex-direction: column;
        gap: 32px;
    }

    .timeline-steps::before {
        display: none;
    }

    .timeline-step {
        text-align: left;
        gap: 20px;
    }

    .ts-desc {
        max-width: none;
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 44px;
    }

    .hero-right {
        order: 2;
    }

    .hero-img-main,
    .hero-img-second {
        display: none;
    }

    .why-features-grid {
        grid-template-columns: 1fr;
    }

    .course-panel.active {
        grid-template-columns: 1fr;
    }

    .faculty-slide {
        flex: 0 0 100%;
    }

    .testi-slide {
        flex: 0 0 100%;
    }

    .blog-preview-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .stats-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-card:nth-child(2)::after {
        display: none;
    }

    .cube-deco {
        top: -10px;
        right: 82px;
    }

    .cube-deco-2 {
        display: block;
        left: 120px;
    }
}