    /* --- 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;
    }
}


