 body {
         margin: 0;
         font-family: Arial, sans-serif;
       }

       /* Loader wrapper */
       .loader-wrapper {
         position: fixed;
         top: 0;
         left: 0;
         width: 100%;
         height: 100%;
         background: #0a2a6b;
         /* Brand blue */
         display: flex;
         justify-content: center;
         align-items: center;
         z-index: 9999;
         transition: opacity 0.6s ease, visibility 0.6s ease;
       }

       .loader-wrapper.loaded {
         opacity: 0;
         visibility: hidden;
       }

       /* SVG container */
       .school-logo-svg {
         width: 130px;
         height: 130px;
       }

       /* Circle animation */
       .circle {
         stroke-dasharray: 283;
         stroke-dashoffset: 283;
         transform-origin: 50% 50%;
         animation: circle-spin 2s ease-in-out infinite;
       }

       @keyframes circle-spin {
         0% {
           stroke-dashoffset: 283;
           transform: rotate(0deg);
         }

         50% {
           stroke-dashoffset: 70;
           transform: rotate(180deg);
         }

         100% {
           stroke-dashoffset: 283;
           transform: rotate(360deg);
         }
       }

       /* GB text animation */
       .logo-text {
         opacity: 0;
         animation: text-fade 2s ease-in-out infinite;
       }

       @keyframes text-fade {
         0% {
           opacity: 0;
         }

         40% {
           opacity: 1;
         }

         60% {
           opacity: 1;
         }

         100% {
           opacity: 0;
         }
       }

       .center-logo {
         position: absolute;
         width: 80px;
         height: 80px;
         border-radius: 50%;
         transform: scale(1.2);
       }

        /* Loader wrapper styles */
       .loader-wrapper {
         position: fixed;
         top: 0;
         left: 0;
         width: 100%;
         height: 100%;
         background-color: #fff;
         /* page background while loading */
         display: flex;
         justify-content: center;
         align-items: center;
         z-index: 9999;
         transition: opacity 0.6s ease, visibility 0.6s ease;
         background: #0a2a6b;

       }

       /* Loader GIF */
       .loader-gif {
         width: 120px;
         /* you can adjust size */
         max-width: 30vw;
         height: auto;
       }

       /* Hide loader smoothly */
       .loader-wrapper.fade-out {
         opacity: 0;
         visibility: hidden;
       }

         .nav-logo img {
           width: 44%;
           margin-left: auto;
           margin-right: auto;
           display: block;
         }

         /* small tweak if you want a different size on very small screens */
         @media (max-width: 420px) {
           .nav-logo img {
             width: 74%;

           }
         }

             /* Hero Section */
       .hero-section {
         position: relative;
         height: 60vh;
         display: flex;
         flex-direction: column;
         /* justify-content: center; */
         align-items: center;
         overflow: hidden;
         color: #fff;
         text-align: center;
       }

      

       /* Dark overlay */
       .hero-overlay {
         position: absolute;
         top: 0;
         left: 0;
         width: 100%;
         height: 100%;
         background: rgba(0, 0, 0, 0.5);
         z-index: -1;
       }

       /* Hero Text */
       .hero-text {
         z-index: 5;
         margin-top: 120px;
         /* Push down below nav */
       }

       .hero-text h1 {
         font-size: 3.5rem;
         font-weight: 700;
       }

       .hero-text p {
         font-size: 1.2rem;
         margin-top: 15px;
       }

       /* Responsive */
       @media (max-width: 768px) {
         .hero-text h1 {
           font-size: 2rem;
         }

         .hero-text p {
           font-size: 1rem;
         }

         .hero-section {
           height: 70vh;
         }
       }

       /* Breadcrumbs navigation (e.g., HOME | CURRICULUM...) */
       .breadcrumbs {
         margin-bottom: 1rem;
         font-family: 'Montserrat', sans-serif;
         font-size: 0.8rem;
         font-weight: 600;
         letter-spacing: 1px;
         text-transform: uppercase;
       }

       .breadcrumbs a {
         color: #ffffff;
         text-decoration: none;
         transition: text-decoration 0.3s ease;
       }

       .breadcrumbs a:hover {
         text-decoration: underline;
       }

       .breadcrumbs .separator {
         margin: 0 10px;
       }

       .breadcrumbs span {
         opacity: 0.8;
         /* Make the current page slightly less prominent */
       }

       .tag-event {
         background-color: #f39c12;
         color: white;
       }

       .tag-achievement {
         background-color: #27ae60;
         color: white;
       }

       .tag-community {
         background-color: #3498db;
         color: white;
       }

       .nav-logo {
         text-align: center;
         flex: 1;
       }

       .newlogo img {
         /* height: 60px; */
         /* adjust size */
       }

       @media only screen and (max-width: 600px) {
         .newlogo img {
           height: 60px;
           /* adjust size */
         }

         .hide-mob {
           display: none;
         }

         .sticky-nav {
           width: 100% !important;
         }
       }


        /* --- Global Styles & Variables --- */
:root {
    --primary-color: #003366; /* Deep Navy Blue */
    --secondary-color: #005A9C; /* Brighter Blue */
    --accent-color: #FDB813; /* Gold/Yellow */
    --text-color: #333333;
    --light-gray: #666666;
    --bg-color: #FFFFFF;
    --light-bg: #F8F9FA;
    
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Lato', sans-serif;

    --border-radius: 8px;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
}





h2, h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 { font-size: 2.8rem; font-weight: 700; }
h2 { font-size: 2.2rem; font-weight: 600; border-left: 4px solid var(--accent-color); padding-left: 15px; margin-bottom: 1.5rem; }
h3 { font-size: 1.4rem; font-weight: 600; color: var(--secondary-color); }

p {
    margin-bottom: 1rem;
    color: var(--light-gray);
}

/* --- Header --- */


/* --- General Section Styling --- */
.content-section {
    padding: 40px 0;
}

/* --- Vision & Mission Cards --- */
.card-section {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}
.card {
    flex: 1;
    background: var(--light-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    border-top: 5px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}
.card-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* --- Principal's Note Section --- */
.standout-section {
    display: flex;
    align-items: center;
    gap: 40px;
    background-color: var(--primary-color);
    color: #fff;
    padding: 40px;
    border-radius: var(--border-radius);
}
.standout-section h2 {
    color: #fff;
    border-left-color: var(--accent-color);
}
.standout-section p, .standout-section blockquote {
    color: #e0e0e0;
}
.principal-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent-color);
}
.principal-text {
    flex: 1;
}
.principal-text blockquote {
    border-left: 3px solid var(--secondary-color);
    padding-left: 20px;
    margin: 20px 0;
    font-style: italic;
    font-size: 1.1rem;
}
.principal-text footer {
    font-style: normal;
    font-weight: bold;
    color: #fff;
    margin-top: 10px;
}

/* --- Facilities Grid --- */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 2rem;
}
.facility-item {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: background-color 0.3s ease;
}
.facility-item:hover {
    background-color: var(--light-bg);
}
.facility-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-right: 15px;
    width: 30px; /* Align text nicely */
    text-align: center;
}

/* --- Achievements List --- */
.alternate-bg {
    background-color: var(--light-bg);
    padding: 40px;
    margin: 0 -20px; /* Extend background to container edges */
    border-radius: var(--border-radius);
}
.achievements-list {
    list-style: none;
    padding: 0;
}
.achievements-list li {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    margin-bottom: 15px;
}
.achievements-list i {
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-right: 15px;
}

/* --- Final Sections --- */
.call-to-action {
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
}
.call-to-action h2, .call-to-action p {
    color: #fff;
}
.call-to-action .tagline {
    font-size: 1.2rem;
    font-weight: 500;
    font-family: var(--font-heading);
    margin-top: 1rem;
    margin-bottom: 0;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }

    .card-section {
        flex-direction: column;
    }
    .standout-section {
        flex-direction: column;
        text-align: center;
    }
    .principal-text blockquote {
        margin-left: 0;
        text-align: left;
    }
    .alternate-bg {
        margin: 0;
        padding: 30px 20px;
    }
}