    /* ==========================================================
   Electrosoft System — Design System
   Dark Blue #0A1F44 | Orange #FF6B00 | White #FFFFFF
   ========================================================== */

:root {
    --navy: #0A1F44;
    --navy-2: #0F2C5C;
    --navy-3: #142F63;
    --orange: #FF6B00;
    --orange-2: #FF8A3D;
    --white: #FFFFFF;
    --off-white: #F4F7FC;
    --text-dark: #10192E;
    --text-muted: #5B6980;
    --glass-bg: rgba(255, 255, 255, 0.07);
    --glass-border: rgba(255, 255, 255, 0.16);
    --glass-bg-light: rgba(255, 255, 255, 0.65);
    --glass-border-light: rgba(10, 31, 68, 0.10);
    --shadow-soft: 0 20px 50px -20px rgba(10, 31, 68, 0.35);
    --shadow-orange: 0 15px 35px -10px rgba(255, 107, 0, 0.45);
    --radius: 20px;
    --radius-sm: 12px;
    --transition: all .35s cubic-bezier(.4, 0, .2, 1);
    --bg-body: var(--off-white);
    --bg-surface: #ffffff;
    --text-body: var(--text-dark);
    --border-soft: rgba(10, 31, 68, 0.08);
    --font-head: 'Space Grotesk', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}

:root[data-theme="dark"] {
    --bg-body: #060E22;
    --bg-surface: #0B1B3A;
    --text-body: #EAF0FF;
    --text-muted: #9AAAC9;
    --border-soft: rgba(255, 255, 255, 0.08);
    --off-white: #0B1B3A;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: var(--font-body);
    background: var(--bg-body);
    color: var(--text-body);
    line-height: 1.65;
    overflow-x: hidden;
    transition: background .4s ease, color .4s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-body);
}

section {
    position: relative;
    padding: 100px 0;
}

::selection {
    background: var(--orange);
    color: #fff;
}


/* Scrollbar */

::-webkit-scrollbar {
    width: 9px;
}

::-webkit-scrollbar-track {
    background: var(--off-white);
}

::-webkit-scrollbar-thumb {
    background: var(--orange);
    border-radius: 10px;
}


/* ==========================================================
   Utility
   ========================================================== */

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 0, 0.1);
    color: var(--orange);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.section-tag i {
    font-size: 11px;
}

.section-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}

.section-head h2 {
    font-size: clamp(28px, 4vw, 44px);
    margin-bottom: 16px;
}

.section-head h2 span {
    color: var(--orange);
}

.section-head p {
    color: var(--text-muted);
    font-size: 17px;
}

.text-center {
    text-align: center;
}

.gradient-text {
    background: linear-gradient(135deg, var(--orange), #FFB25C);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 34px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    white-space: nowrap;
    border: 2px solid transparent;
}

.btn-sm {
    padding: 11px 24px;
    font-size: 14px;
}

.btn-lg {
    padding: 20px 42px;
    font-size: 16.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange), #FF8A3D);
    color: #fff;
    box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -10px rgba(255, 107, 0, 0.55);
}

.btn-outline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.4);
    color: inherit;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--orange);
}

.btn-light {
    background: #fff;
    color: var(--navy);
}

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}

.btn-block {
    width: 100%;
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
}

.glass-light {
    background: var(--glass-bg-light);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--glass-border-light);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}


/* ==========================================================
   Loader
   ========================================================== */

.loader-screen {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--navy);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    transition: opacity .6s ease, visibility .6s ease;
}

.loader-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.loader-bolt {
    font-size: 38px;
    color: var(--orange);
    animation: pulse 1.2s ease-in-out infinite;
}

.loader-text {
    font-family: var(--font-head);
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 3px;
}

.loader-bar {
    width: 220px;
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    overflow: hidden;
}

.loader-bar span {
    display: block;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--orange), #FFB25C);
    animation: loaderFill 1.4s ease forwards;
}

@keyframes loaderFill {
    to {
        width: 100%;
    }
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}


/* ==========================================================
   Floating background shapes
   ========================================================== */

.floating-shapes {
    position: fixed;
    inset: 0;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: .35;
}

.shape.s1 {
    width: 380px;
    height: 380px;
    background: var(--orange);
    top: -100px;
    left: -100px;
    animation: float1 14s ease-in-out infinite;
}

.shape.s2 {
    width: 300px;
    height: 300px;
    background: var(--navy-2);
    top: 40%;
    right: -120px;
    animation: float2 16s ease-in-out infinite;
}

.shape.s3 {
    width: 260px;
    height: 260px;
    background: var(--orange-2);
    bottom: -80px;
    left: 20%;
    animation: float1 12s ease-in-out infinite reverse;
}

.shape.s4 {
    width: 200px;
    height: 200px;
    background: var(--navy-3);
    top: 10%;
    right: 20%;
    animation: float2 18s ease-in-out infinite;
}

@keyframes float1 {
    0%,
    100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(40px, 60px);
    }
}

@keyframes float2 {
    0%,
    100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-50px, 40px);
    }
}


/* ==========================================================
   Top bar
   ========================================================== */

.topbar {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    position: relative;
    z-index: 500;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 42px;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.topbar-left a {
    color: inherit;
    transition: var(--transition);
}

.topbar-left a:hover {
    color: var(--orange);
}

.topbar-left i {
    color: var(--orange);
    margin-right: 6px;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.topbar-right a {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

.topbar-right a:hover {
    background: var(--orange);
    transform: translateY(-2px);
}

.theme-toggle {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.theme-toggle:hover {
    background: var(--orange);
}

.theme-toggle-nav {
    width: 40px;
    height: 40px;
    color: var(--text-body);
    background: var(--off-white);
    border: 1px solid var(--border-soft);
    font-size: 15px;
}

.theme-toggle-nav:hover {
    color: #fff;
}


/* ==========================================================
   Brand header (logo row, above sticky navbar)
   ========================================================== */

.brand-header {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.brand-header-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.header-banner-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: center;
    border-radius: 0;
    margin: 0;
}

.header-banner-mobile {
    display: none;
}

@media (max-width: 860px) {
    .brand-header-inner {
        padding: 0 0 20px;
    }
    .header-banner-desktop {
        display: none;
    }
    .header-banner-mobile {
        display: block;
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center;
    }
}


/* ==========================================================
   Navbar
   ========================================================== */

.navbar {
    position: sticky;
    top: 0;
    z-index: 900;
    background: var(--bg-body);
    border-bottom: 1px solid var(--border-soft);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 10px 30px -15px rgba(10, 31, 68, 0.25);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 84px;
    gap: 24px;
    padding-left: 8px;
}

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

.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--navy), var(--navy-2));
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 8px 20px -6px rgba(10, 31, 68, 0.5);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-text strong {
    font-family: var(--font-head);
    font-size: 19px;
    letter-spacing: 1px;
    color: var(--text-body);
}

.brand-text small {
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--orange);
    font-weight: 700;
}

.brand-logo-img {
    display: block;
    width: 240px;
    height: 76px;
    object-fit: contain;
    object-position: left center;
    transition: transform 0.3s ease;
}

.brand:hover .brand-logo-img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-menu a {
    padding: 10px 16px;
    font-weight: 600;
    font-size: 14.5px;
    color: var(--text-body);
    border-radius: 50px;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: var(--navy);
    color: #fff;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-dropdown-toggle i {
    font-size: 11px;
    transition: transform .3s ease;
}

.nav-dropdown.open .nav-dropdown-toggle i {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    min-width: 260px;
    background: var(--bg-surface);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-soft);
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 200;
}

.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-body);
    white-space: nowrap;
}

.nav-dropdown-menu a i {
    width: 18px;
    color: var(--orange);
    font-size: 14px;
    text-align: center;
}

.nav-dropdown-menu a:hover {
    background: rgba(255, 107, 0, 0.1);
    color: var(--orange);
}

.nav-dropdown-viewall {
    margin-top: 6px;
    border-top: 1px solid var(--border-soft);
    padding-top: 12px !important;
    justify-content: space-between;
    color: var(--orange) !important;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.navbar-quicklinks {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
}

.hamburger span {
    height: 3px;
    width: 100%;
    background: var(--text-body);
    border-radius: 4px;
    transition: var(--transition);
}


/* ==========================================================
   Hero
   ========================================================== */

.hero {
    position: relative;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 20% 20%, var(--navy-3), var(--navy) 55%, #061230);
    overflow: hidden;
    padding: 70px 0 100px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 14, 34, 0.2), rgba(6, 14, 34, 0.85));
    z-index: 1;
}

/* ---------- Hero background image slider ---------- */
.hero.hero-slider {
    background: var(--navy);
    min-height: 640px;
}

.hero-bg-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-slider::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    opacity: 0;
    transform: scale(1.12);
    will-change: opacity, transform;
    transition: opacity .6s ease, transform 3s ease-out;
}

.hero-bg-img.active {
    opacity: 1;
    transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
    .hero-bg-img {
        transition: opacity .4s ease;
        transform: none;
    }
    .hero-bg-img.active {
        transform: none;
    }
}

/* ---------- Hero slide text (heading + description, synced with bg image) ---------- */
.hero-slide-stack {
    display: grid;
}

.hero-slide-pane {
    grid-area: 1 / 1;
    opacity: 0;
    transform: translateY(26px) scale(.96);
    transition: opacity .45s cubic-bezier(.22, .61, .36, 1), transform .45s cubic-bezier(.22, .61, .36, 1);
    transition-delay: 0s;
    pointer-events: none;
}

.hero-slide-pane.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: .12s;
    pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide-pane {
        transition: opacity .3s ease;
        transform: none;
    }
    .hero-slide-pane.active {
        transition-delay: 0s;
    }
}

.hero-inner {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    padding: 9px 20px;
    margin-bottom: 26px;
    font-size: 13px;
    font-weight: 600;
}

.hero-badge i {
    color: var(--orange);
}

.hero h1 {
    color: #fff;
    font-size: clamp(28px, 5vw, 52px);
    line-height: 1.15;
    margin-bottom: 10px;
}

.hero-slide-title {
    color: var(--orange);
    font-size: clamp(26px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 14px;
    font-family: var(--font-head);
}

.hero p {
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(14.5px, 3.6vw, 18px);
    max-width: 640px;
    margin: 0 auto 40px;
}

.hero-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 34px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    z-index: 3;
}

.hero-scroll .mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
}

.hero-scroll .mouse span {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--orange);
    border-radius: 4px;
    animation: scrollDown 1.6s infinite;
}

@keyframes scrollDown {
    0% {
        opacity: 1;
        top: 6px;
    }
    100% {
        opacity: 0;
        top: 22px;
    }
}

.hero-stats {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 56px;
}

.hero-stat {
    text-align: center;
    color: #fff;
    padding: 18px 26px;
    min-width: 130px;
}

.hero-stat h3 {
    font-size: 30px;
    color: var(--orange);
}

.hero-stat span {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}


/* ==========================================================
   Featured Training Gallery
   ========================================================== */

.featured-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.featured-gallery-card {
    position: relative;
    display: block;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    transition: transform .4s ease, box-shadow .4s ease;
}

.featured-gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 70px -20px rgba(10, 31, 68, 0.5);
}

.featured-gallery-card:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 3px;
}

.featured-gallery-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.featured-gallery-card:hover img {
    transform: scale(1.05);
}

.featured-gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 26px;
    background: linear-gradient(180deg, rgba(6, 14, 34, 0) 35%, rgba(6, 14, 34, 0.94) 100%);
}

.featured-gallery-overlay h3 {
    color: #fff;
    font-size: 19px;
    margin-bottom: 8px;
}

.featured-gallery-overlay p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 13.5px;
    margin-bottom: 14px;
}

.featured-gallery-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--orange);
    font-weight: 700;
    font-size: 13.5px;
    transition: var(--transition);
}

.featured-gallery-btn:hover {
    gap: 12px;
    color: var(--orange-2);
}

@media (max-width: 1080px) {
    .featured-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .featured-gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .featured-gallery-card img {
        height: 230px;
    }
    .featured-gallery-overlay {
        padding: 20px;
    }
    .featured-gallery-overlay h3 {
        font-size: 17px;
    }
    .featured-gallery-overlay p {
        font-size: 13px;
        margin-bottom: 12px;
    }
}


/* ==========================================================
   About
   ========================================================== */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-media {
    position: relative;
}

.about-media-frame {
    border-radius: var(--radius);
    overflow: visible;
    aspect-ratio: 1/1;
    background: linear-gradient(135deg, var(--navy), var(--navy-2));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: var(--shadow-soft);
}

.about-media-frame i {
    font-size: 120px;
    color: rgba(255, 107, 0, 0.5);
}

.about-media-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
}

.about-media-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: #fff;
    border-radius: 18px;
    padding: 20px 26px;
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.about-media-badge h3 {
    color: var(--orange);
    font-size: 30px;
}

.about-media-badge span {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
}

.about-text h2 {
    font-size: clamp(26px, 4vw, 38px);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 18px;
    font-size: 16px;
}

.about-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 26px 0;
}

.about-point {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14.5px;
}

.about-point i {
    color: #fff;
    background: var(--orange);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 70px;
}

.mv-card {
    padding: 36px;
    border-radius: var(--radius);
    background: var(--bg-surface);
    border: 1px solid var(--border-soft);
    transition: var(--transition);
}

.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-soft);
}

.mv-card i {
    font-size: 32px;
    color: var(--orange);
    margin-bottom: 18px;
}

.mv-card h3 {
    font-size: 21px;
    margin-bottom: 10px;
}

.mv-card p {
    color: var(--text-muted);
    font-size: 15px;
}

.counters-strip {
    margin-top: 70px;
    border-radius: var(--radius);
    padding: 50px 40px;
    background: linear-gradient(120deg, var(--navy), var(--navy-2));
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.counters-strip::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 90% 10%, rgba(255, 107, 0, 0.25), transparent 60%);
}

.counter-item {
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 1;
}

.counter-item h3 {
    font-size: clamp(28px, 4vw, 42px);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.counter-item span {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
    letter-spacing: .5px;
}

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

.why-card {
    padding: 34px 28px;
    border-radius: var(--radius);
    text-align: left;
    position: relative;
    background: var(--bg-surface);
    border: 1px solid var(--border-soft);
    transition: var(--transition);
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--orange), var(--orange-2));
    transform: scaleY(0);
    transform-origin: top;
    transition: var(--transition);
}

.why-card:hover::before {
    transform: scaleY(1);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-soft);
}

.why-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(255, 107, 0, 0.1);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
}

.why-card h3 {
    font-size: 19px;
    margin-bottom: 8px;
}

.why-card p {
    color: var(--text-muted);
    font-size: 14.5px;
}


/* ==========================================================
   Founders / Key Persons
   ========================================================== */

.founders-section {
    position: relative;
    overflow: hidden;
    background: var(--off-white);
}

.founders-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 8% 8%, rgba(255, 107, 0, 0.10), transparent 45%),
        radial-gradient(circle at 95% 15%, rgba(10, 31, 68, 0.12), transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(255, 107, 0, 0.08), transparent 55%);
    pointer-events: none;
}

.founders-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(10, 31, 68, 0.07) 1.5px, transparent 1.5px);
    background-size: 26px 26px;
    -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 70%);
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 70%);
    pointer-events: none;
}

.founders-section .container {
    position: relative;
    z-index: 1;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    align-items: stretch;
}

.founder-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 44px 38px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-soft);
    border-top: 4px solid var(--orange);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.founder-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px -20px rgba(10, 31, 68, 0.3);
}

.founder-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-2));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    margin-bottom: 22px;
    border: 4px solid rgba(255, 107, 0, 0.15);
    box-shadow: var(--shadow-orange);
}

.founder-avatar img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-avatar i {
    font-size: 60px;
    color: var(--orange);
}

.founder-name {
    font-size: 23px;
    margin-bottom: 6px;
}

.founder-role {
    display: inline-block;
    color: #fff;
    background: linear-gradient(135deg, var(--orange), var(--orange-2));
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.founder-exp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--navy);
    font-weight: 700;
    font-size: 13.5px;
    margin-bottom: 18px;
}

:root[data-theme="dark"] .founder-exp {
    color: var(--orange-2);
}

.founder-exp i {
    color: var(--orange);
}

.founder-bio {
    color: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.75;
    margin-bottom: 22px;
    text-align: justify;
}

.founder-expertise {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

.expertise-tag {
    background: rgba(10, 31, 68, 0.06);
    color: var(--navy);
    font-size: 12.5px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid var(--border-soft);
}

:root[data-theme="dark"] .expertise-tag {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.founder-quote {
    position: relative;
    background: var(--off-white);
    border-left: 3px solid var(--orange);
    border-radius: 10px;
    padding: 18px 20px 18px 42px;
    font-size: 14px;
    font-style: italic;
    color: var(--text-body);
    margin-bottom: 24px;
    text-align: left;
}

.founder-quote i {
    position: absolute;
    top: 14px;
    left: 14px;
    color: var(--orange);
    font-size: 14px;
    opacity: .8;
}

.founder-social {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.founder-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 31, 68, 0.06);
    color: var(--navy);
    transition: var(--transition);
    font-size: 15px;
}

:root[data-theme="dark"] .founder-social a {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.founder-social a:hover {
    background: var(--orange);
    color: #fff;
    transform: translateY(-4px);
}

.achieve-strip {
    margin-top: 70px;
    border-radius: var(--radius);
    padding: 50px 40px;
    background: linear-gradient(120deg, var(--navy), var(--navy-2));
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.achieve-strip::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 90% 10%, rgba(255, 107, 0, 0.25), transparent 60%);
}

.achieve-item {
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 1;
}

.achieve-item i {
    font-size: 20px;
    color: var(--orange);
    margin-bottom: 10px;
}

.achieve-item h3 {
    font-size: clamp(24px, 3.4vw, 34px);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.achieve-item span {
    display: block;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
    letter-spacing: .3px;
    margin-top: 4px;
}


/* ==========================================================
   Courses
   ========================================================== */

.courses-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.filter-btn {
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13.5px;
    background: var(--bg-surface);
    border: 1px solid var(--border-soft);
    color: var(--text-muted);
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
}

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

.course-card {
    display: block;
    background: var(--bg-surface);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-soft);
    transition: var(--transition);
    position: relative;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-soft);
}

.course-card-top {
    height: 150px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy), var(--navy-2));
    display: flex;
    align-items: center;
    justify-content: center;
}

.course-card-top::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255, 107, 0, 0.35), transparent 60%);
}

.course-card-top i {
    font-size: 52px;
    color: var(--orange);
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.course-card:hover .course-card-top i {
    transform: scale(1.15) rotate(-6deg);
}

.course-cat-pill {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 50px;
    z-index: 1;
}

.course-card-body {
    padding: 26px;
}

.course-card-body h3 {
    font-size: 19.5px;
    margin-bottom: 10px;
}

.course-card-body p {
    color: var(--text-muted);
    font-size: 14.5px;
    margin-bottom: 18px;
    min-height: 66px;
}

.course-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
}

.course-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.course-meta i {
    color: var(--orange);
}

.course-learn-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    border: 2px solid var(--navy);
    color: var(--navy);
    transition: var(--transition);
}

.course-learn-btn:hover {
    background: var(--navy);
    color: #fff;
}

:root[data-theme="dark"] .course-learn-btn {
    border-color: #fff;
    color: #fff;
}

:root[data-theme="dark"] .course-learn-btn:hover {
    background: #fff;
    color: var(--navy);
}


/* ==========================================================
   Course Details Page
   ========================================================== */

.course-hero {
    background: linear-gradient(135deg, var(--navy), var(--navy-2));
    color: #fff;
    padding: 70px 0 90px;
    position: relative;
    overflow: hidden;
}

.course-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 15%, rgba(255, 107, 0, 0.3), transparent 60%);
}

.course-hero-inner {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.course-hero-text .breadcrumb {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13.5px;
    margin-bottom: 16px;
}

.course-hero-text .breadcrumb a {
    color: var(--orange);
}

.course-hero-text .section-tag {
    margin-bottom: 18px;
}

.course-hero-text h1 {
    color: #fff;
    font-size: clamp(28px, 4.5vw, 42px);
    margin-bottom: 16px;
}

.course-hero-text > p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 16.5px;
    max-width: 560px;
    margin-bottom: 22px;
}

.course-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 32px;
}

.course-hero-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 9px 16px;
    border-radius: 50px;
    font-size: 13.5px;
    font-weight: 600;
}

.course-hero-meta i {
    color: var(--orange);
}

.course-hero-media {
    display: flex;
    align-items: center;
    justify-content: center;
}

.course-hero-icon-frame {
    width: 100%;
    aspect-ratio: 1/1;
    max-width: 320px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.course-hero-icon-frame i {
    font-size: 100px;
    color: var(--orange);
}

.course-hero-img {
    width: 100%;
    max-width: 380px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.course-details-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}

.course-details-block {
    margin-bottom: 44px;
}

.course-details-block h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    margin-bottom: 18px;
}

.course-details-block h2 i {
    color: var(--orange);
    font-size: 20px;
}

.course-details-block > p {
    color: var(--text-muted);
    font-size: 15.5px;
    line-height: 1.8;
}

.syllabus-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.syllabus-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-surface);
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    padding: 16px 20px;
    font-weight: 600;
    font-size: 14.5px;
    transition: var(--transition);
}

.syllabus-list li:hover {
    border-color: var(--orange);
    transform: translateX(6px);
}

.syllabus-num {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange-2));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13.5px;
    font-weight: 700;
}

.trainer-card {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: var(--bg-surface);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 28px;
}

.trainer-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.trainer-avatar-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy), var(--navy-2));
}

.trainer-avatar-icon i {
    font-size: 34px;
    color: var(--orange);
}

.trainer-card h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.trainer-role {
    display: block;
    color: var(--orange);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
}

.trainer-card p {
    color: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.7;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255, 107, 0, 0.06);
    border: 1px solid rgba(255, 107, 0, 0.18);
    border-radius: 14px;
    padding: 16px 18px;
    font-size: 14.5px;
    font-weight: 600;
}

.benefit-item i {
    color: var(--orange);
    margin-top: 2px;
}

.course-sidebar {
    position: sticky;
    top: 100px;
}

.course-sidebar-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    padding: 30px;
}

.course-sidebar-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-soft);
}

.course-sidebar-row:last-of-type {
    border-bottom: none;
}

.course-sidebar-row i {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 107, 0, 0.1);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.course-sidebar-row span {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 2px;
}

.course-sidebar-row strong {
    font-size: 14.5px;
}

.course-sidebar-card .btn {
    margin-top: 20px;
}

.course-sidebar-enquire {
    display: block;
    text-align: center;
    margin-top: 14px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--orange);
}

.course-apply-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--navy), var(--navy-2));
    border-radius: var(--radius);
    padding: 70px 40px;
    position: relative;
    overflow: hidden;
}

.course-apply-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 107, 0, 0.3), transparent 60%);
}

.course-apply-cta h2 {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: clamp(24px, 4vw, 36px);
    margin-bottom: 14px;
}

.course-apply-cta p {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.75);
    max-width: 560px;
    margin: 0 auto 30px;
}

.course-apply-cta .btn {
    position: relative;
    z-index: 1;
}

/* Apply Now Modal */
.apply-modal {
    position: fixed;
    inset: 0;
    background: rgba(6, 14, 34, 0.75);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.apply-modal.open {
    display: flex;
}

.apply-modal-content {
    position: relative;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--bg-surface);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow-soft);
}

.apply-modal-content h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.apply-modal-content > p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 22px;
}

.apply-modal-close {
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 26px;
    line-height: 1;
    color: var(--text-muted);
    transition: var(--transition);
}

.apply-modal-close:hover {
    color: var(--orange);
    transform: rotate(90deg);
}

/* ---------- Free Demo Class Enquiry Modal ---------- */
.demo-modal {
    position: fixed;
    inset: 0;
    background: rgba(6, 14, 34, 0.78);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
}

.demo-modal.open {
    opacity: 1;
    visibility: visible;
}

.demo-modal-content {
    position: relative;
    width: 100%;
    max-width: 820px;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--bg-surface);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-soft);
    transform: scale(.92) translateY(10px);
    transition: transform .35s cubic-bezier(.22, .61, .36, 1);
}

.demo-modal.open .demo-modal-content {
    transform: scale(1) translateY(0);
}

.demo-modal-content h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.demo-modal-content > p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 24px;
}

.demo-modal-close {
    position: absolute;
    top: 20px;
    right: 22px;
    font-size: 26px;
    line-height: 1;
    color: var(--text-muted);
    transition: var(--transition);
    z-index: 1;
}

.demo-modal-close:hover {
    color: var(--orange);
    transform: rotate(90deg);
}

.demo-modal-note {
    text-align: center;
    margin-top: 14px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-muted);
}

.demo-modal-redirect-overlay {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 40px 10px;
    text-align: center;
}

.demo-modal-redirect-overlay p {
    color: var(--text-muted);
    font-weight: 600;
}

.demo-modal-spinner {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 4px solid rgba(255, 107, 0, 0.2);
    border-top-color: var(--orange);
    animation: demo-spin 0.8s linear infinite;
}

@keyframes demo-spin {
    to { transform: rotate(360deg); }
}

.form-optional {
    font-weight: 400;
    color: var(--text-muted);
    text-transform: none;
}

body.demo-modal-lock {
    overflow: hidden;
}

@media (max-width: 700px) {
    .demo-modal {
        padding: 0;
        align-items: flex-end;
    }
    .demo-modal-content {
        max-width: 100%;
        max-height: 92vh;
        border-radius: 20px 20px 0 0;
        padding: 28px 20px 24px;
    }
    .demo-modal .form-row {
        grid-template-columns: 1fr;
    }
}


/* ==========================================================
   NMU Section
   ========================================================== */

.nmu-section {
    background: linear-gradient(160deg, var(--navy), #081431);
    color: #fff;
    overflow: hidden;
}

.nmu-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.nmu-emblem {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    margin: 0 auto;
    background: radial-gradient(circle at 30% 30%, var(--navy-3), var(--navy));
    border: 2px solid rgba(255, 107, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 60px rgba(255, 107, 0, 0.25);
    flex-direction: column;
    gap: 8px;
}

.nmu-emblem i {
    font-size: 56px;
    color: var(--orange);
}

.nmu-emblem span {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
}

.nmu-text h2 {
    color: #fff;
    font-size: clamp(26px, 4vw, 36px);
    margin-bottom: 18px;
}

.nmu-text p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 26px;
}

.nmu-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.nmu-feature {
    padding: 22px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.nmu-feature:hover {
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(-4px);
}

.nmu-feature i {
    color: var(--orange);
    font-size: 22px;
    margin-bottom: 12px;
}

.nmu-feature h4 {
    color: #fff;
    font-size: 15.5px;
    margin-bottom: 6px;
}

.nmu-feature p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin: 0;
}


/* ==========================================================
   Placement page
   ========================================================== */

.placement-stats-section {
    padding-bottom: 40px;
}

.placement-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 3;
}

.placement-stat-card {
    background: var(--bg-surface);
    border-radius: var(--radius);
    padding: 32px 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-soft);
}

.placement-stat-card i {
    font-size: 28px;
    color: var(--orange);
    margin-bottom: 12px;
}

.placement-stat-card h3 {
    font-size: 30px;
}

.placement-stat-card span {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
}

.company-slider-wrap {
    overflow: hidden;
    position: relative;
    margin-top: 20px;
}

.company-slider-wrap::before,
.company-slider-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
}

.company-slider-wrap::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg-body), transparent);
}

.company-slider-wrap::after {
    right: 0;
    background: linear-gradient(270deg, var(--bg-body), transparent);
}

.company-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollX 26s linear infinite;
}

.company-track:hover {
    animation-play-state: paused;
}

@keyframes scrollX {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.company-logo-card {
    min-width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-surface);
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 21px;
    color: var(--navy);
    letter-spacing: 1px;
    transition: var(--transition);
}

:root[data-theme="dark"] .company-logo-card {
    color: #fff;
}

.company-logo-card:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
}

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

.package-card {
    padding: 34px;
    border-radius: var(--radius);
    text-align: center;
    background: var(--bg-surface);
    border: 1px solid var(--border-soft);
    transition: var(--transition);
    position: relative;
}

.package-card.featured {
    background: linear-gradient(160deg, var(--navy), var(--navy-2));
    color: #fff;
    transform: scale(1.05);
}

.package-card:hover {
    transform: translateY(-8px);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.package-card i {
    font-size: 30px;
    color: var(--orange);
    margin-bottom: 16px;
}

.package-card h3 {
    font-size: 22px;
    margin-bottom: 6px;
}

.package-card .package-range {
    font-size: 34px;
    font-weight: 800;
    color: var(--orange);
    margin: 14px 0;
}

.package-card p {
    font-size: 14px;
    opacity: .75;
}

.student-success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 26px;
}

.student-card {
    background: var(--bg-surface);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-soft);
    text-align: center;
    transition: var(--transition);
    padding-bottom: 24px;
}

.student-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-soft);
}

.student-photo {
    height: 140px;
    background: linear-gradient(135deg, var(--navy), var(--navy-2));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 20px;
}

.student-photo::after {
    content: '';
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--orange);
    display: flex;
}

/* Fixed square container - this is what's circular. It clips whatever
   is inside it (letter fallback OR <img>) via overflow:hidden, so the
   circle shape never depends on the image's own styling. */
.student-avatar {
    position: absolute;
    bottom: -45px;
    left: 50%;
    /* base transform kept separate from the hover transform below so
       centering (translateX) is never lost when scale is added */
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange-2));
    color: #fff;
    font-weight: 800;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #fff;
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.14), 0 12px 26px -8px rgba(10, 31, 68, 0.45);
    z-index: 1;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* The <img> only fills its circular parent - no border-radius, border,
   margin, padding or background of its own, so it can never fight the
   container for how the circle looks. */
.student-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: none;
}

/* Hover: image scales up slightly and the glow deepens - triggered by
   hovering the whole card, matching the existing .student-card:hover lift */
.student-card:hover .student-avatar {
    transform: translateX(-50%) scale(1.08);
    box-shadow: 0 0 0 5px rgba(255, 107, 0, 0.22), 0 16px 34px -6px rgba(10, 31, 68, 0.55);
}

.student-card h4 {
    margin-top: 58px;
    font-size: 17px;
}

.student-card .student-course {
    color: var(--text-muted);
    font-size: 13px;
    margin: 6px 0 12px;
}

.student-company {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 107, 0, 0.1);
    color: var(--orange);
    font-weight: 700;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 50px;
}


/* ==========================================================
   Gallery
   ========================================================== */

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.masonry-grid {
    column-count: 3;
    column-gap: 20px;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: linear-gradient(135deg, var(--navy), var(--navy-2));
}

.masonry-item .gph {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.masonry-item .gph img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.masonry-item:nth-child(3n) .gph {
    height: 280px;
}

.masonry-item:nth-child(4n) .gph {
    height: 180px;
}

.masonry-item .gph i {
    font-size: 40px;
    color: rgba(255, 107, 0, 0.55);
}

.masonry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(10, 31, 68, 0.9), transparent 55%);
    display: flex;
    align-items: flex-end;
    padding: 18px;
    opacity: 0;
    transition: var(--transition);
}

.masonry-item:hover .masonry-overlay {
    opacity: 1;
}

.masonry-item:hover .gph i {
    transform: scale(1.15);
}

.masonry-overlay h4 {
    color: #fff;
    font-size: 15px;
}

.masonry-overlay span {
    color: var(--orange);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.lightbox-modal {
    position: fixed;
    inset: 0;
    background: rgba(6, 14, 34, 0.94);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox-modal.open {
    display: flex;
}

.lightbox-content {
    max-width: 700px;
    width: 100%;
    text-align: center;
}

.lightbox-content .gph-large {
    height: 400px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--navy), var(--navy-2));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
}

.lightbox-content .gph-large img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lightbox-content .gph-large i {
    font-size: 80px;
    color: var(--orange);
}

.lightbox-content h4 {
    color: #fff;
    font-size: 20px;
}

.lightbox-content span {
    color: var(--orange);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 30px;
}


/* ==========================================================
   Testimonials
   ========================================================== */

.testimonials-section {
    background: linear-gradient(160deg, var(--navy), #081431);
    overflow: hidden;
}

.testimonial-track-wrap {
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform .6s cubic-bezier(.4, 0, .2, 1);
}

.testimonial-slide {
    min-width: 100%;
    padding: 10px;
}

.testimonial-card {
    max-width: 720px;
    margin: 0 auto;
    padding: 44px;
    text-align: center;
    color: #fff;
}

.testimonial-card p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 26px;
}

.testimonial-stars {
    color: var(--orange);
    margin-bottom: 16px;
    font-size: 14px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.testimonial-avatar {
    display: block;
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 4px solid #ff7a00;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    transition: var(--transition);
}

.testimonial-avatar:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 28px rgba(255, 122, 0, 0.45);
}

.testimonial-author-info {
    text-align: center;
}

.testimonial-author-info h4 {
    color: #fff;
    font-size: 15.5px;
}

.testimonial-author-info span {
    color: var(--orange);
    font-size: 12.5px;
    font-weight: 600;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.testimonial-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.testimonial-dots button.active {
    background: var(--orange);
    width: 26px;
    border-radius: 6px;
}


/* ==========================================================
   Timeline
   ========================================================== */

.v-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0;
}

.v-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--orange), var(--orange-2), var(--orange));
    transform: translateX(-50%);
    border-radius: 3px;
}

.v-timeline-item {
    position: relative;
    width: 50%;
    padding: 0 55px 55px;
}

.v-timeline-item:last-child {
    padding-bottom: 0;
}

.v-timeline-item.v-left {
    left: 0;
    text-align: right;
}

.v-timeline-item.v-right {
    left: 50%;
    text-align: left;
}

.v-timeline-marker {
    position: absolute;
    top: 4px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--orange);
    border: 4px solid var(--bg-body);
    box-shadow: 0 0 0 5px rgba(255, 107, 0, 0.2);
    z-index: 2;
    transition: var(--transition);
}

.v-timeline-item.v-left .v-timeline-marker {
    right: -10px;
}

.v-timeline-item.v-right .v-timeline-marker {
    left: -10px;
}

.v-timeline-item:hover .v-timeline-marker {
    background: var(--orange-2);
    box-shadow: 0 0 0 8px rgba(255, 107, 0, 0.3);
}

.v-timeline-item.v-left::after,
.v-timeline-item.v-right::after {
    content: '';
    position: absolute;
    top: 13px;
    width: 40px;
    height: 2px;
}

.v-timeline-item.v-left::after {
    right: 0;
    background: linear-gradient(90deg, transparent, var(--orange));
}

.v-timeline-item.v-right::after {
    left: 0;
    background: linear-gradient(90deg, var(--orange), transparent);
}

.v-timeline-card {
    display: inline-block;
    width: 100%;
    text-align: left;
    background: var(--bg-surface);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 28px 30px;
    box-shadow: 0 12px 30px -18px rgba(10, 31, 68, 0.25);
    transition: var(--transition);
}

.v-timeline-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-soft);
    border-color: rgba(255, 107, 0, 0.35);
}

.v-timeline-year {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 24px;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 8px;
}

.v-timeline-card h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-body);
}

.v-timeline-card p {
    color: var(--text-muted);
    font-size: 14.5px;
    margin: 0;
}


/* ==========================================================
   Contact
   ========================================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 40px;
    align-items: flex-start;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    padding: 22px;
    border-radius: 16px;
    background: var(--bg-surface);
    border: 1px solid var(--border-soft);
    transition: var(--transition);
}

.contact-info-item:hover {
    transform: translateX(6px);
    border-color: var(--orange);
}

.contact-info-item i {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 107, 0, 0.1);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    flex-shrink: 0;
}

.contact-info-item h4 {
    font-size: 15.5px;
    margin-bottom: 4px;
}

.contact-info-item p {
    color: var(--text-muted);
    font-size: 14px;
}

.map-frame {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-soft);
    height: 280px;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(20%);
}

.contact-form-card {
    padding: 40px;
}

.contact-form-card h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.contact-form-card>p {
    color: var(--text-muted);
    margin-bottom: 26px;
    font-size: 14.5px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 13.5px;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1.5px solid var(--border-soft);
    background: var(--bg-body);
    color: var(--text-body);
    font-family: inherit;
    font-size: 14.5px;
    transition: var(--transition);
}

.form-group select {
    cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.12);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.form-alert {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 22px;
    font-size: 14.5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-alert.success {
    background: rgba(34, 197, 94, 0.12);
    color: #16a34a;
}

.form-alert.error {
    background: rgba(239, 68, 68, 0.12);
    color: #dc2626;
}


/* ==========================================================
   Newsletter / Footer
   ========================================================== */

.site-footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.75);
    position: relative;
    margin-top: 120px;
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.25), transparent 70%);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
    gap: 40px;
    padding: 90px 24px 50px;
    position: relative;
    z-index: 1;
}

.footer-col h4 {
    color: #fff;
    font-size: 17px;
    margin-bottom: 20px;
}

.footer-brand p {
    margin: 18px 0 22px;
    font-size: 14px;
    line-height: 1.7;
}

.footer-logo-img {
    display: block;
    width: 180px;
    height: 56px;
    object-fit: contain;
    object-position: left center;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--orange);
    transform: translateY(-4px);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    font-size: 14.5px;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--orange);
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 14px;
}

.footer-contact i {
    color: var(--orange);
    margin-top: 3px;
}

.footer-col .btn-outline {
    margin-top: 8px;
}

.newsletter-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 34px 40px;
    margin: 0 24px 60px;
    position: relative;
    z-index: 1;
}

.newsletter-text h4 {
    color: #fff;
    font-size: 19px;
    margin-bottom: 6px;
}

.newsletter-text p {
    font-size: 14px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.newsletter-form input {
    padding: 13px 18px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    min-width: 240px;
    font-family: inherit;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 22px 0;
    position: relative;
    z-index: 1;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
}


/* ==========================================================
   Floating buttons
   ========================================================== */

.whatsapp-float {
    position: fixed;
    bottom: 28px;
    left: 28px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 10px 30px -8px rgba(37, 211, 102, 0.6);
    z-index: 800;
    animation: whatsappPulse 2.4s infinite;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
    }
    70% {
        box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.scroll-top-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: var(--shadow-orange);
    z-index: 800;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* ==========================================================
   Page Hero (generic subpages)
   ========================================================== */

.page-hero {
    background: linear-gradient(135deg, var(--navy), var(--navy-2));
    color: #fff;
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255, 107, 0, 0.25), transparent 60%);
}

.page-hero .breadcrumb {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13.5px;
    margin-bottom: 14px;
}

.page-hero .breadcrumb a {
    color: var(--orange);
}

.page-hero h1 {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: clamp(28px, 5vw, 46px);
}

.page-hero p {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 14px auto 0;
}


/* ==========================================================
   Animations utility (AOS supplements)
   ========================================================== */

.bg-off {
    background: var(--bg-surface);
}


/* ==========================================================
   Responsive
   ========================================================== */

@media (max-width: 1080px) {
    .brand-logo-img {
        width: 190px;
        height: 62px;
    }
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .course-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .course-hero-text > p {
        margin-left: auto;
        margin-right: auto;
    }
    .course-hero-meta {
        justify-content: center;
    }
    .course-hero-media {
        order: -1;
    }
    .course-details-grid {
        grid-template-columns: 1fr;
    }
    .course-sidebar {
        position: static;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .mv-grid {
        grid-template-columns: 1fr;
    }
    .nmu-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .nmu-features {
        grid-template-columns: 1fr 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .package-card.featured {
        transform: none;
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
    .placement-stats {
        grid-template-columns: 1fr 1fr;
    }
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }
    .founders-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin: 0 auto;
    }
    .achieve-strip {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px 20px;
    }
}

@media (max-width: 860px) {
    section {
        padding: 60px 0;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 340px;
        height: 100vh;
        background: var(--bg-surface);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 30px;
        gap: 6px;
        transition: right .4s ease;
        box-shadow: -20px 0 50px rgba(0, 0, 0, 0.2);
        z-index: 950;
        overflow-y: auto;
    }
    .nav-menu.open {
        right: 0;
    }
    .nav-menu a {
        width: 100%;
    }
    .nav-dropdown {
        width: 100%;
    }
    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: rgba(255, 107, 0, 0.04);
        max-height: 0;
        min-width: 0;
        width: 100%;
        overflow: hidden;
        padding: 0;
        transition: max-height .35s ease, padding .35s ease;
    }
    .nav-dropdown-menu a {
        white-space: normal;
    }
    .nav-dropdown.open .nav-dropdown-menu {
        max-height: 600px;
        padding: 8px;
        margin-top: 4px;
    }
    .hamburger {
        display: flex;
        flex-shrink: 0;
        width: 22px;
        gap: 4px;
    }
    .hamburger span {
        height: 2.5px;
    }
    .navbar-inner {
        justify-content: flex-end;
        padding-right: 14px;
        height: 58px;
        gap: 10px;
    }
    .navbar-quicklinks {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-shrink: 0;
        margin-right: auto;
        padding-left: 4px;
        overflow: hidden;
    }
    .navbar-quicklinks a {
        font-size: 12px;
        font-weight: 600;
        color: var(--text-body);
        white-space: nowrap;
    }
    .navbar-quicklinks a.active {
        color: var(--orange);
    }
    .navbar-actions {
        align-items: center;
        gap: 8px;
        flex-shrink: 0;
    }
    .theme-toggle-nav {
        width: 30px;
        height: 30px;
        font-size: 12px;
        flex-shrink: 0;
    }
    .navbar-actions .btn-sm {
        height: 32px;
        padding: 0 12px;
        font-size: 12px;
        border-radius: 18px;
        display: inline-flex;
        align-items: center;
        flex-shrink: 0;
        white-space: nowrap;
    }
    .topbar-left span {
        display: none;
    }
    .masonry-grid {
        column-count: 2;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .v-timeline::before {
        left: 22px;
    }
    .v-timeline-item,
    .v-timeline-item.v-left,
    .v-timeline-item.v-right {
        width: 100%;
        left: 0;
        text-align: left;
        padding: 0 0 45px 60px;
    }
    .v-timeline-item.v-left .v-timeline-marker,
    .v-timeline-item.v-right .v-timeline-marker {
        left: 12px;
        right: auto;
    }
    .v-timeline-item.v-left::after,
    .v-timeline-item.v-right::after {
        left: 32px;
        right: auto;
        width: 28px;
        background: linear-gradient(90deg, var(--orange), transparent);
    }
}

@media (max-width: 700px) {
    .brand-logo-img {
        width: 150px;
        height: 48px;
    }
    section {
        padding: 40px 20px;
    }
    .courses-grid {
        grid-template-columns: 1fr;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .trainer-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .apply-modal-content {
        padding: 26px;
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
    .placement-stats {
        grid-template-columns: 1fr 1fr;
    }
    .package-grid {
        grid-template-columns: 1fr;
    }
    .footer-top {
        grid-template-columns: 1fr;
        padding: 70px 24px 40px;
    }
    .masonry-grid {
        column-count: 1;
    }
    .about-points {
        grid-template-columns: 1fr;
    }
    .counters-strip {
        grid-template-columns: 1fr 1fr;
    }
    .v-timeline-item,
    .v-timeline-item.v-left,
    .v-timeline-item.v-right {
        padding: 0 0 36px 46px;
    }
    .v-timeline-card {
        padding: 20px 20px;
    }
    .v-timeline-year {
        font-size: 20px;
    }
    .v-timeline-card h3 {
        font-size: 17px;
    }
    .achieve-strip {
        grid-template-columns: 1fr 1fr;
        padding: 40px 24px;
    }
    .founder-card {
        padding: 34px 26px;
    }
    .newsletter-box {
        flex-direction: column;
        align-items: flex-start;
    }
    .newsletter-form {
        width: 100%;
    }
    .newsletter-form input {
        flex: 1;
        min-width: 0;
    }
    .hero {
        padding: 50px 0 70px;
    }
    .hero.hero-slider {
        min-height: 480px;
    }
    .hero-btns {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }
    .hero-btns .btn {
        width: 100%;
        white-space: normal;
    }
    .hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .hero-stat {
        padding: 14px 18px;
        min-width: 0;
    }
    .testimonial-avatar {
        width: 75px;
        height: 75px;
    }
}