body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background-color: #fff;
}

.navbar-brand.school-logo {
    color: #ff7b54;
    font-size: 1.4rem;
}

.navbar .nav-link {
    font-weight: 500;
    color: #333 !important;
    margin-left: 10px;
    transition: 0.3s;
}

.navbar .nav-link:hover {
    color: #ff7b54 !important;
}

.hero-section {
    background: linear-gradient(135deg, #4facfe 0%, #00c6ff 100%);
    min-height: 90vh;
    padding: 80px 0;
}

.hero-image {
    max-height: 450px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    background: #ffffff;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f3c88;
}

.section-subtitle {
    color: #6c757d;
    max-width: 650px;
    margin: 0 auto;
}

.feature-box,
.notice-card,
.contact-info-box,
.about-card {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.program-card {
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.program-card:hover,
.gallery-card img:hover {
    transform: translateY(-5px);
}

.gallery-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.page-banner {
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
}

.footer-section {
    background: #1f3c88;
    color: #fff;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
}

.footer-links a:hover {
    color: #ffd166;
}

.btn-primary {
    background-color: #1f3c88;
    border-color: #1f3c88;
}

.btn-warning {
    color: #fff;
    background-color: #ff7b54;
    border-color: #ff7b54;
}

.btn-warning:hover {
    background-color: #f0623a;
    border-color: #f0623a;
    color: #fff;
}

@media (max-width: 991px) {
    .hero-section {
        text-align: center;
        padding: 60px 0;
    }

    .hero-image {
        margin-top: 20px;
    }
}
