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

:root {
    --royal-blue: #002366;
    --royal-blue-light: #003d99;
    --royal-blue-dark: #001a4d;
    --gold: #FFD700;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #2c3e50;
    --text-gray: #555;
}

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

[hidden] {
    display: none !important;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    overflow-x: hidden;
}

/* Top Bar - hidden */
.top-bar {
    display: none;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info span {
    margin-right: 25px;
}

.top-info i {
    margin-right: 8px;
    color: var(--gold);
}

.top-social, .footer-social { display: none; }

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0,35,102,0.1);
    overflow: visible;
}

.navbar {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.logo-img {
    height: 150px;
    width: auto;
    object-fit: contain;
    display: block;
    transform: scale(1.2);
    transform-origin: left center;
}

.logo-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--royal-blue), var(--royal-blue-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,35,102,0.3);
}

.logo-icon i {
    font-size: 32px;
    color: var(--white);
}

.logo-text h1 {
    font-size: 22px;
    font-weight: 700;
    color: var(--royal-blue);
    line-height: 1.2;
}

.logo-text p {
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0 auto;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    position: relative;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--royal-blue);
    transition: width 0.3s;
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    width: 100%;
}

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

.btn-enroll {
    background: linear-gradient(135deg, var(--royal-blue), var(--royal-blue-light));
    color: var(--white);
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,35,102,0.3);
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-enroll:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,35,102,0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--royal-blue);
    border-radius: 3px;
    transition: all 0.3s;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--royal-blue-dark) 0%, var(--royal-blue) 50%, var(--royal-blue-light) 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    pointer-events: none;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    animation: float 8s ease-in-out infinite;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    animation: float 7s ease-in-out infinite;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,215,0,0.2);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid var(--gold);
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-title span {
    color: var(--gold);
    position: relative;
}

.hero-description {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.btn {
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: var(--gold);
    color: var(--royal-blue);
    box-shadow: 0 5px 20px rgba(255,215,0,0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255,215,0,0.6);
}

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

.btn-outline:hover {
    background: var(--white);
    color: var(--royal-blue);
}

.hero-stats {
    display: flex;
    gap: 40px;
}

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

.stat-item h3 {
    font-size: 36px;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

.hero-image {
    position: relative;
}

/* Hero School Image */
.hero-school-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* Fix image-placeholder still used on other pages */
.image-placeholder {
    width: 100%;
    height: 450px;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
}

.image-placeholder i {
    font-size: 120px;
    color: rgba(255,255,255,0.3);
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float 3s ease-in-out infinite;
    z-index: 2;
    max-width: 200px;
}

.floating-card i {
    font-size: 32px;
    color: var(--royal-blue);
}

.floating-card span {
    font-weight: 600;
    color: var(--dark-gray);
}

.card-1 {
    top: 50px;
    left: 0;
}

.card-2 {
    bottom: 50px;
    right: 0;
    animation-delay: 1.5s;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: var(--white);
}

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

.feature-box {
    text-align: center;
    padding: 40px 25px;
    background: var(--light-gray);
    border-radius: 15px;
    transition: all 0.3s;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-box:hover {
    transform: translateY(-10px);
    border-color: var(--royal-blue);
    box-shadow: 0 15px 40px rgba(0,35,102,0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--royal-blue), var(--royal-blue-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 36px;
    color: var(--white);
}

.feature-box h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--royal-blue);
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 14px;
    color: var(--text-gray);
}

/* Vision Section */
.vision-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--royal-blue-dark), var(--royal-blue));
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.vision-card {
    background: rgba(255,255,255,0.1);
    padding: 50px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.3s;
}

.vision-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.15);
}

.vision-icon {
    width: 80px;
    height: 80px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.vision-icon i {
    font-size: 36px;
    color: var(--royal-blue);
}

.vision-card h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.vision-card p {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
}

/* Why Choose Section */
.why-choose-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

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

.subtitle {
    display: inline-block;
    color: var(--royal-blue);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--royal-blue-dark);
}

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

.why-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: var(--royal-blue);
    transition: height 0.3s;
}

.why-card:hover::before {
    height: 100%;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,35,102,0.15);
}

.why-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--gold);
    opacity: 0.3;
    margin-bottom: 15px;
}

.why-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--royal-blue);
    margin-bottom: 15px;
}

.why-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--royal-blue), var(--royal-blue-light));
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

.btn-white {
    background: var(--white);
    color: var(--royal-blue);
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(255,255,255,0.3);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255,255,255,0.5);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Page Banner */
.page-banner {
    min-height: 72vh;
    background: linear-gradient(135deg, #eef3ff 0%, #f5f8ff 40%, #e8f0fe 70%, #f0f4ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

/* Animated grid lines */
.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,35,102,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,35,102,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridDrift 20s linear infinite;
    pointer-events: none;
}

/* Bottom wave */
.page-banner::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 80px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'%3E%3Cpath fill='%23f8f9fa' d='M0,40 C360,80 1080,0 1440,40 L1440,80 L0,80 Z'/%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
    pointer-events: none;
    z-index: 3;
}

@keyframes gridDrift {
    0%   { background-position: 0 0; }
    100% { background-position: 60px 60px; }
}

/* Geometric decorations */
.banner-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
}

/* Diagonal accent bar — top-left */
.banner-decoration::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -60px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0,35,102,0.08), rgba(0,61,153,0.04));
    animation: float 9s ease-in-out infinite;
}

/* Diagonal accent bar — bottom-right */
.banner-decoration::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: linear-gradient(315deg, rgba(0,35,102,0.07), rgba(0,61,153,0.03));
    animation: float 11s ease-in-out infinite reverse;
}

.banner-circle {
    position: absolute;
    border-radius: 50%;
}

/* Large hollow ring — top-right */
.circle-1 {
    width: 500px;
    height: 500px;
    top: -180px;
    right: -120px;
    background: transparent;
    border: 2px solid rgba(0,35,102,0.07);
    animation: float 8s ease-in-out infinite;
}

/* Solid filled circle — bottom-left */
.circle-2 {
    width: 260px;
    height: 260px;
    bottom: -80px;
    left: -60px;
    background: radial-gradient(circle, rgba(0,35,102,0.07) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite reverse;
}

/* Small accent dot cluster — mid-right */
.circle-3 {
    width: 140px;
    height: 140px;
    top: 25%;
    right: 12%;
    background: transparent;
    border: 2px dashed rgba(0,35,102,0.1);
    animation: spinSlow 18s linear infinite;
}

/* Extra floating dots via JS-free CSS — using box-shadow trick */
.banner-circle::before,
.banner-circle::after {
    content: '';
    position: absolute;
    border-radius: 50%;
}

.circle-1::before {
    width: 320px;
    height: 320px;
    top: 60px;
    left: 60px;
    border: 1px solid rgba(0,35,102,0.05);
}

.circle-1::after {
    width: 12px;
    height: 12px;
    background: rgba(0,35,102,0.15);
    top: 200px;
    left: 30px;
    box-shadow:
        80px -120px 0 rgba(0,35,102,0.1),
        -40px 80px 0 rgba(0,35,102,0.08),
        160px 60px 0 rgba(0,35,102,0.06);
    animation: float 5s ease-in-out infinite;
}

.circle-2::before {
    width: 8px;
    height: 8px;
    background: rgba(0,35,102,0.2);
    top: 30px;
    left: 80px;
    box-shadow:
        60px 40px 0 rgba(0,35,102,0.12),
        120px -20px 0 rgba(0,35,102,0.08),
        -30px 100px 0 rgba(0,35,102,0.1);
    animation: float 7s ease-in-out infinite reverse;
}

.circle-2::after {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(0,35,102,0.08);
    top: -20px;
    right: -10px;
    animation: spinSlow 12s linear infinite reverse;
}

@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* ── Floating school items ── */
.banner-item {
    position: absolute;
    pointer-events: none;
    opacity: 0.9;
}

/* Pencil — top-left area */
.item-pencil {
    width: 36px;
    top: 12%;
    left: 6%;
    transform: rotate(-20deg);
    animation: floatItem 7s ease-in-out infinite;
}

/* Ruler — bottom-left, horizontal */
.item-ruler {
    width: 130px;
    bottom: 18%;
    left: 4%;
    transform: rotate(8deg);
    animation: floatItem 9s ease-in-out infinite 1s;
}

/* Eraser — top-right area */
.item-eraser {
    width: 60px;
    top: 15%;
    right: 7%;
    transform: rotate(15deg);
    animation: floatItem 8s ease-in-out infinite 0.5s;
}

/* Book — bottom-right */
.item-book {
    width: 55px;
    bottom: 14%;
    right: 6%;
    transform: rotate(-10deg);
    animation: floatItem 10s ease-in-out infinite 2s;
}

/* Second pencil — mid-left, tilted other way */
.item-pencil2 {
    width: 28px;
    top: 55%;
    left: 3%;
    transform: rotate(30deg);
    animation: floatItem 6s ease-in-out infinite 1.5s;
}

/* Star — top-center-right */
.item-star {
    width: 38px;
    top: 8%;
    right: 22%;
    animation: floatItem 5s ease-in-out infinite 0.8s;
}

@keyframes floatItem {
    0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
    50%       { transform: translateY(-14px) rotate(var(--r, 0deg)); }
}

/* Override per-item rotation so float doesn't reset it */
.item-pencil  { --r: -20deg; }
.item-ruler   { --r:   8deg; }
.item-eraser  { --r:  15deg; }
.item-book    { --r: -10deg; }
.item-pencil2 { --r:  30deg; }
.item-star    { --r:   0deg; }

@media (max-width: 768px) {
    .item-ruler  { width: 90px; }
    .item-book   { width: 40px; }
    .item-eraser { width: 44px; }
    .item-pencil, .item-pencil2 { width: 26px; }
    .item-star   { width: 28px; }
}

@media (max-width: 480px) {
    .item-ruler, .item-book { display: none; }
    .item-pencil  { left: 3%; }
    .item-eraser  { right: 4%; }
    .item-pencil2 { display: none; }
}

.banner-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 40px;
}

.banner-tag {
    display: inline-block;
    background: rgba(0,35,102,0.08);
    color: var(--royal-blue);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
    border: 1px solid rgba(0,35,102,0.12);
    animation: fadeInScale 0.6s ease-out 0.2s both;
}

.page-banner h1 {
    font-size: 58px;
    font-weight: 800;
    color: var(--royal-blue-dark);
    margin-bottom: 16px;
    line-height: 1.15;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.page-banner p {
    font-size: 17px;
    color: var(--royal-blue);
    font-weight: 400;
    line-height: 1.75;
    max-width: 620px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

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

/* History Section */
.history-section {
    padding: 100px 0;
    background: var(--white);
}

.history-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.section-badge {
    display: inline-block;
    background: rgba(0,35,102,0.1);
    color: var(--royal-blue);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.history-text h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--royal-blue-dark);
    margin-bottom: 25px;
}

.history-text p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.history-timeline {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 20px;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

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

.timeline-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--royal-blue), var(--royal-blue-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.timeline-icon i {
    font-size: 24px;
    color: var(--white);
}

.timeline-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--royal-blue);
    margin-bottom: 5px;
}

.timeline-content p {
    font-size: 14px;
    color: var(--text-gray);
}

/* Affiliation Section */
.affiliation-section {
    padding: 60px 0;
    background: var(--light-gray);
}

.affiliation-box {
    background: linear-gradient(135deg, var(--royal-blue), var(--royal-blue-light));
    padding: 50px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 10px 40px rgba(0,35,102,0.2);
}

.affiliation-icon {
    width: 100px;
    height: 100px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.affiliation-icon i {
    font-size: 48px;
    color: var(--royal-blue);
}

.affiliation-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.affiliation-content p {
    font-size: 16px;
    color: rgba(255,255,255,0.95);
    line-height: 1.8;
}

/* Messages Section - With Photo for Correspondent */
.messages-section {
    padding: 100px 0;
    background: var(--white);
}

.messages-grid {
    display: grid;
    gap: 40px;
}

.message-box {
    background: var(--light-gray);
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,35,102,0.12);
    transition: all 0.3s;
}

.message-box:hover {
    box-shadow: 0 15px 50px rgba(0,35,102,0.18);
}

/* Correspondent Message with Photo */
.correspondent-message {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 0;
    background: var(--white);
}

.message-profile {
    background: linear-gradient(135deg, var(--royal-blue-dark), var(--royal-blue));
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.profile-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--gold);
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.profile-info h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}

.profile-info p {
    font-size: 14px;
    color: var(--gold);
    font-weight: 600;
}

/* Principal Message without Photo */
.message-header {
    background: linear-gradient(135deg, var(--royal-blue-dark), var(--royal-blue));
    padding: 30px 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.message-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,215,0,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--gold);
    flex-shrink: 0;
}

.message-icon i {
    font-size: 32px;
    color: var(--gold);
}

.message-header h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 5px;
}

.message-header p {
    font-size: 14px;
    color: var(--gold);
    font-weight: 600;
}

.message-text {
    padding: 40px;
    background: var(--white);
}

.quote-icon {
    font-size: 40px;
    color: var(--gold);
    opacity: 0.3;
    margin-bottom: 20px;
    display: block;
}

.message-text p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 18px;
}

.message-text p:first-of-type {
    font-size: 18px;
    font-weight: 600;
    color: var(--royal-blue);
}

.signature {
    font-style: italic;
    font-weight: 700;
    color: var(--royal-blue);
    margin-top: 25px;
    font-size: 16px;
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background: var(--light-gray);
}

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

.value-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,35,102,0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--royal-blue), var(--royal-blue-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 36px;
    color: var(--white);
}

.value-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--royal-blue);
    margin-bottom: 10px;
}

.value-card p {
    font-size: 14px;
    color: var(--text-gray);
}

/* Curriculum Section */
.curriculum-section {
    padding: 100px 0;
    background: var(--white);
}

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

.curriculum-image .image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--royal-blue), var(--royal-blue-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.curriculum-image .image-placeholder i {
    font-size: 100px;
    color: rgba(255,255,255,0.3);
}

.curriculum-text h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--royal-blue-dark);
    margin-bottom: 20px;
}

.curriculum-text > p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.curriculum-features {
    display: grid;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-item i {
    font-size: 24px;
    color: var(--gold);
}

.feature-item span {
    font-size: 15px;
    color: var(--text-gray);
}

/* Academic Excellence */
.academic-excellence {
    padding: 100px 0;
    background: var(--light-gray);
}

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

.excellence-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.excellence-card:hover {
    border-color: var(--royal-blue);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,35,102,0.15);
}

.excellence-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--royal-blue), var(--royal-blue-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.excellence-icon i {
    font-size: 36px;
    color: var(--white);
}

.excellence-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--royal-blue);
    margin-bottom: 15px;
}

.excellence-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
}

.facilities-intro {
    text-align: center;
    font-size: 16px;
    color: var(--text-gray);
    max-width: 800px;
    margin: -30px auto 50px;
    line-height: 1.8;
}

/* Facilities Section */
.facilities-section {
    padding: 100px 0;
    background: var(--white);
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.facility-card {
    display: flex;
    gap: 25px;
    background: var(--light-gray);
    padding: 35px;
    border-radius: 15px;
    transition: all 0.3s;
    width: 100%;
    align-items: flex-start;
}

.facility-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,35,102,0.1);
}

.facility-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--royal-blue), var(--royal-blue-light));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.facility-image i {
    font-size: 36px;
    color: var(--white);
}

.facility-content {
    flex: 1;
}

.facility-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--royal-blue);
    margin-bottom: 10px;
}

.facility-content p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: var(--light-gray);
}

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

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
}

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

.gallery-placeholder {
    height: 300px;
    background: linear-gradient(135deg, var(--royal-blue), var(--royal-blue-light));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.gallery-placeholder i {
    font-size: 64px;
    color: rgba(255,255,255,0.8);
}

.gallery-placeholder h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
}

/* Contact Info Section */
.contact-info-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.contact-card {
    background: var(--light-gray);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,35,102,0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--royal-blue), var(--royal-blue-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 32px;
    color: var(--white);
}

.contact-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--royal-blue);
    margin-bottom: 15px;
}

.contact-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Admission Form Section */
.admission-form-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-info {
    background: linear-gradient(135deg, var(--royal-blue-dark), var(--royal-blue));
    padding: 50px;
    color: var(--white);
}

.form-info h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
}

.form-info > p {
    font-size: 15px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    line-height: 1.7;
}

.info-list {
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.info-item i {
    font-size: 20px;
    color: var(--gold);
}

.info-item span {
    font-size: 14px;
}

.admission-highlights h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--gold);
}

.admission-highlights ul {
    list-style: none;
}

.admission-highlights li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    font-size: 14px;
}

.admission-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.form-container {
    padding: 50px;
}

.admission-form {
    display: grid;
    gap: 20px;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--royal-blue);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--royal-blue);
}

.btn-submit {
    background: linear-gradient(135deg, var(--royal-blue), var(--royal-blue-light));
    color: var(--white);
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0,35,102,0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,35,102,0.4);
}

/* Map Section */
.map-section {
    padding: 100px 0;
    background: var(--white);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.faq-grid {
    display: grid;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--royal-blue);
}

.faq-question i {
    font-size: 20px;
    color: var(--royal-blue);
    transition: transform 0.3s;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-answer p {
    padding-bottom: 25px;
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Footer */
.footer {
    background: var(--royal-blue-dark);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 36px;
    color: var(--gold);
}

.footer-logo h3 {
    font-size: 22px;
    font-weight: 700;
}

.footer-col p {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 20px;
}

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

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

.footer-social a:hover {
    background: var(--gold);
    color: var(--royal-blue);
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--gold);
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

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

.contact-info li {
    display: flex;
    align-items: start;
    gap: 10px;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    margin-bottom: 12px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.footer-admin-link {
    display: inline-block;
    margin-top: 12px;
    color: var(--gold);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

/* Enhanced Responsive Design */

/* Large Desktop (1440px+) */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-title {
        font-size: 64px;
    }
    
    .section-header h2 {
        font-size: 48px;
    }
}

/* Desktop (1200px - 1440px) - Default styles apply */

/* Laptop (1024px - 1200px) */
@media (max-width: 1200px) {
    .container {
        max-width: 1000px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-content {
        gap: 40px;
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .excellence-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet Landscape (768px - 1024px) */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-image {
        order: 2;
        max-width: 560px;
        margin: 0 auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .vision-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .history-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .curriculum-content {
        grid-template-columns: 1fr;
    }
    
    .affiliation-box {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .gallery-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-header h2 {
        font-size: 36px;
    }
}

/* Tablet Portrait (600px - 768px) - ENHANCED MOBILE VIEW */
@media (max-width: 768px) {
    body {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .top-bar {
        padding: 8px 0;
        font-size: 12px;
    }

    .top-bar .container {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }

    .top-info {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    
    .top-info span {
        margin-right: 0;
    }
    
    .top-social a {
        width: 30px;
        height: 30px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(255,255,255,0.1);
        border-radius: 50%;
        margin-left: 6px;
    }
    
    /* Enhanced Navbar */
    .navbar {
        padding: 8px 0;
    }

    .logo-img {
        height: 75px;
        transform: none;
    }
    
    .logo-text h1 {
        font-size: 18px;
    }
    
    .logo-text p {
        font-size: 11px;
    }
    
    .logo-icon {
        width: 50px;
        height: 50px;
    }
    
    .logo-icon i {
        font-size: 24px;
    }
    
    .hamburger {
        display: flex;
        width: 30px;
        height: 30px;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        z-index: 1001;
        cursor: pointer;
    }
    
    .hamburger span {
        width: 100%;
        height: 3px;
        border-radius: 2px;
        transition: all 0.3s;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
        background: var(--white);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
        background: var(--white);
    }
    
    .nav-menu {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, rgba(0, 23, 77, 0.98) 0%, rgba(0, 35, 102, 0.98) 100%);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 80px 30px 30px;
        gap: 0;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }
    
    .nav-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,215,0,0.03)" stroke-width="1"/></svg>');
        opacity: 0.5;
    }
    
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        width: 100%;
        max-width: 400px;
        text-align: center;
        padding: 0;
        margin-bottom: 12px;
        transform: translateY(30px);
        opacity: 0;
        transition: all 0.4s;
        border: none;
    }
    
    .nav-menu.active li {
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.3s; }
    
    .nav-menu a {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px 30px;
        font-size: 18px;
        font-weight: 700;
        color: var(--white);
        background: rgba(255, 255, 255, 0.05);
        border: 2px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        position: relative;
        overflow: hidden;
        transition: all 0.3s;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        font-size: 15px;
    }
    
    .nav-menu a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
        transition: left 0.5s;
    }
    
    .nav-menu a:hover::before {
        left: 100%;
    }
    
    .nav-menu a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 3px;
        background: var(--gold);
        transition: width 0.3s;
    }
    
    .nav-menu a:hover::after,
    .nav-menu a.active::after {
        width: 80%;
    }
    
    .nav-menu a:hover,
    .nav-menu a.active {
        background: rgba(255, 215, 0, 0.15);
        border-color: var(--gold);
        transform: scale(1.05);
        box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .btn-enroll {
        display: none;
    }
    
    /* Enhanced Hero Section */
    .hero-section {
        padding: 50px 0 40px;
        min-height: auto;
    }
    
    .hero-badge {
        font-size: 11px;
        padding: 8px 16px;
        margin-bottom: 20px;
        animation: fadeInScale 0.6s ease-out;
    }
    
    .hero-title {
        font-size: 30px;
        line-height: 1.3;
        margin-bottom: 18px;
        animation: fadeInUp 0.8s ease-out 0.2s both;
    }
    
    .hero-subtitle,
    .hero-description {
        font-size: 15px;
        margin-bottom: 25px;
        line-height: 1.7;
        animation: fadeInUp 0.8s ease-out 0.4s both;
    }
    
    .btn {
        padding: 14px 32px;
        font-size: 15px;
        border-radius: 25px;
        font-weight: 600;
        box-shadow: 0 4px 15px rgba(0,35,102,0.2);
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 35px;
        animation: fadeInUp 0.8s ease-out 0.6s both;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 10px;
        flex-wrap: nowrap;
        justify-content: center;
        animation: fadeInUp 0.8s ease-out 0.8s both;
    }
    
    .stat-item {
        flex: 1;
        min-width: 0;
        padding: 12px 8px;
        background: rgba(255,255,255,0.1);
        border-radius: 12px;
        backdrop-filter: blur(10px);
        text-align: center;
    }
    
    .stat-item h3 {
        font-size: 24px;
        margin-bottom: 4px;
        white-space: nowrap;
    }
    
    .stat-item p {
        font-size: 11px;
        line-height: 1.3;
        word-break: break-word;
    }
    
    .hero-image .image-placeholder {
        height: 280px;
        margin-top: 30px;
        animation: fadeInScale 0.8s ease-out 1s both;
    }

    .hero-school-image {
        height: 260px;
        margin-top: 24px;
        border-radius: 14px;
    }
    
    /* Enhanced Feature Cards */
    .features-section {
        padding: 50px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .feature-box {
        padding: 28px 22px;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    }
    
    .feature-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 15px;
    }
    
    .feature-icon i {
        font-size: 30px;
    }
    
    .feature-box h3 {
        font-size: 17px;
        margin-bottom: 8px;
    }
    
    .feature-box p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    /* Enhanced Sections */
    .vision-section,
    .why-choose-section,
    .history-section,
    .messages-section,
    .values-section,
    .facilities-section,
    .gallery-section {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 35px;
    }
    
    .section-header h2 {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .subtitle {
        font-size: 12px;
        letter-spacing: 1.5px;
    }
    
    /* Enhanced Vision Cards */
    .vision-card {
        padding: 35px 25px;
        border-radius: 15px;
    }
    
    .vision-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .vision-card h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .vision-card p {
        font-size: 15px;
        line-height: 1.7;
    }
    
    /* Enhanced Why Choose Cards */
    .why-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .why-card {
        padding: 28px 22px;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    }
    
    .why-number {
        font-size: 42px;
        margin-bottom: 12px;
    }
    
    .why-card h3 {
        font-size: 19px;
        margin-bottom: 10px;
    }
    
    .why-card p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    /* Enhanced Excellence Cards */
    .excellence-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .excellence-card {
        padding: 28px 22px;
        border-radius: 12px;
    }
    
    /* Enhanced Value Cards */
    .values-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .value-card {
        padding: 28px 22px;
        border-radius: 12px;
    }
    
    /* Enhanced Facility Cards */
    .facilities-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        width: 100%;
        max-width: 100%;
    }
    
    .facility-card {
        padding: 25px 20px;
        flex-direction: column;
        text-align: center;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        width: 100%;
        max-width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .facility-image {
        margin: 0 auto 18px;
        width: 70px;
        height: 70px;
    }
    
    .facility-content h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .facility-content p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    /* Enhanced Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .gallery-placeholder {
        height: 220px;
        border-radius: 12px;
    }
    
    .gallery-placeholder i {
        font-size: 50px;
    }
    
    .gallery-placeholder h4 {
        font-size: 16px;
    }
    
    /* Enhanced Contact Cards */
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    
    .contact-card {
        padding: 28px 16px;
        border-radius: 12px;
        text-align: center;
        align-items: center;
    }

    .contact-card h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .contact-card p {
        font-size: 13px;
        line-height: 1.6;
        word-break: break-word;
    }
    
    .contact-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 18px;
    }
    
    /* Enhanced Form */
    .form-wrapper {
        grid-template-columns: 1fr;
        border-radius: 15px;
    }
    
    .form-info,
    .form-container {
        padding: 35px 22px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-group {
        margin-bottom: 18px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px;
        font-size: 15px;
        border-radius: 10px;
    }
    
    .btn-submit {
        padding: 16px 32px;
        font-size: 16px;
        border-radius: 25px;
    }
    
    /* Enhanced Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer {
        padding: 45px 0 25px;
    }
    
    .footer-col h4 {
        font-size: 17px;
        margin-bottom: 18px;
    }
    
    .footer-col ul li {
        margin-bottom: 12px;
        font-size: 14px;
    }
    
    .page-banner {
        min-height: 55vh;
        padding: 0 16px;
    }

    .banner-content {
        padding: 40px 24px;
        max-width: 100%;
        border-radius: 0;
    }

    .page-banner h1 {
        font-size: 36px;
        line-height: 1.2;
    }

    .page-banner p {
        font-size: 16px;
    }
    
    .banner-circle {
        opacity: 0.7;
    }
    
    .circle-1 {
        width: 300px;
        height: 300px;
        top: -120px;
        right: -80px;
    }
    
    .circle-2 {
        width: 200px;
        height: 200px;
        bottom: -70px;
        left: -50px;
    }
    
    .circle-3 {
        width: 100px;
        height: 100px;
        top: 20%;
        right: 8%;
    }
    
    /* Enhanced CTA */
    .cta-section {
        padding: 50px 0;
    }
    
    .cta-content h2 {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .cta-content p {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    /* Enhanced Affiliation */
    .affiliation-box {
        flex-direction: column;
        text-align: center;
        padding: 35px 22px;
        border-radius: 15px;
    }
    
    .affiliation-icon {
        width: 85px;
        height: 85px;
        margin-bottom: 20px;
    }
    
    .affiliation-content h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .affiliation-content p {
        font-size: 14px;
        line-height: 1.7;
    }
    
    /* Enhanced History */
    .history-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .history-text h2 {
        font-size: 26px;
    }
    
    .history-text p {
        font-size: 14px;
        line-height: 1.7;
    }
    
    .history-timeline {
        padding: 25px 20px;
        border-radius: 12px;
    }
    
    .timeline-item {
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .timeline-icon {
        width: 55px;
        height: 55px;
    }
    
    .timeline-icon i {
        font-size: 22px;
    }
    
    /* Enhanced Messages */
    .messages-grid {
        gap: 30px;
    }
    
    .correspondent-message {
        grid-template-columns: 1fr;
    }
    
    .message-profile {
        padding: 40px 25px;
    }
    
    .profile-img {
        width: 150px;
        height: 150px;
        border-width: 4px;
    }
    
    .profile-info h3 {
        font-size: 22px;
    }
    
    .profile-info p {
        font-size: 13px;
    }
    
    .message-box {
        border-radius: 16px;
        box-shadow: 0 8px 24px rgba(0,35,102,0.12);
    }
    
    .message-header {
        padding: 25px 22px;
        flex-direction: row;
    }
    
    .message-icon {
        width: 60px;
        height: 60px;
        border-width: 2px;
    }
    
    .message-icon i {
        font-size: 28px;
    }
    
    .message-header h3 {
        font-size: 20px;
    }
    
    .message-header p {
        font-size: 12px;
    }
    
    .message-text {
        padding: 28px 22px;
    }
    
    .quote-icon {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .message-text p {
        font-size: 14px;
        text-align: left;
        line-height: 1.7;
        margin-bottom: 15px;
    }
    
    .message-text p:first-of-type {
        font-size: 15px;
        font-weight: 600;
    }
    
    .signature {
        font-size: 14px;
        margin-top: 20px;
    }
}

/* Mobile Landscape (480px - 600px) - PREMIUM POLISH */
@media (max-width: 600px) {
    .container {
        padding: 0 16px;
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-school-image {
        height: 210px;
        border-radius: 12px;
    }
    
    /* Fix Facility Cards */
    .facility-card {
        padding: 28px 20px;
        flex-direction: column;
        text-align: center;
        border-radius: 16px;
        box-shadow: 0 8px 24px rgba(0,35,102,0.12);
        border: 1px solid rgba(0,35,102,0.05);
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .facility-image {
        margin: 0 auto 20px;
        width: 75px;
        height: 75px;
        box-shadow: 0 8px 20px rgba(0,35,102,0.25);
    }
    
    .facility-content {
        width: 100%;
    }
    
    .facility-content h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .facility-content p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    /* Premium Hero */
    .hero-section {
        padding: 45px 0 35px;
    }
    
    .hero-title {
        font-size: 26px;
        font-weight: 800;
        letter-spacing: -0.5px;
    }
    
    .hero-description {
        font-size: 14px;
        opacity: 0.95;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 14px;
        width: 100%;
        font-weight: 700;
        letter-spacing: 0.3px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
    }
    
    /* Enhanced Stats */
    .stat-item {
        padding: 14px 8px;
        background: rgba(255,255,255,0.15);
        border-radius: 15px;
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255,255,255,0.2);
    }
    
    .stat-item h3 {
        font-size: 22px;
        font-weight: 800;
        white-space: nowrap;
    }
    
    .stat-item p {
        font-size: 10px;
        font-weight: 600;
        opacity: 0.9;
        line-height: 1.3;
    }
    
    /* Premium Cards */
    .section-header h2 {
        font-size: 24px;
        font-weight: 800;
        letter-spacing: -0.5px;
    }
    
    .subtitle {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 2px;
    }
    
    .feature-box,
    .why-card,
    .value-card,
    .excellence-card,
    .contact-card {
        padding: 24px 14px;
        border-radius: 16px;
        box-shadow: 0 8px 24px rgba(0,35,102,0.12);
        background: var(--white);
        border: 1px solid rgba(0,35,102,0.05);
        text-align: center;
        align-items: center;
    }

    .contact-card h3 {
        font-size: 15px;
    }

    .contact-card p {
        font-size: 12px;
        line-height: 1.6;
        word-break: break-word;
    }
    
    .feature-box:active,
    .why-card:active,
    .value-card:active,
    .excellence-card:active,
    .contact-card:active {
        transform: scale(0.98);
        box-shadow: 0 4px 12px rgba(0,35,102,0.15);
    }
    
    /* Enhanced Icons */
    .feature-icon,
    .value-icon,
    .excellence-icon,
    .contact-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 18px;
        box-shadow: 0 8px 20px rgba(0,35,102,0.25);
    }
    
    .why-number {
        font-size: 38px;
        font-weight: 900;
        margin-bottom: 15px;
    }
    
    /* Premium Typography */
    .feature-box h3,
    .why-card h3,
    .value-card h3,
    .excellence-card h3,
    .contact-card h3 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 10px;
        color: var(--royal-blue-dark);
    }
    
    .feature-box p,
    .why-card p,
    .value-card p,
    .excellence-card p,
    .contact-card p {
        font-size: 14px;
        line-height: 1.65;
        color: var(--text-gray);
    }
    
    /* Premium Facility Cards */
    .facility-card {
        padding: 28px 20px;
        border-radius: 16px;
        box-shadow: 0 8px 24px rgba(0,35,102,0.12);
        border: 1px solid rgba(0,35,102,0.05);
    }
    
    .facility-image {
        width: 75px;
        height: 75px;
        margin-bottom: 20px;
        box-shadow: 0 8px 20px rgba(0,35,102,0.25);
    }
    
    /* Premium Gallery */
    .gallery-placeholder {
        height: 240px;
        border-radius: 16px;
        box-shadow: 0 8px 24px rgba(0,35,102,0.12);
    }
    
    .gallery-placeholder i {
        font-size: 56px;
    }
    
    .gallery-placeholder h4 {
        font-size: 17px;
        font-weight: 700;
    }
    
    .page-banner {
        min-height: 50vh;
    }

    .page-banner h1 {
        font-size: 30px;
    }

    .circle-1::after, .circle-2::before {
        display: none;
    }
    
    /* Premium CTA */
    .cta-content h2 {
        font-size: 26px;
        font-weight: 800;
        letter-spacing: -0.5px;
    }
    
    .cta-content p {
        font-size: 14px;
        opacity: 0.95;
    }
    
    /* Premium Messages */
    .message-box {
        border-radius: 16px;
        box-shadow: 0 8px 24px rgba(0,35,102,0.12);
        border: 1px solid rgba(0,35,102,0.05);
    }
    
    .message-text {
        padding: 28px 20px;
    }
    
    .profile-img {
        width: 120px;
        height: 120px;
        border-width: 4px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    }
    
    /* Premium Form */
    .form-info,
    .form-container {
        padding: 30px 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 14px;
        border-radius: 12px;
        border: 2px solid rgba(0,35,102,0.1);
        transition: all 0.3s;
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: var(--royal-blue);
        box-shadow: 0 0 0 4px rgba(0,35,102,0.1);
    }
    
    .btn-submit {
        padding: 16px 32px;
        font-size: 15px;
        font-weight: 700;
        border-radius: 25px;
        box-shadow: 0 8px 20px rgba(0,35,102,0.3);
    }
    
    .btn-submit:active {
        transform: scale(0.98);
    }
    
    /* Premium Footer */
    .footer-col h4 {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 16px;
    }
    
    .footer-col ul li {
        margin-bottom: 10px;
        font-size: 13px;
    }
    
    /* Premium Vision Cards */
    .vision-card {
        padding: 32px 22px;
        border-radius: 16px;
        box-shadow: 0 8px 24px rgba(255,255,255,0.15);
        border: 1px solid rgba(255,255,255,0.2);
    }
    
    .vision-icon {
        width: 75px;
        height: 75px;
        box-shadow: 0 8px 20px rgba(255,215,0,0.4);
    }
    
    /* Premium Affiliation */
    .affiliation-box {
        padding: 32px 22px;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0,35,102,0.25);
    }
    
    .affiliation-icon {
        width: 90px;
        height: 90px;
        box-shadow: 0 10px 25px rgba(255,215,0,0.5);
    }
    
    /* Premium History Timeline */
    .history-timeline {
        padding: 28px 20px;
        border-radius: 16px;
        box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    }
    
    .timeline-icon {
        width: 60px;
        height: 60px;
        box-shadow: 0 6px 16px rgba(0,35,102,0.25);
    }
}

/* Mobile Portrait (320px - 480px) */
@media (max-width: 480px) {
    .logo-text h1 {
        font-size: 16px;
    }
    
    .logo-text p {
        font-size: 10px;
    }
    
    .logo-icon {
        width: 44px;
        height: 44px;
    }
    
    .logo-icon i {
        font-size: 22px;
    }

    /* Single column everything on small phones */
    .features-grid {
        grid-template-columns: 1fr;
    }

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

    .gallery-category-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .stat-item h3 {
        font-size: 28px;
    }
    
    .stat-item p {
        font-size: 12px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 28px;
    }
    
    .feature-box h3 {
        font-size: 16px;
    }
    
    .feature-box p {
        font-size: 13px;
    }
    
    .section-title h2,
    .section-header h2 {
        font-size: 22px;
    }
    
    .subtitle {
        font-size: 12px;
    }
    
    .why-number {
        font-size: 36px;
    }
    
    .why-card h3 {
        font-size: 18px;
    }
    
    .page-banner h1 {
        font-size: 26px;
    }
    
    .page-banner p {
        font-size: 14px;
    }
    
    .cta-content h2 {
        font-size: 22px;
    }
    
    .cta-content p {
        font-size: 14px;
    }
    
    .affiliation-icon {
        width: 80px;
        height: 80px;
    }
    
    .affiliation-icon i {
        font-size: 36px;
    }
    
    .affiliation-content h2 {
        font-size: 22px;
    }
    
    .profile-img {
        width: 120px;
        height: 120px;
    }
    
    .profile-info h3 {
        font-size: 20px;
    }
    
    .quote-icon {
        font-size: 32px;
    }
    
    .message-text p {
        font-size: 14px;
        text-align: left;
    }

    .hero-school-image {
        height: 190px;
    }

    .admin-preview__grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom p {
        font-size: 12px;
    }
}

/* Extra Small Mobile (320px) */
@media (max-width: 360px) {
    .hero-title {
        font-size: 20px;
    }
    
    .section-title h2,
    .section-header h2 {
        font-size: 20px;
    }
    
    .feature-box,
    .why-card,
    .value-card {
        padding: 22px 14px;
    }

    .hero-school-image {
        height: 170px;
    }

    .page-banner h1 {
        font-size: 22px;
    }

    .logo-text h1 {
        font-size: 14px;
    }

    .logo-icon {
        width: 38px;
        height: 38px;
    }

    .logo-icon i {
        font-size: 18px;
    }
}

.signature {
    font-style: italic;
    font-weight: 600;
    color: var(--royal-blue);
    margin-top: 20px;
    font-size: 16px;
}

/* Advanced Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

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

/* Enhanced Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--white), transparent);
}

.hero-text {
    animation: slideInLeft 1s ease-out;
}

.hero-image {
    animation: slideInRight 1s ease-out;
}

.hero-badge {
    animation: fadeInScale 0.8s ease-out 0.3s both;
}

.stat-item {
    animation: fadeInScale 0.8s ease-out both;
}

.stat-item:nth-child(1) { animation-delay: 0.5s; }
.stat-item:nth-child(2) { animation-delay: 0.7s; }
.stat-item:nth-child(3) { animation-delay: 0.9s; }

/* Enhanced Feature Cards */
.feature-box {
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,215,0,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
}

.feature-box:hover::before {
    left: 100%;
}

.feature-icon {
    animation: pulse 2s ease-in-out infinite;
}

.feature-box:hover .feature-icon {
    animation: none;
    transform: rotateY(360deg);
    transition: transform 0.6s;
}

/* Enhanced Vision Cards */
.vision-card {
    position: relative;
    overflow: hidden;
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

.vision-card:hover::before {
    left: 100%;
}

.vision-icon {
    animation: pulse 2s ease-in-out infinite;
}

/* Enhanced Why Choose Cards */
.why-card {
    position: relative;
}

.why-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 50px 50px 0;
    border-color: transparent var(--gold) transparent transparent;
    opacity: 0;
    transition: opacity 0.3s;
}

.why-card:hover::after {
    opacity: 0.2;
}

.why-number {
    background: linear-gradient(135deg, var(--gold), #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced Message Cards */
.message-box {
    position: relative;
    overflow: hidden;
}

.message-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--royal-blue), var(--gold), var(--royal-blue));
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.message-box:hover::before {
    opacity: 1;
    animation: rotate 3s linear infinite;
}

.profile-img {
    position: relative;
    box-shadow: 0 5px 20px rgba(0,35,102,0.3);
    transition: all 0.3s;
}

.message-box:hover .profile-img {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0,35,102,0.5);
}

/* Enhanced Timeline */
.timeline-item {
    position: relative;
    animation: slideInRight 0.6s ease-out both;
}

.timeline-item:nth-child(1) { animation-delay: 0.2s; }
.timeline-item:nth-child(2) { animation-delay: 0.4s; }
.timeline-item:nth-child(3) { animation-delay: 0.6s; }

.timeline-icon {
    position: relative;
    box-shadow: 0 5px 15px rgba(0,35,102,0.3);
}

.timeline-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 2px solid var(--royal-blue);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
    animation: ping 2s ease-out infinite;
}

@keyframes ping {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Enhanced Affiliation Box */
.affiliation-box {
    position: relative;
    overflow: hidden;
}

.affiliation-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

.affiliation-icon {
    box-shadow: 0 10px 30px rgba(255,215,0,0.5);
    animation: pulse 2s ease-in-out infinite;
}

/* Enhanced Facility Cards */
.facility-card {
    position: relative;
    overflow: hidden;
}

.facility-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 0;
    background: var(--gold);
    transition: height 0.3s;
}

.facility-card:hover::before {
    height: 100%;
}

.facility-image {
    position: relative;
    box-shadow: 0 5px 15px rgba(0,35,102,0.2);
}

.facility-card:hover .facility-image {
    animation: pulse 0.6s ease-in-out;
}

/* Enhanced Gallery Items */
.gallery-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.gallery-placeholder {
    position: relative;
    transition: all 0.4s;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,215,0,0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
}

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

.gallery-item:hover .gallery-placeholder {
    transform: scale(1.1);
}

/* Enhanced Contact Cards */
.contact-card {
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,35,102,0.05), transparent);
    transition: left 0.6s;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-icon {
    box-shadow: 0 5px 20px rgba(0,35,102,0.3);
    transition: all 0.3s;
}

.contact-card:hover .contact-icon {
    transform: rotateY(360deg);
}

/* Enhanced Form */
.form-wrapper {
    position: relative;
    overflow: hidden;
}

.form-info {
    position: relative;
}

.form-info::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, transparent 70%);
    animation: rotate 15s linear infinite;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,35,102,0.2);
}

.btn-submit {
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-submit:hover::before {
    width: 300px;
    height: 300px;
}

/* Enhanced Page Banner */
.page-banner h1 {
    animation: fadeInScale 0.8s ease-out;
}

.page-banner p {
    animation: fadeInScale 0.8s ease-out 0.2s both;
}

/* Enhanced Excellence Cards */
.excellence-card {
    position: relative;
}

.excellence-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--royal-blue), var(--gold), var(--royal-blue));
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity 0.3s;
}

.excellence-card:hover::before {
    opacity: 1;
    animation: shimmer 2s linear infinite;
}

/* Enhanced Value Cards */
.value-card {
    position: relative;
    overflow: hidden;
}

.value-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to top, rgba(0,35,102,0.05), transparent);
    transition: height 0.3s;
}

.value-card:hover::after {
    height: 100%;
}

.value-icon {
    box-shadow: 0 5px 20px rgba(0,35,102,0.3);
    transition: all 0.3s;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Enhanced CTA Section */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.btn-white {
    position: relative;
    overflow: hidden;
}

.btn-white::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,35,102,0.1), transparent);
    transition: left 0.6s;
}

.btn-white:hover::before {
    left: 100%;
}

/* Scroll Reveal Animation */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Footer */
.footer {
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--royal-blue), var(--gold), var(--royal-blue));
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

.footer-social a {
    position: relative;
    overflow: hidden;
}

.footer-social a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--gold);
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

.footer-social a:hover::before {
    width: 100%;
    height: 100%;
}

.footer-social a i {
    position: relative;
    z-index: 1;
}

/* Parallax Effect */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Responsive for Messages */
@media (max-width: 1024px) {
    .correspondent-message {
        grid-template-columns: 260px 1fr;
    }
    .profile-img {
        width: 160px;
        height: 160px;
    }
    .message-text {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .correspondent-message {
        grid-template-columns: 1fr !important;
    }
    .message-profile {
        padding: 35px 25px;
    }
    .profile-img {
        width: 140px;
        height: 140px;
    }
    .message-text {
        padding: 28px 22px;
    }
}

/* Prevent Horizontal Overflow - Global Fix */
section {
    overflow-x: hidden;
    width: 100%;
}

.hero-shapes {
    overflow: hidden;
}

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



/* Gallery Admin + Dynamic Gallery */
.gallery-intro {
    max-width: 700px;
    margin: 15px auto 0;
    color: var(--text-gray);
    font-size: 16px;
}

.gallery-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

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

.gallery-category-card {
    position: relative;
    border: none;
    border-radius: 24px;
    padding: 34px 28px 70px;
    min-height: 260px;
    background: linear-gradient(135deg, var(--royal-blue), var(--royal-blue-light));
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0,35,102,0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.gallery-category-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,25,80,0.62) 0%, rgba(0,35,102,0.78) 60%, rgba(0,20,60,0.92) 100%);
    pointer-events: none;
    z-index: 0;
}

.gallery-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(0,35,102,0.32);
}

.gallery-category-card:hover::before {
    background: linear-gradient(180deg, rgba(0,25,80,0.45) 0%, rgba(0,35,102,0.65) 60%, rgba(0,20,60,0.85) 100%);
}

.gallery-category-card::after {
    content: attr(data-gallery-count);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px 24px;
    border-top: 1px solid rgba(255,255,255,0.18);
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    background: rgba(0,0,0,0.3);
    border-radius: 0 0 24px 24px;
    z-index: 1;
}

.gallery-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(0,35,102,0.24);
}

.gallery-category-card--empty {
    opacity: 0.9;
}

.gallery-category-card__icon,
.gallery-category-card h3,
.gallery-category-card p {
    position: relative;
    z-index: 1;
}

/* Per-card background images */
.gallery-category-card[data-gallery-trigger="Campus Photos"] {
    background-image: url('https://images.unsplash.com/photo-1580582932707-520aed937b7b?w=600&q=80');
}
.gallery-category-card[data-gallery-trigger="School Events"] {
    background-image: url('https://images.unsplash.com/photo-1540575467063-178a50c2df87?w=600&q=80');
}
.gallery-category-card[data-gallery-trigger="Classroom Activities"] {
    background-image: url('https://images.unsplash.com/photo-1503676260728-1c00da094a0b?w=600&q=80');
}
.gallery-category-card[data-gallery-trigger="CCTV Facilities"] {
    background-image: url('https://images.unsplash.com/photo-1557597774-9d273605dfa9?w=600&q=80');
}
.gallery-category-card[data-gallery-trigger="Fire Safety Facilities"] {
    background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=600&q=80');
}
.gallery-category-card[data-gallery-trigger="Sports Activities"] {
    background-image: url('https://images.unsplash.com/photo-1461896836934-ffe607ba8211?w=600&q=80');
}
.gallery-category-card[data-gallery-trigger="Arts & Culture"] {
    background-image: url('https://images.unsplash.com/photo-1514320291840-2e0a9bf2a9ae?w=600&q=80');
}
.gallery-category-card[data-gallery-trigger="Science Lab"] {
    background-image: url('https://images.unsplash.com/photo-1532094349884-543559059a6b?w=600&q=80');
}
.gallery-category-card[data-gallery-trigger="Library"] {
    background-image: url('https://images.unsplash.com/photo-1521587760476-6c12a4b040da?w=600&q=80');
}

.gallery-category-card__icon {
    width: 92px;
    height: 92px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.gallery-category-card__icon i {
    font-size: 44px;
    color: rgba(255,255,255,0.9);
}

.gallery-category-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.gallery-category-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.88);
    line-height: 1.7;
}

.gallery-toolbar__info span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0,35,102,0.08);
    color: var(--royal-blue);
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 600;
}

.dynamic-gallery-grid {
    margin-bottom: 30px;
}

.gallery-card {
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,35,102,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,35,102,0.16);
}

.gallery-card__image-wrap {
    width: 100%;
    border: none;
    padding: 0;
    background: none;
    cursor: pointer;
    display: block;
}

.gallery-card__image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.gallery-card__content {
    padding: 22px;
}

.gallery-card__tag,
.admin-gallery-item__tag {
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255,215,0,0.2);
    color: var(--royal-blue-dark);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.gallery-card__content h3 {
    font-size: 20px;
    color: var(--royal-blue);
    margin-bottom: 10px;
}

.gallery-card__content p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.7;
}

.gallery-section-block {
    margin-bottom: 40px;
}

.gallery-section-block__header {
    margin-bottom: 20px;
}

.gallery-section-block__header h3 {
    color: var(--royal-blue);
    font-size: 28px;
    margin-bottom: 8px;
}

.gallery-section-block__header p {
    color: var(--text-gray);
    font-size: 15px;
}

.gallery-empty-state {
    display: none;
    margin-top: 28px;
}

.gallery-empty-state__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 24px;
    border-radius: 20px;
    background: var(--white);
    border: 1px solid rgba(0,35,102,0.08);
    box-shadow: 0 12px 30px rgba(0,35,102,0.08);
}

.gallery-empty-state__icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    border-radius: 18px;
    background: rgba(0,35,102,0.08);
    color: var(--royal-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.gallery-empty-state__text {
    flex: 1;
}

.gallery-empty-state__text h4 {
    font-size: 22px;
    color: var(--royal-blue-dark);
    margin-bottom: 6px;
}

.gallery-empty-state__text p {
    margin: 0;
    color: var(--text-gray);
    line-height: 1.7;
}

.gallery-empty-state__cta {
    white-space: nowrap;
}

.gallery-overlay {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.gallery-overlay.active {
    display: flex;
}

.gallery-overlay__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 16, 48, 0.58);
    backdrop-filter: blur(10px);
}

.gallery-overlay__dialog {
    position: relative;
    z-index: 1;
    width: min(1080px, 100%);
    max-height: calc(100vh - 48px);
    overflow: auto;
    padding: 28px;
    border-radius: 28px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.28);
    box-shadow: 0 24px 80px rgba(0,0,0,0.24);
    backdrop-filter: blur(22px);
}

.gallery-overlay__close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    color: var(--white);
    cursor: pointer;
}

.gallery-overlay__header {
    color: var(--white);
    margin-bottom: 22px;
    padding-right: 60px;
}

.gallery-overlay__header .subtitle {
    color: rgba(255,255,255,0.8);
}

.gallery-overlay__header h3 {
    font-size: 34px;
    margin-bottom: 8px;
}

.gallery-overlay__header p {
    color: rgba(255,255,255,0.84);
}

.gallery-overlay__body {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    align-items: center;
}

.gallery-overlay__viewer {
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255,255,255,0.08);
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-overlay__viewer img {
    width: 100%;
    max-height: 68vh;
    object-fit: contain;
    display: block;
}

.gallery-overlay__nav {
    width: 54px;
    height: 54px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    color: var(--white);
    cursor: pointer;
    font-size: 18px;
    flex-shrink: 0;
}

.gallery-overlay__footer {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
    color: var(--white);
}

.gallery-overlay__meta strong {
    display: block;
    font-size: 22px;
    margin-bottom: 8px;
}

.gallery-overlay__meta p {
    color: rgba(255,255,255,0.84);
}

.gallery-overlay__count {
    white-space: nowrap;
    font-weight: 700;
    color: rgba(255,255,255,0.88);
}

.gallery-overlay__thumbs {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
    gap: 12px;
}

.gallery-overlay__thumb {
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    background: rgba(255,255,255,0.08);
    cursor: pointer;
}

.gallery-overlay__thumb.active {
    border-color: var(--gold);
}

.gallery-overlay__thumb img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    display: block;
}

.admin-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.admin-login-card {
    max-width: 520px;
    margin: 0 auto 30px;
    background: var(--white);
    border-radius: 22px;
    padding: 35px;
    box-shadow: 0 14px 40px rgba(0,35,102,0.12);
}

.admin-login-form {
    max-width: 100%;
}

.admin-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
    align-items: start;
}

.admin-panel {
    background: var(--white);
    border-radius: 22px;
    padding: 35px;
    box-shadow: 0 14px 40px rgba(0,35,102,0.12);
}

.admin-section-title {
    text-align: left;
    margin-bottom: 30px;
}

.gallery-admin-form {
    display: grid;
    gap: 20px;
}

.form-help {
    display: block;
    margin-top: 8px;
    color: var(--text-gray);
    font-size: 13px;
}

.admin-preview {
    min-height: 240px;
    border: 2px dashed rgba(0,35,102,0.2);
    border-radius: 18px;
    background: #f4f7fb;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.admin-preview__placeholder {
    text-align: center;
    color: var(--text-gray);
    padding: 25px;
}

.admin-preview__placeholder i {
    font-size: 44px;
    color: var(--royal-blue);
    margin-bottom: 15px;
}

.admin-preview__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
    padding: 14px;
}

.admin-preview__thumb {
    border-radius: 14px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 8px 18px rgba(0, 35, 102, 0.12);
}

.admin-preview__image {
    width: 100%;
    height: 100%;
    min-height: 120px;
    object-fit: cover;
    display: block;
}

.admin-preview__count {
    width: 100%;
    padding: 0 18px 18px;
    text-align: center;
    color: var(--royal-blue);
    font-weight: 600;
}

.admin-note {
    margin-top: 22px;
    background: rgba(0,35,102,0.06);
    border-left: 4px solid var(--royal-blue);
    border-radius: 14px;
    padding: 18px;
    display: flex;
    gap: 14px;
    color: var(--text-gray);
}

.admin-note i {
    color: var(--royal-blue);
    margin-top: 4px;
}

.admin-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.admin-toolbar p {
    font-weight: 600;
    color: var(--royal-blue);
}

.admin-toolbar__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.admin-toolbar__link {
    color: var(--royal-blue);
    border-color: var(--royal-blue);
}

.admin-clear-button {
    border: none;
    cursor: pointer;
}

.admin-gallery-list {
    display: grid;
    gap: 18px;
}

.admin-gallery-item {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 16px;
    align-items: center;
    background: #f8fbff;
    border: 1px solid rgba(0,35,102,0.08);
    border-radius: 18px;
    padding: 16px;
}

.admin-gallery-item__image {
    width: 120px;
    height: 95px;
    object-fit: cover;
    border-radius: 12px;
}

.admin-gallery-item__content h3 {
    color: var(--royal-blue);
    margin-bottom: 8px;
    font-size: 18px;
}

.admin-gallery-item__content p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}

.admin-gallery-item__delete {
    border: none;
    background: #ffe2e2;
    color: #b42318;
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
}

.admin-empty-state {
    display: none;
    min-height: 260px;
    border: 2px dashed rgba(0,35,102,0.16);
    border-radius: 18px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 30px;
    color: var(--text-gray);
}

.admin-empty-state i {
    font-size: 42px;
    color: var(--royal-blue);
}

@media (max-width: 1024px) {
    .admin-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .gallery-toolbar,
    .admin-toolbar,
    .gallery-overlay__footer {
        flex-direction: column;
        align-items: stretch;
    }

    .gallery-admin-link,
    .admin-toolbar__actions .btn,
    .admin-toolbar__actions button {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .admin-login-card,
    .admin-panel,
    .gallery-overlay__dialog {
        padding: 24px 20px;
    }

    .gallery-category-grid {
        grid-template-columns: 1fr;
    }

    .gallery-category-card {
        min-height: auto;
        padding: 28px 20px 60px;
    }

    .gallery-category-card__icon {
        width: 72px;
        height: 72px;
        margin-bottom: 16px;
    }

    .gallery-category-card__icon i {
        font-size: 34px;
    }

    .gallery-category-card h3 {
        font-size: 17px;
        margin-bottom: 8px;
    }

    .gallery-category-card p {
        font-size: 13px;
    }

    .gallery-empty-state__content {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .gallery-empty-state__cta {
        width: 100%;
        text-align: center;
    }

    .gallery-overlay__body {
        grid-template-columns: 1fr;
    }

    .gallery-overlay__viewer {
        min-height: 240px;
    }

    .gallery-overlay__nav {
        width: 100%;
        border-radius: 14px;
        height: 48px;
    }

    .admin-preview__grid {
        grid-template-columns: 1fr 1fr;
    }

    .admin-gallery-item {
        grid-template-columns: 1fr;
    }

    .admin-gallery-item__image {
        width: 100%;
        height: 200px;
    }

    .gallery-card__image {
        height: 220px;
    }
}

/* Ultimate Overflow Fix */
html, body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    position: relative;
}

body {
    min-height: 100vh;
}

.header {
    width: 100%;
    max-width: 100vw;
}

.navbar .container {
    width: 100%;
}

@media (max-width: 768px) {
    body { overflow-x: hidden; }

    .container {
        padding: 0 16px;
    }

    .hero-section {
        padding-left: 0;
        padding-right: 0;
    }

    .hero-content {
        padding: 0 16px;
    }

    .hero-text, .hero-image {
        padding: 0;
    }

    .hero-school-image {
        height: 220px;
        border-radius: 14px;
        margin-top: 20px;
    }

    h1, h2, h3, h4, h5, h6, p {
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .floating-card { display: none; }
    .message-box:hover { transform: none; }
    .facility-card:hover { transform: none; }

    .section-title h2,
    .section-title.center h2 {
        font-size: 26px;
    }
}

/* File Drop Zone */
.file-drop-zone {
    position: relative;
    border: 2px dashed rgba(0,35,102,0.3);
    border-radius: 16px;
    padding: 36px 24px;
    text-align: center;
    background: #f4f7fb;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.file-drop-zone:hover,
.file-drop-zone.drag-over {
    border-color: var(--royal-blue);
    background: rgba(0,35,102,0.05);
}

.file-drop-zone i {
    font-size: 40px;
    color: var(--royal-blue);
    margin-bottom: 12px;
    display: block;
}

.file-drop-zone p {
    font-size: 15px;
    font-weight: 600;
    color: var(--royal-blue);
    margin-bottom: 6px;
}

.file-drop-zone span {
    font-size: 13px;
    color: var(--text-gray);
}

.file-drop-zone input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

/* Upload Progress Bar */
.upload-progress {
    margin-top: 4px;
}

.upload-progress__bar-wrap {
    width: 100%;
    height: 10px;
    background: rgba(0,35,102,0.1);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 8px;
}

.upload-progress__bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--royal-blue), var(--royal-blue-light));
    border-radius: 999px;
    transition: width 0.3s ease;
}

.upload-progress__label {
    font-size: 13px;
    font-weight: 600;
    color: var(--royal-blue);
    text-align: center;
}



