body {
    font-family: 'Poppins', sans-serif;
    background-color: #e8f5e9; /* Light green background */
    color: #1b5e20; /* Dark green text */
    margin: 0;
    padding: 0;
    line-height: 1.6;
}
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://i.imgur.com/d2gv8Gd.jpeg') no-repeat center center/cover;
    filter: blur(8px);
    z-index: -1;
    }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a {
    text-decoration: none;
    color: inherit;
}

/* Header */
header {
    position: sticky;
    width: 100%;
}

/* Top Bar */
.top-bar {
    position: sticky;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 10px 30px;
    border-bottom: 3px solid #4CAF50; /* Green accent line */
}

/* Left Section (Logo & Name) */
.left {
    position: sticky;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    position: sticky;
    width: 80px;
    height: auto;
}

.team-name {
    position: sticky;
    font-size: 1.8rem;
    font-weight: bold;
    color: black;
}

/* Right Section (Links & Icons) */
.right {
    position: sticky;
    display: flex;
    align-items: center;
    gap: 15px;
}

.right a {
    text-decoration: none;
    color: black;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.right a:hover {
    color: #4CAF50;
}

.divider {
    font-size: 1.2rem;
    color: #4CAF50;
}

/* Navigation Bar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: black;
    padding: 12px 30px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links li a {
    color: white;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    padding: 10px 15px;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #4CAF50;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle div {
    width: 25px;
    height: 3px;
    background-color: white;
}

.language-icon {
    width: 30px; /* Adjust size */
    height: auto;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 60px;
        right: 0;
        background: rgba(0, 128, 0, 0.95);
        width: 200px;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 15px;
        border-radius: 10px;
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }
}

main h2 {
    font-family: 'Poppins', sans-serif;
    color: #2E7D32;
    font-size: 1.5rem;
    border-bottom: 2px solid #66bb6a; /* Light green border */
    padding-bottom: 5px;
    margin-top: 20px;

}

main ul {
    list-style-type: none;
    padding: 0;
}

main li {
    margin-bottom: 10px;
    line-height: 1.4;
}

main ul ul {
    margin-left: 20px;
}

/* Footer */
footer {
   background: url("https://i.imgur.com/yjuCGaV.png") no-repeat center center;
                           background-size: 2000%;
                           color: #fff;
                           text-align: center;
                           padding: 40px 0;
                           width: 100%;
                           margin-top: auto;
                           position: relative;
}
footer .footer-links a {
                color: white;
                text-decoration: none;
                margin: 0 10px;
            }

            footer .footer-links a:hover {
                text-decoration: underline;
            }
@media screen and (max-width: 600px) {
    header .header-container {
        flex-direction: column;
        text-align: center;
    }

    .title-link {
        font-size: 1.5rem;
    }

    nav ul {
        flex-direction: column;
        padding: 0;
        gap: 10px;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .info-section h2 {
        font-size: 1.5rem;
    }

    .info-section ul {
        padding-left: 15px;
    }

    .map-container iframe {
        height: 300px;
    }

    footer {
        font-size: 0.8rem;
    }
}

/* For tablets (width between 600px and 900px) */
@media screen and (max-width: 900px) {
    .map-container iframe {
        height: 400px;
    }

    .info-section h2 {
        font-size: 1.7rem;
    }
}
h4{
 font-family: 'Poppins', sans-serif;
    color: #ffffff;
        line-height: 1.6;
    margin: 0;}
