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

body {
    font-family: 'Georgia', serif;
    color: #333;
    background-color: #f9f9f9;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #0b1a33 0%, #1a3a6d 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #FFD700;
}

.logo span {
    color: #FFA500;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 1.5rem;
    position: relative;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    background-color: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #0b1a33;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 4px;
    margin-top: 0.5rem;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    display: block;
    text-decoration: none;
}

.dropdown-content a:hover {
    background-color: rgba(255, 215, 0, 0.2);
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Hero Section with Video */
.hero {
    position: relative;
    height: 80vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(11, 26, 51, 0.8), rgba(11, 26, 51, 0.9));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 2rem;
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #fff;
}

.btn {
    display: inline-block;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #0b1a33;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid #FFD700;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: linear-gradient(45deg, #FFA500, #FFD700);
}

/* About Content */
.about-container {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #0b1a33;
    margin-bottom: 1rem;
}

.section-title p {
    color: #666;
    font-size: 1.1rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text {
    padding: 2rem;
}

.about-text h3 {
    color: #0b1a33;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #555;
}

.about-image {
    height: 400px;
    background: linear-gradient(45deg, #0b1a33, #1a3a6d);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    /* keeps image inside the box */
}

.about-image img {
    max-width: 100%;
    /* prevents image from becoming too big */
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
}

.mission-vision {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mission-box, .vision-box {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #FFD700;
}

.mission-box h3, .vision-box h3 {
    color: #0b1a33;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.mission-box p, .vision-box p {
    color: #666;
    line-height: 1.6;
}

.values {
    margin-top: 4rem;
    text-align: center;
}

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

.value-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
}

.value-icon {
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 1rem;
}

.value-item h3 {
    color: #0b1a33;
    margin-bottom: 1rem;
}

.value-item p {
    color: #666;
    line-height: 1.6;
}

/* Events Styles */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

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

.event-card:hover {
    transform: translateY(-10px);
}

.event-image {
    height: 200px;
    background: linear-gradient(45deg, #0b1a33, #1a3a6d);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.event-content {
    padding: 1.5rem;
}

.event-date {
    color: #FFD700;
    font-weight: bold;
    margin-bottom: 0.5rem;
    display: block;
}

.event-card h3 {
    color: #0b1a33;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.event-card p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.event-location {
    display: flex;
    align-items: center;
    color: #888;
    font-size: 0.9rem;
}

.event-location::before {
    content: "\ud83d\udccd";
    margin-right: 0.5rem;
}

/* Executives and Awardees Styles */
.executives-grid, .awardees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

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

.executive-card:hover, .awardee-card:hover {
    transform: translateY(-10px);
}

.executive-image, .awardee-image {
    height: 250px;
    background: linear-gradient(45deg, #0b1a33, #1a3a6d);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 5rem;
}

.executive-info, .awardee-info {
    padding: 1.5rem;
}

.executive-info h3, .awardee-info h3 {
    color: #0b1a33;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.executive-position, .awardee-award {
    color: #FFD700;
    font-weight: bold;
    margin-bottom: 1rem;
    display: block;
}

.executive-info p, .awardee-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.award-year {
    display: inline-block;
    background: #FFD700;
    color: #0b1a33;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-top: 0.5rem;
}

.executive-contact {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    color: #888;
    font-size: 0.9rem;
}

.contact-item::before {
    content: "\ud83d\udce7 ";
    margin-right: 0.3rem;
}

/* Blog Styles */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

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

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-image {
    height: 200px;
    background: linear-gradient(45deg, #0b1a33, #1a3a6d);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-card h3 {
    color: #0b1a33;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.blog-card p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.read-more {
    display: inline-block;
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    margin-top: 0.5rem;
}

.read-more:hover {
    text-decoration: underline;
}

/* Gallery Styles */
.gallery-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
}

.gallery-preview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 images in one row */
    gap: 1.5rem;
    margin-top: 3rem;
}

.preview-item {
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* TV Styles */
.video-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(45deg, #0b1a33, #1a3a6d);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 5rem;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

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

.program-card:hover {
    transform: translateY(-10px);
}

.program-icon {
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 1rem;
}

.program-card h3 {
    color: #0b1a33;
    margin-bottom: 1rem;
}

.program-card p {
    color: #666;
    line-height: 1.6;
}

/* Constitution Styles */
.constitution-content {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.constitution-content h3 {
    color: #0b1a33;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 0.5rem;
}

.constitution-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #555;
}

.constitution-link {
    text-align: center;
    margin: 3rem 0;
}

/* Contact Styles */
.contact-container {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.contact-info {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    color: #0b1a33;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 0.5rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: #FFD700;
    margin-right: 1rem;
    min-width: 30px;
}

.contact-text h4 {
    color: #0b1a33;
    margin-bottom: 0.3rem;
}

.contact-text p, .contact-text a {
    color: #666;
    text-decoration: none;
    line-height: 1.6;
}

.contact-text a:hover {
    color: #FFD700;
}

.social-media {
    margin-top: 2rem;
}

.social-media h4 {
    color: #0b1a33;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, #0b1a33, #1a3a6d);
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    color: white;
    font-weight: bold;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #0b1a33;
    transform: translateY(-3px);
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    color: #0b1a33;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 0.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #0b1a33;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFD700;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    display: inline-block;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #0b1a33;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    font-family: inherit;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: linear-gradient(45deg, #FFA500, #FFD700);
}

/* Features Section */
.features {
    padding: 5rem 2rem;
    background-color: white;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    border-top: 4px solid #FFD700;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #0b1a33;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #0b1a33 0%, #1a3a6d 100%);
    color: white;
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #FFD700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section p, .footer-section a {
    color: #ccc;
    margin-bottom: 0.5rem;
    display: block;
    text-decoration: none;
}

.footer-section a:hover {
    color: #FFD700;
}

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

.social-links-footer a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: all 0.3s ease;
}

.social-links-footer a:hover {
    background: #FFD700;
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
}

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

    nav ul {
        margin-top: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul li {
        margin: 0.5rem;
    }

    .hero h2 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        height: 300px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .video-placeholder {
        height: 300px;
    }

    .constitution-content {
        padding: 2rem;
    }
}

/* Consolidated page-specific styles */
/* Styles from contact.html */
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', serif;
            color: #333;
            background-color: #f9f9f9;
        }

        /* Header Styles */
        header {
            background: linear-gradient(135deg, #0b1a33 0%, #1a3a6d 100%);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

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

        .logo {
            display: flex;
            align-items: center;
        }

        .logo h1 {
            font-size: 1.5rem;
            font-weight: bold;
            color: #FFD700;
        }

        .logo span {
            color: #FFA500;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 1.5rem;
            position: relative;
        }

        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        nav ul li a:hover {
            background-color: rgba(255, 215, 0, 0.2);
            transform: translateY(-2px);
        }

        .dropdown {
            position: relative;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            background-color: #0b1a33;
            min-width: 160px;
            box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
            z-index: 1;
            border-radius: 4px;
            margin-top: 0.5rem;
        }

        .dropdown-content a {
            color: white;
            padding: 12px 16px;
            display: block;
            text-decoration: none;
        }

        .dropdown-content a:hover {
            background-color: rgba(255, 215, 0, 0.2);
        }

        .dropdown:hover .dropdown-content {
            display: block;
        }

        /* Contact Hero Section */
        .contact-hero {
            background: linear-gradient(rgba(11, 26, 51, 0.8), rgba(11, 26, 51, 0.9)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%231a3a6d"/><circle cx="20" cy="20" r="2" fill="%23FFD700" opacity="0.3"/><circle cx="50" cy="50" r="3" fill="%23FFA500" opacity="0.3"/><circle cx="80" cy="30" r="2" fill="%23FFD700" opacity="0.3"/></svg>');
            background-size: cover;
            background-position: center;
            height: 40vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }

        .contact-hero-content {
            max-width: 800px;
            padding: 2rem;
        }

        .contact-hero h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: #FFD700;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        /* Contact Content */
        .contact-container {
            max-width: 1200px;
            margin: 3rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            grid-column: 1 / -1;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: #0b1a33;
            margin-bottom: 1rem;
        }

        .section-title p {
            color: #666;
            font-size: 1.1rem;
        }

        .contact-info {
            background: white;
            padding: 2.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .contact-info h3 {
            color: #0b1a33;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            border-bottom: 2px solid #FFD700;
            padding-bottom: 0.5rem;
        }

        .contact-details {
            margin-bottom: 2rem;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
        }

        .contact-icon {
            font-size: 1.5rem;
            color: #FFD700;
            margin-right: 1rem;
            min-width: 30px;
        }

        .contact-text h4 {
            color: #0b1a33;
            margin-bottom: 0.3rem;
        }

        .contact-text p, .contact-text a {
            color: #666;
            text-decoration: none;
            line-height: 1.6;
        }

        .contact-text a:hover {
            color: #FFD700;
        }

        .social-media {
            margin-top: 2rem;
        }

        .social-media h4 {
            color: #0b1a33;
            margin-bottom: 1rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            display: inline-block;
            width: 45px;
            height: 45px;
            background: linear-gradient(45deg, #0b1a33, #1a3a6d);
            border-radius: 50%;
            text-align: center;
            line-height: 45px;
            color: white;
            font-weight: bold;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-link:hover {
            background: linear-gradient(45deg, #FFD700, #FFA500);
            color: #0b1a33;
            transform: translateY(-3px);
        }

        .contact-form {
            background: white;
            padding: 2.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .contact-form h3 {
            color: #0b1a33;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            border-bottom: 2px solid #FFD700;
            padding-bottom: 0.5rem;
        }

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

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #0b1a33;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #FFD700;
        }

        .form-group textarea {
            height: 150px;
            resize: vertical;
        }

        .submit-btn {
            display: inline-block;
            background: linear-gradient(45deg, #FFD700, #FFA500);
            color: #0b1a33;
            padding: 12px 30px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: all 0.3s ease;
            border: none;
            font-size: 1rem;
            cursor: pointer;
            width: 100%;
            font-family: inherit;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            background: linear-gradient(45deg, #FFA500, #FFD700);
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #0b1a33 0%, #1a3a6d 100%);
            color: white;
            padding: 3rem 2rem 1rem;
            margin-top: 4rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            color: #FFD700;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .footer-section p, .footer-section a {
            color: #ccc;
            margin-bottom: 0.5rem;
            display: block;
            text-decoration: none;
        }

        .footer-section a:hover {
            color: #FFD700;
        }

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

        .social-links-footer a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            transition: all 0.3s ease;
        }

        .social-links-footer a:hover {
            background: #FFD700;
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                padding: 1rem;
            }
            
            nav ul {
                margin-top: 1rem;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav ul li {
                margin: 0.5rem;
            }
            
            .contact-hero h2 {
                font-size: 2.5rem;
            }
            
            .contact-container {
                grid-template-columns: 1fr;
            }
        }


/* Styles from constitution.html */
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', serif;
            color: #333;
            background-color: #f9f9f9;
        }

        /* Header Styles */
        header {
            background: linear-gradient(135deg, #0b1a33 0%, #1a3a6d 100%);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

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

        .logo {
            display: flex;
            align-items: center;
        }

        .logo h1 {
            font-size: 1.5rem;
            font-weight: bold;
            color: #FFD700;
        }

        .logo span {
            color: #FFA500;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 1.5rem;
            position: relative;
        }

        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        nav ul li a:hover {
            background-color: rgba(255, 215, 0, 0.2);
            transform: translateY(-2px);
        }

        .dropdown {
            position: relative;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            background-color: #0b1a33;
            min-width: 160px;
            box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
            z-index: 1;
            border-radius: 4px;
            margin-top: 0.5rem;
        }

        .dropdown-content a {
            color: white;
            padding: 12px 16px;
            display: block;
            text-decoration: none;
        }

        .dropdown-content a:hover {
            background-color: rgba(255, 215, 0, 0.2);
        }

        .dropdown:hover .dropdown-content {
            display: block;
        }

        /* Constitution Hero Section */
        .constitution-hero {
            background: linear-gradient(rgba(11, 26, 51, 0.8), rgba(11, 26, 51, 0.9)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%231a3a6d"/><circle cx="20" cy="20" r="2" fill="%23FFD700" opacity="0.3"/><circle cx="50" cy="50" r="3" fill="%23FFA500" opacity="0.3"/><circle cx="80" cy="30" r="2" fill="%23FFD700" opacity="0.3"/></svg>');
            background-size: cover;
            background-position: center;
            height: 40vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }

        .constitution-hero-content {
            max-width: 800px;
            padding: 2rem;
        }

        .constitution-hero h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: #FFD700;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        /* Constitution Content */
        .constitution-container {
            max-width: 1200px;
            margin: 3rem auto;
            padding: 0 2rem;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: #0b1a33;
            margin-bottom: 1rem;
        }

        .section-title p {
            color: #666;
            font-size: 1.1rem;
        }

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

        .constitution-content h3 {
            color: #0b1a33;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            border-bottom: 2px solid #FFD700;
            padding-bottom: 0.5rem;
        }

        .constitution-content p {
            margin-bottom: 1rem;
            line-height: 1.8;
            color: #555;
        }

        .constitution-link {
            text-align: center;
            margin: 3rem 0;
        }

        .btn {
            display: inline-block;
            background: linear-gradient(45deg, #FFD700, #FFA500);
            color: #0b1a33;
            padding: 15px 40px;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            transition: all 0.3s ease;
            border: 2px solid #FFD700;
            font-size: 1.2rem;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            background: linear-gradient(45deg, #FFA500, #FFD700);
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #0b1a33 0%, #1a3a6d 100%);
            color: white;
            padding: 3rem 2rem 1rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            color: #FFD700;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .footer-section p, .footer-section a {
            color: #ccc;
            margin-bottom: 0.5rem;
            display: block;
            text-decoration: none;
        }

        .footer-section a:hover {
            color: #FFD700;
        }

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

        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: #FFD700;
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                padding: 1rem;
            }
            
            nav ul {
                margin-top: 1rem;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav ul li {
                margin: 0.5rem;
            }
            
            .constitution-hero h2 {
                font-size: 2.5rem;
            }
            
            .constitution-content {
                padding: 2rem;
            }
        }


/* Styles from gallery.html */
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', serif;
            color: #333;
            background-color: #f9f9f9;
        }

        /* Header Styles */
        header {
            background: linear-gradient(135deg, #0b1a33 0%, #1a3a6d 100%);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

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

        .logo {
            display: flex;
            align-items: center;
        }

        .logo h1 {
            font-size: 1.5rem;
            font-weight: bold;
            color: #FFD700;
        }

        .logo span {
            color: #FFA500;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 1.5rem;
            position: relative;
        }

        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        nav ul li a:hover {
            background-color: rgba(255, 215, 0, 0.2);
            transform: translateY(-2px);
        }

        .dropdown {
            position: relative;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            background-color: #0b1a33;
            min-width: 160px;
            box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
            z-index: 1;
            border-radius: 4px;
            margin-top: 0.5rem;
        }

        .dropdown-content a {
            color: white;
            padding: 12px 16px;
            display: block;
            text-decoration: none;
        }

        .dropdown-content a:hover {
            background-color: rgba(255, 215, 0, 0.2);
        }

        .dropdown:hover .dropdown-content {
            display: block;
        }

        /* Gallery Hero Section */
        .gallery-hero {
            background: linear-gradient(rgba(11, 26, 51, 0.8), rgba(11, 26, 51, 0.9)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%231a3a6d"/><circle cx="20" cy="20" r="2" fill="%23FFD700" opacity="0.3"/><circle cx="50" cy="50" r="3" fill="%23FFA500" opacity="0.3"/><circle cx="80" cy="30" r="2" fill="%23FFD700" opacity="0.3"/></svg>');
            background-size: cover;
            background-position: center;
            height: 40vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }

        .gallery-hero-content {
            max-width: 800px;
            padding: 2rem;
        }

        .gallery-hero h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: #FFD700;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        /* Gallery Content */
        .gallery-container {
            max-width: 1200px;
            margin: 3rem auto;
            padding: 0 2rem;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: #0b1a33;
            margin-bottom: 1rem;
        }

        .section-title p {
            color: #666;
            font-size: 1.1rem;
        }

        .gallery-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 3rem;
            padding: 2rem;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .gallery-intro p {
            font-size: 1.2rem;
            line-height: 1.8;
            color: #555;
        }

        .gallery-button {
            display: inline-block;
            background: linear-gradient(45deg, #FFD700, #FFA500);
            color: #0b1a33;
            padding: 15px 40px;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            transition: all 0.3s ease;
            border: 2px solid #FFD700;
            font-size: 1.2rem;
            margin-top: 1rem;
        }

        .gallery-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            background: linear-gradient(45deg, #FFA500, #FFD700);
        }

        .gallery-preview {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .preview-item {
            height: 200px;
            background: linear-gradient(45deg, #0b1a33, #1a3a6d);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #0b1a33 0%, #1a3a6d 100%);
            color: white;
            padding: 3rem 2rem 1rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            color: #FFD700;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .footer-section p, .footer-section a {
            color: #ccc;
            margin-bottom: 0.5rem;
            display: block;
            text-decoration: none;
        }

        .footer-section a:hover {
            color: #FFD700;
        }

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

        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: #FFD700;
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                padding: 1rem;
            }
            
            nav ul {
                margin-top: 1rem;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav ul li {
                margin: 0.5rem;
            }
            
            .gallery-hero h2 {
                font-size: 2.5rem;
            }
        }


/* Styles from awardees.html */
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', serif;
            color: #333;
            background-color: #f9f9f9;
        }

        /* Header Styles */
        header {
            background: linear-gradient(135deg, #0b1a33 0%, #1a3a6d 100%);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

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

        .logo {
            display: flex;
            align-items: center;
        }

        .logo h1 {
            font-size: 1.5rem;
            font-weight: bold;
            color: #FFD700;
        }

        .logo span {
            color: #FFA500;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 1.5rem;
            position: relative;
        }

        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        nav ul li a:hover {
            background-color: rgba(255, 215, 0, 0.2);
            transform: translateY(-2px);
        }

        .dropdown {
            position: relative;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            background-color: #0b1a33;
            min-width: 160px;
            box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
            z-index: 1;
            border-radius: 4px;
            margin-top: 0.5rem;
        }

        .dropdown-content a {
            color: white;
            padding: 12px 16px;
            display: block;
            text-decoration: none;
        }

        .dropdown-content a:hover {
            background-color: rgba(255, 215, 0, 0.2);
        }

        .dropdown:hover .dropdown-content {
            display: block;
        }

        /* Awardees Hero Section */
        .awardees-hero {
            background: linear-gradient(rgba(11, 26, 51, 0.8), rgba(11, 26, 51, 0.9)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%231a3a6d"/><circle cx="20" cy="20" r="2" fill="%23FFD700" opacity="0.3"/><circle cx="50" cy="50" r="3" fill="%23FFA500" opacity="0.3"/><circle cx="80" cy="30" r="2" fill="%23FFD700" opacity="0.3"/></svg>');
            background-size: cover;
            background-position: center;
            height: 40vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }

        .awardees-hero-content {
            max-width: 800px;
            padding: 2rem;
        }

        .awardees-hero h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: #FFD700;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        /* Awardees Content */
        .awardees-container {
            max-width: 1200px;
            margin: 3rem auto;
            padding: 0 2rem;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: #0b1a33;
            margin-bottom: 1rem;
        }

        .section-title p {
            color: #666;
            font-size: 1.1rem;
        }

        .awardees-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

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

        .awardee-card:hover {
            transform: translateY(-10px);
        }

        .awardee-image {
            height: 250px;
            background: linear-gradient(45deg, #0b1a33, #1a3a6d);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 5rem;
        }

        .awardee-info {
            padding: 1.5rem;
        }

        .awardee-info h3 {
            color: #0b1a33;
            margin-bottom: 0.5rem;
            font-size: 1.4rem;
        }

        .awardee-award {
            color: #FFD700;
            font-weight: bold;
            margin-bottom: 1rem;
            display: block;
        }

        .awardee-info p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .award-year {
            display: inline-block;
            background: #FFD700;
            color: #0b1a33;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: bold;
            margin-top: 0.5rem;
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #0b1a33 0%, #1a3a6d 100%);
            color: white;
            padding: 3rem 2rem 1rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            color: #FFD700;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .footer-section p, .footer-section a {
            color: #ccc;
            margin-bottom: 0.5rem;
            display: block;
            text-decoration: none;
        }

        .footer-section a:hover {
            color: #FFD700;
        }

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

        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: #FFD700;
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                padding: 1rem;
            }
            
            nav ul {
                margin-top: 1rem;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav ul li {
                margin: 0.5rem;
            }
            
            .awardees-hero h2 {
                font-size: 2.5rem;
            }
        }


/* Styles from executives.html */
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', serif;
            color: #333;
            background-color: #f9f9f9;
        }

        /* Header Styles */
        header {
            background: linear-gradient(135deg, #0b1a33 0%, #1a3a6d 100%);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

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

        .logo {
            display: flex;
            align-items: center;
        }

        .logo h1 {
            font-size: 1.5rem;
            font-weight: bold;
            color: #FFD700;
        }

        .logo span {
            color: #FFA500;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 1.5rem;
            position: relative;
        }

        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        nav ul li a:hover {
            background-color: rgba(255, 215, 0, 0.2);
            transform: translateY(-2px);
        }

        .dropdown {
            position: relative;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            background-color: #0b1a33;
            min-width: 160px;
            box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
            z-index: 1;
            border-radius: 4px;
            margin-top: 0.5rem;
        }

        .dropdown-content a {
            color: white;
            padding: 12px 16px;
            display: block;
            text-decoration: none;
        }

        .dropdown-content a:hover {
            background-color: rgba(255, 215, 0, 0.2);
        }

        .dropdown:hover .dropdown-content {
            display: block;
        }

        /* Executives Hero Section */
        .executives-hero {
            background: linear-gradient(rgba(11, 26, 51, 0.8), rgba(11, 26, 51, 0.9)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%231a3a6d"/><circle cx="20" cy="20" r="2" fill="%23FFD700" opacity="0.3"/><circle cx="50" cy="50" r="3" fill="%23FFA500" opacity="0.3"/><circle cx="80" cy="30" r="2" fill="%23FFD700" opacity="0.3"/></svg>');
            background-size: cover;
            background-position: center;
            height: 40vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }

        .executives-hero-content {
            max-width: 800px;
            padding: 2rem;
        }

        .executives-hero h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: #FFD700;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        /* Executives Content */
        .executives-container {
            max-width: 1200px;
            margin: 3rem auto;
            padding: 0 2rem;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: #0b1a33;
            margin-bottom: 1rem;
        }

        .section-title p {
            color: #666;
            font-size: 1.1rem;
        }

        .executives-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

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

        .executive-card:hover {
            transform: translateY(-10px);
        }

        .executive-image {
            height: 250px;
            background: linear-gradient(45deg, #0b1a33, #1a3a6d);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 5rem;
        }

        .executive-info {
            padding: 1.5rem;
        }

        .executive-info h3 {
            color: #0b1a33;
            margin-bottom: 0.5rem;
            font-size: 1.4rem;
        }

        .executive-position {
            color: #FFD700;
            font-weight: bold;
            margin-bottom: 1rem;
            display: block;
        }

        .executive-info p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .executive-contact {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 1rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            color: #888;
            font-size: 0.9rem;
        }

        .contact-item::before {
            content: "📧 ";
            margin-right: 0.3rem;
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #0b1a33 0%, #1a3a6d 100%);
            color: white;
            padding: 3rem 2rem 1rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            color: #FFD700;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .footer-section p, .footer-section a {
            color: #ccc;
            margin-bottom: 0.5rem;
            display: block;
            text-decoration: none;
        }

        .footer-section a:hover {
            color: #FFD700;
        }

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

        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: #FFD700;
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                padding: 1rem;
            }
            
            nav ul {
                margin-top: 1rem;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav ul li {
                margin: 0.5rem;
            }
            
            .executives-hero h2 {
                font-size: 2.5rem;
            }
        }


/* Styles from tv.html */
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', serif;
            color: #333;
            background-color: #f9f9f9;
        }

        /* Header Styles */
        header {
            background: linear-gradient(135deg, #0b1a33 0%, #1a3a6d 100%);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

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

        .logo {
            display: flex;
            align-items: center;
        }

        .logo h1 {
            font-size: 1.5rem;
            font-weight: bold;
            color: #FFD700;
        }

        .logo span {
            color: #FFA500;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 1.5rem;
            position: relative;
        }

        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        nav ul li a:hover {
            background-color: rgba(255, 215, 0, 0.2);
            transform: translateY(-2px);
        }

        .dropdown {
            position: relative;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            background-color: #0b1a33;
            min-width: 160px;
            box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
            z-index: 1;
            border-radius: 4px;
            margin-top: 0.5rem;
        }

        .dropdown-content a {
            color: white;
            padding: 12px 16px;
            display: block;
            text-decoration: none;
        }

        .dropdown-content a:hover {
            background-color: rgba(255, 215, 0, 0.2);
        }

        .dropdown:hover .dropdown-content {
            display: block;
        }

        /* TV Hero Section */
        .tv-hero {
            background: linear-gradient(rgba(11, 26, 51, 0.8), rgba(11, 26, 51, 0.9)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%231a3a6d"/><circle cx="20" cy="20" r="2" fill="%23FFD700" opacity="0.3"/><circle cx="50" cy="50" r="3" fill="%23FFA500" opacity="0.3"/><circle cx="80" cy="30" r="2" fill="%23FFD700" opacity="0.3"/></svg>');
            background-size: cover;
            background-position: center;
            height: 40vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }

        .tv-hero-content {
            max-width: 800px;
            padding: 2rem;
        }

        .tv-hero h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: #FFD700;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        /* TV Content */
        .tv-container {
            max-width: 1200px;
            margin: 3rem auto;
            padding: 0 2rem;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: #0b1a33;
            margin-bottom: 1rem;
        }

        .section-title p {
            color: #666;
            font-size: 1.1rem;
        }

        .tv-content {
            background: white;
            padding: 3rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            text-align: center;
        }

        .tv-content h3 {
            color: #0b1a33;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
        }

        .tv-content p {
            margin-bottom: 1.5rem;
            line-height: 1.8;
            color: #555;
            font-size: 1.1rem;
        }

        .video-placeholder {
            width: 100%;
            height: 500px;
            background: linear-gradient(45deg, #0b1a33, #1a3a6d);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 5rem;
            margin: 2rem 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .btn {
            display: inline-block;
            background: linear-gradient(45deg, #FFD700, #FFA500);
            color: #0b1a33;
            padding: 15px 40px;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            transition: all 0.3s ease;
            border: 2px solid #FFD700;
            font-size: 1.2rem;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            background: linear-gradient(45deg, #FFA500, #FFD700);
        }

        .programs-section {
            margin-top: 4rem;
        }

        .programs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

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

        .program-card:hover {
            transform: translateY(-10px);
        }

        .program-icon {
            font-size: 3rem;
            color: #FFD700;
            margin-bottom: 1rem;
        }

        .program-card h3 {
            color: #0b1a33;
            margin-bottom: 1rem;
        }

        .program-card p {
            color: #666;
            line-height: 1.6;
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #0b1a33 0%, #1a3a6d 100%);
            color: white;
            padding: 3rem 2rem 1rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            color: #FFD700;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .footer-section p, .footer-section a {
            color: #ccc;
            margin-bottom: 0.5rem;
            display: block;
            text-decoration: none;
        }

        .footer-section a:hover {
            color: #FFD700;
        }

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

        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: #FFD700;
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                padding: 1rem;
            }
            
            nav ul {
                margin-top: 1rem;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav ul li {
                margin: 0.5rem;
            }
            
            .tv-hero h2 {
                font-size: 2.5rem;
            }
            
            .video-placeholder {
                height: 300px;
            }
            
            .tv-content {
                padding: 2rem;
            }
        }


/* Styles from events.html */
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', serif;
            color: #333;
            background-color: #f9f9f9;
        }

        /* Header Styles */
        header {
            background: linear-gradient(135deg, #0b1a33 0%, #1a3a6d 100%);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

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

        .logo {
            display: flex;
            align-items: center;
        }

        .logo h1 {
            font-size: 1.5rem;
            font-weight: bold;
            color: #FFD700;
        }

        .logo span {
            color: #FFA500;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 1.5rem;
            position: relative;
        }

        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        nav ul li a:hover {
            background-color: rgba(255, 215, 0, 0.2);
            transform: translateY(-2px);
        }

        .dropdown {
            position: relative;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            background-color: #0b1a33;
            min-width: 160px;
            box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
            z-index: 1;
            border-radius: 4px;
            margin-top: 0.5rem;
        }

        .dropdown-content a {
            color: white;
            padding: 12px 16px;
            display: block;
            text-decoration: none;
        }

        .dropdown-content a:hover {
            background-color: rgba(255, 215, 0, 0.2);
        }

        .dropdown:hover .dropdown-content {
            display: block;
        }

        /* Events Section */
        .events-hero {
            background: linear-gradient(rgba(11, 26, 51, 0.8), rgba(11, 26, 51, 0.9)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%231a3a6d"/><circle cx="20" cy="20" r="2" fill="%23FFD700" opacity="0.3"/><circle cx="50" cy="50" r="3" fill="%23FFA500" opacity="0.3"/><circle cx="80" cy="30" r="2" fill="%23FFD700" opacity="0.3"/></svg>');
            background-size: cover;
            background-position: center;
            height: 40vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }

        .events-hero-content {
            max-width: 800px;
            padding: 2rem;
        }

        .events-hero h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: #FFD700;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .events-container {
            max-width: 1200px;
            margin: 3rem auto;
            padding: 0 2rem;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: #0b1a33;
            margin-bottom: 1rem;
        }

        .section-title p {
            color: #666;
            font-size: 1.1rem;
        }

        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

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

        .event-card:hover {
            transform: translateY(-10px);
        }

        .event-image {
            height: 200px;
            background: linear-gradient(45deg, #0b1a33, #1a3a6d);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
        }

        .event-content {
            padding: 1.5rem;
        }

        .event-date {
            color: #FFD700;
            font-weight: bold;
            margin-bottom: 0.5rem;
            display: block;
        }

        .event-card h3 {
            color: #0b1a33;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .event-card p {
            color: #666;
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .event-location {
            display: flex;
            align-items: center;
            color: #888;
            font-size: 0.9rem;
        }

        .event-location::before {
            content: "📍";
            margin-right: 0.5rem;
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #0b1a33 0%, #1a3a6d 100%);
            color: white;
            padding: 3rem 2rem 1rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            color: #FFD700;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .footer-section p, .footer-section a {
            color: #ccc;
            margin-bottom: 0.5rem;
            display: block;
            text-decoration: none;
        }

        .footer-section a:hover {
            color: #FFD700;
        }

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

        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: #FFD700;
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                padding: 1rem;
            }
            
            nav ul {
                margin-top: 1rem;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav ul li {
                margin: 0.5rem;
            }
            
            .events-hero h2 {
                font-size: 2.5rem;
            }
        }


/* Styles from blog.html */
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', serif;
            color: #333;
            background-color: #f9f9f9;
        }

        /* Header Styles */
        header {
            background: linear-gradient(135deg, #0b1a33 0%, #1a3a6d 100%);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

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

        .logo {
            display: flex;
            align-items: center;
        }

        .logo h1 {
            font-size: 1.5rem;
            font-weight: bold;
            color: #FFD700;
        }

        .logo span {
            color: #FFA500;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 1.5rem;
            position: relative;
        }

        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        nav ul li a:hover {
            background-color: rgba(255, 215, 0, 0.2);
            transform: translateY(-2px);
        }

        .dropdown {
            position: relative;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            background-color: #0b1a33;
            min-width: 160px;
            box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
            z-index: 1;
            border-radius: 4px;
            margin-top: 0.5rem;
        }

        .dropdown-content a {
            color: white;
            padding: 12px 16px;
            display: block;
            text-decoration: none;
        }

        .dropdown-content a:hover {
            background-color: rgba(255, 215, 0, 0.2);
        }

        .dropdown:hover .dropdown-content {
            display: block;
        }

        /* Blog Hero Section */
        .blog-hero {
            background: linear-gradient(rgba(11, 26, 51, 0.8), rgba(11, 26, 51, 0.9)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%231a3a6d"/><circle cx="20" cy="20" r="2" fill="%23FFD700" opacity="0.3"/><circle cx="50" cy="50" r="3" fill="%23FFA500" opacity="0.3"/><circle cx="80" cy="30" r="2" fill="%23FFD700" opacity="0.3"/></svg>');
            background-size: cover;
            background-position: center;
            height: 40vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }

        .blog-hero-content {
            max-width: 800px;
            padding: 2rem;
        }

        .blog-hero h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: #FFD700;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        /* Blog Content */
        .blog-container {
            max-width: 1200px;
            margin: 3rem auto;
            padding: 0 2rem;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: #0b1a33;
            margin-bottom: 1rem;
        }

        .section-title p {
            color: #666;
            font-size: 1.1rem;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

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

        .blog-card:hover {
            transform: translateY(-10px);
        }

        .blog-image {
            height: 200px;
            background: linear-gradient(45deg, #0b1a33, #1a3a6d);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
        }

        .blog-content {
            padding: 1.5rem;
        }

        .blog-meta {
            display: flex;
            justify-content: space-between;
            color: #888;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .blog-card h3 {
            color: #0b1a33;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .blog-card p {
            color: #666;
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .read-more {
            display: inline-block;
            color: #FFD700;
            text-decoration: none;
            font-weight: bold;
            margin-top: 0.5rem;
        }

        .read-more:hover {
            text-decoration: underline;
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #0b1a33 0%, #1a3a6d 100%);
            color: white;
            padding: 3rem 2rem 1rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            color: #FFD700;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .footer-section p, .footer-section a {
            color: #ccc;
            margin-bottom: 0.5rem;
            display: block;
            text-decoration: none;
        }

        .footer-section a:hover {
            color: #FFD700;
        }

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

        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: #FFD700;
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                padding: 1rem;
            }
            
            nav ul {
                margin-top: 1rem;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav ul li {
                margin: 0.5rem;
            }
            
            .blog-hero h2 {
                font-size: 2.5rem;
            }
        }

/* Shared header/footer include enhancements */
.logo a {
    display: inline-flex;
    align-items: center;
}

.logo img {
    width: 78px;
    height: 78px;
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
    padding: 0px;
}

.donate-menu-btn {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #0b1a33 !important;
    font-weight: 700;
}

/* Home additional sections */
.feature-photo {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.home-about-section,
.mission-vision-home,
.support-section,
.home-executives,
.impact-section {
    padding: 5rem 2rem;
}

.home-about-section,
.support-section,
.impact-section {
    background: #fff;
}

.home-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.home-about-image {
    width: 100%;
    border-radius: 12px;
    min-height: 380px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.home-about-content h2 {
    color: #0b1a33;
    margin-bottom: 1rem;
    font-size: 2.1rem;
}

.home-about-content p { margin-bottom: 1rem; line-height: 1.8; }

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.support-card {
    background: #f9f9f9;
    padding: 1.2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.support-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.executive-column { display: grid; gap: 1rem; max-width: 860px; margin: 0 auto; }

.executive-list-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.executive-list-card img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
}

.center-btn { text-align: center; margin-top: 2rem; }

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.impact-card {
    background: #0b1a33;
    color: #fff;
    text-align: center;
    border-radius: 10px;
    padding: 2rem 1rem;
}

.impact-card h3 { color: #FFD700; font-size: 2rem; margin-bottom: 0.4rem; }

@media (max-width: 768px) {
    .home-about-grid {
        grid-template-columns: 1fr;
    }

    .logo img {
        width: 62px;
        height: 62px;
    }
}

/* Progressive enhancements */
nav ul li a.active-link {
    background-color: rgba(255, 215, 0, 0.3);
    color: #FFD700;
}

.noscript-note {
    background: #fff8db;
    color: #0b1a33;
    text-align: center;
    padding: 0.8rem 1rem;
    font-weight: 600;
}

/* Donate page */
.donate-hero {
    background: linear-gradient(rgba(11, 26, 51, 0.8), rgba(11, 26, 51, 0.9)), url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?auto=format&fit=crop&w=1400&q=80');
    background-size: cover;
    background-position: center;
    height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.donate-hero-content h2 {
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 1rem;
}

.donate-container {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

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

.donate-card {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.donate-card h3 {
    color: #0b1a33;
    margin-bottom: 1rem;
}

.donate-card p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}


/* Visual polish refinements: tighter vertical rhythm */
.about-container,
.events-container,
.executives-container,
.awardees-container,
.blog-container,
.gallery-container,
.constitution-container,
.tv-container,
.donate-container {
    margin: 2rem auto;
}

.section-title {
    margin-bottom: 2rem;
}

.mission-vision,
.values,
.programs-section {
    margin-top: 2.5rem;
}

.features,
.home-about-section,
.mission-vision-home,
.support-section,
.home-executives,
.impact-section {
    padding: 3.2rem 2rem;
}

footer {
    margin-top: 2.5rem;
}

/* Real image placeholders for executives/awardees */
.executive-image,
.awardee-image {
    overflow: hidden;
}

.executive-image img,
.awardee-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Header top bar */
.top-bar {
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.45rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    color: #e9e9e9;
    font-size: 0.9rem;
}

.top-social a,
.social-links-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    text-decoration: none;
    transition: all 0.3s ease;
}

.top-social a:hover,
.social-links-icons a:hover {
    background: #FFD700;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .top-bar-container {
        display: flex;
        flex-wrap: nowrap;
        /* prevents stacking */
        justify-content: space-between;
        align-items: center;
    }

    .top-contact {
        flex: 0 0 auto;
    }

    .top-social {
        flex: 0 0 auto;
        margin-left: auto;
        /* pushes it to the right */
    }
}
