/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar .logo h1 {
    font-size: 24px;
    font-weight: bold;
    color: #0f0be6;
}

.navbar ul {
    list-style: none;
    display: flex;
}

.navbar ul li {
    margin: 0 10px;
}

.navbar ul li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    transition: color 0.3s ease;
}

.navbar ul li a:hover {
    color: #0d8c44;
}

/* Hero Section */
header {
    position: relative;
    height: 100vh;
    background: url('https://via.placeholder.com/1920x1080') no-repeat center center/cover;
}

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
    color: #fff;
    background: rgba(0, 0, 0, 0.5); /* Transparent overlay */
    padding: 0 20px;
}

.hero-text h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero-text .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0d8c44;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.hero-text .btn:hover {
    background-color: #0a6e35;
}

/* Footer */
footer {
    background-color: #0d8c44; /* Green footer background */
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-container p {
    margin-bottom: 10px;
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-media .social-link img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-media .social-link img:hover {
    transform: scale(1.2);
    opacity: 0.8;
}


/* Footer */
footer {
    background-color: #0d8c44;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    font-size: 14px;
}

/*end */
/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar ul {
        flex-direction: column;
        width: 100%;
    }

    .navbar ul li {
        margin: 10px 0;
    }

    .hero-text h2 {
        font-size: 2rem;
    }

    .hero-text .btn {
        font-size: 16px;
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    .hero-text h2 {
        font-size: 1.5rem;
    }

    .hero-text .btn {
        font-size: 14px;
        padding: 6px 12px;
    }
}
