@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Noto+Sans+Devanagari:wght@400;500;600;700;800&display=swap');

:root {
    --blue: #175cd3;
    --blue-deep: #102a6b;
    --violet: #6938ef;
    --cyan: #06aed4;
    --navy: #0b1739;
    --ink: #182230;
    --muted: #667085;
    --line: #e5eaf2;
    --surface: #f6f8fc;
    --white: #ffffff;
    --success: #16a66a;
    --shadow-sm: 0 10px 30px rgba(19, 45, 96, 0.08);
    --shadow-lg: 0 30px 80px rgba(21, 49, 105, 0.16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: 'Manrope', 'Noto Sans Devanagari', system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

.site-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.skip-link {
    position: fixed;
    top: -60px;
    left: 18px;
    z-index: 9999;
    padding: 12px 18px;
    border-radius: 0 0 10px 10px;
    color: var(--white);
    background: var(--navy);
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
}

.topbar {
    color: rgba(255, 255, 255, 0.9);
    background: var(--navy);
    font-size: 11px;
    font-weight: 700;
}

.topbar-inner {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.topbar p {
    margin: 0;
}

.topbar p i {
    margin-right: 7px;
    color: #5eead4;
}

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

.topbar-links a {
    display: flex;
    align-items: center;
    gap: 7px;
}

.topbar-links a:hover {
    color: var(--white);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: 78px;
    border-bottom: 1px solid rgba(229, 234, 242, 0.8);
    background: rgba(255, 255, 255, 0.93);
    backdrop-filter: blur(18px);
    transition: height 0.25s, box-shadow 0.25s;
}

.site-header.scrolled {
    height: 68px;
    box-shadow: 0 10px 30px rgba(16, 42, 107, 0.08);
}

.nav-shell {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    min-width: 245px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: var(--white);
    background: linear-gradient(145deg, var(--blue), var(--violet));
    box-shadow: 0 9px 24px rgba(58, 72, 220, 0.28);
    font-size: 18px;
}

.brand-logo-image {
    padding: 5px;
    background: var(--white);
    border: 1px solid var(--line);
}

.brand-logo-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-copy strong {
    max-width: 240px;
    overflow: hidden;
    color: var(--navy);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.35px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.brand-copy small {
    margin-top: 4px;
    color: #8a94a7;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.primary-nav > a {
    position: relative;
    color: #4b5568;
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
    transition: color 0.2s;
}

.primary-nav > a:not(.nav-login):not(.nav-cta)::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -10px;
    left: 0;
    height: 2px;
    border-radius: 10px;
    background: var(--blue);
    transform: scaleX(0);
    transition: transform 0.2s;
}

.primary-nav > a:hover,
.primary-nav > a.active {
    color: var(--blue);
}

.primary-nav > a:hover::after,
.primary-nav > a.active::after {
    transform: scaleX(1) !important;
}

.primary-nav .nav-login {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding-left: 18px;
    border-left: 1px solid var(--line);
    color: var(--navy);
}

.primary-nav .nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 15px;
    border-radius: 10px;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), var(--violet));
    box-shadow: 0 8px 18px rgba(64, 70, 220, 0.24);
}

.primary-nav .nav-cta:hover {
    color: var(--white);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
}

.menu-toggle span {
    width: 18px;
    height: 2px;
    display: block;
    margin: 4px auto;
    border-radius: 4px;
    background: var(--navy);
    transition: 0.2s;
}

.notice-bar {
    position: relative;
    z-index: 10;
    height: 38px;
    display: flex;
    overflow: hidden;
    color: #4d5770;
    background: #f4f7ff;
    border-bottom: 1px solid #e4e9f4;
    font-size: 10px;
    font-weight: 700;
}

.notice-label {
    min-width: max(148px, calc((100vw - 1180px) / 2 + 140px));
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 9px;
    padding-right: 20px;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), var(--violet));
    clip-path: polygon(0 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.ticker-window {
    flex: 1;
    overflow: hidden;
}

.ticker-track {
    width: max-content;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 58px;
    padding-left: 30px;
    animation: ticker 30s linear infinite;
}

.ticker-track span::before {
    content: '';
    width: 5px;
    height: 5px;
    display: inline-block;
    margin-right: 12px;
    border-radius: 50%;
    background: var(--cyan);
    vertical-align: 1px;
}

@keyframes ticker {
    to { transform: translateX(-50%); }
}

.hero {
    position: relative;
    min-height: 680px;
    padding: 78px 0 0;
    overflow: hidden;
    background:
        linear-gradient(115deg, rgba(247, 250, 255, 0.96), rgba(247, 247, 255, 0.84)),
        radial-gradient(circle at 73% 20%, rgba(36, 186, 230, 0.2), transparent 34%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.28;
    background-image:
        linear-gradient(rgba(79, 95, 140, 0.09) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79, 95, 140, 0.09) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to right, black, transparent 80%);
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none;
}

.hero-blob-one {
    top: 30px;
    right: -90px;
    width: 450px;
    height: 450px;
    border: 1px solid rgba(91, 67, 220, 0.08);
    box-shadow: inset 0 0 80px rgba(61, 84, 221, 0.05);
}

.hero-blob-two {
    bottom: 30px;
    left: -170px;
    width: 330px;
    height: 330px;
    background: rgba(2, 174, 212, 0.06);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.04fr 0.96fr;
    align-items: center;
    gap: 70px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    padding: 8px 12px;
    border: 1px solid #d9e4ff;
    border-radius: 999px;
    color: #315793;
    background: rgba(255, 255, 255, 0.72);
    font-size: 10px;
    font-weight: 800;
    box-shadow: 0 7px 22px rgba(31, 63, 125, 0.06);
}

.eyebrow span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 0 5px rgba(6, 174, 212, 0.12);
}

.hero h1 {
    margin: 0;
    color: var(--navy);
    font-family: 'Noto Sans Devanagari', 'Manrope', sans-serif;
    font-size: clamp(46px, 5.2vw, 72px);
    font-weight: 800;
    letter-spacing: -3px;
    line-height: 1.12;
}

.hero h1 span {
    color: transparent;
    background: linear-gradient(100deg, var(--blue) 10%, var(--violet) 60%, var(--cyan));
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-copy > p {
    max-width: 590px;
    margin: 24px 0 0;
    color: #5b6477;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.9;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 30px;
}

.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 21px;
    border: 0;
    border-radius: 12px;
    cursor: pointer;
    font-size: 11px;
    font-weight: 800;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), var(--violet));
    box-shadow: 0 14px 30px rgba(58, 70, 210, 0.24);
}

.button-primary:hover {
    box-shadow: 0 18px 38px rgba(58, 70, 210, 0.32);
}

.button-secondary {
    color: var(--navy);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid #dce3ef;
}

.button-secondary i {
    color: var(--violet);
    font-size: 15px;
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 31px;
}

.student-faces {
    display: flex;
}

.student-faces span {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    margin-left: -7px;
    border: 2px solid var(--white);
    border-radius: 50%;
    color: var(--white);
    background: #5867c8;
    font-size: 8px;
    font-weight: 800;
}

.student-faces span:first-child {
    margin-left: 0;
    background: #2e90fa;
}

.student-faces span:nth-child(2) { background: #7f56d9; }
.student-faces span:nth-child(3) { background: #06aed4; }
.student-faces span:last-child { background: var(--navy); }

.stars {
    color: #f5a524;
    font-size: 10px;
    letter-spacing: 1px;
}

.hero-proof p {
    margin: 3px 0 0;
    color: #737d90;
    font-size: 9px;
}

.hero-proof p strong {
    color: var(--navy);
}

.hero-visual {
    position: relative;
    min-height: 430px;
    display: grid;
    place-items: center;
}

.visual-orbit {
    position: absolute;
    border-radius: 50%;
}

.orbit-one {
    width: 430px;
    height: 430px;
    border: 1px dashed rgba(59, 86, 190, 0.16);
    animation: spin 28s linear infinite;
}

.orbit-two {
    width: 355px;
    height: 355px;
    border: 1px solid rgba(6, 174, 212, 0.15);
    box-shadow: 0 0 0 35px rgba(255, 255, 255, 0.25);
}

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

.learning-card {
    position: relative;
    z-index: 2;
    width: 390px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(20px);
    transform: rotate(1.5deg);
}

.learning-card-top {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 4px 13px;
}

.mini-brand {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), var(--violet));
    font-size: 12px;
}

.learning-card-top > div:nth-child(2) {
    display: flex;
    flex-direction: column;
}

.learning-card-top small {
    color: var(--cyan);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 1px;
}

.learning-card-top strong {
    margin-top: 2px;
    color: var(--navy);
    font-size: 11px;
}

.live-dot {
    margin-left: auto;
    padding: 5px 8px;
    border-radius: 999px;
    color: #e73c4c;
    background: #fff1f3;
    font-size: 7px;
    font-weight: 800;
}

.live-dot::before {
    content: '';
    width: 5px;
    height: 5px;
    display: inline-block;
    margin-right: 4px;
    border-radius: 50%;
    background: #e73c4c;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    50% { opacity: 0.35; }
}

.screen {
    height: 236px;
    display: grid;
    grid-template-columns: 48px 1fr;
    overflow: hidden;
    border-radius: 17px;
    background: #0f1d42;
    box-shadow: inset 0 0 40px rgba(48, 83, 210, 0.16);
}

.screen-sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding-top: 28px;
    background: rgba(255, 255, 255, 0.04);
}

.screen-sidebar i {
    width: 14px;
    height: 4px;
    border-radius: 5px;
    background: #536487;
}

.screen-sidebar i:first-child {
    height: 14px;
    background: var(--cyan);
}

.screen-content {
    padding: 30px 28px;
}

.screen-title {
    margin-bottom: 30px;
}

.screen-title span {
    width: 70%;
    height: 8px;
    display: block;
    margin-bottom: 8px;
    border-radius: 8px;
    background: #dae4ff;
}

.screen-title span:last-child {
    width: 38%;
    height: 4px;
    background: #536487;
}

.code-row {
    display: flex;
    gap: 7px;
    margin: 11px 0;
}

.code-row b,
.code-row i,
.code-row em {
    width: 36px;
    height: 5px;
    border-radius: 7px;
    background: #4b6cd4;
}

.code-row i { width: 65px; background: #805ad5; }
.code-row em { width: 48px; background: #18a9c7; }
.code-row.short { margin-left: 20px; }

.screen-chart {
    height: 55px;
    display: flex;
    align-items: flex-end;
    gap: 9px;
    margin-top: 25px;
    padding: 8px 13px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
}

.screen-chart span {
    width: 13%;
    height: 35%;
    border-radius: 4px 4px 1px 1px;
    background: linear-gradient(to top, var(--blue), var(--cyan));
}

.screen-chart span:nth-child(2) { height: 55%; }
.screen-chart span:nth-child(3) { height: 82%; }
.screen-chart span:nth-child(4) { height: 65%; }
.screen-chart span:nth-child(5) { height: 100%; }

.learning-footer {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 14px 4px 1px;
    color: #697386;
    font-size: 8px;
    font-weight: 700;
}

.learning-footer > span {
    white-space: nowrap;
}

.learning-footer > span i {
    color: var(--success);
}

.learning-footer strong {
    color: var(--navy);
}

.progress {
    height: 5px;
    flex: 1;
    overflow: hidden;
    border-radius: 10px;
    background: #e7ebf4;
}

.progress i {
    width: 92%;
    height: 100%;
    display: block;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.float-card {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px 14px 11px 11px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-sm);
    animation: float 4s ease-in-out infinite;
}

.float-card > i {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    color: var(--violet);
    background: #f0ebff;
}

.float-card div {
    display: flex;
    flex-direction: column;
}

.float-card strong {
    color: var(--navy);
    font-size: 9px;
}

.float-card small {
    margin-top: 2px;
    color: #8590a3;
    font-size: 7px;
}

.float-card-one {
    top: 28px;
    right: -12px;
}

.float-card-two {
    bottom: 34px;
    left: -16px;
    animation-delay: -2s;
}

.float-card-two > i {
    color: var(--cyan);
    background: #e6faff;
}

.float-badge {
    position: absolute;
    top: 82px;
    left: 10px;
    z-index: 4;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 5px solid var(--white);
    border-radius: 50%;
    color: var(--white);
    background: var(--success);
    box-shadow: 0 8px 20px rgba(22, 166, 106, 0.24);
}

@keyframes float {
    50% { transform: translateY(-8px); }
}

.stats-panel {
    position: relative;
    z-index: 5;
    margin-top: 72px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 22px 10px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 20px 20px 0 0;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 -12px 45px rgba(19, 45, 96, 0.07);
    backdrop-filter: blur(18px);
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 1px solid var(--line);
}

.stat:last-child {
    border-right: 0;
}

.stat strong {
    color: var(--navy);
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -1px;
}

.stat span {
    margin-top: 3px;
    color: #768197;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.trust-strip {
    padding: 26px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

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

.trust-grid > div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-right: 1px solid var(--line);
}

.trust-grid > div:last-child {
    border-right: 0;
}

.trust-grid i {
    color: var(--blue);
    font-size: 18px;
}

.trust-grid span {
    display: flex;
    flex-direction: column;
}

.trust-grid strong {
    color: var(--navy);
    font-size: 10px;
}

.trust-grid small {
    margin-top: 3px;
    color: #8a94a7;
    font-size: 8px;
}

.section {
    padding: 105px 0;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 46px;
}

.section-heading > p {
    max-width: 430px;
    margin: 0 0 6px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.8;
}

.section-heading.centered {
    max-width: 650px;
    margin-right: auto;
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.section-heading.centered > p {
    margin: 0;
}

.section-kicker {
    display: block;
    margin-bottom: 14px;
    color: var(--blue);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
}

.section-kicker.light {
    color: #75e7ff;
}

.section-heading h2,
.about-copy h2 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(32px, 3.4vw, 46px);
    font-weight: 800;
    letter-spacing: -1.7px;
    line-height: 1.18;
}

.section-heading h2 em,
.about-copy h2 em {
    color: var(--blue);
    font-style: normal;
}

.courses-section {
    background: var(--surface);
}

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

.course-catalog-panel {
    margin-top: 28px;
    padding: 24px;
    border: 1px solid #e2e7f0;
    border-radius: 20px;
    background: linear-gradient(135deg, #f8fbff, #ffffff);
    scroll-margin-top: 94px;
}

.course-catalog-heading h3 {
    margin: 6px 0 5px;
    color: var(--navy);
    font-size: 20px;
}

.course-catalog-heading p {
    margin: 0 0 18px;
    color: #778196;
    font-size: 12px;
    line-height: 1.7;
}

.course-catalog-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.course-catalog-list li {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 8px 10px;
    border: 1px solid #e8edf5;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.86);
}

.course-catalog-code {
    color: var(--blue);
    font-size: 10px;
    font-weight: 800;
}

.course-catalog-name {
    min-width: 0;
    overflow: hidden;
    color: #4d5870;
    font-size: 11px;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.course-catalog-list strong {
    color: #17805d;
    font-size: 10px;
    white-space: nowrap;
}

.course-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 330px;
    padding: 24px;
    overflow: hidden;
    border: 1px solid #e2e7f0;
    border-radius: 20px;
    background: var(--white);
    box-shadow: 0 6px 20px rgba(22, 46, 92, 0.04);
    transition: transform 0.25s, box-shadow 0.25s, border 0.25s;
}

.course-card::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(23, 92, 211, 0.04);
}

.course-card:hover {
    border-color: #cad8f4;
    box-shadow: 0 20px 50px rgba(22, 46, 92, 0.1);
    transform: translateY(-6px);
}

.course-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 21px;
}

.course-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: var(--blue);
    background: #eaf2ff;
    font-size: 17px;
}

.course-icon.violet { color: #6e39d2; background: #f1eaff; }
.course-icon.cyan { color: #008ea9; background: #e5fafe; }
.course-icon.indigo { color: #444ce7; background: #eef0ff; }
.course-icon.purple { color: #a33ed2; background: #faeaff; }
.course-icon.sky { color: #087db7; background: #e5f5ff; }

.course-tag {
    padding: 5px 8px;
    border: 1px solid #e3e7ef;
    border-radius: 999px;
    color: #758096;
    background: #fafbfc;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 0.45px;
    text-transform: uppercase;
}

.course-card h3 {
    margin: 0;
    color: var(--navy);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -0.3px;
    line-height: 1.4;
}

.course-card > p {
    margin: 11px 0 18px;
    color: #778196;
    font-size: 10px;
    line-height: 1.75;
}

.course-meta {
    display: flex;
    gap: 14px;
    color: #5f6a80;
    font-size: 8px;
    font-weight: 700;
}

.course-meta i {
    margin-right: 5px;
    color: var(--blue);
}

.course-bottom {
    margin-top: auto;
    padding-top: 18px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 15px;
    border-top: 1px solid #edf0f5;
}

.course-bottom > div {
    display: flex;
    flex-direction: column;
}

.course-bottom small {
    color: #939bad;
    font-size: 7px;
}

.course-bottom strong {
    margin-top: 4px;
    color: var(--navy);
    font-size: 12px;
}

.course-apply {
    color: var(--blue);
    font-size: 9px;
    font-weight: 800;
}

.course-apply i {
    margin-left: 5px;
    transition: transform 0.2s;
}

.course-apply:hover i {
    transform: translateX(3px);
}

.center-action {
    margin-top: 36px;
    text-align: center;
}

.button-outline {
    color: var(--blue);
    background: var(--white);
    border: 1px solid #cddbf7;
}

.about-section {
    overflow: hidden;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 100px;
}

.about-visual {
    position: relative;
    min-height: 440px;
    display: grid;
    place-items: center;
}

.about-visual::before {
    content: '';
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: linear-gradient(145deg, #eef5ff, #f2edff);
}

.lab-card {
    position: relative;
    z-index: 2;
    width: 430px;
    height: 350px;
    padding: 24px;
    border: 1px solid #dfe7f5;
    border-radius: 28px;
    background: #f6f9ff;
    box-shadow: var(--shadow-lg);
    transform: rotate(-2deg);
}

.lab-window {
    height: 160px;
    padding: 16px;
    border-radius: 16px;
    background: #132044;
}

.lab-window > span {
    width: 6px;
    height: 6px;
    display: inline-block;
    margin-right: 4px;
    border-radius: 50%;
    background: #ef5570;
}

.lab-window > span:nth-child(2) { background: #f5c34a; }
.lab-window > span:nth-child(3) { background: #37c690; }

.lab-code {
    margin-top: 20px;
}

.lab-code i {
    width: 70%;
    height: 6px;
    display: block;
    margin: 11px 0;
    border-radius: 8px;
    background: linear-gradient(90deg, #657cdf 20%, #a058d0 20%, #a058d0 50%, #40c6dd 50%, #40c6dd 70%, transparent 70%);
}

.lab-code i:nth-child(2) { width: 45%; margin-left: 20px; }
.lab-code i:nth-child(3) { width: 80%; }
.lab-code i:nth-child(4) { width: 55%; margin-left: 20px; }
.lab-code i:nth-child(5) { width: 35%; }

.lab-desk {
    position: relative;
    height: 120px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 20px;
    border-bottom: 10px solid #a7b4c9;
}

.desk-screen {
    width: 130px;
    height: 80px;
    display: grid;
    place-items: center;
    border: 7px solid #26365c;
    border-radius: 8px;
    color: #6ce1ef;
    background: #1b2a50;
}

.desk-screen.second {
    width: 100px;
    height: 70px;
    color: #ac8dff;
}

.desk-base {
    position: absolute;
    right: 85px;
    bottom: -22px;
    width: 55px;
    height: 15px;
    border-radius: 3px;
    background: #51617d;
}

.experience-badge {
    position: absolute;
    right: -14px;
    bottom: 24px;
    z-index: 4;
    width: 116px;
    height: 116px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 7px solid var(--white);
    border-radius: 50%;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), var(--violet));
    box-shadow: 0 15px 35px rgba(70, 67, 210, 0.28);
}

.experience-badge strong {
    font-size: 29px;
}

.experience-badge span {
    font-size: 7px;
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
}

.lab-note {
    position: absolute;
    bottom: 2px;
    left: 12px;
    z-index: 4;
    padding: 10px 14px;
    border-radius: 11px;
    color: var(--navy);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    font-size: 8px;
    font-weight: 800;
}

.lab-note i {
    margin-right: 6px;
    color: var(--success);
}

.about-copy > p {
    margin: 23px 0 27px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.9;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 17px 22px;
    margin-bottom: 28px;
}

.feature-list > div {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.feature-list > div > i {
    width: 23px;
    height: 23px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 7px;
    color: var(--blue);
    background: #e9f2ff;
    font-size: 8px;
}

.feature-list span {
    display: flex;
    flex-direction: column;
}

.feature-list strong {
    color: var(--navy);
    font-size: 10px;
}

.feature-list small {
    margin-top: 3px;
    color: #8791a3;
    font-size: 8px;
}

.text-link {
    color: var(--blue);
    font-size: 10px;
    font-weight: 800;
}

.text-link i {
    margin-left: 6px;
}

.why-section {
    background: #f7f9fd;
}

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

.why-card {
    position: relative;
    min-height: 245px;
    padding: 29px 23px;
    overflow: hidden;
    border: 1px solid #e2e7f0;
    border-radius: 18px;
    background: var(--white);
    transition: transform 0.25s, box-shadow 0.25s;
}

.why-card:hover {
    box-shadow: 0 18px 45px rgba(17, 41, 87, 0.1);
    transform: translateY(-5px);
}

.why-card > span {
    position: absolute;
    top: 13px;
    right: 17px;
    color: #eef1f7;
    font-size: 42px;
    font-weight: 800;
}

.why-card > i {
    position: relative;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    margin-bottom: 27px;
    border-radius: 14px;
    color: var(--blue);
    background: #ebf2ff;
    font-size: 17px;
}

.why-card:nth-child(2) > i { color: var(--violet); background: #f2ebff; }
.why-card:nth-child(3) > i { color: #d17a00; background: #fff5dc; }
.why-card:nth-child(4) > i { color: #07906c; background: #e8faf4; }

.why-card h3 {
    position: relative;
    margin: 0 0 10px;
    color: var(--navy);
    font-size: 14px;
}

.why-card p {
    position: relative;
    margin: 0;
    color: #778196;
    font-size: 9px;
    line-height: 1.8;
}

.batch-section {
    padding-top: 0;
    background: #f7f9fd;
}

.batch-shell {
    position: relative;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: 55px;
    padding: 44px 50px;
    overflow: hidden;
    border-radius: 25px;
    color: var(--white);
    background: linear-gradient(120deg, #102a6b, #244fc0 56%, #532bb2);
    box-shadow: 0 25px 60px rgba(24, 48, 118, 0.22);
}

.batch-shell::after {
    content: '';
    position: absolute;
    top: -140px;
    right: -90px;
    width: 340px;
    height: 340px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    box-shadow: 0 0 0 50px rgba(255, 255, 255, 0.03);
}

.batch-copy {
    position: relative;
    z-index: 2;
}

.batch-copy h2 {
    margin: 0;
    font-size: 31px;
    letter-spacing: -1px;
}

.batch-copy p {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 10px;
    line-height: 1.7;
}

.batch-cards {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 11px;
}

.batch-cards > div {
    min-height: 105px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 17px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(10px);
}

.batch-cards > div > i {
    color: #80e8fb;
    font-size: 17px;
}

.batch-cards span {
    display: flex;
    flex-direction: column;
}

.batch-cards small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 7px;
}

.batch-cards strong {
    margin-top: 4px;
    font-size: 9px;
}

.portal-section {
    background: var(--white);
}

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

.portal-card {
    min-height: 138px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 22px;
    border: 1px solid #e0e7f2;
    border-radius: 20px;
    background: #f9fbff;
    transition: transform 0.25s, box-shadow 0.25s;
}

.portal-card:hover {
    box-shadow: 0 18px 45px rgba(18, 42, 91, 0.1);
    transform: translateY(-4px);
}

.portal-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    color: var(--white);
    background: linear-gradient(145deg, #12a974, #1aca95);
}

.portal-card.staff .portal-icon { background: linear-gradient(145deg, #7a43da, #9d65ef); }
.portal-card.admin .portal-icon { background: linear-gradient(145deg, #175cd3, #337eea); }

.portal-card > span:nth-child(2) {
    display: flex;
    flex-direction: column;
}

.portal-card small {
    color: #16a66a;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 1px;
}

.portal-card.staff small { color: var(--violet); }
.portal-card.admin small { color: var(--blue); }

.portal-card strong {
    margin-top: 5px;
    color: var(--navy);
    font-size: 14px;
}

.portal-card em {
    margin-top: 7px;
    color: #828b9e;
    font-size: 8px;
    font-style: normal;
    line-height: 1.5;
}

.portal-arrow {
    color: #b3bbca;
    font-size: 12px;
    transition: transform 0.2s;
}

.portal-card:hover .portal-arrow {
    color: var(--blue);
    transform: translateX(4px);
}

.admission-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 5% 10%, rgba(6, 174, 212, 0.2), transparent 28%),
        linear-gradient(125deg, #0d2865, #1b49b5 57%, #4f2aa5);
}

.admission-section::after {
    content: '';
    position: absolute;
    right: -180px;
    bottom: -210px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.025);
}

.admission-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.83fr 1.17fr;
    align-items: center;
    gap: 90px;
}

.admission-copy {
    color: var(--white);
}

.admission-copy h2 {
    margin: 0;
    font-size: clamp(36px, 4vw, 53px);
    letter-spacing: -2px;
    line-height: 1.15;
}

.admission-copy > p {
    margin: 20px 0 26px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    line-height: 1.9;
}

.admission-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 10px;
    font-weight: 700;
}

.admission-points i {
    margin-right: 8px;
    color: #5eead4;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
    font-size: 10px;
    font-weight: 800;
}

.whatsapp-link i {
    color: #5eea93;
    font-size: 17px;
}

.admission-form-card {
    padding: 31px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 30px 80px rgba(4, 20, 67, 0.32);
}

.form-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.form-heading > div {
    display: flex;
    flex-direction: column;
}

.form-heading small {
    color: var(--blue);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.form-heading h3 {
    margin: 4px 0 0;
    color: var(--navy);
    font-size: 21px;
    letter-spacing: -0.6px;
}

.form-heading > span {
    padding: 6px 8px;
    border-radius: 7px;
    color: #56718a;
    background: #eef7f5;
    font-size: 7px;
    font-weight: 800;
}

.form-heading > span i {
    margin-right: 4px;
    color: var(--success);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px;
}

.admission-form-card label {
    display: flex;
    flex-direction: column;
    margin-bottom: 13px;
}

.admission-form-card label > span {
    margin: 0 0 6px 2px;
    color: #566176;
    font-size: 8px;
    font-weight: 800;
}

.admission-form-card input,
.admission-form-card select,
.admission-form-card textarea {
    width: 100%;
    border: 1px solid #dfe5ef;
    border-radius: 10px;
    outline: 0;
    color: var(--navy);
    background: #fbfcfe;
    font-size: 10px;
    transition: border 0.2s, box-shadow 0.2s, background 0.2s;
}

.admission-form-card input,
.admission-form-card select {
    height: 42px;
    padding: 0 12px;
}

.admission-form-card textarea {
    min-height: 70px;
    padding: 11px 12px;
    resize: vertical;
}

.admission-form-card input:focus,
.admission-form-card select:focus,
.admission-form-card textarea:focus {
    border-color: #83a7ec;
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(23, 92, 211, 0.08);
}

.button-form {
    width: 100%;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), var(--violet));
    box-shadow: 0 12px 26px rgba(60, 70, 200, 0.2);
}

.button-form:disabled {
    opacity: 0.65;
    cursor: wait;
}

.form-note {
    margin: 11px 0 0;
    color: #939bad;
    font-size: 7px;
    text-align: center;
}

.form-note i {
    margin-right: 4px;
    color: var(--success);
}

.form-alert {
    margin-bottom: 15px;
    padding: 11px 13px;
    border-radius: 9px;
    font-size: 9px;
    font-weight: 700;
}

.form-alert.success {
    color: #087b52;
    background: #eaf9f3;
    border: 1px solid #c7efdf;
}

.form-alert.error {
    color: #b42318;
    background: #fff1f0;
    border: 1px solid #ffd5d2;
}

.honeypot {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
}

.contact-strip {
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--white);
    background: #0a1736;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr 1.15fr;
    align-items: center;
}

.contact-grid > a,
.contact-grid > div:not(.contact-brand) {
    min-height: 52px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 0 22px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-grid i {
    color: #62d9f3;
}

.contact-grid span {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.contact-grid small {
    color: rgba(255, 255, 255, 0.45);
    font-size: 7px;
}

.contact-grid strong {
    max-width: 220px;
    margin-top: 4px;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.9);
    font-size: 9px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.contact-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-right: 20px;
}

.contact-brand .brand-logo {
    width: 40px;
    height: 40px;
    font-size: 15px;
}

.contact-brand div {
    display: flex;
    flex-direction: column;
}

.contact-brand strong {
    max-width: 250px;
    font-size: 11px;
}

.contact-brand p {
    margin: 3px 0 0;
    color: rgba(255, 255, 255, 0.43);
    font-size: 7px;
}

.site-footer {
    color: rgba(255, 255, 255, 0.64);
    background: #07122d;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1fr;
    gap: 70px;
    padding-top: 65px;
    padding-bottom: 55px;
}

.footer-grid h3,
.footer-grid h4 {
    margin: 0 0 17px;
    color: var(--white);
}

.footer-grid h3 {
    font-size: 16px;
}

.footer-grid h4 {
    font-size: 10px;
}

.footer-grid p {
    max-width: 380px;
    margin: 0;
    font-size: 9px;
    line-height: 1.9;
}

.footer-grid > div:not(:first-child) {
    display: flex;
    flex-direction: column;
}

.footer-grid > div:not(:first-child) a {
    margin-bottom: 10px;
    font-size: 8px;
    transition: color 0.2s, transform 0.2s;
}

.footer-grid > div:not(:first-child) a:hover {
    color: var(--white);
    transform: translateX(3px);
}

.social-links {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.social-links a {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 10px;
}

.social-links a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.footer-bottom {
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    margin: 0;
    font-size: 8px;
}

.footer-bottom strong {
    color: #82dff3;
}

.floating-actions {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 90;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 9px;
}

.floating-actions a,
.floating-actions button {
    border: 0;
    box-shadow: 0 10px 26px rgba(8, 26, 67, 0.18);
}

.float-whatsapp {
    height: 42px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 15px;
    border-radius: 999px;
    color: var(--white);
    background: #20b96b;
    font-size: 9px;
    font-weight: 800;
}

.float-whatsapp i {
    font-size: 17px;
}

.float-call,
.back-to-top {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--blue);
    cursor: pointer;
    font-size: 11px;
}

.back-to-top {
    opacity: 0;
    visibility: hidden;
    background: var(--navy);
    transform: translateY(8px);
    transition: 0.2s;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-delay {
    transition-delay: 0.12s;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1080px) {
    .primary-nav {
        gap: 14px;
    }

    .primary-nav > a {
        font-size: 10px;
    }

    .primary-nav > a:nth-child(4),
    .primary-nav > a:nth-child(5) {
        display: none;
    }

    .hero-grid {
        gap: 30px;
    }

    .learning-card {
        width: 350px;
    }

    .about-grid {
        gap: 55px;
    }

    .lab-card {
        width: 390px;
    }

    .admission-grid {
        gap: 55px;
    }
}

@media (max-width: 860px) {
    .topbar-links a:last-child {
        display: none;
    }

    .site-header,
    .site-header.scrolled {
        height: 68px;
    }

    .brand {
        min-width: 0;
    }

    .menu-toggle {
        display: block;
    }

    .menu-toggle.open span:first-child {
        transform: translateY(6px) rotate(45deg);
    }

    .menu-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.open span:last-child {
        transform: translateY(-6px) rotate(-45deg);
    }

    .primary-nav {
        position: fixed;
        top: 68px;
        right: 0;
        bottom: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 18px 22px 30px;
        overflow-y: auto;
        background: var(--white);
        opacity: 0;
        visibility: hidden;
        transform: translateX(100%);
        transition: 0.25s;
    }

    .primary-nav.open {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    .primary-nav > a,
    .primary-nav > a:nth-child(4),
    .primary-nav > a:nth-child(5) {
        display: flex;
        align-items: center;
        min-height: 52px;
        border-bottom: 1px solid var(--line);
        font-size: 13px;
    }

    .primary-nav > a::after {
        display: none;
    }

    .primary-nav .nav-login {
        padding-left: 0;
        border-left: 0;
    }

    .primary-nav .nav-cta {
        justify-content: center;
        margin-top: 16px;
        border: 0;
    }

    .notice-label {
        min-width: 125px;
    }

    .hero {
        padding-top: 60px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-copy {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 15px;
    }

    .stats-panel {
        margin-top: 50px;
    }

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

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-visual {
        order: 2;
    }

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

    .batch-shell {
        grid-template-columns: 1fr;
    }

    .portal-grid {
        grid-template-columns: 1fr;
    }

    .admission-grid {
        grid-template-columns: 1fr;
    }

    .admission-copy {
        max-width: 620px;
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 0;
    }

    .contact-grid > a,
    .contact-grid > div:not(.contact-brand) {
        border-left: 0;
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 45px;
    }

    .footer-grid > div:last-child {
        display: none;
    }
}

@media (max-width: 600px) {
    .site-container {
        width: min(100% - 28px, 1180px);
    }

    .topbar-inner {
        justify-content: center;
    }

    .topbar-links {
        display: none;
    }

    .brand-logo {
        width: 39px;
        height: 39px;
        border-radius: 12px;
    }

    .brand-copy strong {
        max-width: 205px;
        font-size: 13px;
    }

    .notice-bar {
        height: 34px;
    }

    .notice-label {
        min-width: 105px;
        padding-right: 15px;
    }

    .notice-label span {
        display: none;
    }

    .ticker-track {
        gap: 35px;
        padding-left: 15px;
    }

    .hero {
        min-height: 0;
        padding-top: 46px;
    }

    .eyebrow {
        font-size: 8px;
    }

    .hero h1 {
        font-size: 42px;
        letter-spacing: -2px;
    }

    .hero-copy > p {
        font-size: 12px;
        line-height: 1.8;
    }

    .hero-actions {
        width: 100%;
    }

    .hero-actions .button {
        flex: 1;
        padding: 0 14px;
        font-size: 10px;
    }

    .hero-visual {
        min-height: 350px;
        transform: scale(0.9);
        margin: -15px -20px;
    }

    .learning-card {
        width: 330px;
    }

    .screen {
        height: 205px;
    }

    .orbit-one {
        width: 355px;
        height: 355px;
    }

    .orbit-two {
        width: 310px;
        height: 310px;
    }

    .float-card-one {
        right: -2px;
    }

    .float-card-two {
        left: -2px;
    }

    .stats-panel {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 25px;
        border-radius: 17px 17px 0 0;
    }

    .stat {
        padding: 12px 5px;
    }

    .stat:nth-child(2) {
        border-right: 0;
    }

    .stat:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }

    .stat strong {
        font-size: 22px;
    }

    .trust-strip {
        padding: 18px 0;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px 0;
    }

    .trust-grid > div:nth-child(2) {
        border-right: 0;
    }

    .trust-grid i {
        font-size: 15px;
    }

    .section {
        padding: 75px 0;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
        margin-bottom: 32px;
    }

    .section-heading h2,
    .about-copy h2 {
        font-size: 32px;
    }

    .section-heading.centered {
        align-items: center;
    }

    .course-grid {
        grid-template-columns: 1fr;
    }

    .course-card {
        min-height: 310px;
    }

    .about-grid {
        gap: 50px;
    }

    .about-visual {
        min-height: 330px;
    }

    .about-visual::before {
        width: 290px;
        height: 290px;
    }

    .lab-card {
        width: 300px;
        height: 275px;
        padding: 16px;
    }

    .lab-window {
        height: 125px;
    }

    .lab-desk {
        height: 90px;
    }

    .desk-screen {
        width: 95px;
        height: 59px;
    }

    .desk-screen.second {
        width: 75px;
        height: 55px;
    }

    .experience-badge {
        right: 0;
        width: 95px;
        height: 95px;
    }

    .experience-badge strong {
        font-size: 24px;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-card {
        min-height: 205px;
    }

    .batch-shell {
        gap: 30px;
        padding: 34px 22px;
    }

    .batch-cards {
        grid-template-columns: 1fr;
    }

    .batch-cards > div {
        min-height: 78px;
        flex-direction: row;
        align-items: center;
    }

    .portal-card {
        min-height: 125px;
        padding: 18px;
    }

    .portal-icon {
        width: 43px;
        height: 43px;
    }

    .admission-section {
        padding-top: 80px;
    }

    .admission-grid {
        gap: 45px;
    }

    .admission-copy h2 {
        font-size: 39px;
    }

    .admission-form-card {
        margin: 0 -3px;
        padding: 23px 18px;
        border-radius: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .contact-grid > a,
    .contact-grid > div:not(.contact-brand) {
        padding: 0;
    }

    .contact-brand {
        margin-bottom: 7px;
        padding-bottom: 17px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px 25px;
        padding-top: 50px;
    }

    .footer-grid > div:first-child {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        padding: 16px 0;
    }

    .floating-actions {
        right: 12px;
        bottom: 12px;
    }

    .float-whatsapp span {
        display: none;
    }

    .float-whatsapp {
        width: 42px;
        justify-content: center;
        padding: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 760px) {
    .course-catalog-panel {
        padding: 16px;
    }

    .course-catalog-list {
        grid-template-columns: 1fr;
    }
}
