:root {
    --primary-navy: #1A2C5B;
    --navy-dark: #0D1B3E;
    --navy-deep: #0F1E3C;
    --accent-gold: #FFBE00;
    --accent-green: #1D9E74;
    --secondary-green: #147A5A;
    --white: #ffffff;
    --light-bg: #f8faff;
    --off-white: #f5f7fa;
    --text-main: #333333;
    --text-muted: #666666;
    --text-light: #e0e0e0;
    --transition-slow: 0.5s ease;
    --transition-fast: 0.3s ease;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Nunito', sans-serif;
    --container-width: 1200px;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* GENERAL STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-navy);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

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

.bg-light {
    background-color: var(--light-bg);
}

.dark-bg {
    background-color: var(--navy-deep);
    color: var(--white);
}

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

.mt-5 {
    margin-top: 3rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    font-family: var(--font-body);
}

.btn-gold {
    background-color: var(--accent-gold);
    color: var(--primary-navy);
    border: 2px solid var(--accent-gold);
}

.btn-gold:hover {
    background-color: transparent;
    color: var(--accent-gold);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--primary-navy);
}

.btn-apply {
    background-color: var(--accent-gold);
    color: var(--primary-navy);
    padding: 10px 20px;
    font-size: 0.8rem;
}

.btn-apply:hover {
    background-color: var(--accent-green);
    border-color: var(--accent-green);
    color: var(--white);
}

.btn-block {
    width: 100%;
}

.btn-outline-green {
    background-color: transparent;
    color: var(--accent-green);
    border: 2px solid var(--accent-green);
}

.btn-outline-green:hover {
    background-color: var(--accent-green);
    color: var(--white);
}

/* SECTION 1: HEADER & NAVIGATION */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-slow);
    padding: 0px;
    background-color: var(--white);
}

.main-header.scrolled {
    background-color: var(--white);
    padding: 10px 0;
    box-shadow: var(--shadow-medium);
}

.navbar.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: none;
    padding: 0 5%;
}



.logo-container .logo {
    display: flex;
    align-items: center;
}

#school-logo {
    height: 80px;
    margin-right: 15px;
}

.logo-text .school-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-navy);
    font-weight: 800;
}

.main-header.scrolled .logo-text .school-name {
    color: var(--accent-green);
}


.nav-links {
    display: flex;
}

.nav-links li {
    position: relative;
    list-style: none;
}


.nav-links li a {
    padding: 10px 15px;
    font-weight: 700;
    color: #000000;
    font-size: .8rem;
    display: flex;
    align-items: center;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    background-color: var(--white);
    box-shadow: var(--shadow-medium);
    border-radius: 8px;
    padding: 10px 0;
    display: none;
    z-index: 1001;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-menu li {
    width: 100%;
    margin-bottom: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 6px 20px;
    font-size: 0.85rem;
    color: var(--primary-navy);
    font-weight: 600;
    transition: var(--transition-fast);
}

.dropdown-menu li a:hover {
    background-color: rgba(26, 44, 91, 0.05);
    color: var(--accent-gold);
}

.dropdown>a::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 8px;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-links li.dropdown:hover>a::after {
    transform: rotate(180deg);
}

.mobile-nav-links .dropdown.open>a::after {
    transform: rotate(180deg);
}

.nav-links li a.active,
.nav-links li a:hover {
    color: var(--accent-gold);
}

.nav-actions {
    display: flex;
    align-items: center;
}

.header-phone {
    margin-right: 20px;
    font-weight: 700;
    color: var(--primary-navy);
    display: flex;
    align-items: center;
}

.header-phone i {
    margin-right: 8px;
    color: var(--accent-gold);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-navy);
    cursor: pointer;
    margin-left: 15px;
    z-index: 1200;
    /* Must be higher than mobile-drawer (1100) */
    position: relative;
}


/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--white);
    z-index: 1100;
    padding: 80px 20px 40px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.5s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-drawer.open {
    right: 0;
}

.mobile-nav-links li {
    margin-bottom: 5px;
}

.mobile-nav-links li a {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-navy);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 10px;
    border-bottom: 1px solid #f0f0f0;
    transition: var(--transition-fast);
}

.mobile-nav-links li a:hover,
.mobile-nav-links li a.active {
    color: var(--accent-gold);
    background-color: rgba(255, 190, 0, 0.05);
}

/* Mobile Drawer Dropdown */
.mobile-nav-links .dropdown>a::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.mobile-nav-links .dropdown.open>a::after {
    transform: rotate(180deg);
}

.mobile-nav-links .dropdown .dropdown-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    display: none;
    opacity: 1;
    transform: none;
    background-color: #f8f9fc;
    border-left: 3px solid var(--accent-gold);
    margin-left: 10px;
}

.mobile-nav-links .dropdown.open .dropdown-menu {
    display: block;
}

.mobile-nav-links .dropdown .dropdown-menu li a {
    font-size: 0.95rem;
    padding: 10px 15px;
    font-weight: 600;
    border-bottom: 1px solid #eee;
}

.drawer-footer {
    margin-top: auto;
    padding-top: 20px;
}

.btn-apply-mobile {
    display: block;
    width: 100%;
    text-align: center;
    background-color: var(--accent-gold);
    color: var(--primary-navy);
    padding: 14px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.btn-apply-mobile:hover {
    background-color: var(--accent-green);
    color: var(--white);
}


/* SECTION 2: HERO SECTION */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 44, 91, 0.85) 0%, rgba(13, 27, 62, 0.6) 100%);
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-highlight {
    color: var(--accent-gold);
    /* School Gold */
}


.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
}

.hero .motto {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--accent-gold);
}

.hero-btns .btn {
    margin-right: 20px;
}

/* Stats Bar */
.hero-stats-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.hero-stats-bar {
    display: flex;
    justify-content: space-around;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-gold);
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* MODERN SCROLL INDICATOR V2 */
.scroll-down-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.mouse-scroll-v2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mouse-scroll-v2:hover {
    transform: translateY(5px);
}

.mouse-scroll-v2 .mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 12px;
    position: relative;
    display: block;
    margin-bottom: 10px;
}

.mouse-scroll-v2 .wheel {
    width: 4px;
    height: 8px;
    background-color: var(--accent-gold);
    /* Brand Gold */
    border-radius: 2px;
    position: absolute;
    left: 50%;
    top: 6px;
    transform: translateX(-50%);
    animation: scroll-v2 2s linear infinite;
}

.mouse-scroll-v2 .scroll-arrow {
    font-size: 0.9rem;
    color: var(--white);
    opacity: 0.6;
    animation: pulse-arrow 2s infinite;
}

@keyframes scroll-v2 {
    0% {
        opacity: 1;
        top: 6px;
    }

    100% {
        opacity: 0;
        top: 25px;
    }
}

@keyframes pulse-arrow {

    0%,
    100% {
        opacity: 0.3;
        transform: translateY(0);
    }

    50% {
        opacity: 1;
        transform: translateY(5px);
    }
}


/* INNER PAGES */

.inner-hero {
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--primary-navy);
    padding-top: 80px;
}

.inner-hero h1 {
    font-size: 3.5rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.inner-hero p {
    font-size: 1.2rem;
    color: var(--white);
    opacity: 0.8;
}

.page-content {
    padding: 100px 0;
}


/* SECTION 3: WELCOME / ABOUT INTRO */
.about-intro {
    background-color: var(--white);
}

.split-layout {
    display: flex;
}

.left-panel {
    flex: 40%;
    background-color: #E6F0FF;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.panel-bg-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--primary-navy) 0.5px, transparent 0.5px);
    background-size: 20px 20px;
    opacity: 0.05;
}

.floating-logo {
    width: 250px;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.1));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.right-panel {
    flex: 60%;
    padding: 80px;
}

.tag-label {
    display: inline-block;
    padding: 5px 15px;
    background-color: rgba(245, 166, 35, 0.1);
    color: var(--text-main);
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.feature-box {
    display: flex;
    align-items: center;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-navy);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    margin-right: 15px;
}

.feature-box h4 {
    font-family: var(--font-heading);
    font-size: .9rem;
    color: var(--primary-navy);
}

.learn-more-link {
    color: var(--accent-gold);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
}

.learn-more-link i {
    margin-left: 10px;
}


/* SECTION 4: ACADEMIC PROGRAMS */
/* SECTION: ACADEMICS */
.academics-section {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.academics-section .section-title {
    font-size: 2.8rem;
    color: var(--primary-navy);
    margin-bottom: 10px;
    font-weight: 800;
}

.academics-section .section-subtitle {
    color: var(--accent-green);
    font-weight: 700;
    margin-bottom: 60px;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.academic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
    gap: 35px;
}

.academic-card {
    background-color: var(--white);
    padding: 45px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    text-align: left;
    transition: all 0.4s ease;
    border-left: 6px solid transparent;
    position: relative;
    overflow: hidden;
}

.academic-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(29, 158, 116, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.academic-card.blue-accent {
    border-left-color: #4A90E2;
}

.academic-card.green-accent {
    border-left-color: var(--accent-green);
}

.academic-card.purple-accent {
    border-left-color: #9013FE;
}

.academic-card.orange-accent {
    border-left-color: var(--accent-gold);
}

.academic-card.pink-accent {
    border-left-color: #BD10E0;
}

.academic-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.academic-card .card-icon {
    width: 65px;
    height: 65px;
    background-color: var(--off-white);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.academic-card.blue-accent .card-icon {
    color: #4A90E2;
    background: rgba(74, 144, 226, 0.08);
}

.academic-card.green-accent .card-icon {
    color: var(--accent-green);
    background: rgba(29, 158, 116, 0.08);
}

.academic-card.purple-accent .card-icon {
    color: #9013FE;
    background: rgba(144, 19, 254, 0.08);
}

.academic-card.orange-accent .card-icon {
    color: var(--accent-gold);
    background: rgba(255, 190, 0, 0.08);
}

.academic-card.pink-accent .card-icon {
    color: #BD10E0;
    background: rgba(189, 16, 224, 0.08);
}

.academic-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    background-color: var(--primary-navy);
    color: var(--white);
}

.academic-card h3 {
    margin-bottom: 12px;
    font-size: 1.8rem;
    color: var(--primary-navy);
    font-weight: 700;
}

.grade-label {
    display: inline-block;
    padding: 4px 12px;
    background-color: var(--light-bg);
    border-radius: 6px;
    font-weight: 700;
    color: var(--accent-green);
    margin-bottom: 15px;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.academic-card .description {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.6;
}

.card-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-navy);
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.card-link i {
    margin-left: 8px;
    transition: all 0.3s ease;
}

.card-link:hover {
    color: var(--accent-green);
}

.card-link:hover i {
    transform: translateX(5px);
}



/* SECTION 5: WHY CHOOSE AIS (IMAGE SPLIT VERSION) */
.why-ais-section {
    padding: 60px 0;
    background-color: #fffcf6;
}

.split-layout-v2 {
    display: flex;
    gap: 60px;
    align-items: center;
}

.left-image-panel {
    flex: 0 0 45%;
}

.side-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 10px;
}

.right-content-panel {
    flex: 1;
}

.top-label {
    display: inline-block;
    color: var(--accent-green);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    position: relative;
    padding-bottom: 5px;
}

.top-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-green);
}

.right-content-panel .main-heading {
    color: var(--primary-navy);
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
}

.section-lead {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 600px;
}

.features-grid-v2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 25px;
}

.feature-item-v2 {
    display: flex;
    align-items: flex-start;
}

.icon-box-v2 {
    min-width: 70px;
    height: 70px;
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: var(--primary-navy);
    margin-right: 20px;
    box-shadow: 6px 6px 0px rgba(29, 158, 116, 0.1);
    /* The signature offset shadow from image */
    transition: var(--transition-fast);
}

.feature-item-v2:hover .icon-box-v2 {
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0px rgba(29, 158, 116, 0.2);
    border-color: var(--accent-green);
    color: var(--accent-green);
}

.feature-text-v2 h5 {
    font-size: .9rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.feature-text-v2 p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-muted);
    margin: 0;
}

/* Response for modern split v2 */
@media (max-width: 1024px) {
    .split-layout-v2 {
        flex-direction: column;
    }

    .left-image-panel {
        flex: 0 0 100%;
        width: 100%;
    }

    .side-img {
        height: 400px;
    }
}

@media (max-width: 640px) {
    .features-grid-v2 {
        grid-template-columns: 1fr;
    }

    .right-content-panel .main-heading {
        font-size: 2.2rem;
    }
}


.stats-row {
    padding-top: 80px;
    margin-top: 60px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.stats-row .row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stats-row h2.count-up {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 5px;
    display: block;
    line-height: 1;
}

.stats-row p {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .stats-row .row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .stats-row .row {
        grid-template-columns: 1fr;
    }
}

.facilities-section {
    padding: 60px 0;
    overflow: hidden;
}

.facilities-container {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.facilities-sidebar {
    width: 280px;
}

.facilities-list li {
    padding: 15px 20px;
    background-color: var(--off-white);
    margin-bottom: 10px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
}

.facilities-list li i {
    margin-right: 15px;
    color: var(--accent-green);
}

.facilities-list li.active,
.facilities-list li:hover {
    background-color: var(--primary-navy);
    color: var(--white);
}

.facilities-list li.active i {
    color: var(--accent-gold);
}

/* Bento Grid */
.bento-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
    gap: 20px;
}

.facility-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.facility-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26, 44, 91, 0.9) 0%, rgba(26, 44, 91, 0) 60%);
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--white);
    transition: var(--transition-fast);
}

.facility-card h3 {
    font-size: .8rem;
    margin: 0;
    color: rgb(254 188 32);
}

.hover-desc {
    font-size: 0.85rem;
    height: 0;
    opacity: 0;
    transition: all 0.4s ease;
    margin-top: 10px;
}

.facility-card:hover img {
    transform: scale(1.1);
}

.facility-card:hover .card-overlay {
    background: rgba(26, 44, 91, 0.8);
}

.facility-card:hover .hover-desc {
    height: auto;
    opacity: 1;
}

.card-large {
    grid-column: span 2;
    grid-row: span 2;
}

.card-large h3 {
    font-size: 2rem;
}


/* SECTION 7: ADMISSIONS */
.admissions-section {
    padding: 60px 0;
}

.badge-urgent {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--accent-gold);
    color: var(--primary-navy);
    font-weight: 800;
    border-radius: 5px;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(245, 166, 35, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.admissions-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 60px;
    align-items: start;
}

.process-side h3 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    color: var(--primary-navy);
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 17px;
    top: 5px;
    width: 2px;
    height: 90%;
    background-color: var(--primary-navy);
    opacity: 0.2;
}

.timeline-step {
    position: relative;
    margin-bottom: 40px;
}

.step-num {
    position: absolute;
    left: -50px;
    width: 36px;
    height: 36px;
    background-color: var(--primary-navy);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-weight: 700;
    z-index: 2;
}

.step-content h5 {
    font-size: 1.3rem;
    color: var(--primary-navy);
    margin-bottom: 5px;
}

.step-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Enquiry Form */
/* ENQUIRY CARD V3 (Pill Minimalist Design) */
.admissions-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #fffcf0 0%, #f2fdff 100%);
    /* Extremely light pastel gold to cyan */
}


.enquiry-card {
    background: #f9faff;
    padding: 30px 40px;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    border: none;
}

.enquiry-card .form-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.highlight-text {
    background-color: #aa1f60;
    color: var(--off-white);
    padding: 2px 10px;
    border-radius: 6px;
    display: inline-block;
}


.enquiry-card .form-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.enquiry-card .form-group {
    margin-bottom: 20px;
}

.enquiry-card label {
    display: block;
    text-align: left;
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary-navy);
}

.enquiry-card input,
.enquiry-card select,
.enquiry-card textarea {
    width: 100%;
    padding: 15px 25px;
    border: 1px solid #ddecff;
    border-radius: 50px;
    /* Pill Shape */
    font-size: 1rem;
    background-color: var(--white);
    color: var(--text-main);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
    outline: none;
    transition: var(--transition-fast);
}

.enquiry-card input:focus,
.enquiry-card select:focus,
.enquiry-card textarea:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 10px rgba(255, 190, 0, 0.1);
}

.enquiry-card textarea {
    border-radius: 20px;
    /* Less pill-like but still rounded */
    padding: 20px 25px;
}

.form-row {
    display: flex;
    gap: 20px;
}


/* Reference Style Placeholders */
.enquiry-card input::placeholder,
.enquiry-card textarea::placeholder {
    color: #999;
    font-style: normal;
    opacity: 0.8;
}

.btn-site-visit {
    width: 100%;
    padding: 12px;
    border-radius: 50px;
    border: none;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
    background: linear-gradient(to right, #a91e60 0%, #febc20 45%, #00A3E0 100%);
    /* Modern Black to Blue gradient */
    cursor: pointer;
    margin-top: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-transform: none;
    /* Reference doesn't use all-caps */
}

.btn-site-visit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustment for form row (Legacy - kept for potential subpages) */
@media (max-width: 576px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}


.form-row .form-group {
    flex: 1;
}

.btn-submit-v2 {
    background-color: var(--primary-navy);
    color: var(--white);
    border: none;
    padding: 15px 35px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit-v2:hover {
    background-color: var(--navy-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 44, 91, 0.2);
}

/* Responsive adjustment for form row */
@media (max-width: 576px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}


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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 30px;
    font-family: inherit;
    font-size: 1rem;
}

.key-dates {
    margin-top: 60px;
    display: flex;
    background-color: var(--primary-navy);
    color: var(--white);
    border-radius: 15px;
    overflow: hidden;
}

.date-item {
    flex: 1;
    padding: 30px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.date-item:last-child {
    border-right: none;
}

.date-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--accent-gold);
    font-weight: 800;
    margin-bottom: 10px;
}

.date-val {
    font-weight: 700;
    font-size: 1rem;
}



/* SECTION: HORIZONTAL GALLERY RIBBON */
.gallery-ribbon-section {
    padding: 60px 0;
    overflow: hidden;
    background-color: var(--white);
}


.ribbon-track {
    display: flex;
    gap: 20px;
    width: max-content;
    padding-left: 20px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-nav {
    margin-top: 30px;
}


.ribbon-item {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ribbon-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    border: 1px solid #c5c5c5;
}


.ribbon-item:hover {
    transform: scale(1.02) translateY(-10px);
    z-index: 10;
}

.ribbon-item:hover img {
    transform: scale(1.1);
}


@media (max-width: 768px) {
    .ribbon-item {
        width: 280px;
        height: 350px;
    }
}

/* SECTION 8: TESTIMONIALS (V2 SPLIT) */
.split-layout-test {
    display: flex;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
}

.test-header-panel {
    flex: 0 0 40%;
}

.test-header-panel .section-title {
    font-size: 2.2rem;
    color: var(--primary-navy);
    margin-bottom: 20px;
    font-weight: 800;
}

.test-header-panel .accent-line {
    width: 60px;
    height: 3px;
    background-color: #E53935;
    /* Using the red from the reference image */
    margin-bottom: 30px;
}

.test-header-panel .section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

.test-carousel-panel {
    flex: 1;
    min-width: 0;
    /* Prevents flex items from overflowing */
}

.testimonial-carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: 60px 0 30px;
    width: 100%;
    max-width: 100%;
    /* Ensure container never exceeds viewport */
}

.carousel-inner {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    /* No overflow:hidden here, it's on the wrapper */
}

.testimonial-card-v2 {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    background-color: var(--white);
    padding: 60px 45px 45px;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    text-align: center;
    box-sizing: border-box;
    /* Crucial for padding */
}


.avatar-wrapper {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    background: var(--white);
    padding: 8px;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.avatar-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.card-content {
    position: relative;
}

.quote-icon-v2 {
    font-size: 1.5rem;
    color: #E53935;
    position: absolute;
    opacity: 0.2;
}

.quote-icon-v2.start {
    top: -20px;
    left: -20px;
}

.quote-icon-v2.end {
    bottom: -10px;
    right: -10px;
}

.testimonial-card-v2 h5 {
    font-size: 1.5rem;
    color: var(--primary-navy);
    font-weight: 800;
    margin-bottom: 15px;
}

.testimonial-card-v2 .quote {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-muted);
    font-style: normal;
    max-width: 85%;
    margin: 0 auto;
}

/* SECTION 8: CAROUSEL NAV V3 (Modified) */
.carousel-nav-v3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
    width: 100%;
}

.carousel-nav-v3-inner {
    padding: 7px 25px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(229, 57, 53, 0.2);
}


.nav-btn-v3 {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nav-btn-v3 i {
    color: #E53935;
    font-size: .8;
}

.nav-btn-v3:hover {
    transform: scale(1.05);
}

.dots-pill-v3 {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    padding: 4px 15px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.dot-v3 {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: .8rem;
    color: #E53935;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.dot-v3.active {
    background-color: #E53935;
    color: var(--white);
}

.dot-v3:hover:not(.active) {
    background-color: rgba(229, 57, 53, 0.1);
}


/* Mobile Adjustments */
@media (max-width: 992px) {
    .split-layout-test {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        /* Reduced gap */
        width: 100%;
        padding: 40px 0;
    }


    .test-header-panel {
        flex: 0 0 100%;
    }

    .test-header-panel .accent-line {
        margin: 0 auto 30px;
    }

    .carousel-nav-v2 {
        justify-content: center;
        padding-right: 0;
    }

    .testimonial-card-v2 {
        padding: 60px 20px 30px;
        /* Reduced side padding on mobile */
    }

    .testimonial-card-v2 .quote {
        max-width: 100%;
        /* More text space on mobile */
        font-size: 1rem;
    }

    .avatar-wrapper {
        width: 80px;
        /* Even smaller on iPhone etc */
        height: 80px;
    }

    .dots-pill-v3 {
        padding: 4px 8px;
        /* Compressed for mobile */
        gap: 5px;
    }

    .dot-v3 {
        width: 24px;
        /* Smaller dots */
        height: 24px;
        font-size: 0.7rem;
    }

    .quote-icon-v2.start {
        left: 0;
        /* Move inside on mobile */
        top: 0;
    }

    .quote-icon-v2.end {
        right: 0;
        /* Move inside on mobile */
        bottom: 0;
    }

    .test-carousel-panel {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .testimonial-card-v2 {
        width: 100%;
        max-width: 100%;
    }
}



/* SECTION 9: NEWS & GALLERY */
.news-gallery-section {
    padding: 100px 0;
}

.tab-toggle-container {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    gap: 15px;
}

.tab-btn {
    padding: 12px 35px;
    font-size: 1.2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    border: 2px solid var(--accent-green);
    background: none;
    color: var(--accent-green);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.tab-btn.active {
    background-color: var(--accent-green);
    color: var(--white);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.news-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-fast);
}

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

.news-img {
    position: relative;
    height: 220px;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.date-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--accent-gold);
    color: var(--primary-navy);
    padding: 5px 12px;
    font-weight: 800;
    border-radius: 5px;
    font-size: 0.8rem;
}

.news-body {
    padding: 25px;
}

.news-body h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-navy);
}

.news-body p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.news-link {
    color: var(--accent-green);
    font-weight: 700;
}

/* Gallery */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    background-color: var(--off-white);
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn.active,
.filter-btn:hover {
    background-color: var(--accent-gold);
    color: var(--primary-navy);
}

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

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 44, 91, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 2rem;
    opacity: 0;
    transition: var(--transition-fast);
    cursor: pointer;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-item:hover .gallery-hover {
    opacity: 1;
}




/* SECTION 10: FOOTER */
.main-footer {
    background-color: var(--navy-dark);
    color: var(--white);
    padding-top: 80px;
    border-top: 5px solid var(--accent-gold);
}

.footer-cols {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 80px;
    margin-bottom: 20px;
}

.footer-school-name {
    font-size: 1.6rem;
    color: var(--accent-gold);
    margin-bottom: 5px;
}

.school-motto-footer {
    font-style: italic;
    opacity: 0.8;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.tagline {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--white);
}

.social-icons a:hover {
    background-color: var(--accent-gold);
    color: var(--navy-dark);
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-gold);
}

.col-links ul li {
    margin-bottom: 15px;
}

.col-links ul li a {
    color: var(--text-light);
}

.col-links ul li a:hover {
    color: var(--accent-gold);
    padding-left: 10px;
}

.col-contact p {
    margin-bottom: 15px;
    color: var(--text-light);
    display: flex;
}

.col-contact p i {
    margin-right: 15px;
    color: var(--accent-gold);
    margin-top: 5px;
}

.btn-maps {
    display: inline-block;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 700;
}

.btn-maps:hover {
    background-color: var(--accent-gold);
    color: var(--navy-dark);
}

/* Marquee */
.notice-marquee-wrapper {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
    height: 100px;
    overflow: hidden;
    position: relative;
}

.notice-marquee {
    display: flex;
    flex-direction: column;
    animation: marquee 15s linear infinite;
}

.notice-marquee span {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: var(--text-light);
}

@keyframes marquee {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-300%);
    }
}

.signup-form {
    display: flex;
    margin-top: 10px;
}

.signup-form input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px 0 0 5px;
}

.signup-form button {
    background-color: var(--accent-green);
    color: var(--white);
    border: none;
    padding: 0 15px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

.footer-bottom {
    padding: 30px 0;
    background-color: #0b152d;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--text-muted);
}


/* FLOATERS */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    z-index: 999;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.back-to-top {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--primary-navy);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}


/* ANIMATIONS */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: all 1s ease-out;
}

.reveal-up {
    transform: translateY(50px);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.revealed {
    opacity: 1;
    transform: translate(0, 0);
}

.fade-in-up {
    animation: fadeInUp 1s ease both;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }

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

    .footer-cols {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .nav-links-container,
    .header-phone,
    .nav-actions .btn-apply {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero, .inner-hero {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        overflow: hidden;
    }

    .hero {
        height: 70vh;
    }

    .inner-hero {
        height: 40vh;
    }

    .hero-content {
        text-align: center;
        width: 100%;
    }

    .hero h1,
    .inner-hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .split-layout {
        flex-direction: column;
    }

    .left-panel {
        min-height: 300px;
    }

    .right-panel {
        padding: 40px 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .stats-row .row {
        flex-wrap: wrap;
    }

    .hero-stats-wrapper {
        display: none;
    }

    .scroll-down-indicator {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
    }

    .facilities-container {
        flex-direction: column;
    }

    .facilities-sidebar {
        width: 100%;
    }

    .facilities-list {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .facilities-list li {
        padding: 10px 14px;
        font-size: 0.85rem;
        margin-bottom: 0;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .card-large {
        grid-column: auto;
        grid-row: auto;
    }

    .facility-card {
        height: 250px;
    }

    .insta-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-cols {
        grid-template-columns: 1fr;
    }

    /* Gallery ribbon mobile fix */
    .ribbon-item {
        width: 260px;
        height: 260px;
    }

    /* Testimonials mobile fix */
    .split-layout-test {
        padding: 30px 0;
    }

    /* Enquiry card mobile */
    .enquiry-card {
        padding: 25px 20px;
        border-radius: 20px;
    }

    .enquiry-card .form-title {
        font-size: 1.4rem;
    }

    /* Admissions grid mobile */
    .admissions-grid {
        gap: 30px;
    }

    .process-side h3 {
        font-size: 1.6rem;
    }

    /* Footer mobile */
    .main-footer {
        padding-top: 50px;
    }

    .footer-col h4 {
        margin-bottom: 20px;
    }

    /* Why choose section mobile */
    .right-content-panel .main-heading {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1,
    .inner-hero h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .hero-btns .btn {
        margin-right: 0;
        text-align: center;
    }

    .stats-row .col-3 {
        flex: 100%;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .academic-card {
        padding: 30px 25px;
    }

    .academic-card h3 {
        font-size: 1.4rem;
    }

    .ribbon-item {
        width: 220px;
        height: 220px;
    }

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

    .carousel-nav-v3-inner {
        padding: 5px 15px;
        gap: 10px;
    }
}