
/* CSS Variables for Maroon Theme */
:root {
    --maroon: #800000;
    --light-maroon: #a52a2a;
    --dark-maroon: #5a0000;
    --gold: #ffd700;
    --light-gold: #fff8dc;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #343a40;
    --text-dark: #212529;
    --text-muted: #6c757d;
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
    --info: #17a2b8;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
}

/* Header Styles */
/* .header {
    background: linear-gradient(135deg, var(--maroon), var(--dark-maroon));
    color: var(--white);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.nav-brand {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.nav-brand:hover {
    color: var(--gold);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
    background: rgba(255, 255, 255, 0.1);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--gold);
} */

/* Enhanced Hero Section with Background Slider */
.hero-section {
    background: linear-gradient(135deg, var(--maroon), var(--dark-maroon));
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.background-slides {
    display: flex;
    width: 400%;
    height: 100%;
    animation: backgroundSlide 20s infinite;
}

.background-slide {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    filter: brightness(0.7) blur(1px);
}

@keyframes backgroundSlide {

    0%,
    20% {
        transform: translateX(0);
    }

    25%,
    45% {
        transform: translateX(-25%);
    }

    50%,
    70% {
        transform: translateX(-50%);
    }

    75%,
    95% {
        transform: translateX(-75%);
    }

    100% {
        transform: translateX(0);
    }
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(100px, -100px);
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50px, 50px);
    z-index: 1;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.hero-section .lead {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.hero-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 0 auto;
    max-width: 600px;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.logo {
    max-height: 120px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    position: relative;
    z-index: 2;
}

/* Enhanced Slider Styles */
.slider-section {
    padding: 4rem 0;
    background: var(--light-gray);
}

.slider-container {
    max-width: 1000px;
    margin: 0 auto;
}

.slider {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(128, 0, 0, 0.3);
    border: 3px solid var(--maroon);
    background: var(--white);
}

.slides {
    display: flex;
    transition: transform 0.6s ease-in-out;
    width: 100%;
}

.slide {
    flex: 0 0 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.slide:hover img {
    transform: scale(1.02);
}

.caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, rgba(44, 31, 31, 0.9), rgba(96, 0, 0, 0.9));
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 500;
    text-align: center;
    font-style: italic;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.slider-btn {
    background: linear-gradient(135deg, var(--maroon), var(--dark-maroon));
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slider-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.indicators {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 12px;
}

.indicator {
    width: 14px;
    height: 14px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background: var(--maroon);
    transform: scale(1.2);
    border-color: var(--gold);
}

/* Enhanced Department Buttons */
.departments-section {
    padding: 4rem 0;
    background: var(--white);
}

.departments-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--maroon);
    margin-bottom: 1rem;
}

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

.department-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 30px 0;
}

.btn-department {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-decoration: none;
    color: white;
    background: linear-gradient(135deg, var(--maroon), var(--light-maroon));
    padding: 1.5rem 2rem;
    border-radius: 15px;
    transition: all 0.4s ease;
    font-weight: 600;
    font-size: 1.1rem;
    border: 3px solid transparent;
    box-shadow: 0 8px 25px rgba(128, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-department::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.5s;
}

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

.btn-department:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(128, 0, 0, 0.4);
    border-color: var(--gold);
    background: linear-gradient(135deg, var(--light-maroon), var(--maroon));
}

/* Enhanced Stats Section */
.stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(128, 0, 0, 0.05), rgba(255, 215, 0, 0.05));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2.5rem 1rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(128, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--maroon);
    box-shadow: 0 15px 40px rgba(128, 0, 0, 0.2);
}

.stat-item i {
    font-size: 3.5rem;
    color: var(--maroon);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--maroon), var(--light-maroon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item h3 {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--maroon);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-muted);
    font-weight: 600;
}

/* Enhanced Footer Styles */
.footer {
    background: linear-gradient(135deg, var(--maroon), var(--dark-maroon));
    color: var(--white);
    padding: 3rem 0 1.5rem;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 400px;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.social-link::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.5s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px);
    border-color: var(--gold);
}

.facebook-bg {
    background: linear-gradient(135deg, #1877F2, #0D5FD6);
}

.twitter-bg {
    background: linear-gradient(135deg, #1DA1F2, #0d8bd9);
}

.instagram-bg {
    background: linear-gradient(135deg, #E4405F, #C13584, #833AB4);
}

.linkedin-bg {
    background: linear-gradient(135deg, #0077B5, #005885);
}

.youtube-bg {
    background: linear-gradient(135deg, #FF0000, #CC0000);
}

.whatsapp-bg {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, var(--maroon-primary), var(--maroon-dark));
    color: white;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}

/* Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: translateY(-2px);
}

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

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
    max-width: 300px;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin: 1rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-item:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.contact-item i {
    color: var(--gold);
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    border: 2px solid transparent;
}

.social-link:hover {
    background: var(--gold);
    color: var(--maroon-primary);
    transform: translateY(-3px);
    border-color: var(--gold);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Links Sections */
.footer-links-section {
    display: flex;
    flex-direction: column;
}

.footer-links-section h4 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(8px);
}

.footer-links a i {
    color: var(--gold);
    width: 18px;
    text-align: center;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.footer-links a:hover i {
    transform: scale(1.2);
}

/* Footer Bottom */
.footer-bottom {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 1.5rem;
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.designer {
    color: var(--gold);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.designer:hover {
    color: white;
    text-decoration: underline;
}

.footer-credits {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Mobile Menu Styles (for reference) */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
        padding: 0 1.5rem;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-description {
        max-width: 100%;
        text-align: center;
    }

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

    .contact-item {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-links-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    /* Mobile Menu */
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg, var(--maroon-primary), var(--maroon-dark));
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem 0;
        transition: left 0.3s ease;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        padding: 1rem 2rem;
        width: 100%;
        text-align: center;
        border-radius: 0;
        margin: 0.5rem 0;
    }

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

@media (max-width: 480px) {
    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-content {
        padding: 0 1rem;
        gap: 2rem;
    }

    .footer-logo {
        font-size: 1.3rem;
    }

    .footer-logo i {
        font-size: 1.5rem;
    }

    .social-link {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .footer-social {
        gap: 0.8rem;
    }

    .footer-links-section h4 {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }

    .footer-links a {
        font-size: 0.9rem;
        gap: 0.6rem;
    }

    .footer-links a i {
        font-size: 0.9rem;
    }

    .copyright,
    .footer-credits {
        font-size: 0.85rem;
    }
}

/* Enhanced hover effects for entire footer */
.footer * {
    transition: all 0.3s ease;
}

/* Gold accent animations */
@keyframes goldGlow {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
    }

    50% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    }
}

.social-link:focus,
.footer-logo:focus {
    animation: goldGlow 2s infinite;
}

/* Smooth scroll behavior for footer links */
.footer-links a,
.footer-logo {
    scroll-behavior: smooth;
}

/* Print styles */
@media print {
    .footer {
        background: #2c3e50 !important;
        color: black !important;
    }

    .social-link,
    .menu-toggle {
        display: none !important;
    }
}
/* Social Media Sidebar */
.social-sidebar {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.social-icon::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.5s;
}

.social-icon:hover::before {
    left: 100%;
}

.social-icon:hover {
    transform: translateX(-5px) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.facebook {
    background: linear-gradient(135deg, #1877F2, #0D5FD6);
}

.instagram {
    background: linear-gradient(135deg, #E4405F, #C13584);
}

.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.youtube {
    background: linear-gradient(135deg, #FF0000, #CC0000);
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--maroon), var(--dark-maroon));
    color: white;
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.scroll-top-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--dark-maroon);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(128, 0, 0, 0.3);
}

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

.btn-outline:hover {
    background: var(--maroon);
    color: var(--white);
    transform: translateY(-2px);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-maroon {
    color: var(--maroon);
}

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

.bg-light-maroon {
    background-color: rgba(128, 0, 0, 0.1);
}

.mb-0 {
    margin-bottom: 0;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .nav-menu {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        width: 100%;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .slide img {
        height: 300px;
    }

    .caption {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .social-sidebar {
        display: none;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

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

    .department-buttons {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .btn-department {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }

    .stat-item {
        padding: 2rem 1rem;
    }

    .stat-item h3 {
        font-size: 2.5rem;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-section h1 {
        font-size: 1.8rem;
    }

    .hero-section .lead {
        font-size: 1.1rem;
    }

    .btn-department {
        padding: 1rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Additional page styles remain the same as in your original CSS */
/* About, Success Stories, Team, Results, Profile, Search pages styles... */

.scroll-top-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--maroon), var(--dark-maroon));
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* About Page Styles */
.about-hero {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--maroon), var(--dark-maroon));
    color: var(--white);
    margin-bottom: 3rem;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-content {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.about-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--maroon);
}

.about-section h2 {
    color: var(--maroon);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.about-section ul {
    list-style: none;
    padding-left: 0;
}

.about-section li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.about-section li:before {
    content: "✓";
    color: var(--maroon);
    font-weight: bold;
    margin-right: 10px;
}

/* Success Stories */
.success-hero {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--maroon), var(--dark-maroon));
    color: var(--white);
    margin-bottom: 3rem;
}

.students-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.student-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.student-card:hover {
    transform: translateY(-5px);
}

.student-photo {
    height: 200px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.student-info {
    padding: 1.5rem;
}

.student-info h3 {
    color: var(--maroon);
    margin-bottom: 0.5rem;
}

.department {
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.btn-outline {
    border: 2px solid var(--maroon);
    color: var(--maroon);
    background: transparent;
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* Team Page */
.team-hero {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--maroon), var(--dark-maroon));
    color: var(--white);
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--light-gray);
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.team-member h3 {
    color: var(--maroon);
    margin-bottom: 0.5rem;
}

.role {
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Results Page */
.results-container {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.results-header {
    display: flex;
    justify-content: between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--maroon);
}

.results-header h2 {
    color: var(--maroon);
    margin: 0;
}

.upload-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.upload-form input[type="file"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 1rem;
    border: 2px dashed #ddd;
    border-radius: 5px;
}

.results-list {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.results-list ul {
    list-style: none;
    padding: 0;
}

.results-list li {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.results-list li:last-child {
    border-bottom: none;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-maroon {
    color: var(--maroon);
}

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

.bg-light-maroon {
    background-color: rgba(128, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .slide img {
        height: 250px;
    }

    .caption {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .social-sidebar {
        display: none;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }

    .department-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-department {
        width: 200px;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}
/* CSS Variables for Maroon Theme */
:root {
    --maroon: #800000;
    --light-maroon: #a52a2a;
    --dark-maroon: #5a0000;
    --gold: #ffd700;
    --light-gold: #fff8dc;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #343a40;
    --text-dark: #212529;
    --text-muted: #6c757d;
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
    --info: #17a2b8;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, var(--maroon), var(--dark-maroon));
    color: var(--white);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.nav-brand {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.nav-brand:hover {
    color: var(--gold);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
    background: rgba(255, 255, 255, 0.1);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--gold);
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, var(--maroon), var(--dark-maroon));
    color: var(--white);
    padding: 2rem 0;
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

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

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

/* Profile Page Styles */
.profile-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--light-gray), var(--white));
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.profile-photo {
    flex-shrink: 0;
}

.profile-photo img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--maroon);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.profile-info h1 {
    color: var(--maroon);
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
}

.admission-number {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.department {
    background: var(--maroon);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 1rem;
}

.profile-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
}

.meta-item i {
    color: var(--maroon);
}

/* Profile Details */
.profile-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.detail-section {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--maroon);
}

.detail-section h3 {
    color: var(--maroon);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-grid {
    display: grid;
    gap: 1rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.detail-item:hover {
    background: #e9ecef;
}

.detail-item label {
    font-weight: 600;
    color: var(--maroon);
    min-width: 150px;
}

.detail-item span {
    color: var(--text-dark);
    font-weight: 500;
}

.biography {
    line-height: 1.8;
    color: var(--text-dark);
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--gold);
}

/* Profile Actions */
.profile-actions {
    margin: 2rem 0;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--dark-maroon);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(128, 0, 0, 0.3);
}

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

.btn-outline:hover {
    background: var(--maroon);
    color: var(--white);
    transform: translateY(-2px);
}

/* Enhanced Profile Cards */
.enhanced-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    overflow: hidden;
}

.enhanced-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.card-header {
    background: linear-gradient(135deg, var(--maroon), var(--dark-maroon));
    color: var(--white);
    padding: 1.5rem;
    border-bottom: none;
}

.card-header h3 {
    margin: 0;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-body {
    padding: 2rem;
}

/* Biography Editor */
.bio-editor {
    background: var(--light-gray);
    border-radius: 10px;
    padding: 1.5rem;
    border: 2px dashed #dee2e6;
}

.bio-textarea {
    width: 100%;
    min-height: 120px;
    border: 1px solid #ced4da;
    border-radius: 8px;
    padding: 1rem;
    font-family: inherit;
    resize: vertical;
    transition: border-color 0.3s ease;
}

.bio-textarea:focus {
    outline: none;
    border-color: var(--maroon);
    box-shadow: 0 0 0 0.2rem rgba(128, 0, 0, 0.25);
}

.char-count {
    text-align: right;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Terms/Semesters */
.terms-list {
    max-height: 300px;
    overflow-y: auto;
}

.term-item {
    background: var(--white);
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.term-item:hover {
    border-color: var(--maroon);
    box-shadow: 0 2px 8px rgba(128, 0, 0, 0.1);
}

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

.term-name {
    font-weight: 600;
    color: var(--maroon);
    margin-bottom: 0.5rem;
}

.term-details {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.term-date {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Report Section */
.report-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.report-icon {
    font-size: 3rem;
    color: var(--maroon);
    margin-bottom: 1rem;
}

.report-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

/* Search Page Styles */
.search-hero {
    background: linear-gradient(135deg, var(--maroon), var(--dark-maroon));
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.search-container {
    max-width: 600px;
    margin: 0 auto;
}

.search-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.search-input-group {
    display: flex;
    gap: 0;
}

.search-input {
    flex: 1;
    padding: 1rem;
    border: 2px solid var(--maroon);
    border-right: none;
    border-radius: 8px 0 0 8px;
    font-size: 1.1rem;
}

.search-input:focus {
    outline: none;
}

.search-btn {
    background: var(--maroon);
    color: var(--white);
    border: 2px solid var(--maroon);
    border-radius: 0 8px 8px 0;
    padding: 1rem 2rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-btn:hover {
    background: var(--dark-maroon);
}

/* Department Styles */
.departments-section {
    padding: 3rem 0;
}

.department-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.btn-department {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: var(--white);
    color: var(--maroon);
    text-decoration: none;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.btn-department:hover {
    background: var(--maroon);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(128, 0, 0, 0.3);
    border-color: var(--gold);
}

.btn-department i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

/* Student Cards - Compact Version */
.students-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.student-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.student-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.student-photo {
    height: 120px;
    overflow: hidden;
}

.student-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.student-card:hover .student-photo img {
    transform: scale(1.05);
}

.student-info {
    padding: 1.5rem;
}

.student-info h4 {
    color: var(--maroon);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.admission-number {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.class-level {
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.school {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.career-aspiration {
    color: var(--maroon);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.student-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.student-actions .btn {
    flex: 1;
    min-width: 120px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Level Cards */
.level-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.level-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.level-link {
    display: block;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    text-align: center;
}

.level-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background: var(--light-gray);
}

.level-icon {
    font-size: 2.5rem;
    color: var(--maroon);
    margin-bottom: 1rem;
}

.level-info h4 {
    color: var(--maroon);
    margin-bottom: 0.5rem;
}

.level-info p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.badge {
    background: var(--maroon);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-maroon {
    color: var(--maroon);
}

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

.bg-light-maroon {
    background-color: rgba(128, 0, 0, 0.1);
}

.mb-0 {
    margin-bottom: 0;
}

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

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

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.spinner {
    border: 2px solid #f3f3f3;
    border-top: 2px solid var(--maroon);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    display: inline-block;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Error and Success States */
.error-message {
    background: var(--danger);
    color: var(--white);
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.success-message {
    background: var(--success);
    color: var(--white);
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Empty States */
.no-students,
.no-data {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-muted);
}

.no-students i,
.no-data i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .nav-menu {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        width: 100%;
    }

    .profile-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .profile-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .profile-meta {
        justify-content: center;
    }

    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .action-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .department-buttons {
        grid-template-columns: 1fr;
    }

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

    .level-cards {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

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

    .search-input-group {
        flex-direction: column;
    }

    .search-input {
        border-radius: 8px;
        border-right: 2px solid var(--maroon);
        margin-bottom: 1rem;
    }

    .search-btn {
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .profile-photo img {
        width: 120px;
        height: 120px;
    }

    .profile-info h1 {
        font-size: 2rem;
    }

    .card-body {
        padding: 1.5rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Print Styles */
@media print {

    .header,
    .footer,
    .btn {
        display: none;
    }

    .profile-header,
    .profile-details {
        box-shadow: none;
        border: 1px solid #000;
    }
}
/* Terms and Reports Empty States */
.no-terms,
.no-reports {
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 8px;
    border: 2px dashed #dee2e6;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 8px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--maroon);
    box-shadow: 0 0 0 0.2rem rgba(128, 0, 0, 0.25);
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--maroon);
}
/* Department Level Cards Active State */
.level-card.active {
    border: 2px solid var(--maroon);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(128, 0, 0, 0.2);
}

.level-card.active .level-icon {
    background: var(--maroon);
    color: var(--white);
}

/* Student Info Icons */
.student-info .class-level,
.student-info .school,
.student-info .career-aspiration {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.student-info .class-level i,
.student-info .school i,
.student-info .career-aspiration i {
    color: var(--maroon);
    width: 16px;
}

/* Breadcrumb Styles */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--maroon);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--dark-maroon);
    text-decoration: underline;
}

.breadcrumb .separator {
    color: var(--text-muted);
}

.breadcrumb .current {
    color: var(--text-dark);
    font-weight: 600;
}