﻿body {
    padding-top: 100px; /* Adjust based on header height */
}
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.my-container {
    width: 98%;
    margin: auto;
    max-width: 98%;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 10px;
    padding-right: 10px;
}


:root {
    --primary-color: #0066cc;
    --secondary-color: #28a745;
    --accent-color: #ff6b35;
    --dark-blue: #003d7a;
    --light-bg: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

.navbar-brand img {
    margin-right: 10px;
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-blue) 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.1)" points="0,1000 1000,800 1000,1000"/></svg>');
        background-size: cover;
    }

.hero-content {
    position: relative;
    z-index: 1;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    height: 100%;
}

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.stats-section {
    background: var(--light-bg);
    padding: 80px 0;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.quick-links {
    background: white;
    padding: 60px 0;
}

.quick-link-card {
    background: linear-gradient(45deg, var(--secondary-color), #20c997);
    color: white;
    padding: 25px;
    border-radius: 10px;
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease;
    border: none;
}

    .quick-link-card:hover {
        transform: scale(1.05);
        color: white;
        text-decoration: none;
    }

.news-section {
    background: var(--light-bg);
    padding: 80px 0;
}

.news-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.footer {
    background: var(--dark-blue);
    color: white;
    padding: 60px 0 30px;
}

    .footer h5 {
        color: #ffd700;
        margin-bottom: 20px;
    }

    .footer a {
        color: #ccc;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .footer a:hover {
            color: white;
        }

.search-box {
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    color: white;
}

    .search-box::placeholder {
        color: rgba(255,255,255,0.8);
    }

.btn-primary {
    background: var(--primary-color);
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn-primary:hover {
        background: var(--dark-blue);
        transform: translateY(-2px);
    }

.notification-bar {
    background: var(--accent-color);
    color: white;
    padding: 10px 0;
    font-weight: 500;
}

.language-selector {
    position: absolute;
    top: 20px;
    right: 20px;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }

    .feature-card {
        margin-bottom: 30px;
    }
}
/* Programs Section */
.programs {
    padding: 20px 0;
    background: #f8f9fa;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.program-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

    .program-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

.program-header {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 25px;
    text-align: center;
}

    .program-header h3 {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }

.program-body {
    padding: 15px;
}

.program-features {
    list-style: none;
    margin-bottom: 25px;
}

    .program-features li {
        padding: 8px 0;
        border-bottom: 1px solid #eee;
        display: flex;
        align-items: center;
        gap: 5px;
    }

        .program-features li:last-child {
            border-bottom: none;
        }

        .program-features li::before {
            content: '✓';
            color: #28a745;
            font-weight: bold;
        }

.section-title {
    text-align: center;
    margin-bottom: 20px;
}

    .section-title h2 {
        font-size: 2.5rem;
        color: #2c3e50;
        margin-bottom: 15px;
    }

    .section-title p {
        font-size: 1.2rem;
        color: #666;
        max-width: 600px;
        margin: 0 auto;
    }

.card-btn {
    background: #667eea;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

    .card-btn:hover {
        background: #5a6fd8;
        transform: scale(1.05);
    }

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.section-six {
    font-family: ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    border: 0 solid #e5e7eb;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f8f7;
    padding: 1rem 2rem 2rem;
}
