body {
    margin: 0;
    font-family: "Poppins", Arial, sans-serif;
}

/* ===================== NAVBAR ===================== */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar .logo img {
    height: 50px;
}

#menu a {
    margin-left: 25px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.menu-icon {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* ===================== BANNER ===================== */

.banner {
    text-align: center;
    padding: 120px 20px;
    background: #f7f1e6;
}

.banner h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

/* ===================== FOOTER (UPDATED EXACT STYLE) ===================== */

.footer {
    background: #48680A;
    color: white;
    display: flex;
    justify-content: space-around;
    padding: 60px 20px;
    flex-wrap: wrap;
    font-family: "Poppins", sans-serif;
}

.footer-section {
    width: 24%;
    min-width: 220px;
    margin-bottom: 20px;
    line-height: 26px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 700;
    color: #FFD700;   /* Yellow heading */
}

.footer-section p {
    margin-bottom: 10px;
    font-size: 15px;
    color: #fff;
}

/* ===== LINKS ===== */

.footer-section a {
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-section a:hover {
    color: #FFD700;
}

/* 🌿 Bullet icon before links */
.footer-section a:before {
    content: "🌿";
    font-size: 13px;
    margin-right: 6px;
}

/* ===== CONTACT ICONS ===== */
.footer-section .icon {
    font-size: 18px;
    margin-right: 10px;
    color: #FFD700;
}

/* ===== SOCIAL ICONS ===== */

.social a {
    font-size: 28px;
    margin-right: 15px;
    color: #ffffff;
}

.social a:hover {
    color: #FFD700;
}

/* ===== COPYRIGHT ===== */

.footer-bottom {
    width: 100%;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.3);
    margin-top: 40px;
    padding-top: 15px;
    font-size: 14px;
}

/* ===================== MOBILE VIEW ===================== */

@media (max-width: 768px) {

    #menu {
        display: none;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 70px;
        right: 0;
        width: 200px;
        padding: 20px;
        box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
    }

    #menu.active {
        display: flex;
    }

    #menu a {
        margin: 10px 0;
    }

    .menu-icon {
        display: block;
    }

    .navbar {
        padding: 15px 20px;
    }

    .banner h1 {
        font-size: 28px;
    }

    .footer {
        flex-direction: column;
        text-align: center;
    }

    .footer-section {
        width: 100%;
    }
}
