body {
    font-family: 'SolaimanLipi', Arial, sans-serif;
    background: #f7faf8;
}

.navbar {
    background-color: #2f6b3e !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.navbar .nav-link {
    transition: 0.3s ease;
}

.navbar .nav-link:hover {
    color: #ffc107 !important;
    transform: translateY(-1px);
}

/* Site name/logo + top donate button */
.site-brand-donate {
    display: flex;
    align-items: center;
    gap: 14px;
}

.site-brand-donate .navbar-brand {
    margin-right: 0;
}

/* Professional gradient donate button */
.top-donate-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 18px;
    background: linear-gradient(135deg, #ffd43b 0%, #ff9f1c 55%, #f76707 100%);
    color: #1f3d1f !important;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none !important;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.45);
    box-shadow: 0 7px 18px rgba(255,159,28,0.40), inset 0 1px 0 rgba(255,255,255,0.35);
    transition: 0.3s ease;
    white-space: nowrap;
}

.top-donate-button i {
    width: 25px;
    height: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(31, 61, 31, 0.16);
    border-radius: 8px;
    font-size: 14px;
}

.top-donate-button:hover {
    color: #ffffff !important;
    background: linear-gradient(135deg, #ffb703 0%, #fb8500 55%, #d9480f 100%);
    transform: translateY(-2px);
    box-shadow: 0 11px 26px rgba(255,111,0,0.52), inset 0 1px 0 rgba(255,255,255,0.25);
}

.hero-box {
    background-size: cover;
    background-position: center;
    color: white;
    padding: 60px 20px;
    border-radius: 18px;
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.18);
    animation: fadeUp 0.8s ease both;
}

.hero-box::before {
    content: '';
    position: absolute;
    top:0; 
    left:0; 
    right:0; 
    bottom:0;
    background: linear-gradient(135deg, rgba(47,107,62,0.82), rgba(0,0,0,0.62));
    border-radius: 18px;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    animation: fadeUp 1s ease both;
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: 0.35s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(0,0,0,0.14) !important;
}

.volunteer-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.volunteer-card {
    text-align: center;
    border: none;
    background: #ffffff;
    padding: 18px 10px;
    border-radius: 18px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
    transition: 0.35s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.volunteer-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 120px;
    height: 120px;
    background: rgba(47,107,62,0.10);
    border-radius: 50%;
    transition: 0.35s ease;
}

.volunteer-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 35px rgba(47,107,62,0.18);
}

.volunteer-card:hover::before {
    transform: scale(1.3);
}

.volunteer-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #2f6b3e;
    padding: 3px;
    background: #fff;
    transition: 0.35s ease;
}

.volunteer-card:hover img {
    transform: scale(1.06);
    border-color: #ffc107;
}

.volunteer-card h6 {
    color: #1f4f2d;
    font-weight: 700;
}

.volunteer-profile-box {
    display: flex;
    justify-content: center;
    padding: 30px 0;
}

.volunteer-profile-card {
    width: 100%;
    max-width: 650px;
    background: #ffffff;
    border-radius: 22px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    animation: fadeUp 0.8s ease both;
}

.volunteer-profile-img {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #2f6b3e;
    padding: 4px;
    background: #fff;
    margin-bottom: 15px;
}

.volunteer-profile-card h2 {
    color: #1f4f2d;
    font-weight: 800;
}

.volunteer-profile-position {
    color: #666;
    font-size: 18px;
}

.volunteer-profile-info {
    text-align: left;
    line-height: 1.8;
}

.volunteer-profile-info strong {
    color: #2f6b3e;
}

.admin-sidebar .nav-link {
    color: #fff;
}

.admin-sidebar .nav-link:hover {
    background: #1e4d2b;
}

.btn {
    border-radius: 10px;
    transition: 0.3s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

/* Mobile responsive for donate button */
@media (max-width: 576px) {
    .site-brand-donate {
        gap: 8px;
    }

    .top-donate-button {
        padding: 8px 12px;
        font-size: 13px;
        border-radius: 10px;
    }

    .top-donate-button i {
        width: 22px;
        height: 22px;
        font-size: 12px;
    }

    .site-brand-donate .navbar-brand {
        font-size: 15px;
    }

    .site-brand-donate .navbar-brand img {
        height: 34px !important;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Programs Page Media Design */
.program-card {
    border-radius: 18px;
}

.program-carousel {
    border-radius: 18px 18px 0 0;
    overflow: hidden;
}

.program-media-img {
    height: 280px;
    object-fit: cover;
}

.program-video-section {
    background: #f7faf8;
    border-radius: 14px;
    padding: 12px;
    border: 1px solid rgba(47,107,62,0.12);
}

.program-video-section h6 {
    color: #1f4f2d;
    font-weight: 800;
}

.program-video-player {
    width: 100%;
    max-height: 320px;
    border-radius: 12px;
    background: #000;
    display: block;
}

.program-no-image {
    height: 220px;
    background: linear-gradient(135deg, rgba(47,107,62,0.15), rgba(255,193,7,0.18));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #2f6b3e;
    font-weight: 700;
    gap: 8px;
}

.program-no-image i {
    font-size: 38px;
}

@media (max-width: 576px) {
    .program-media-img {
        height: 220px;
    }
}