/* ===== CSS VARIABLES & RESET ===== */
:root {
    --primary: #0B3D91;
    --primary-light: #1565C0;
    --primary-dark: #082B6A;
    --accent: #E8751A;
    --accent-light: #F5921C;
    --gradient-1: linear-gradient(135deg, #0B3D91, #1565C0);
    --gradient-2: linear-gradient(135deg, #E8751A, #F5921C);
    --gradient-3: linear-gradient(135deg, #0B3D91 0%, #1565C0 50%, #0B3D91 100%);
    --bg-dark: #ffffff;
    --bg-card: #ffffff;
    --bg-card-hover: #f0f4ff;
    --bg-surface: #f5f7fb;
    --text-primary: #1a202c;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --border: rgba(0, 0, 0, 0.08);
    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.08);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 0 40px rgba(11, 61, 145, 0.12);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-full: 9999px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    --padding-x: 24px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-secondary);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input,
select,
textarea {
    font-family: inherit;
    font-size: 0.95rem;
    background: #f5f7fb;
    border: 1px solid var(--border);
    color: var(--text-primary);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    width: 100%;
    transition: var(--transition);
    outline: none;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(11, 61, 145, 0.15);
}

input::placeholder,
textarea::placeholder {
    color: var(--text-muted);
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--padding-x);
}

.crash {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 14px;
    /*display: inline-flex;*/
    align-items: center;
    gap: 8px;
}
.neet {
    font-family: var(--font-primary);
    font-size: 4.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -3px;
    color: var(--accent);
    margin-bottom: 14px;
    display: inline-flex;
    align-items: center;
    line-height: 30px;
    gap: 8px;
}
.section {
    padding: 100px 0;
    position: relative;
    content-visibility: auto;
    contain-intrinsic-size: auto 800px;
}

.text-center {
    text-align: center;
}

.section-label {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.section-label::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
    color: var(--text-primary);
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 50px;
}

.gradient-text {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}

.preloader.hide {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    width: 70px;
    height: 70px;
    background: var(--gradient-1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    margin: 0 auto 16px;
    animation: pulse-glow 1.5s ease-in-out infinite;
}

.preloader-text {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 6px;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.preloader-bar {
    width: 200px;
    height: 3px;
    background: var(--border);
    border-radius: 4px;
    overflow: hidden;
    margin: 0 auto;
}

.preloader-progress {
    height: 100%;
    width: 0;
    background: var(--gradient-1);
    border-radius: 4px;
    animation: preloader-fill 1.8s ease-in-out forwards;
}

@keyframes preloader-fill {
    to {
        width: 100%;
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(11, 61, 145, 0.4);
    }

    50% {
        box-shadow: 0 0 40px rgba(11, 61, 145, 0.7);
    }
}

/* ===== PARTICLES ===== */
.particles {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(11, 61, 145, 0.08);
    animation: float-particle linear infinite;
    will-change: transform, opacity;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    100% {
        transform: translateY(-20vh) scale(1);
        opacity: 0;
    }
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.logo-img {
    height: 48px;
    width: auto;
}

.footer-logo-img {
    filter: brightness(0) invert(1);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-full);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--primary-light);
    border-radius: 2px;
}
.worth {
    margin: 10px;
    padding: 8px 20px;
    background: rgba(232, 117, 26, 0.1);
    border: 1px solid rgba(232, 117, 26, 0.3);
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    color: black;
    margin-bottom: 50px;
}
.worth p:first-child{
    border-bottom: 1px solid #fff;
    margin-bottom:5px;
    line-height: 1.4;
}

.nav-cta {
    background: var(--gradient-2) !important;
    color: #fff !important;
    padding: 10px 24px !important;
    font-weight: 600 !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 117, 26, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #1a202c;
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-2);
    color: #fff;
    box-shadow: 0 4px 20px rgba(232, 117, 26, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(232, 117, 26, 0.5);
}

.btn-primary i {
    transition: transform 0.3s;
}

.btn-primary:hover i {
    transform: translateX(4px);
}

.btn-outline {
    border: 2px solid rgba(232, 117, 26, 0.2);
    color: var(--text-primary);
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background: rgba(232, 117, 26, 0.05);
    border-color: var(--accent-light);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===== HERO ===== */
.hero {
    display: flex;
    align-items: center;
    position: relative;
    /*padding: 9px 0 90px;*/
    min-height: 85vh;
    overflow: hidden;
}

/* ===== INFO MARQUEE ===== */
.info-marquee-bar {
    background: #0B3D91;
    color: #ffffff;
    padding: 12px 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee-scroll 40s linear infinite;
    gap: 100px;
}

.marquee-item {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.marquee-item i {
    color: #FBC02D;
    font-size: 1.1rem;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    will-change: transform;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -10%;
    right: -5%;
    animation: shape-float 8s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: #1565C0;
    bottom: -10%;
    left: -5%;
    animation: shape-float 10s ease-in-out infinite reverse;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    top: 50%;
    left: 30%;
    animation: shape-float 12s ease-in-out infinite;
}

.shape-4 {
    width: 200px;
    height: 200px;
    background: #E8751A;
    top: 20%;
    right: 30%;
    animation: shape-float 9s ease-in-out infinite reverse;
}

@keyframes shape-float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0);
    }

    50% {
        transform: translate(30px, 20px) rotate(5deg);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    padding: 10px 0 0 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(232, 117, 26, 0.1);
    border: 1px solid rgba(232, 117, 26, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 20px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(1.1rem, 2.5vw, 1.9rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    color:white;
}

.highlight-text {
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 12px;
    background: rgba(232, 117, 26, 0.25);
    border-radius: 4px;
    z-index: -1;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 35px;
    max-width: 620px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 35px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
}

.stat-suffix {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image-wrapper {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
    border: 1px solid var(--glass-border);
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-glow {
    position: absolute;
    inset: -2px;
    border-radius: 26px;
    z-index: -1;
    background: var(--gradient-1);
    opacity: 0.3;
    filter: blur(20px);
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow);
    animation: float-card 4s ease-in-out infinite;
}

.floating-card i {
    color: var(--accent);
    font-size: 1.1rem;
}

.card-1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 30%;
    left: -30px;
    animation-delay: 1s;
}

.card-3 {
    bottom: 5%;
    right: 10%;
    animation-delay: 2s;
}

@keyframes float-card {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 2px;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary-light), transparent);
    animation: scroll-anim 2s ease-in-out infinite;
}

@keyframes scroll-anim {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* ===== MARQUEE ===== */
.marquee-bar {
    background: var(--gradient-1);
    padding: 14px 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.marquee-track {
    overflow: hidden;
}

.marquee-content {
    display: flex;
    gap: 50px;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
    width: max-content;
    will-change: transform;
}

.marquee-item {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.95rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.marquee-item i {
    color: var(--accent-light);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
}

.about-img-wrapper img {
    width: 100%;
}

.about-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11, 61, 145, 0.15), transparent);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: 30px;
    background: var(--gradient-1);
    padding: 20px 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 10px 40px rgba(11, 61, 145, 0.4);
}

.exp-number {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
    display: block;
    line-height: 1;
}

.exp-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.about-image {
    position: relative;
}

.about-desc {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.about-feature:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary-light);
    transform: translateY(-3px);
}

.feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: rgba(11, 61, 145, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 1.1rem;
}

.about-feature h4 {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.about-feature p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ===== WHO SECTION ===== */
.who-section {
    background: var(--bg-surface);
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.who-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.who-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.who-card:hover {
    transform: translateY(-8px);
    border-color: rgba(11, 61, 145, 0.3);
    box-shadow: var(--shadow-glow);
}

.who-card:hover::before {
    transform: scaleX(1);
}

.who-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(11, 61, 145, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 1.3rem;
    margin-bottom: 20px;
    transition: var(--transition);
}

.who-card:hover .who-card-icon {
    background: var(--gradient-1);
    color: #fff;
}

.who-card h3 {
    font-family: var(--font-primary);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.who-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ===== PROGRAMME DETAILS ===== */
.programme-details {
    background: var(--bg-dark);
}

.programme-details-content {
    margin-bottom: 40px;
    text-align: center;
}

.programme-details-title {
    font-family: var(--font-primary);
    font-size: clamp(2.24rem, 4.9vw, 3.08rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.3;
}

.programme-details-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 960px;
    margin: 0 auto;
}

.programme-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: none;
    border-radius: 0;
    margin-top: 24px;
    margin-bottom: 44px;
    background: transparent;
}

.table-subtitle {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-top: 54px;
    margin-bottom: 10px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.table-subtitle::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #5aacdb;
    border-radius: 2px;
    margin: 10px auto 0;
}

.table-subtitle:first-of-type {
    margin-top: 34px;
}

.programme-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 8px;
    font-size: 0.95rem;
    background: transparent;
}

.programme-table thead th {
    background: #2E86C1;
    color: #fff;
    font-family: var(--font-primary);
    font-weight: 600;
    padding: 16px 24px;
    text-align: center;
    border: none;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    border-radius: 6px;
}

.programme-table thead th:last-child {
    border-right: none;
}

.programme-table thead th.table-header-value {
    text-align: center;
}

.programme-table tbody tr {
    transition: none;
    background: transparent;
}

.programme-table tbody tr:hover {
    background: transparent;
}

.programme-table tbody tr:nth-child(even) {
    background: transparent;
}

.programme-table tbody tr:nth-child(even):hover {
    background: transparent;
}

.programme-table tbody td {
    padding: 18px 24px;
    border: none;
    vertical-align: middle;
    background: #EBF5FB;
    border-radius: 6px;
}

.programme-table tbody td:last-child {
    border-right: none;
}

.programme-table tbody tr:last-child td {
    border-bottom: none;
}

.programme-table thead th.table-header-label {
    font-family: var(--font-primary);
    font-weight: 600;
    color: #fff;
    background: #2E86C1;
    width: 25%;
    min-width: 160px;
    border: none;
    letter-spacing: 0.3px;
    font-size: 0.95rem;
    text-align: center;
    border-radius: 6px;
}

.programme-table tbody td.table-label {
    font-family: var(--font-primary);
    font-weight: 700;
    color: #2E86C1;
    background: #EBF5FB;
    width: 25%;
    min-width: 160px;
    border: none;
    letter-spacing: 0.3px;
    font-size: 0.95rem;
    text-align: center;
    border-radius: 6px;
}

.programme-table tbody td.table-value {
    color: #1a1a2e;
    line-height: 1.7;
    text-align: left;
    font-size: 0.95rem;
    background: #F4FAFE;
    padding-left: 32px;
}

.programme-table .table-total-row td {
    background: #D6EAF8;
    font-weight: 700;
    color: #1a1a2e;
    border: none;
    font-size: 0.95rem;
}

.highlight-orange {
    color: var(--accent);
    font-weight: 700;
}

/* ===== WHY SECTION ===== */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 28px;
}

.why-points {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.why-point {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
}

.check-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 8px;
    background: rgba(34, 197, 94, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #22c55e;
    font-size: 0.75rem;
}

.why-point span {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.why-img-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--glass-border);
}

.why-image {
    position: relative;
}

.why-floating-stat {
    position: absolute;
    bottom: -20px;
    left: 30px;
    background: var(--gradient-2);
    padding: 18px 28px;
    border-radius: var(--radius-sm);
    text-align: center;
    animation: float-card 4s ease-in-out infinite;
}

.wfs-number {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    display: block;
    line-height: 1;
}

.wfs-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
}

/* ===== FEATURES ===== */
.features {
    background: var(--bg-surface);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
}

.feature-card:hover::after {
    opacity: 0.06;
}

.feature-card>* {
    position: relative;
    z-index: 1;
}

.feature-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(11, 61, 145, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-light);
    font-size: 1.5rem;
    transition: var(--transition);
}

.feature-card:hover .feature-card-icon {
    background: var(--gradient-1);
    color: #fff;
    transform: scale(1.1);
}

.feature-card h3 {
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===== TESTS SECTION ===== */
.tests-section {
    background: var(--bg-dark);
}

.tests-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: start;
}

.tests-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-top: 16px;
}

.tests-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.test-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 28px 22px;
    transition: all 0.4s ease;
}

.test-card:hover {
    transform: translateY(-5px);
    border-color: rgba(11, 61, 145, 0.3);
    box-shadow: var(--shadow-glow);
}

.test-card-num {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.test-card h4 {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.test-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===== RESULTS ===== */
.results {
    background: var(--bg-surface);
}

.result-big-stat {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 30px;
    min-height: 360px;
}

.result-image-wrapper {
    position: absolute;
    inset: 0;
}

.result-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.result-overlay {
    position: relative;
    z-index: 1;
    min-height: 360px;
    background: linear-gradient(to right, rgba(26, 42, 78, 0.92), rgba(26, 42, 78, 0.7));
    display: flex;
    align-items: center;
    padding: 40px var(--padding-x);
}

.result-numbers {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    gap: 40px 20px;
}

.result-number-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.rn-value {
    font-family: var(--font-primary);
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.rn-suffix {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent);
    vertical-align: top;
    position: relative;
    top: 0.15em;
    margin-left: 4px;
}

.rn-label {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 4px;
}

.result-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.result-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 30px 24px;
    text-align: center;
    transition: all 0.4s ease;
}

.result-card:hover {
    transform: translateY(-5px);
    border-color: rgba(11, 61, 145, 0.3);
}

.rc-icon {
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 14px;
}

.rc-number {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.rc-text {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ===== NSAT ===== */
.nsat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    overflow: hidden;
}

.nsat-content {
    padding: 50px var(--padding-x) 50px 50px;
}

.nsat-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(232, 117, 26, 0.12);
    border: 1px solid rgba(232, 117, 26, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.nsat-title {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.nsat-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 28px;
}

.nsat-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 30px;
}

.nsat-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--glass);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.nsat-feature i {
    color: var(--accent);
}

.nsat-feature span {
    font-size: 0.9rem;
    font-weight: 500;
}

.nsat-steps {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.nsat-step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
    min-width: 140px;
}

.step-num {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-weight: 700;
    color: #fff;
    font-size: 0.85rem;
}

.nsat-step p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.nsat-step-arrow {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.nsat-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.nsat-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== TESTIMONIALS ===== */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(11, 61, 145, 0.3);
}

.testimonial-stars {
    color: var(--accent);
    margin-bottom: 18px;
    display: flex;
    gap: 4px;
    font-size: 0.9rem;
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-weight: 700;
    color: #fff;
    font-size: 1.1rem;
}

.testimonial-author h4 {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 700;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--accent);
}

/* ===== BRANCHES ===== */
.branches {
    background: var(--bg-surface);
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.branch-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.branch-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.4s;
}

.branch-card:hover {
    transform: translateY(-5px);
}

.branch-card:hover::before {
    opacity: 0.08;
}

.branch-card>* {
    position: relative;
    z-index: 1;
}

.branch-icon {
    color: var(--primary-light);
    font-size: 1.5rem;
    margin-bottom: 14px;
}

.branch-card:hover .branch-icon {
    color: var(--accent);
}

.branch-card h3 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.branch-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===== CONTACT ===== */
.contact {
    background: var(--bg-dark);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.cd-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 14px;
    background: rgba(11, 61, 145, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 1.1rem;
}

.cd-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 4px;
}

.cd-value {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
}

.cd-value:hover {
    color: var(--primary-light);
}

.contact-image {
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: 10px;
}

.contact-image img {
    width: 100%;
    border-radius: var(--radius);
}

.contact-form-wrapper {
    background: #f4f5f7;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    border: none;
    border-radius: 12px;
    padding: 40px var(--padding-x);
    position: sticky;
    top: 100px;
    z-index: 10;
}

.contact-form-wrapper.hero-form {
    position: relative;
    top: 0;
    width: 100%;
    max-width: 450px;
    margin: 0 0 0 auto;
    padding: 20px var(--padding-x);
}

.form-header {
    margin-bottom: 28px;
}

.form-header h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.form-header p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 7px;
    color: var(--text-secondary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* === SCREENSHOT SPECIFIC FORM STYLES === */
.style-screenshot-wrapper {
    background: #f4f5f7;
    border-radius: 12px;
    padding: 20px 24px;
    box-shadow: none;
    border: none;
}

.style-screenshot {
    text-align: center;
    margin-bottom: 8px;
}

.style-screenshot h3 {
    color: #0d2149;
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 2px;
    font-family: inherit;
}

.style-screenshot p {
    color: #4b5563;
    font-size: 0.8rem;
}

.style-screenshot-form .form-group {
    margin-bottom: 8px;
}

.style-screenshot-form input,
.style-screenshot-form select {
    width: 100%;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 8px 14px;
    font-family: inherit;
    font-size: 0.85rem;
    color: #333;
    outline: none;
    transition: all 0.3s ease;
}

.style-screenshot-form select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23000%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 20px top 50%;
    background-size: 12px auto;
}

.style-screenshot-form input::placeholder {
    color: #888888;
}

.style-screenshot-form input:focus,
.style-screenshot-form select:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(11, 61, 145, 0.1);
}

.btn-otp {
    background: var(--gradient-2);
    color: #fff !important;
    font-size: 0.95rem;
    font-weight: 600;
    justify-content: center;
    border-radius: 8px;
    padding: 10px;
    width: 100%;
    box-shadow: 0 4px 20px rgba(232, 117, 26, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 6px;
}

.btn-otp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(232, 117, 26, 0.5);
}

.form-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 14px;
}

.form-note a {
    color: var(--primary-light);
    text-decoration: underline;
}

/* ===== MODAL ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 15, 30, 0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #ffffff;
    width: 100%;
    max-width: 650px;
    border-radius: var(--radius-lg);
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1);
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px var(--padding-x);
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bg-surface);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-secondary);
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.modal-close:hover {
    background: rgba(232, 117, 26, 0.1);
    color: var(--accent);
}

/* ===== FOOTER ===== */
.footer {
    background: #0B3D91;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 60px 0 0;
    color: #e2e8f0;
}

.footer .nav-logo .logo-main {
    color: #fff;
}

.footer .nav-logo .logo-sub {
    color: rgba(255, 255, 255, 0.5);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.45rem;
    margin-top: 16px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gradient-1);
    color: #fff;
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 6px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-contact-item i {
    color: var(--primary-light);
    width: 18px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links a:hover {
    color: var(--primary-light);
}

/* ===== BACK TO TOP & WHATSAPP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--gradient-1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    box-shadow: 0 8px 24px rgba(11, 61, 145, 0.4);
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 90;
    animation: whatsapp-pulse 2s ease-in-out infinite;
}

@keyframes whatsapp-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
}

/* ===== SCROLL ANIMATIONS ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll[style*="--delay"] {
    transition-delay: var(--delay);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-text {
        order: 0;
    }

    .hero-image,
    .hero-form-wrapper {
        order: 1;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-desc {
        margin: 0 auto 32px;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .card-2 {
        left: 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: 2;
    }

    .about-content {
        order: 1;
    }

    .who-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .programme-table {
        min-width: 500px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tests-grid {
        grid-template-columns: 1fr;
    }

    .result-cards-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .nsat-card {
        grid-template-columns: 1fr;
    }

    .nsat-visual {
        height: 300px;
    }

    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .branches-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--bg-card);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 30px 30px;
        gap: 0;
        transition: right 0.4s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        border-left: 1px solid var(--border);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        padding: 14px 0;
        width: 100%;
        border-bottom: 1px solid var(--border);
        border-radius: 0;
    }

    .nav-link.active::after {
        display: none;
    }

    .nav-cta {
        margin-top: 16px;
        text-align: center !important;
        width: 100% !important;
        justify-content: center;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Disable heavy animations on mobile */
    .particles, .hero-bg-shapes {
        display: none !important;
    }

    .hero {
        min-height: auto;
        /*padding: 120px 0 60px;*/
    }

    .hero-title {
        font-size: clamp(0.9rem, 3vw, 1.4rem);
    }

    .hero-stats {
        gap: 16px;
        flex-wrap: wrap;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .floating-card {
        display: none;
    }

    .who-grid {
        grid-template-columns: 1fr;
    }

    .programme-table,
    .programme-table thead,
    .programme-table tbody,
    .programme-table th,
    .programme-table td,
    .programme-table tr {
        display: block;
        width: 100%;
    }

    .programme-table {
        min-width: 100%;
        border: none;
        border-spacing: 6px;
    }

    .programme-table tr {
        border-bottom: none;
    }

    .programme-table thead tr {
        border-bottom: none;
    }

    .programme-table thead th.table-header-label {
        display: none;
    }

    .programme-table thead th.table-header-value {
        padding: 16px;
        font-size: 1rem;
        background: #2E86C1;
        color: #fff;
        border-radius: 6px;
    }

    .programme-table tbody td.table-label {
        background: #EBF5FB;
        padding: 14px 16px 4px;
        text-align: left;
        white-space: normal;
        border-bottom: none;
        font-size: 0.95rem;
        color: #2E86C1;
        border-radius: 6px 6px 0 0;
        font-weight: 700;
    }

    .programme-table tbody td.table-value {
        padding: 4px 16px 16px;
        text-align: left;
        border-bottom: none;
        font-size: 0.9rem;
        background: #F4FAFE;
        border-radius: 0 0 6px 6px;
        padding-left: 16px;
    }

    /* For multi-column tables, show each row as a card */
    .programme-table tbody td[style*="text-align: center"] {
        text-align: left !important;
    }

    .programme-table tbody td[rowspan] {
        margin-top: 8px;
    }

    .programme-table thead th.table-header-value {
        text-align: left;
    }

    .programme-table .table-total-row td {
        text-align: left !important;
    }

    /* Data-label display for multi-column tables on mobile */
    .programme-table tbody td.table-value[data-label]::before {
        content: attr(data-label);
        display: block;
        font-family: var(--font-primary);
        font-size: 0.75rem;
        font-weight: 700;
        color: #2E86C1;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 3px;
    }

    .programme-table tbody td.table-value[data-label] {
        padding: 10px 16px;
        border-radius: 6px;
        margin-bottom: 4px;
    }

    /* Card-style rows with spacing */
    .programme-table tbody tr {
        margin-bottom: 12px;
        padding-bottom: 8px;
        border-left: 3px solid #2E86C1;
        border-radius: 6px;
        background: #F4FAFE;
        overflow: hidden;
    }

    .programme-table .table-total-row {
        border-left-color: var(--accent);
        background: #D6EAF8;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .tests-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .result-big-stat {
        min-height: 250px;
    }

    .result-overlay {
        min-height: 250px;
        padding: 40px var(--padding-x);
    }

    .rn-value {
        font-size: 3.5rem;
    }

    .rn-suffix {
        font-size: 2.2rem;
    }

    .rn-label {
        font-size: 1.1rem;
        margin-top: 8px;
        line-height: 1.5;
    }

    .result-numbers {
        flex-direction: column;
        gap: 30px;
    }

    .result-cards-row {
        grid-template-columns: 1fr 1fr;
    }

    .nsat-content {
        padding: 30px var(--padding-x);
    }

    .nsat-features {
        grid-template-columns: 1fr;
    }

    .nsat-steps {
        flex-direction: column;
        align-items: flex-start;
    }

    .nsat-step-arrow {
        transform: rotate(90deg);
        align-self: center;
    }

    .branches-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .hero-scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    :root {
        --padding-x: 16px;
    }

    .section {
        padding: 50px 0;
    }



    .hero-image,
    .hero-form-wrapper {
        max-width: 100%;
    }

    .btn {
        padding: 14px 24px;
        font-size: 0.9rem;
    }

    .hero-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        flex-direction: row;
        gap: 10px;
        padding: 12px 16px;
        background: #fff;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
        z-index: 2000;
        align-items: center;
    }

    .hero-cta .btn {
        flex: 1;
        width: auto;
        padding: 12px 2px;
        font-size: 0.7rem;
        border-radius: 8px;
        justify-content: center;
    }

    .hero-cta .btn i {
        display: none;
    }

    /* Add space at bottom of body so content isn't hidden by sticky CTA */
    body {
        padding-bottom: 70px;
    }

    .whatsapp-float {
        bottom: 85px;
        left: 20px;
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }

    .back-to-top {
        bottom: 85px;
        right: 20px;
        width: 42px;
        height: 42px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .tests-cards {
        grid-template-columns: 1fr;
    }

    .result-cards-row {
        grid-template-columns: 1fr;
    }

    .branches-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 24px var(--padding-x);
    }

    .nsat-content {
        padding: 24px var(--padding-x);
    }

    .experience-badge {
        right: 16px;
        padding: 14px 20px;
    }

    .exp-number {
        font-size: 1.6rem;
    }

    .programme-table-wrapper {
        overflow-x: visible;
        border: none;
        margin: 12px 0 20px;
        border-radius: 0;
        background: transparent;
    }

    .programme-table {
        width: 100%;
        min-width: 100%;
        border-collapse: separate;
        border-spacing: 4px;
    }

    .programme-table,
    .programme-table thead,
    .programme-table tbody,
    .programme-table th,
    .programme-table td,
    .programme-table tr {
        display: block;
        width: 100%;
    }

    .programme-table thead th.table-header-label {
        display: none;
    }

    .programme-table thead th,
    .programme-table tbody td {
        padding: 10px 14px;
        font-size: 0.82rem;
        border: none;
    }

    .programme-table tbody td.table-label {
        width: 100%;
        min-width: unset;
        background: #EBF5FB;
        color: #2E86C1;
        border: none;
        text-align: left;
        font-weight: 700;
        padding: 12px 14px 4px;
        border-radius: 6px 6px 0 0;
        font-size: 0.85rem;
    }

    .programme-table tbody td.table-value {
        text-align: left !important;
        padding: 4px 14px 12px;
        padding-left: 14px;
        border-radius: 0 0 6px 6px;
        font-size: 0.82rem;
    }

    .programme-table tbody td[style*="text-align: center"] {
        text-align: left !important;
    }

    .programme-table .table-total-row td {
        text-align: left !important;
    }

    .programme-table thead th.table-header-value {
        text-align: left;
        padding: 14px;
        font-size: 0.9rem;
        background: #2E86C1;
        color: #fff;
        border-radius: 6px;
    }

    .programme-details-title {
        font-size: clamp(1.3rem, 5vw, 1.8rem);
    }

    .table-subtitle {
        font-size: 0.95rem;
        letter-spacing: 1px;
        text-align: left;
    }

    .table-subtitle::after {
        margin: 8px 0 0;
    }

    /* Data-label display for multi-column tables on small mobile */
    .programme-table tbody td.table-value[data-label]::before {
        content: attr(data-label);
        display: block;
        font-family: var(--font-primary);
        font-size: 0.7rem;
        font-weight: 700;
        color: #2E86C1;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 2px;
    }

    .programme-table tbody td.table-value[data-label] {
        padding: 8px 14px;
        border-radius: 6px;
        margin-bottom: 3px;
    }

    /* Card-style rows with spacing */
    .programme-table tbody tr {
        margin-bottom: 10px;
        padding-bottom: 6px;
        border-left: 3px solid #2E86C1;
        border-radius: 6px;
        background: #F4FAFE;
        overflow: hidden;
    }

    .programme-table .table-total-row {
        border-left-color: var(--accent);
        background: #D6EAF8;
    }

    .marquee-item {
        font-size: 0.8rem;
    }

    .modal-content {
        padding: 30px var(--padding-x);
    }
}

/* ===== CTA BANNER: PHYSICS & CHEMISTRY FOCUSED SUPPORT ===== */
.cta-phy-chem-banner {
    position: relative;
    margin: 60px 0 20px;
    padding: 48px 40px;
    border-radius: 20px;
    background: linear-gradient(135deg, #0B3D91 0%, #1565C0 40%, #0D47A1 100%);
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(11, 61, 145, 0.25), 0 0 0 1px rgba(255,255,255,0.08) inset;
}

.cta-banner-glow {
    position: absolute;
    top: -60%;
    right: -15%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(232, 117, 26, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: cta-glow-pulse 5s ease-in-out infinite alternate;
}

@keyframes cta-glow-pulse {
    0% { opacity: 0.6; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.15); }
}

.cta-banner-content {
    position: relative;
    z-index: 1;
}

.cta-banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    background: rgba(232, 117, 26, 0.2);
    border: 1px solid rgba(232, 117, 26, 0.45);
    border-radius: 9999px;
    font-family: var(--font-primary);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #F5921C;
    margin-bottom: 20px;
}

.cta-banner-badge i {
    font-size: 0.85rem;
}

.cta-banner-title {
    font-family: var(--font-primary);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 800;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 17px;
    max-width: 700px;
}

.cta-highlight {
    position: relative;
    display: inline-block;
    color: #FFC107;
}

.cta-highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(255, 193, 7, 0.2);
    border-radius: 4px;
    z-index: -1;
}

.cta-banner-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.1rem;
    margin-bottom: 30px;
    max-width: 760px;
}

.cta-banner-desc strong {
    color: #fff;
}

/* Subject cards grid */
.cta-banner-subjects {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.cta-subject-card {
    display: flex;
    gap: 18px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    backdrop-filter: blur(8px);
    transition: all 0.35s ease;
}

.cta-subject-card:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.cta-subject-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: #fff;
}

.cta-physics-icon {
    background: linear-gradient(135deg, #42A5F5, #1E88E5);
    box-shadow: 0 6px 20px rgba(30, 136, 229, 0.35);
}

.cta-chemistry-icon {
    background: linear-gradient(135deg, #66BB6A, #43A047);
    box-shadow: 0 6px 20px rgba(67, 160, 71, 0.35);
}

.cta-subject-info h4 {
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.cta-subject-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.cta-subject-info ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.cta-subject-info ul li i {
    font-size: 0.72rem;
    color: #FFC107;
    min-width: 14px;
}

/* Highlight chips */
.cta-banner-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.cta-highlight-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.cta-highlight-item:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-highlight-item i {
    color: #FFC107;
    font-size: 0.9rem;
}

/* CTA Button */
.cta-banner-btn {
    font-size: 1rem;
    padding: 14px 32px;
    background: linear-gradient(135deg, #E8751A, #F5921C) !important;
    box-shadow: 0 6px 24px rgba(232, 117, 26, 0.45);
    border-radius: 9999px;
    font-weight: 700;
}

.cta-banner-btn:hover {
    box-shadow: 0 10px 36px rgba(232, 117, 26, 0.6);
    transform: translateY(-3px) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-phy-chem-banner {
        padding: 32px var(--padding-x);
        margin: 40px 0 16px;
        border-radius: 16px;
    }

    .cta-banner-subjects {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .cta-subject-card {
        padding: 18px;
    }

    .cta-banner-title {
        font-size: 1.15rem;
    }

    .cta-banner-highlights {
        gap: 8px;
    }

    .cta-highlight-item {
        font-size: 0.78rem;
        padding: 6px 14px;
    }

    .cta-banner-btn {
        padding: 12px 24px;
        font-size: 0.92rem;
        width: 100%;
        justify-content: center;
    }

    .cta-banner-glow {
        width: 280px;
        height: 280px;
        top: -30%;
        right: -20%;
    }
}

@media (max-width: 480px) {
    .cta-phy-chem-banner {
        padding: 24px var(--padding-x);
    }

    .cta-subject-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* ===== CTA BANNER: ADMISSION OPEN 2026-27 ===== */
.cta-admission-banner {
    position: relative;
    margin: 40px 0 60px;
    padding: 50px;
    /*border-radius: 24px;*/
    background: linear-gradient(135deg, #0B3175 0%, #0B3D91 50%, #1565C0 100%);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(11, 61, 145, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    text-align: center;
}

.cta-admission-banner .cta-banner-content {
    max-width: 850px;
    margin: 0 auto;
}

.cta-admission-banner .cta-banner-title {
    max-width: 100%;
}

.cta-admission-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 35px;
}

.cta-admission-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    font-weight: 500;
}

.cta-admission-item i {
    color: #FBC02D;
    font-size: 1.1rem;
}

.cta-banner-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cta-seats-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
}

.pulse-indicator {
    width: 8px;
    height: 8px;
    background-color: #f44336;
    border-radius: 50%;
    position: relative;
}

.pulse-indicator::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #f44336;
    border-radius: 50%;
    animation: pulse-ring 1.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(0.7); opacity: 0.8; }
    80%, 100% { transform: scale(2.5); opacity: 0; }
}

@media (max-width: 768px) {
    .cta-admission-banner {
        padding: 40px 24px;
        margin: 30px 0 50px;
    }
    
    .cta-admission-features {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
        max-width: 300px;
        margin: 0 auto 30px;
    }
    
    .cta-admission-item {
        font-size: 0.88rem;
    }
}
/* ===== STICKY/FLOATING BUTTONS ===== */
.floating-btn-fees {
    position: fixed;
    right: 0;
    top: 35%;
    z-index: 999;
    display: none;
}

@media (min-width: 1024px) {
    .floating-btn-fees {
        display: block;
    }
}

.btn-fees {
    transform: rotate(-90deg) translateY(100%);
    transform-origin: bottom right;
    background-color: #034da2;
    color: white;
    border-radius: 8px 8px 0 0;
    padding: 12px 24px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: -2px -4px 12px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.btn-fees:hover {
    padding-bottom: 20px;
}

.floating-btn-download {
    position: fixed;
    left: 0;
    top: 50%;
    z-index: 999;
    display: none;
}

@media (min-width: 1024px) {
    .floating-btn-download {
        display: block;
    }
}

.btn-download {
    transform: rotate(90deg) translateY(100%);
    transform-origin: top left;
    background-color: #034da2;
    color: white;
    border-radius: 8px 8px 0 0;
    padding: 12px 24px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 2px -4px 12px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.btn-download:hover {
    padding-bottom: 20px;
}

.floating-btn-fees-mobile {
    position: fixed;
    top: 50%;
    right: 0;
    z-index: 999;
    display: block;
}

@media (min-width: 1024px) {
    .floating-btn-fees-mobile {
        display: none;
    }
}

.btn-fees-mobile {
    transform: rotate(-90deg) translateY(100%);
    transform-origin: bottom right;
    background-color: #f97316;
    color: #fff;
    border-radius: 8px 8px 0 0;
    padding: 12px 24px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: -2px -4px 12px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.floating-btn-contacts {
    position: fixed;
    right: 20px;
    top: 55%;
    z-index: 998;
    display: none;
}

@media (min-width: 1024px) {
    .floating-btn-contacts {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
}

.floating-btn-contact-item {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    color: white;
    transition: var(--transition);
}

.floating-btn-contact-item:hover {
    transform: scale(1.1);
}

.floating-btn-call {
    background-color: #f97316;
}

.floating-btn-whatsapp {
    background-color: #25D366;
}

/* ===== MOBILE BOTTOM BAR ===== */
.mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 64px;
    background-color: #0877be;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

@media (min-width: 1024px) {
    .mobile-bottom-bar {
        display: none;
    }
}

.mobile-bottom-bar-wrapper {
    height: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.mobile-bottom-bar-inner {
    display: flex;
    height: 100%;
}

.mobile-bottom-btn {
    flex: 1;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: var(--transition);
    gap: 2px;
}

.mobile-bottom-btn:active {
    background-color: #00406a;
}

.mobile-bottom-btn span {
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.2;
}

.download-btn {
    background-color: #000;
}

.call-btn, .whatsapp-btn {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}
