```css
/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* ===== COLORS ===== */
:root {
    --primary: #1a2b4c;       /* navy blue - trust, stability, depth */
    --primary-light: #2c3f6e;  /* lighter navy for hover effects */
    --secondary: #ffb81c;      /* rich gold - hope, brightness, excellence */
    --accent: #1e3c72;         /* keep or adjust as needed */
    --light-bg: #f9f9f9;
    --dark: #2c3e50;
    --text-light: #f4f4f4;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; color: var(--primary); }
h3 { font-size: 1.5rem; }

/* ===== CONTAINER ===== */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: var(--primary-light);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

/* ===== HEADER & NAVIGATION ===== */
header {
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.logo span {
    color: var(--secondary);
    font-size: 1rem;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 2rem;
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary);
}

/* Dropdown for School (simple) */
.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1;
    top: 100%;
    left: 0;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 0.8rem 1rem;
    border-bottom: 1px solid #eee;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/Hero_Banner.jpg.png') center/cover;
    color: white;
    text-align: center;
    padding: 5rem 0;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

/* ===== STATS BAR ===== */
.stats {
    background: var(--primary);
    color: white;
    padding: 3rem 0;
}

.stats .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
}

.stat-label {
    font-size: 1rem;
    text-transform: uppercase;
}

/* ===== SECTIONS ===== */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

/* Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card-image {
    height: 200px;
    background: #ddd;
    background-size: cover;
    background-position: center;
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    margin-bottom: 0.5rem;
}

/* ===== FOOTER ===== */
footer {
    background: var(--dark);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-grid h4 {
    margin-bottom: 1rem;
}

.footer-grid ul {
    list-style: none;
}

.footer-grid a {
    color: var(--text-light);
    text-decoration: none;
    line-height: 2;
}

.footer-grid a:hover {
    text-decoration: underline;
}

.copyright {
    text-align: center;
    border-top: 1px solid #555;
    padding-top: 1rem;
    font-size: 0.9rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: white;
        position: absolute;
        top: 100%;
        left: 0;
        padding: 1rem;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        margin: 0.5rem 0;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        display: none;
        padding-left: 1rem;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }
}
.team-photo {
    width: 80%;          /* makes image fill the card width */
    height: 180px;        /* set a fixed height – adjust to your liking */
    object-fit: cover;    /* crops the image neatly to fill the box without distortion */
    display: block;       /* removes extra space below the image */
}
Styles .CSS

/* ===== SLIDESHOW STYLES ===== */
.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-slide {
    display: none;
}

.carousel-slide.active-slide {
    display: block;
}

.carousel-slide img {
    width: 100%;
    height: 600px;          /* Set a fixed height – adjust as needed */
    object-fit: cover;      /* Crops the image to fill the box without stretching */
    border-radius: 8px;
}

.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.carousel-prev:hover, .carousel-next:hover {
    background-color: rgba(0,0,0,0.8);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.carousel-dots {
    text-align: center;
    margin-top: 15px;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}
.active-dot, .dot:hover {
    background-color: #333;
}
/* ===== PROGRAMS PAGE TEXT WIDTH ===== */
#scholarship p, #scholarship ul,
#girls p, #girls ul,
#vocational p, #vocational ul {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Optional: also limit headings if you want them centered/narrower */
#scholarship h2, #girls h2, #vocational h2 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}/* Gentle pulse animation for Donate button */
@keyframes gentlePulse {
    0% { 
        transform: scale(1); 
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }
    50% { 
        transform: scale(1.05); 
        box-shadow: 0 5px 18px rgba(255,184,28,0.5);
    }
    100% { 
        transform: scale(1); 
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }
}

.donate-btn {
    animation: gentlePulse 2s ease-in-out infinite;
}