* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    scroll-behavior: smooth;
    color: #333;
}

/* Header and Navigation */
header {
    background: #1a2b49; /* Navy blue */
    color: #fff;
    padding: 1rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.logo img {
    max-height: 50px; /* Size for logo */
    width: auto;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #f4c430; /* Gold on hover */
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('pictures/hero-bg.jpg') no-repeat center/cover; /* Updated to pictures/ */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 2rem;
}

.hero-content {
    background: rgba(26, 43, 73, 0.7); /* Semi-transparent navy overlay */
    padding: 2rem;
    border-radius: 10px;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.btn {
    background: #f4c430; /* Gold */
    color: #1a2b49; /* Navy */
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn:hover {
    background: #d4a017; /* Darker gold */
}

/* Programs Section */
.programs {
    padding: 4rem 2rem;
    background: #f9f9f9;
    text-align: center;
}

.programs h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a2b49;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.program-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s;
}

.program-card:hover {
    transform: translateY(-5px);
}

.program-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.program-card h4 {
    font-size: 1.5rem;
    margin: 1rem;
    color: #1a2b49;
}

.program-card p {
    margin: 0 1rem 1.5rem;
}

.program-card .btn {
    display: inline-block;
    margin-bottom: 1.5rem;
}

/* About Section */
.about {
    padding: 4rem 2rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a2b49;
}

/* Contact Section */
.contact {
    padding: 4rem 2rem;
    background: #1a2b49;
    color: #fff;
    text-align: center;
}

.contact h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact a {
    color: #f4c430;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 1rem;
}

footer a {
    color: #f4c430;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .program-grid {
        grid-template-columns: 1fr;
    }
}