       /* Base Styles */
        :root {
            --navy-blue: #02203e;
            --gold: #eea412;
            --light-gold: #f8d486;
            --dark-blue: #011225;
            --light-blue: #e6f0ff;
            --white: #ffffff;
            --off-white: #f8f9fa;
            --gray: #6c757d;
            --dark-gray: #343a40;
            --transition: all 0.3s ease;
        }

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

        body {
            font-family: 'Times New Roman', Times, serif;
            line-height: 1.6;
            color: #333;
            background-color: var(--off-white);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            color: var(--navy-blue);
        }

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

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

        .container {       
            margin: 0 auto;
        }

        .btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: var(--gold);
            color: var(--navy-blue);
            border: none;
            border-radius: 4px;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 14px;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .btn:hover {
            background-color: var(--light-gold);
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
        }

        .section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }

        .section-title h2 {
            font-size: 36px;
            margin-bottom: 15px;
            display: inline-block;
            position: relative;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--gold);
        }

        /* Navigation */
        
        :root {
            --navy-blue: #02203e;
            --gold: #eea412;
            --light-gold: #f8d486;
            --dark-blue: #011225;
            --white: #ffffff;
        }

       .navbar {
        background: var(--navy-blue);
        padding: 15px 0;
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .navbar-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1500px;
        margin: 0 auto;
        padding: 0 20px;
        }

        .navbar-brand img {
        height: 60px;
        }

        .navbar-toggler {
        display: none;
        background: var(--gold);
        color: var(--navy-blue);
        border: none;
        padding: 10px 15px;
        border-radius: 4px;
        font-size: 15px;
        cursor: pointer;
        font-weight: 600;
        }

        .navbar-collapse {
        display: flex;
        justify-content: flex-end;
        }

        .navbar-nav {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        align-items: center;
        }

        .nav-item {
        position: relative;
        }

        .nav-link {
        color: var(--white);
        padding: 10px 15px;
        font-weight: 600;
        font-size: 14px;
        text-transform: uppercase;
        transition: all 0.3s ease;
        border-radius: 4px;
        display: block;
        cursor: pointer;
        }

        .nav-link:hover,
        .nav-link.active {
        background-color: var(--gold);
        color: var(--navy-blue);
        }

        .dropdown-toggle::after {
        content: '\f078';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        font-size: 10px;
        margin-left: 5px;
        display: inline-block;
        }

        .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        background-color: var(--white);
        min-width: 220px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 5px 5px;
        padding: 10px 0;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
        }

        .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        }

        .dropdown-item {
        display: block;
        padding: 10px 20px;
        color: #333;
        text-decoration: none;
        transition: all 0.3s ease;
        }

        .dropdown-item:hover {
        background-color: var(--gold);
        color: var(--navy-blue);
        padding-left: 25px;
        }

        /* Submenu for Library */
        .dropdown-menu .menu {
        position: relative;
        }

        .dropdown-menu .submenu {
        position: absolute;
        top: 0;
        left: 100%;
        background-color: white;
        min-width: 220px;
        border: 1px solid var(--gold);
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
        z-index: 1001;
        }

        .dropdown-menu .menu:hover .submenu {
        opacity: 1;
        visibility: visible;
        }

        .submenu a {
        display: block;
        padding: 10px 20px;
        text-decoration: none;
        color: #333;
        }

        .submenu a:hover {
        background-color: var(--gold);
        color: var(--navy-blue);
        }

    
        /* Notification Bar */
        .notification-bar {
            background: white;
            color: linear-gradient(90deg, var(--navy-blue), var(--dark-blue));
            padding: 8px 0;
            position: relative;
            overflow: hidden;
            margin-top: 90px;
        }

        .notification-container {
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .notification-label {
            background-color: var(--gold);
            color: var(--navy-blue);
            padding: 8px 15px;
            font-weight: 700;
            display: inline-block;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .notification-text {
            display: inline-block;
            white-space: nowrap;
            animation: scroll 50s linear infinite;
        }

        @keyframes scroll {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }

        /* Floating Login Button */
        .floating-login-wrapper {
            position: absolute;
            top: 20px;
            right: 30px;
            z-index: 1000; 
        }

        .floating-login-container {
            position: relative;
            transition: all 0.3s ease;
        }

        .educator-login-btn {
            background: linear-gradient(135deg, #eea412 0%, #f3ac1e 50%, #edbb56 100%);
            border: none;
            border-radius: 30px;
            padding: 12px 20px 12px 50px;
            color: var(--navy-blue);
            font-weight: 600;
            cursor: pointer;
            position: relative;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
            overflow: hidden;
            font-family: 'Times New Roman', Times, serif;
            text-transform: uppercase;
            font-size: 14px;
            z-index: 1001;
        }

        .login-icon {
            position: absolute;
            left: 18px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 20px;
            transition: all 0.3s ease;
        }

        .login-badge {
            display: inline-block;
            background: #2c3e50;
            color: white;
            padding: 4px 10px;
            border-radius: 15px;
            margin-left: 10px;
            font-size: 12px;
            transition: all 0.3s ease;
        }

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

        .floating-login-container {
            animation: gentleFloat 4s ease-in-out infinite;
        }

        .educator-login-btn:hover {
            animation: none; /* Pause float on hover */
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
        }

        .educator-login-btn:hover .login-icon {
            transform: translateY(-50%) rotate(15deg);
        }

        .educator-login-btn:hover .login-badge {
            background: #e74c3c;
            transform: scale(1.1);
        }

        .educator-login-btn::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: #2c3e50;
            transition: width 0.4s ease;
        }

        .educator-login-btn:hover::after {
            width: 100%;
        }

        /* Hero Slider */
        .hero-slider {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .slides {
            display: flex;
            width: 400%;
            height: 500px;
            transition: transform 0.5s ease;
        }

        .slide {
            width: 25%;
            position: relative;
        }

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

        .slide-content {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background: rgba(2, 32, 62, 0.6);
            color: var(--white);
            text-align: center;
            padding: 0 20px;
        }

        .slide-content h2 {
            font-size: 42px;
            margin-bottom: 20px;
            color: white;
        }

        .slide-content strong {
            color: #eea412;
        }

        .slide-content p {
            font-size: 18px;
            margin-bottom: 30px;
            max-width: 700px;
        }

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

        .slider-nav-btn {
            width: 50px;
            height: 50px;
            background-color: rgba(238, 164, 18, 0.8);
            color: var(--navy-blue);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: var(--transition);
        }

        .slider-nav-btn:hover {
            background-color: var(--gold);
            transform: scale(1.1);
        }

        .slider-indicators {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            z-index: 10;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            margin: 0 5px;
            cursor: pointer;
            transition: var(--transition);
        }

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

        /* Welcome Section */
        .welcome-section {
            background-color: var(--white);
            padding: 100px ;
            position: relative;
        }

        .welcome-container {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .welcome-content {
            flex: 1;
        }

        .welcome-title {
            font-size: 32px;
            color: var(--navy-blue);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .welcome-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--gold);
        }

        .welcome-text {
            font-size: 16px;
            line-height: 1.8;
            color: var(--dark-gray);
            margin-bottom: 25px;
        }

        .principal-card {
            background-color: var(--white);
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 30px;
            width: 350px;
            text-align: center;
            border-top: 5px solid var(--gold);
        }

        .principal-image {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 20px;
            border: 4px solid var(--gold);
        }

        .principal-image img {
            width: 100%;
            height: 120%;
            object-fit: cover;
        }

        .principal-name {
            font-size: 20px;
            font-weight: 700;
            color: var(--navy-blue);
            margin-bottom: 5px;
        }

        .principal-title {
            font-size: 16px;
            color: var(--gold);
            margin-bottom: 15px;
            font-weight: 600;
        }

        .principal-message {
            font-size: 15px;
            color: var(--gray);
            line-height: 1.6;
        }

        /* Vision & Mission */
        .vision-mission {
            background-color: var(--light-blue);
            padding: 100px ;
        }

        .vm-container {
            display: flex;
            gap: 30px;
        }

        .vm-card {
            flex: 1;
            background-color: var(--white);
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            border-top: 4px solid var(--gold);
        }

        .vm-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .vm-title {
            font-size: 24px;
            color: var(--navy-blue);
            margin-bottom: 20px;
            text-align: center;
            position: relative;
        }

        .vm-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 2px;
            background-color: var(--gold);
        }

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

        .vm-list {
            list-style: none;
        }

        .vm-list li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 12px;
            font-size: 15px;
            line-height: 1.6;
        }

        .vm-list li::before {
            content: '★';
            position: absolute;
            left: 0;
            color: var(--gold);
        }

        /* Footer */
        .footer {
            background-color: var(--navy-blue);
            color: var(--white);
            padding: 50px ;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .footer-col h3 {
            font-size: 20px;
            color: var(--gold);
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

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

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

        .footer-links {
            list-style: none;
        }

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

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            transition: var(--transition);
            display: flex;
            align-items: center;
        }

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

        .footer-links i {
            margin-right: 10px;
            color: var(--gold);
            width: 20px;
            text-align: center;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

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

        .social-links a:hover {
            background-color: var(--gold);
            color: var(--navy-blue);
            transform: translateY(-5px);
        }

        .newsletter-form {
            margin-top: 20px;
        }

        .newsletter-form input {
            width: 100%;
            padding: 12px 15px;
            border: none;
            border-radius: 4px;
            margin-bottom: 10px;
            font-size: 14px;
        }

        .newsletter-form button {
            width: 100%;
            padding: 12px;
            background-color: var(--gold);
            color: var(--navy-blue);
            border: none;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }

        .newsletter-form button:hover {
            background-color: var(--light-gold);
        }

        .footer-bottom {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
        }

        .footer-bottom a {
            color: var(--gold);
            font-weight: 600;
        }

        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--gold);
            color: var(--navy-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }

        .scroll-top.active {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            background-color: var(--light-gold);
            transform: translateY(-5px);
        }

        /* Responsive Styles */
@media (max-width: 1200px) {
    .navbar-container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .slide-content h2 {
        font-size: 36px;
    }
    
    .welcome-container {
        padding: 0 20px;
    }
}

@media (max-width: 992px) {
    .slides {
        height: 450px;
    }
    
    .slide-content h2 {
        font-size: 32px;
    }
    
    .welcome-container {
        flex-direction: column;
    }
    
    .principal-card {
        width: 100%;
        max-width: 500px;
        margin-top: 40px;
    }
    
    .vm-container {
        flex-direction: column;
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .notification-bar {
        margin-top: 80px;
    }
    
    .navbar-brand img {
        height: 50px;
    }
    
    .navbar-toggler {
        display: block;
    }
    
    .navbar-collapse {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--dark-blue);
        padding: 20px;
        transform: translateY(-150%);
        transition: transform 0.4s ease;
    }
    
    .navbar-collapse.show {
        transform: translateY(0);
    }
    
    .navbar-nav {
        flex-direction: column;
    }
    
    .nav-item {
        margin: 10px 0;
    }
    
    .dropdown-menu {
        position: static;
        display: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        background-color: transparent;
        padding: 0;
    }
    
    .dropdown:hover .dropdown-menu {
        display: block;
    }
    
    .dropdown-item {
        color: white;
        padding: 8px 0;
    }
    
    .slides {
        height: 400px;
    }
    
    .slide-content h2 {
        font-size: 28px;
    }
    
    .slide-content p {
        font-size: 16px;
    }
    
    .slider-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .welcome-section, .vision-mission {
        padding: 60px 20px;
    }
    
    .section-title h2 {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .notification-bar {
        margin-top: 70px;
    }
    
    .navbar {
        padding: 10px 0;
    }
    
    .navbar-brand img {
        height: 45px;
    }
    
    .navbar-collapse {
        top: 70px;
    }
    
    .slides {
        height: 350px;
    }
    
    .slide-content h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .slide-content p {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .slide-content .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .welcome-section, .vision-mission {
        padding: 50px 15px;
    }
    
    .welcome-title {
        font-size: 26px;
    }
    
    .principal-name {
        font-size: 18px;
    }
    
    .section-title h2 {
        font-size: 26px;
    }
    
    .vm-title {
        font-size: 22px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .footer-col {
        margin-bottom: 30px;
    }
    
    .footer-col:last-child {
        margin-bottom: 0;
    }
    
    .scroll-top {
        width: 40px;
        height: 40px;
        font-size: 18px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 400px) {
    .slides {
        height: 300px;
    }
    
    .slide-content h2 {
        font-size: 20px;
    }
    
    .slide-content p {
        font-size: 13px;
    }
    
    .slider-nav-btn {
        width: 35px;
        height: 35px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .welcome-title {
        font-size: 24px;
    }
    
    .principal-card {
        padding: 20px;
    }
}

    /* Responsive navbar*/
        @media (max-width: 768px) {
        .navbar-collapse {
            position: fixed;
            top: 90px;
            left: 0;
            width: 100%;
            background: var(--dark-blue);
            padding: 20px;
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
            transform: translateY(-150%);
            transition: transform 0.4s ease;
            z-index: 999;
            flex-direction: column;
        }

        .navbar-collapse.show {
            transform: translateY(0);
        }

        .navbar-nav {
            flex-direction: column;
            width: 100%;
        }

        .nav-item {
            margin: 10px 0;
        }

        .dropdown-menu {
            position: static !important;
            background: transparent !important;
            box-shadow: none !important;
            display: none;
            padding-left: 15px !important;
        }

        .dropdown-menu.show {
            display: block;
        }

        .dropdown-menu .submenu {
            position: static !important;
            display: none;
            padding-left: 15px !important;
            border-left: 2px solid var(--gold);
        }

        .dropdown-menu .submenu.show {
            display: block;
        }

        .dropdown-toggle::after {
            transition: transform 0.3s ease;
        }

        .dropdown-toggle.active::after {
            transform: rotate(180deg);
        }
        }

        /* Responsive login */
        @media (max-width: 768px) {
            .floating-login-wrapper {
                top: 15px;
                right: 15px;
            }
            .educator-login-btn {
                padding: 10px 15px 10px 40px;
                font-size: 12px;
            }
            .login-icon {
                left: 12px;
                font-size: 16px;
            }
            .login-badge {
                padding: 2px 6px;
                margin-left: 6px;
            }
        }
    