/* Reset and General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    scroll-behavior: smooth;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: #1a3c34;
    color: white;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8em;
    font-weight: bold;
}

.navbar ul {
    display: flex;
    list-style: none;
}

.navbar li {
    margin-left: 25px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #a3e635;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(26, 60, 52, 0.7), rgba(26, 60, 52, 0.7)), url('https://via.placeholder.com/1200x500') center/cover;
    color: white;
    padding: 120px 0;
    text-align: center;
}

.hero-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-text {
    font-size: 1.2em;
    max-width: 600px;
    margin: 0 auto 30px;
}

.btn {
    display: inline-block;
    background-color: #f4a261;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #e76f51;
}

/* About Section */
.about {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.section-title {
    font-size: 2em;
    text-align: center;
    color: #1a3c34;
    margin-bottom: 30px;
    position: relative;
}

.section-title::after {
    content: '';
    width: 60px;
    height: 3px;
    background-color: #f4a261;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.about-text {
    font-size: 1.1em;
    margin-bottom: 15px;
    text-align: center;
}

/* Programs Section */
.programs {
    padding: 60px 0;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.program-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
    background-color: #333;
    color: white;
}

.card-title {
    font-size: 1.4em;
    color: #1a3c34;
    margin-bottom: 10px;
}
.card-title,h3{
    color: black;
}
/* Contact Section */
.contact {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-info p {
    font-size: 1.1em;
    margin-bottom: 10px;
}

.form-group {
    margin-bottom: 15px;
}

.form-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

.form-input:focus {
    outline: none;
    border-color: #1a3c34;
}

/* Footer */
.footer {
    background-color: #1a3c34;
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: row;
        text-align: center;
    }

    .navbar ul {
        flex-direction: column;
        margin-top: 10px;
    }

    .navbar li {
        margin: 10px 0;
    }

    .hero {
        padding: 80px 0;
    }

    .hero-title {
        font-size: 2em;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}