/* ============================================
   HANDS ON LEARNING SCHOOL - Premium Stylesheet
   ============================================ */

/* CSS Variables */
:root {
    --primary: #0B1F3A;
    --secondary: #FF6B35;
    --accent: #FF8C00;
    --bg-light: #F8FAFC;
    --white: #FFFFFF;
    --transition: 0.3s ease;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --radius: 12px;
    --radius-lg: 20px;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

/* Page Transition Fade Effect */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

main {
    animation: fadeIn 0.5s ease-out;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary);
    font-weight: 700;
}

.text-accent {
    color: var(--secondary) !important;
}

h1, h2, h3, h4, h5, h6, .fw-bold {
    color: var(--primary);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #15304f;
    border-color: #15304f;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-accent {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: white;
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.btn-accent:hover {
    background-color: #e8437a;
    border-color: #e8437a;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-outline-light {
    border-radius: var(--radius);
}

.btn {
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

/* ============================================
   CARDS
   ============================================ */
.card {
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: none;
}

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

.news-card,
.feature-card,
.about-card {
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

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

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: relative;
    background: var(--primary) !important;
    background: linear-gradient(135deg, var(--primary) 0%, #1a3a5c 100%) !important;
    transition: box-shadow 0.3s ease, background 0.3s ease;
    padding: 0.75rem 0;
    z-index: 1000;
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(11, 31, 58, 0.15);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.4rem;
}

.nav-link {
    position: relative;
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

@media (max-width: 991px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--primary) 0%, #1a3a5c 100%);
        padding: 1rem;
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        box-shadow: 0 4px 20px rgba(11, 31, 58, 0.2);
    }

    .navbar-collapse.show {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--secondary) !important;
    }
}

/* Reset & Base */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-light);
    overflow-x: hidden;
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, #1a3a5c 100%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

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

.preloader-logo-img {
    height: 80px;
    width: auto;
    background: rgba(255,255,255,0.95);
    border-radius: 16px;
    padding: 12px 18px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    margin-bottom: 0.75rem;
}

.preloader-school-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--secondary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

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

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
    border: none;
    font-size: 1.2rem;
}

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

.back-to-top:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

/* ============================================
   COUNTER SECTION
   ============================================ */
.counter-section {
    background: linear-gradient(135deg, var(--primary) 0%, #1a3a5c 100%);
}

.counter-item {
    text-align: center;
    padding: 2rem;
}

.counter-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
}

.counter-label {
    color: white;
    font-size: 1rem;
    margin-top: 0.5rem;
}

/* ============================================
   HERO SECTION (legacy - overridden by modern hero)
   ============================================ */

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.btn-light {
    color: var(--primary);
}

.btn-outline-light {
    border-radius: 12px;
}

.btn-outline-light:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--primary);
}

/* ============================================
   GRADIENT TEXT
   ============================================ */
.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    background: transparent;
}

.about-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(30, 58, 138, 0.1);
    overflow: hidden;
}

.about-img {
    height: 100%;
    min-height: 400px;
    object-fit: cover;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.feature-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.12);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.feature-icon.primary {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(30, 58, 138, 0.05) 100%);
    color: var(--primary);
}

.feature-icon.secondary {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
    color: var(--secondary);
}

/* ============================================
   ADMISSION CTA
   ============================================ */
.admission-cta {
    background: linear-gradient(135deg, var(--primary) 0%, #2d4a9e 50%, var(--secondary) 100%);
    color: white;
}

/* ============================================
   NEWS CARD
   ============================================ */
.news-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.12);
}

.news-card img {
    transition: transform 0.3s ease;
}

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

.news-img-wrapper {
    overflow: hidden;
    height: 200px;
}

/* ============================================
   TESTIMONIAL
   ============================================ */
.testimonial-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, #e2e8f0 100%);
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    margin: 1rem;
}

.testimonial-card .quote-icon {
    font-size: 3rem;
    color: rgba(30, 58, 138, 0.1);
    line-height: 1;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

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

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: linear-gradient(135deg, #061020 0%, var(--primary) 100%);
    color: white;
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 1.25rem;
    position: relative;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

/* ============================================
   UTILITIES
   ============================================ */
.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.section-heading h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.section-heading p {
    color: #6b7280;
    font-size: 1.1rem;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    margin: 1rem auto;
    border-radius: 2px;
}

.badge-accent {
    background-color: var(--secondary);
    color: white;
}

.badge-primary {
    background-color: var(--primary);
    color: white;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 2.5rem !important;
    }

    .hero-content p {
        font-size: 1.1rem !important;
    }

    .about-card {
        margin: 0 1rem;
    }

    .about-img {
        min-height: 250px;
    }

    .about-card .row {
        flex-direction: column-reverse;
    }

    .about-card .col-lg-6:first-child {
        order: 2;
    }
}

@media (max-width: 768px) {
    .feature-card {
        padding: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
        margin: 0.5rem;
    }

    .footer {
        text-align: center;
    }

    .footer h5::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer .text-lg-start {
        text-align: center !important;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem !important;
    }

    .hero-content .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .btn-lg {
        padding: 0.75rem 1.5rem;
    }
}

/* ============================================
   MODERN HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   FEATURE CARDS ENHANCED
   ============================================ */
.feature-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(11, 31, 58, 0.1);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    transition: all 0.4s ease;
}

.feature-icon.primary {
    background: linear-gradient(135deg, rgba(11, 31, 58, 0.1), rgba(11, 31, 58, 0.05));
    color: var(--primary);
}

.feature-icon.secondary {
    background: linear-gradient(135deg, rgba(255, 79, 129, 0.1), rgba(255, 79, 129, 0.05));
    color: var(--secondary);
}

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

/* ============================================
   COUNTER SECTION ENHANCED
   ============================================ */
.counter-section {
    background: linear-gradient(135deg, var(--primary) 0%, #1a3a5c 50%, #2d5a87 100%);
    position: relative;
    overflow: hidden;
}

.counter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

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

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

.counter-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.2);
}

.counter-label {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   ADMISSION CTA SECTION
   ============================================ */
.admission-cta {
    background: linear-gradient(135deg, var(--secondary) 0%, #ff944d 100%);
    position: relative;
    overflow: hidden;
}

.admission-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

/* ============================================
   NEWS CARDS ENHANCED
   ============================================ */
.news-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    height: 100%;
}

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

.news-img-wrapper {
    position: relative;
    overflow: hidden;
}

.news-img-wrapper img {
    transition: transform 0.6s ease;
}

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

/* ============================================
   TESTIMONIAL ENHANCED
   ============================================ */
.testimonial-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.testimonial-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    margin: 1rem;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 6rem;
    color: var(--secondary);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.quote-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), #1a3a5c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.quote-icon i {
    font-size: 1.5rem;
    color: white;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary);
}

/* ============================================
   FOOTER ENHANCED
   ============================================ */
.footer {
    background: linear-gradient(135deg, var(--primary) 0%, #0a1525 100%);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--accent), var(--secondary));
}

.footer h5 {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 10px;
}

.footer-links a::before {
    content: '\2192';
    position: absolute;
    left: 0;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-contact li {
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact li i {
    color: var(--secondary);
    width: 20px;
}

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

.social-links a:hover {
    background: var(--secondary);
    transform: translateY(-5px);
}

/* ============================================
   CAROUSEL STYLES
   ============================================ */
.carousel-item {
    transition: transform 0.4s ease-in-out;
}
.carousel-item.active {
    display: block;
}
.carousel-item:not(.active) {
    display: none;
}

.carousel-item.active {
    display: block;
}

.carousel-item:not(.active) {
    display: none;
}

/* Legacy hero carousel styles removed - using modern hero styles */

/* ============================================
   PAGE CONTENT - Legacy Subpage Styles
   ============================================ */
.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #0B1F3A 0%, #1a3a5c 100%);
    position: relative; overflow: hidden;
}
.page-header h1 { color: white; font-size: 2.5rem; font-weight: 700; margin-bottom: 0.5rem; }
.page-header p { color: rgba(255,255,255,0.55); max-width: 480px; }
.page-header .section-label {
    font-size: 0.65rem; font-weight: 600; letter-spacing: 3px;
    text-transform: uppercase; color: var(--secondary); margin-bottom: 0.5rem; display: inline-block;
}

.section { padding: 5rem 0; }
.section-alt { background: #f4f1ea; }

.section-label {
    font-size: 0.65rem; font-weight: 600; letter-spacing: 3px;
    text-transform: uppercase; color: var(--secondary); margin-bottom: 0.5rem; display: inline-block;
}
.section-title { font-size: 2.25rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--primary); }
.section-desc { max-width: 520px; margin: 0 auto; color: #6b7280; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.about-grid .text-col h2 { font-size: 2.25rem; color: var(--primary); }
.about-grid .image-col img { width: 100%; border-radius: var(--radius); }

.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.why-card { padding: 1.75rem; text-align: center; background: white; border: 1px solid #e5e7eb; border-radius: var(--radius-lg); transition: all 0.4s ease; }
.why-card:hover { box-shadow: var(--shadow-hover); border-color: var(--secondary); transform: translateY(-4px); }
.why-card .icon { width: 50px; height: 50px; border-radius: 50%; background: rgba(255,107,53,0.1); color: var(--secondary); display: flex; align-items: center; justify-content: center; font-size: 1.15rem; margin: 0 auto 0.75rem; }
.why-card h5 { font-size: 1rem; font-weight: 700; margin-bottom: 0.35rem; color: var(--primary); }
.why-card p { font-size: 0.82rem; color: #6b7280; }

.director-wrap { display: grid; grid-template-columns: 1fr 2fr; gap: 2.5rem; align-items: center; }
.director-wrap .photo-frame { width: 100%; max-width: 280px; aspect-ratio: 1; border-radius: 50%; overflow: hidden; border: 3px solid var(--secondary); margin: 0 auto; }
.director-wrap blockquote { font-style: italic; font-size: 1.15rem; line-height: 1.9; color: #111827; padding: 1.5rem 2rem; border-left: 3px solid var(--secondary); background: white; border-radius: 0 var(--radius-lg) var(--radius-lg) 0; box-shadow: var(--shadow-soft); margin: 0; }
.director-wrap blockquote .attribution { font-style: normal; font-size: 0.85rem; color: #6b7280; margin-top: 0.75rem; display: block; }
.director-wrap blockquote .attribution strong { color: var(--primary); }

.gold-ornament { display: flex; align-items: center; justify-content: center; gap: 0.75rem; margin: 1rem 0; }
.gold-ornament .line { width: 50px; height: 1px; background: linear-gradient(90deg, transparent, var(--secondary), transparent); }
.gold-ornament .diamond { color: var(--secondary); font-size: 0.5rem; }

.btn-gold { background: var(--secondary); color: white; border-color: var(--secondary); }
.btn-gold:hover { background: #e8437a; border-color: #e8437a; color: white; box-shadow: 0 4px 20px rgba(255,107,53,0.3); }
.btn-outline-gold { background: transparent; color: var(--secondary); border-color: var(--secondary); }
.btn-outline-gold:hover { background: var(--secondary); color: white; }

.gallery-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem; }
.gallery-strip .strip-item { overflow: hidden; border-radius: var(--radius); border: 1px solid #e5e7eb; aspect-ratio: 4/3; }
.gallery-strip .strip-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-strip .strip-item:hover img { transform: scale(1.08); }

.event-card { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid #e5e7eb; }
.event-card:last-child { border-bottom: none; }
.event-card .date-box { width: 56px; text-align: center; flex-shrink: 0; }
.event-card .date-box .day { font-size: 1.5rem; font-weight: 700; color: var(--secondary); line-height: 1; }
.event-card .date-box .mon { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 1px; color: #6b7280; }
.event-card .event-body h6 { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.15rem; color: var(--primary); }
.event-card .event-body p { font-size: 0.8rem; margin: 0; color: #6b7280; }

.notice-item { padding: 1.25rem 0; border-bottom: 1px solid #e5e7eb; display: flex; gap: 1rem; align-items: flex-start; }
.notice-item:last-child { border-bottom: none; }
.notice-item .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--secondary); flex-shrink: 0; margin-top: 0.45rem; }
.notice-item h6 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.2rem; color: var(--primary); }
.notice-item .meta { font-size: 0.75rem; color: #6b7280; }
.notice-item p { font-size: 0.85rem; margin-top: 0.35rem; color: #6b7280; }

.contact-info-box { padding: 2rem; background: white; border: 1px solid #e5e7eb; border-radius: var(--radius-lg); height: 100%; transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94); position: relative; overflow: hidden; }

.contact-info-box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--accent), #d97706); opacity: 0; transition: opacity 0.4s ease; }

.contact-info-box:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.08); border-color: var(--secondary); transform: translateY(-4px); }

.contact-info-box:hover::before { opacity: 1; }

.contact-info-box .icon { width: 56px; height: 56px; border-radius: 16px; background: linear-gradient(135deg, var(--accent), #d97706); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 1rem; transition: transform 0.4s ease, box-shadow 0.4s ease; box-shadow: 0 4px 12px rgba(245,158,11,0.25); }

.contact-info-box:hover .icon { transform: scale(1.08) rotate(-5deg); box-shadow: 0 8px 24px rgba(245,158,11,0.35); }

.contact-info-box h6 { font-size: 0.85rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--primary); letter-spacing: 0.3px; }

.contact-info-box p { font-size: 0.9rem; margin: 0; color: #475569; line-height: 1.7; }

.contact-form-wrap { padding: 2rem; background: white; border: 1px solid #e5e7eb; border-radius: var(--radius-lg); }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 500; color: #111827; margin-bottom: 0.35rem; }
.form-control { width: 100%; padding: 0.65rem 0.9rem; font-size: 0.875rem; border: 1px solid #e5e7eb; border-radius: var(--radius); background: white; outline: none; transition: border-color 0.2s; }
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(11,31,58,0.1); }
textarea.form-control { resize: vertical; min-height: 100px; }

.program-card { background: white; border: 1px solid #e5e7eb; border-radius: var(--radius-lg); padding: 1.75rem; transition: all 0.3s ease; height: 100%; }
.program-card:hover { box-shadow: var(--shadow-hover); border-color: var(--secondary); }
.program-card h5 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--primary); }
.program-card p { font-size: 0.85rem; color: #6b7280; }

.acd-table { width: 100%; border-collapse: collapse; }
.acd-table th, .acd-table td { text-align: left; padding: 0.7rem 1rem; border-bottom: 1px solid #e5e7eb; font-size: 0.85rem; }
.acd-table th { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: #6b7280; font-weight: 600; background: #f4f1ea; }

.subject-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; }
.subject-tag { padding: 0.75rem 1rem; background: #f4f1ea; border: 1px solid #e5e7eb; border-radius: var(--radius); text-align: center; font-size: 0.85rem; font-weight: 500; transition: all 0.2s; }
.subject-tag:hover { border-color: var(--secondary); background: rgba(255,107,53,0.08); color: var(--secondary); }

.fee-table { width: 100%; border-collapse: collapse; }
.fee-table th, .fee-table td { text-align: left; padding: 0.7rem 1rem; border-bottom: 1px solid #e5e7eb; font-size: 0.85rem; }
.fee-table th { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: #6b7280; font-weight: 600; }

.step-list { counter-reset: step; }
.step-item { counter-increment: step; display: flex; gap: 1rem; padding: 1.25rem 0; border-bottom: 1px solid #e5e7eb; }
.step-item:last-child { border-bottom: none; }
.step-item .step-num { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,107,53,0.1); color: var(--secondary); font-weight: 700; font-size: 0.9rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.step-item .step-body h6 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.2rem; color: var(--primary); }
.step-item .step-body p { font-size: 0.85rem; margin: 0; color: #6b7280; }

.check-list li { padding: 0.5rem 0; font-size: 0.875rem; display: flex; align-items: center; gap: 0.65rem; border-bottom: 1px solid #e5e7eb; }
.check-list li:last-child { border-bottom: none; }
.check-list li::before { content: '\2713'; width: 20px; height: 20px; border-radius: 50%; background: rgba(255,107,53,0.12); color: var(--secondary); display: flex; align-items: center; justify-content: center; font-size: 0.6rem; font-weight: 700; flex-shrink: 0; }

.admission-card { background: white; border: 1px solid #e5e7eb; border-radius: var(--radius-lg); padding: 2rem; transition: all 0.3s ease; height: 100%; }
.admission-card:hover { box-shadow: var(--shadow-hover); border-color: var(--secondary); }

.contact-strip { padding: 3rem 0; background: #f3f4f6; border-top: 1px solid #e5e7eb; }
.contact-strip h3 { font-size: 1.75rem; margin-bottom: 0.35rem; color: var(--primary); }
.contact-strip p { margin: 0; color: #6b7280; }

.cta-section { padding: 5rem 0; text-align: center; background: linear-gradient(135deg, #0B1F3A 0%, #1a3a5c 100%); }
.cta-section h2 { color: white; font-size: 2.5rem; font-weight: 700; }
.cta-section p { color: rgba(255,255,255,0.55); max-width: 480px; margin: 0.75rem auto 1.75rem; }

.home-about { padding: 5rem 0; background: #f3f4f6; }
.home-about .row { align-items: center; }
.home-about .text-col { padding-right: 2rem; }
.home-about h2 { font-size: 2.25rem; color: var(--primary); font-weight: 700; }
.home-about .stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid #e5e7eb; }
.home-about .stat-item .num { font-size: 2rem; font-weight: 700; color: var(--secondary); }
.home-about .stat-item .stat-label { font-size: 0.8rem; color: #6b7280; }

@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .director-wrap { grid-template-columns: 1fr; text-align: center; }
    .director-wrap blockquote { border-left: none; border-top: 3px solid var(--secondary); border-radius: var(--radius-lg); }
    .gallery-strip { grid-template-columns: repeat(2, 1fr); }
    .subject-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .why-grid { grid-template-columns: 1fr; }
}

/* ============================================
   MODERN UI/UX — Landing Page Redesign
   ============================================ */

/* Font */
body {
    font-family: 'Inter', sans-serif;
}

/* Section base */
.section {
    padding: 6rem 0;
}
.section.bg-light {
    background: var(--bg-light);
}

/* Section label */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

/* Section title */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--primary);
}

/* Divider */
.divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border-radius: 4px;
}

/* ============================================
   GLASS NAVBAR
   ============================================ */
#mainNav {
    background: var(--primary) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    padding: 0.5rem 0;
}
#mainNav.scrolled {
    background: #0a1528 !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}
#mainNav .navbar-brand img {
    border-radius: 8px;
}
#mainNav .navbar-brand span {
    color: white;
    -webkit-text-fill-color: white;
}
#mainNav .nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    color: white !important;
    transition: all 0.3s ease;
}
#mainNav .nav-link:hover,
#mainNav .nav-link.active {
    background: var(--secondary) !important;
    color: white !important;
}
#mainNav .nav-link::after {
    display: none;
}
#mainNav .btn-accent {
    background: var(--secondary) !important;
    border-color: var(--secondary) !important;
    color: white !important;
}
#mainNav .btn-accent:hover {
    background: #e85d26 !important;
    border-color: #e85d26 !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* ============================================
   MODERN HERO
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: block !important;
    background: none !important;
}
.hero-slide {
    position: relative;
    min-height: 100vh;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(11, 31, 58, 0.85) 0%,
        rgba(11, 31, 58, 0.65) 50%,
        rgba(11, 31, 58, 0.4) 100%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    animation: heroFadeIn 1.2s ease-out;
}
.hero-content.text-center {
    max-width: 950px;
}
.hero-content .btn-lg {
    padding: 1rem 3rem !important;
    font-size: 1.15rem !important;
    font-weight: 600;
}
@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero-badge {
    display: inline-block;
    padding: 0.6rem 1.6rem;
    background: rgba(255, 79, 129, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 79, 129, 0.3);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 2rem;
    letter-spacing: 1.5px;
}
.hero-content h1 {
    color: white !important;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
    font-size: 4.5rem !important;
    font-weight: 900 !important;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 1.5rem !important;
}
.hero-content p {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 1.35rem !important;
    line-height: 1.7;
    margin-bottom: 2.5rem !important;
    max-width: 750px;
}
.hero-shape {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 120px;
    background: var(--bg-light);
    clip-path: ellipse(70% 100% at 50% 100%);
    z-index: 3;
}
#heroCarousel .carousel-indicators {
    z-index: 4;
}
#heroCarousel .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    background: transparent;
    opacity: 1;
    margin: 0 5px;
    transition: all 0.3s ease;
}
#heroCarousel .carousel-indicators button.active {
    background: var(--secondary);
    border-color: var(--secondary);
    width: 30px;
    border-radius: 5px;
}
#heroCarousel .carousel-control-prev-icon,
#heroCarousel .carousel-control-next-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    background-size: 50%;
}
.hero-section,
#heroCarousel,
#heroCarousel .carousel-inner,
#heroCarousel .carousel-item {
    background: none !important;
}
.hero-slide {
    min-height: 100vh;
    height: 100%;
    display: flex;
    align-items: center;
}
.hero-slide .container {
    min-height: 100vh;
    display: flex !important;
    align-items: center;
    padding-top: 70px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(11, 31, 58, 0.15);
}
.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.reveal.active .about-image {
    animation: slideInLeft 0.8s ease-out;
}
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-60px); }
    to { opacity: 1; transform: translateX(0); }
}
.about-image-wrapper:hover .about-image {
    transform: scale(1.03);
}
.about-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--primary);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* ============================================
   FEATURE CARDS MODERN
   ============================================ */
.feature-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(11, 31, 58, 0.1);
    border-color: rgba(255, 79, 129, 0.1);
}
.feature-card:hover::before {
    transform: scaleX(1);
}
.feature-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    transition: all 0.4s ease;
}
.feature-icon.primary {
    background: linear-gradient(135deg, rgba(11, 31, 58, 0.08), rgba(11, 31, 58, 0.03));
    color: var(--primary);
}
.feature-icon.secondary {
    background: linear-gradient(135deg, rgba(255, 79, 129, 0.08), rgba(255, 79, 129, 0.03));
    color: var(--secondary);
}
.feature-icon.accent {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.08), rgba(0, 217, 255, 0.03));
    color: var(--accent);
}
.feature-icon.success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(16, 185, 129, 0.03));
    color: #10b981;
}
.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
}
.feature-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

/* ============================================
   COUNTER SECTION MODERN
   ============================================ */
.counter-section {
    background: linear-gradient(135deg, var(--primary) 0%, #0d2b4f 50%, #1a3a5c 100%);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}
.counter-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}
.counter-particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s infinite;
}
.counter-particles span:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.counter-particles span:nth-child(2) { top: 20%; left: 80%; animation-delay: 1s; width: 10px; height: 10px; }
.counter-particles span:nth-child(3) { top: 70%; left: 20%; animation-delay: 2s; }
.counter-particles span:nth-child(4) { top: 80%; left: 70%; animation-delay: 3s; width: 8px; height: 8px; }
.counter-particles span:nth-child(5) { top: 40%; left: 50%; animation-delay: 4s; }
@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
    50% { transform: translateY(-20px) scale(1.5); opacity: 0.6; }
}
.counter-item {
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
}
.counter-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 20px rgba(255, 79, 129, 0.3);
}
.counter-label {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ============================================
   DIRECTOR SECTION
   ============================================ */
.director-image-wrapper {
    position: relative;
    display: inline-block;
}
.director-image {
    width: 100%;
    max-width: 420px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(11, 31, 58, 0.15);
}
.director-card {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: white;
    padding: 1.2rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    min-width: 200px;
}
.director-card h5 {
    color: var(--primary);
    font-size: 1rem;
}
.director-card small {
    color: var(--secondary);
    font-weight: 500;
}
.speech-content {
    color: #555;
    line-height: 1.9;
    font-size: 1.05rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, #0d2b4f 100%);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,107,53,0.08) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}
.cta-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: rgba(255, 79, 129, 0.15);
    border: 1px solid rgba(255, 79, 129, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

/* ============================================
   NOTICE CARDS
   ============================================ */
.notice-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.04);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.notice-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(11, 31, 58, 0.1);
}
.notice-card-header {
    background: linear-gradient(135deg, var(--primary) 0%, #1a3a5c 100%);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.notice-badge {
    display: inline-block;
    padding: 0.25rem 0.8rem;
    background: rgba(255,255,255,0.15);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 500;
    color: white;
    text-transform: capitalize;
}
.notice-card-body {
    padding: 1.5rem;
}
.notice-card-body h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary);
}
.notice-card-body p {
    font-size: 0.9rem;
    line-height: 1.6;
}
.notice-card-body .btn-link {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}
.notice-card-body .btn-link:hover {
    color: var(--primary);
}

/* ============================================
   EVENT CARDS
   ============================================ */
.event-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.04);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(11, 31, 58, 0.1);
}
.event-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}
.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.event-card:hover .event-image img {
    transform: scale(1.08);
}
.event-date-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 0.4rem 0.8rem;
    background: var(--secondary);
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
}
.event-date-block {
    background: linear-gradient(135deg, var(--primary) 0%, #1a3a5c 100%);
    padding: 2rem;
    text-align: center;
}
.event-day {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
}
.event-month {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.25rem;
}
.event-card-body {
    padding: 1.5rem;
}
.event-card-body h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary);
}
.event-card-body p {
    font-size: 0.9rem;
    line-height: 1.6;
}
.event-meta {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.event-meta span {
    font-size: 0.8rem;
    color: #6b7280;
    display: flex;
    align-items: center;
}
.event-meta span i {
    color: var(--secondary);
    width: 16px;
}

/* ============================================
   GALLERY CARDS
   ============================================ */
.gallery-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.04);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
}
.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(11, 31, 58, 0.1);
}
.gallery-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-card:hover .gallery-image img {
    transform: scale(1.08);
}
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 31, 58, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.gallery-card:hover .gallery-overlay {
    opacity: 1;
}
.gallery-overlay i {
    font-size: 2rem;
    color: white;
    transform: scale(0.8);
    transition: transform 0.4s ease;
}
.gallery-card:hover .gallery-overlay i {
    transform: scale(1);
}
.gallery-card-body {
    padding: 1rem 1.25rem;
}
.gallery-card-body h6 {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

/* ============================================
   TESTIMONIALS MODERN
   ============================================ */
.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    margin: 1rem 0.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
}
.testimonial-card .quote-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary), #ff944d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}
.testimonial-card .quote-icon i {
    font-size: 1.5rem;
    color: white;
}
.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary);
}
.testimonial-author h6 {
    font-size: 1rem;
    color: var(--primary);
}
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 2rem;
}
.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}
.testimonial-dot.active {
    background: var(--secondary);
    width: 30px;
    border-radius: 5px;
}

/* ============================================
   FOOTER MODERN
   ============================================ */
.footer {
    background: linear-gradient(135deg, #070f1a 0%, var(--primary) 100%);
    padding: 0 0 2rem;
    position: relative;
}
.footer-wave {
    margin-bottom: 3rem;
    line-height: 0;
}
.footer-wave svg {
    width: 100%;
    height: 60px;
}
.footer-brand h5 {
    font-size: 1rem;
    margin-bottom: 1rem;
}
.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
}
.footer h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}
.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 0.6rem;
}
.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.footer-links a:hover {
    color: var(--secondary);
    transform: translateX(5px);
}
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-contact li {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.footer-contact li i {
    color: var(--secondary);
    margin-top: 3px;
    flex-shrink: 0;
}
.footer-contact li span {
    flex: 1;
}
.social-links a {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}
.social-links a:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: white;
    transform: translateY(-4px);
}
.footer-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    margin: 2.5rem 0;
}
.footer-bottom {
    text-align: center;
}
.footer-bottom p {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
    margin: 0;
}

/* ============================================
   SCROLL REVEAL ENHANCED
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE MODERN
   ============================================ */
@media (max-width: 991px) {
    .hero-content h1 { font-size: 3rem !important; }
    .hero-content p { font-size: 1.1rem !important; }
    .hero-content .btn-lg { padding: 0.8rem 2rem !important; font-size: 1rem !important; }
    .hero-shape { height: 60px; clip-path: ellipse(100% 100% at 50% 100%); }
    .director-card { position: relative; bottom: 0; right: 0; margin-top: 1rem; }
    #mainNav .navbar-collapse {
        background: var(--secondary);
        backdrop-filter: blur(20px);
        border-radius: 16px;
        padding: 1rem;
        margin-top: 0.5rem;
    }
}

@media (max-width: 768px) {
    .section { padding: 3rem 0; }
    .section-title { font-size: 1.75rem; }
    .hero-content h1 { font-size: 2.5rem !important; }
    .hero-content p { font-size: 1rem !important; }
    .hero-content .btn-lg { padding: 0.7rem 1.5rem !important; font-size: 0.95rem !important; }
    .about-image { height: 300px; }
    .counter-number { font-size: 2.5rem; }
    .testimonial-card { padding: 2rem 1.5rem; }
    .footer-wave svg { height: 40px; }
}

@media (max-width: 576px) {
    .hero-content h1 { font-size: 2rem !important; }
    .hero-content p { font-size: 0.95rem !important; }
    .hero-content .btn { width: 100%; }
    .hero-content .btn-lg { padding: 0.6rem 1.2rem !important; font-size: 0.9rem !important; }
    .hero-badge { font-size: 0.75rem; padding: 0.4rem 1rem; margin-bottom: 1.25rem; }
    .about-badge { left: 10px; bottom: 10px; font-size: 0.75rem; padding: 0.4rem 0.8rem; }
}
