/* ===== GENERAL ===== */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #f4f7f6;
}


/* ===== HEADER ===== */
/* ===== HEADER ===== */
header {
    background: #0f9d58;
    color: #fff;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* LOGO */
.logo {
    font-size: 20px;
    font-weight: 700;
}

/* NAV */
nav {
    display: flex;
    align-items: center;
}

/* LINKS */
nav a {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
    font-weight: 500;
    position: relative;
}

/* HOVER EFFECT */
nav a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    background: #fff;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}
nav a:hover::after {
    width: 100%;
}

/* DONATE BUTTON */
.nav-btn {
    background: #fff;
    color: #0f9d58 !important;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
}

/* MENU ICON */
.menu-toggle {
    display: none;
    font-size: 22px;
    cursor: pointer;
}

/* ===== MOBILE MENU (FIXED COLLAPSE) ===== */
@media(max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    nav {
        position: absolute;
        top: 65px;
        right: 0;
        background: #0f9d58;
        flex-direction: column;
        width: 100%;
        
        /* KEY PART (for smooth collapse) */
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    nav a {
        margin: 15px;
        text-align: center;
    }

    /* WHEN ACTIVE */
    nav.active {
        max-height: 400px;
    }
}
nav {
    opacity: 1;
}

@media(max-width:768px){
    nav {
        opacity: 0;
        transform: translateY(-10px);
    }

    nav.active {
        opacity: 1;
        transform: translateY(0);
    }
}

/* BUTTON STYLE LINK */
.nav-btn {
    background: #fff;
    color: #0f9d58 !important;
    padding: 8px 15px;
    border-radius: 20px;
    margin-left: 20px;
    font-weight: bold;
}

.nav-btn:hover {
    background: #e6f4ea;
}

/* ===== MOBILE MENU ===== */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* ===== RESPONSIVE ===== */
@media(max-width: 768px) {
    
    nav {
        position: absolute;
        top: 70px;
        right: 0;
        background: #0f9d58;
        flex-direction: column;
        width: 220px;
        border-radius: 0 0 10px 10px;
        display: none;
        padding: 15px;
    }

    nav a {
        margin: 10px 0;
    }

    nav.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}

/* ===== CONTENT ===== */
.container {
    padding: 40px;
}

.card {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}










header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.header-contact {
    font-size: 13px;
    color: #fff;
    display: flex;
    gap: 15px;
}

.header-contact i {
    color:white;
    margin-right: 5px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .header-contact {
        width: 100%;
        justify-content: center;
        margin-top: 5px;
        font-size: 12px;
    }
}







/* ===== FOOTER ===== */
footer {
    background: #222;
    color: #ccc;
    text-align: center;
    padding: 20px;
}