﻿/* =========================================================
   PADA WEBSITE MAIN STYLESHEET
   Peace and Development Agency (PADA)
   ========================================================= */

/* =========================================================
   RESET
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: #0b5d1e;
    text-decoration: none;
}

a:hover {
    color: #083f15;
}

ul {
    margin: 0;
    padding: 0;
}

button,
input,
textarea,
select {
    font-family: inherit;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #eeeeee;
}

.header-top {
    padding: 20px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


/* =========================================================
   GENERAL LOGO
   ========================================================= */

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    width: 75px;
    height: 75px;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 28px;
    color: #0b5d1e;
    margin-bottom: 3px;
}

.logo-text p {
    color: #153d73;
    font-size: 14px;
}


/* =========================================================
   NAVBAR
   ========================================================= */

.main-navbar {
    background-color: #0b5d1e;
    width: 100%;
    position: relative;
    z-index: 1000;
}

.navbar-container {
    min-height: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}


/* =========================================================
   NAVBAR LOGO
   IMPORTANT: KEEP LOGO SMALL
   ========================================================= */

.navbar-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    flex-shrink: 0;
    overflow: hidden;
    background-color: #ffffff;
    border-radius: 50%;
}

.navbar-logo {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.navbar-logo img {
    width: 60px !important;
    height: 60px !important;
    max-width: 60px !important;
    max-height: 60px !important;
    min-width: 60px !important;
    min-height: 60px !important;
    object-fit: contain !important;
    display: block !important;
    border-radius: 50%;
    background-color: #ffffff;
    padding: 2px;
}


/* =========================================================
   NAVIGATION MENU
   ========================================================= */

.navbar-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
    margin: 0;
    padding: 0;
}

.navbar-menu a {
    display: block;
    padding: 24px 11px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.navbar-menu a:hover {
    background-color: #064714;
    color: #ffffff;
}

.navbar-menu a.active {
    background-color: #064714;
    color: #ffffff;
}


/* =========================================================
   SUPPORT PADA BUTTON
   ========================================================= */

.navbar-menu .nav-donate {
    background-color: #d99a18;
    color: #ffffff;
    margin-left: 8px;
    padding-left: 18px;
    padding-right: 18px;
    border-radius: 4px;
}

.navbar-menu .nav-donate:hover {
    background-color: #b77d0d;
    color: #ffffff;
}

/* =========================================================
   DONATE PAGE
   ========================================================= */

.donate-banner {
    background:
        linear-gradient(
            rgba(11, 93, 30, 0.90),
            rgba(21, 61, 115, 0.90)
        );
}


/* =========================================================
   DONATION INTRODUCTION
   ========================================================= */

.donate-intro {
    max-width: 900px;
    margin: 0 auto 45px;
    text-align: center;
}

.donate-intro h2 {
    color: #153d73;
    font-size: 32px;
    margin-bottom: 18px;
}

.donate-intro p {
    color: #555555;
    margin-bottom: 15px;
}


/* =========================================================
   DONATION CARDS
   ========================================================= */

.donation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.donation-card {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
}

.donation-card:hover {
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.10);
}

.donation-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f1f7f2;
    border-radius: 50%;
    font-size: 28px;
    margin-bottom: 20px;
}

.donation-card h3 {
    color: #153d73;
    font-size: 25px;
    margin-bottom: 12px;
}

.donation-card > p {
    color: #555555;
    margin-bottom: 25px;
}


/* =========================================================
   BANK DETAILS
   ========================================================= */

.bank-details {
    background-color: #f7faf7;
    border-left: 4px solid #0b5d1e;
    padding: 20px;
    border-radius: 5px;
}

.bank-details p {
    margin-bottom: 15px;
    color: #555555;
}

.bank-details p:last-child {
    margin-bottom: 0;
}

.bank-details strong {
    color: #0b5d1e;
}


/* =========================================================
   DONATION CONTACT
   ========================================================= */

.donation-contact {
    margin-bottom: 25px;
}

.donation-contact p {
    margin-bottom: 15px;
}

.donation-contact strong {
    color: #0b5d1e;
}

.donation-contact a {
    color: #153d73;
    font-weight: 600;
}

.donation-contact a:hover {
    color: #0b5d1e;
}

.donation-whatsapp {
    margin-top: 5px;
}


/* =========================================================
   DONATION IMPACT
   ========================================================= */

.donation-impact {
    background-color: #f7faf7;
}

.donation-impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.impact-card {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.impact-card h3 {
    color: #0b5d1e;
    margin-bottom: 10px;
}

.impact-card p {
    color: #555555;
}


/* =========================================================
   DONATION CTA
   ========================================================= */

.donate-cta {
    background:
        linear-gradient(
            135deg,
            #0b5d1e,
            #153d73
        );
    color: #ffffff;
    text-align: center;
    padding: 65px 0;
}

.donate-cta h2 {
    font-size: 34px;
    margin-bottom: 12px;
}

.donate-cta p {
    max-width: 700px;
    margin: 0 auto 25px;
    font-size: 18px;
}

.donate-cta .btn-secondary {
    color: #153d73;
    font-weight: 700;
}

/* =========================================================
   MOBILE MENU BUTTON
   ========================================================= */

.mobile-menu-button {
    display: none;
    border: none;
    background: transparent;
    color: #ffffff;
    font-size: 30px;
    cursor: pointer;
    padding: 5px 10px;
}


/* =========================================================
   PADA HERO SLIDER
   ========================================================= */

.hero {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}


/* HERO SLIDES */

.hero-slides {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;

    opacity: 0;

    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}


/* DARK OVERLAY */

.hero-overlay {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.50);

    z-index: 2;
}


/* HERO CONTENT CONTAINER */

.hero-container {
    position: relative;
    z-index: 3;

    width: 90%;
    max-width: 1200px;

    height: 600px;

    margin: 0 auto;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;
}


/* HERO TEXT */

.hero-content {
    width: 100%;
    max-width: 900px;

    margin: 0 auto;

    text-align: center;

    color: #ffffff;
}

.hero-content h1 {
    margin: 0 0 20px 0;

    color: #ffffff;

    font-size: 52px;
    line-height: 1.2;

    font-weight: 700;

    text-align: center;

    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}

.hero-content p {
    margin: 0 0 30px 0;

    color: #ffffff;

    font-size: 23px;

    text-align: center;

    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}


/* HERO BUTTON */

.hero-button {
    display: inline-block;

    padding: 14px 28px;

    background-color: #d99a18;
    color: #ffffff;

    border-radius: 5px;

    font-size: 16px;
    font-weight: 700;

    text-align: center;

    transition: 0.3s ease;
}

.hero-button:hover {
    background-color: #b77d0d;
    color: #ffffff;

    transform: translateY(-2px);
}

/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
    display: inline-block;
    padding: 13px 25px;
    border-radius: 5px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #0b5d1e;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #064714;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #ffffff;
    color: #153d73;
}

.btn-secondary:hover {
    background-color: #eeeeee;
    color: #153d73;
}


/* =========================================================
   GENERAL SECTIONS
   ========================================================= */

.section {
    padding: 70px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 45px;
}

.section-title h2 {
    font-size: 34px;
    color: #153d73;
    margin-bottom: 12px;
}

.section-title p {
    max-width: 750px;
    margin: 0 auto;
    color: #666666;
}


/* =========================================================
   VISION AND MISSION
   ========================================================= */

.vision-mission {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.info-card {
    padding: 35px;
    border-radius: 10px;
    background-color: #f7faf7;
    border-left: 5px solid #0b5d1e;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.info-card h3 {
    color: #153d73;
    margin-bottom: 15px;
    font-size: 25px;
}


/* =========================================================
   PROGRAMME CARDS
   ========================================================= */

.programme-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.programme-card {
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
}

.programme-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.10);
}

.programme-card h3 {
    color: #0b5d1e;
    margin-bottom: 12px;
}


/* =========================================================
   GENERAL CARDS
   ========================================================= */

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.card {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.10);
}

.card h3 {
    color: #153d73;
    margin-bottom: 10px;
}


/* =========================================================
   PAGE BANNER
   ========================================================= */

.page-banner {
    background:
        linear-gradient(
            rgba(11, 93, 30, 0.88),
            rgba(21, 61, 115, 0.88)
        );
    padding: 70px 0;
    color: #ffffff;
    text-align: center;
}

.page-banner h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.page-banner p {
    font-size: 18px;
    max-width: 750px;
    margin: 0 auto;
}


/* =========================================================
   CONTENT
   ========================================================= */

.content-section {
    padding: 60px 0;
}

.content-section h2 {
    color: #153d73;
    margin-bottom: 18px;
}

.content-section h3 {
    color: #0b5d1e;
    margin-top: 25px;
    margin-bottom: 10px;
}

.content-section p {
    margin-bottom: 15px;
}

.content-section ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.content-section li {
    margin-bottom: 8px;
}


/* =========================================================
   PROJECT CARDS
   ========================================================= */

.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.project-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.project-card-content {
    padding: 25px;
}

.project-card h3 {
    color: #153d73;
    margin-bottom: 10px;
}


/* =========================================================
   TEAM
   ========================================================= */

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.team-card {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);
}

.team-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.team-card-content {
    padding: 20px;
}

.team-card h3 {
    color: #153d73;
    margin-bottom: 5px;
}

.team-card .position {
    color: #0b5d1e;
    font-weight: 600;
    margin-bottom: 10px;
}


/* =========================================================
   ORGANOGRAM
   ========================================================= */

.organogram {
    text-align: center;
}

.organogram-box {
    display: inline-block;
    min-width: 240px;
    padding: 18px 25px;
    margin: 10px;
    border-radius: 8px;
    color: #ffffff;
    background-color: #0b5d1e;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.organogram-arrow {
    font-size: 28px;
    color: #153d73;
    margin: 5px 0;
}


/* =========================================================
   PARTNERS
   ========================================================= */

.partner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    align-items: center;
}

.partner-card {
    background-color: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
}

.partner-card img {
    max-width: 150px;
    max-height: 90px;
    object-fit: contain;
}


/* =========================================================
   NEWS
   ========================================================= */

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.news-card {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);
}

.news-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.news-card-content {
    padding: 22px;
}

.news-card h3 {
    color: #153d73;
    margin-bottom: 10px;
}

/* =========================================================
   NEWS PAGE
   ========================================================= */

.news-image-placeholder {
    width: 100%;
    height: 210px;
    background: linear-gradient(
        135deg,
        #0b5d1e,
        #153d73
    );
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
}

.news-date {
    color: #0b5d1e;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.news-card-content h3 {
    font-size: 21px;
    line-height: 1.35;
}

.news-card-content p {
    color: #555555;
    margin-bottom: 15px;
}

.read-more {
    display: inline-block;
    color: #0b5d1e;
    font-weight: 700;
}

.read-more:hover {
    color: #064714;
}

.news-subscribe-section {
    background-color: #f7faf7;
}

.news-subscribe {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.news-subscribe h2 {
    color: #153d73;
    font-size: 32px;
    margin-bottom: 12px;
}

.news-subscribe p {
    color: #555555;
    margin-bottom: 25px;
}

/* =========================================================
   CONTACT
   ========================================================= */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    background-color: #f7faf7;
    padding: 30px;
    border-radius: 10px;
}

.contact-info h3 {
    color: #153d73;
    margin-bottom: 15px;
}

.contact-item {
    margin-bottom: 20px;
}

.contact-item strong {
    color: #0b5d1e;
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info,
.contact-form {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 35px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);
}

.contact-info h2,
.contact-form h2 {
    color: #153d73;
    margin-bottom: 12px;
    font-size: 28px;
}

.contact-info > p,
.contact-form > p {
    color: #555555;
    margin-bottom: 25px;
}

.contact-item {
    margin-bottom: 22px;
}

.contact-item strong {
    display: block;
    color: #0b5d1e;
    font-size: 16px;
    margin-bottom: 5px;
}

.contact-item p {
    margin: 0;
    color: #555555;
}

.contact-item a {
    color: #0b5d1e;
    font-weight: 600;
}

.contact-item a:hover {
    color: #064714;
}

.contact-form .btn {
    margin-top: 5px;
}

.contact-cta {
    background-color: #f7faf7;
}

.contact-cta-content {
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
}

.contact-cta-content h2 {
    color: #153d73;
    font-size: 32px;
    margin-bottom: 12px;
}

.contact-cta-content p {
    color: #555555;
    margin-bottom: 25px;
}

/* =========================================================
   FORMS
   ========================================================= */

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 7px;
    font-weight: 600;
    color: #333333;
}

.form-control {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    font-size: 15px;
    outline: none;
}

.form-control:focus {
    border-color: #0b5d1e;
    box-shadow: 0 0 0 2px rgba(11, 93, 30, 0.10);
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    background-color: #102f59;
    color: #ffffff;
    padding: 55px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr 1.3fr;
    gap: 40px;
}


/* =========================================================
   FOOTER LOGO
   ========================================================= */

.footer-logo {
    width: 85px !important;
    height: 85px !important;
    max-width: 85px !important;
    max-height: 85px !important;
    object-fit: contain;
    display: block;
    margin-bottom: 18px;
    background-color: #ffffff;
    border-radius: 50%;
    padding: 4px;
}


/* =========================================================
   FOOTER COLUMNS
   ========================================================= */

.footer-column h3 {
    color: #ffffff;
    font-size: 19px;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 8px;
}

.footer-column h3::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background-color: #d99a18;
    margin-top: 7px;
}

.footer-column p {
    color: #e4e9ef;
    font-size: 14px;
    margin-bottom: 15px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 9px;
    color: #e4e9ef;
    font-size: 14px;
}

.footer-column a {
    color: #e4e9ef;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ffffff;
}


/* =========================================================
   FOOTER SOCIAL
   ========================================================= */

.footer-social {
    margin-top: 40px;
    padding: 20px 0;
    background-color: rgba(0, 0, 0, 0.12);
}

.footer-social .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-social span {
    color: #e4e9ef;
    font-size: 14px;
}


/* =========================================================
   FOOTER BOTTOM
   ========================================================= */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-bottom p {
    color: #dce3eb;
    font-size: 13px;
    margin: 0;
}


/* =========================================================
   BACK TO TOP
   ========================================================= */

.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background-color: #0b5d1e;
    color: #ffffff;
    cursor: pointer;
    display: none;
    z-index: 999;
    font-size: 18px;
}

.back-to-top:hover {
    background-color: #064714;
}

.back-to-top.show {
    display: block;
}


/* =========================================================
   ANIMATION
   ========================================================= */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.7s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   TABLES
   ========================================================= */

.table-responsive {
    width: 100%;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

table th,
table td {
    padding: 12px 15px;
    border: 1px solid #dddddd;
    text-align: left;
}

table th {
    background-color: #0b5d1e;
    color: #ffffff;
}


/* =========================================================
   ALERTS
   ========================================================= */

.alert {
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.alert-success {
    background-color: #e7f5ea;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}


/* =========================================================
   RESPONSIVE DESIGN
   ========================================================= */

@media (max-width: 1100px) {

    .navbar-menu a {
        padding: 24px 7px;
        font-size: 13px;
    }

    .navbar-logo {
        width: 50px;
        height: 50px;
    }

    .navbar-logo img {
        width: 44px !important;
        height: 44px !important;
        max-width: 44px !important;
        max-height: 44px !important;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partner-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .navbar-container {
        min-height: 68px;
        height: 68px;
    }

    .mobile-menu-button {
        display: block;
    }

    .navbar-menu {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        width: 100%;
        background-color: #0b5d1e;
        flex-direction: column;
        align-items: stretch;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    }

    .navbar-menu.active {
        display: flex;
    }

    .navbar-menu a {
        padding: 15px 25px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .navbar-menu .nav-donate {
        margin: 8px 15px;
        text-align: center;
    }

    .vision-mission {
        grid-template-columns: 1fr;
    }

    .programme-grid,
    .project-grid,
    .news-grid,
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content h1 {
        font-size: 40px;
    }
}

.donation-grid {
    grid-template-columns: 1fr;
}

.donation-impact-grid {
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 600px) {

    .hero {
        min-height: 520px;
    }

    .hero-container {
        min-height: 520px;
    }

    .hero-content {
        width: 100%;
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 34px;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 18px;
    }

    .hero-button {
        padding: 12px 22px;
        font-size: 15px;
    }

}


@media (max-width: 600px) {

    .hero {
        height: 520px;
    }

    .hero-container {
        height: 520px;
        width: 92%;
    }

    .hero-content h1 {
        font-size: 34px;
        text-align: center;
    }

    .hero-content p {
        font-size: 18px;
        text-align: center;
    }

}

/* =========================================================
   SINGLE NEWS ARTICLE
   ========================================================= */

.news-single {
    max-width: 950px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
}


.news-single-header {
    margin-bottom: 25px;
}


.news-single-header h2 {
    color: #153d73;
    font-size: 34px;
    line-height: 1.3;
    margin-bottom: 12px;
}


.news-single-meta {
    color: #777777;
    font-size: 14px;
}


.news-single-image {
    width: 100%;
    margin-bottom: 30px;
}


.news-single-image img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}


.news-single-content {
    color: #444444;
    font-size: 17px;
    line-height: 1.8;
}


.news-single-content p {
    margin-bottom: 20px;
}


.news-single-footer {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid #e5e5e5;
}


/* =========================================================
   NEWS AUTHOR
   ========================================================= */

.news-author {
    display: block;
    color: #777777;
    margin-top: 10px;
    margin-bottom: 12px;
}


/* =========================================================
   EMPTY NEWS
   ========================================================= */

.empty-news {
    text-align: center;
    padding: 60px 30px;
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
}


.empty-news h2,
.empty-news h3 {
    color: #153d73;
    margin-bottom: 12px;
}


.empty-news p {
    color: #666666;
    margin-bottom: 25px;
}


/* =========================================================
   SINGLE NEWS RESPONSIVE
   ========================================================= */

@media (max-width: 700px) {

    .news-single {
        padding: 22px;
    }

    .news-single-header h2 {
        font-size: 26px;
    }

    .news-single-content {
        font-size: 16px;
    }

    .news-single-image img {
        max-height: 350px;
    }

}

```css
/* =========================================================
   PADA GALLERY
   ========================================================= */

.gallery-section {
    padding: 70px 0;
    background-color: #f7f9f8;
}


/* =========================================================
   GALLERY GRID
   ========================================================= */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}


/* =========================================================
   GALLERY CARD
   ========================================================= */

.gallery-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e4e8e5;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.10);
}


/* =========================================================
   GALLERY IMAGE
   ========================================================= */

.gallery-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #eeeeee;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-image img {
    transform: scale(1.05);
}


/* =========================================================
   GALLERY CONTENT
   ========================================================= */

.gallery-content {
    padding: 20px;
}

.gallery-content h3 {
    margin: 0 0 8px;
    color: #153d73;
    font-size: 19px;
    line-height: 1.4;
}

.gallery-content p {
    margin: 0;
    color: #666666;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   GALLERY CATEGORY
   ========================================================= */

.gallery-category {
    display: inline-block;
    margin-bottom: 10px;
    padding: 5px 10px;
    background-color: #e8f2ea;
    color: #0b5d1e;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}


/* =========================================================
   GALLERY DATE
   ========================================================= */

.gallery-date {
    margin-top: 12px;
    color: #888888;
    font-size: 12px;
}


/* =========================================================
   GALLERY EMPTY STATE
   ========================================================= */

.empty-gallery {
    text-align: center;
    padding: 60px 25px;
    background-color: #ffffff;
    border: 1px solid #e3e7eb;
    border-radius: 10px;
}

.empty-gallery h3 {
    color: #153d73;
    margin-bottom: 10px;
    font-size: 22px;
}

.empty-gallery p {
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}


/* =========================================================
   GALLERY FILTER
   ========================================================= */

.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 35px;
}

.gallery-filter a {
    display: inline-block;
    padding: 9px 18px;
    border: 1px solid #d7ded9;
    border-radius: 5px;
    background-color: #ffffff;
    color: #153d73;
    font-size: 14px;
    transition: all 0.2s ease;
}

.gallery-filter a:hover,
.gallery-filter a.active {
    background-color: #0b5d1e;
    border-color: #0b5d1e;
    color: #ffffff;
}


/* =========================================================
   GALLERY LIGHTBOX / IMAGE LINK
   ========================================================= */

.gallery-image a {
    display: block;
    width: 100%;
    height: 100%;
}


/* =========================================================
   RESPONSIVE - TABLETS
   ========================================================= */

@media (max-width: 1000px) {

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .gallery-image {
        height: 230px;
    }

}


/* =========================================================
   RESPONSIVE - MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .gallery-section {
        padding: 50px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-image {
        height: 250px;
    }

    .gallery-content {
        padding: 18px;
    }

    .gallery-content h3 {
        font-size: 18px;
    }

}
```

/* =========================================================
   GALLERY LIGHTBOX
   ========================================================= */

.gallery-image {
    cursor: pointer;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.gallery-lightbox-content {
    max-width: 1100px;
    width: 100%;
    text-align: center;
}

.gallery-lightbox-content img {
    display: block;
    max-width: 100%;
    max-height: 78vh;
    width: auto;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.gallery-lightbox-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-top: 15px;
}

.gallery-lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    width: 45px;
    height: 45px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
}

.gallery-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

body.gallery-lightbox-open {
    overflow: hidden;
}


/* =========================================================
   GALLERY IMAGE HOVER
   ========================================================= */

.gallery-image {
    position: relative;
    overflow: hidden;
}

.gallery-image img {
    transition: transform 0.35s ease;
}

.gallery-image:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(11, 93, 30, 0.65);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-image:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
}


/* =========================================================
   GALLERY FILTERS
   ========================================================= */

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 30px;
}

.gallery-filter {
    border: 1px solid #0b5d1e;
    background: #ffffff;
    color: #0b5d1e;
    padding: 9px 18px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
}

.gallery-filter:hover,
.gallery-filter.active {
    background: #0b5d1e;
    color: #ffffff;
}


/* =========================================================
   MOBILE LIGHTBOX
   ========================================================= */

@media (max-width: 600px) {

    .gallery-lightbox {
        padding: 20px 12px;
    }

    .gallery-lightbox-content img {
        max-height: 70vh;
    }

    .gallery-lightbox-close {
        top: 10px;
        right: 10px;
    }

    .gallery-lightbox-title {
        font-size: 15px;
    }

}

.partners-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
margin-top: 40px;
}

.partner-card {
background: #ffffff;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.partner-logo {
height: 180px;
display: flex;
align-items: center;
justify-content: center;
padding: 25px;
background: #f8f9fa;
}

.partner-logo img {
max-width: 100%;
max-height: 130px;
width: auto;
height: auto;
object-fit: contain;
}

.partner-logo-placeholder {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
color: #666;
font-weight: 600;
}

.partner-content {
padding: 25px;
}

.partner-content h3 {
margin: 0 0 12px;
font-size: 21px;
}

.partner-content p {
margin-bottom: 18px;
line-height: 1.7;
}

.partner-link {
display: inline-block;
font-weight: 600;
text-decoration: none;
}

.partners-cta {
text-align: center;
padding: 50px 30px;
background: #f5f7f8;
border-radius: 10px;
}

.partners-cta h2 {
margin-bottom: 15px;
}

.partners-cta p {
max-width: 750px;
margin: 0 auto 25px;
line-height: 1.7;
}

@media (max-width: 900px) {

```
.partners-grid {
    grid-template-columns: repeat(2, 1fr);
}
```

}

@media (max-width: 600px) {

```
.partners-grid {
    grid-template-columns: 1fr;
}

.partner-logo {
    height: 160px;
}
```

}

.team-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
margin-top: 40px;
}

.team-card {
background: #ffffff;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.team-photo {
height: 300px;
background: #f5f7f8;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}

.team-photo img {
width: 100%;
height: 100%;
object-fit: cover;
}

.team-photo-placeholder {
width: 110px;
height: 110px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
background: #e9ecef;
font-size: 42px;
font-weight: 700;
}

.team-card-content {
padding: 25px;
}

.team-card-content h3 {
margin: 0 0 8px;
font-size: 22px;
}

.team-position {
font-weight: 600;
margin-bottom: 15px;
}

.team-biography {
line-height: 1.7;
margin-bottom: 18px;
}

.team-contact {
display: flex;
flex-direction: column;
gap: 7px;
font-size: 14px;
}

.team-contact a {
text-decoration: none;
word-break: break-word;
}

.team-cta {
text-align: center;
padding: 50px 30px;
background: #f5f7f8;
border-radius: 10px;
}

.team-cta h2 {
margin-bottom: 15px;
}

.team-cta p {
max-width: 750px;
margin: 0 auto 25px;
line-height: 1.7;
}

@media (max-width: 900px) {

```
.team-grid {
    grid-template-columns: repeat(2, 1fr);
}
```

}

@media (max-width: 600px) {

```
.team-grid {
    grid-template-columns: 1fr;
}

.team-photo {
    height: 280px;
}
```

}

/* =========================================================
PADA PUBLIC TEAM PAGE
========================================================= */

/* =========================================================
TEAM GRID
========================================================= */

.team-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 30px;
margin-top: 45px;
align-items: start;
}

/* =========================================================
TEAM CARD
========================================================= */

.team-card {
background: #ffffff;
border-radius: 12px;
overflow: hidden;
border: 1px solid #e6e9ec;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
transition:
transform 0.3s ease,
box-shadow 0.3s ease;
}

.team-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 28px rgba(0, 0, 0, 0.11);
}

/* =========================================================
TEAM PHOTO
========================================================= */

.team-photo {
width: 100%;
height: 320px;
background: #f1f3f5;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
}

.team-photo img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}

/* =========================================================
PHOTO PLACEHOLDER
========================================================= */

.team-photo-placeholder {
width: 120px;
height: 120px;
border-radius: 50%;
background: #e5e7eb;
display: flex;
align-items: center;
justify-content: center;
}

.team-photo-placeholder span {
font-size: 48px;
font-weight: 700;
line-height: 1;
}

/* =========================================================
TEAM CONTENT
========================================================= */

.team-card-content {
padding: 28px;
}

/* =========================================================
MEMBER NAME
========================================================= */

.team-name-section {
margin-bottom: 18px;
}

.team-name-section h3 {
margin: 0;
font-size: 23px;
line-height: 1.3;
font-weight: 700;
}

/* =========================================================
POSITION
========================================================= */

.team-position-section {
padding-bottom: 20px;
border-bottom: 1px solid #e8eaed;
}

.team-label,
.team-contact-label {
display: block;
font-size: 12px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.7px;
margin-bottom: 6px;
}

.team-position {
margin: 0;
font-size: 16px;
font-weight: 600;
line-height: 1.5;
}

/* =========================================================
BIOGRAPHY
========================================================= */

.team-biography-section {
padding: 22px 0;
border-bottom: 1px solid #e8eaed;
}

.team-biography-section h4,
.team-contact-section h4 {
margin: 0 0 12px;
font-size: 17px;
font-weight: 700;
}

.team-biography {
font-size: 15px;
line-height: 1.75;
}

/* =========================================================
CONTACT INFORMATION
========================================================= */

.team-contact-section {
padding-top: 22px;
}

.team-contact-item {
margin-bottom: 13px;
}

.team-contact-item:last-child {
margin-bottom: 0;
}

.team-contact-item a {
display: block;
font-size: 15px;
line-height: 1.5;
text-decoration: none;
word-break: break-word;
}

.team-contact-item a:hover {
text-decoration: underline;
}

/* =========================================================
TEAM CTA
========================================================= */

.team-cta-section {
padding-top: 20px;
}

.team-cta {
text-align: center;
padding: 55px 35px;
border-radius: 12px;
background: #f5f7f8;
}

.team-cta h2 {
margin: 0 0 15px;
font-size: 30px;
line-height: 1.3;
}

.team-cta p {
max-width: 800px;
margin: 0 auto 28px;
font-size: 16px;
line-height: 1.75;
}

/* =========================================================
EMPTY TEAM STATE
========================================================= */

.empty-state {
text-align: center;
padding: 60px 25px;
background: #f8f9fa;
border-radius: 10px;
margin-top: 40px;
}

.empty-state h3 {
margin-bottom: 12px;
}

.empty-state p {
max-width: 650px;
margin: 0 auto;
line-height: 1.7;
}

/* =========================================================
TABLET
========================================================= */

@media (max-width: 1000px) {

```
.team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
}

.team-photo {
    height: 300px;
}
```

}

/* =========================================================
MOBILE
========================================================= */

@media (max-width: 650px) {

```
.team-grid {
    grid-template-columns: 1fr;
    gap: 25px;
}

.team-photo {
    height: 320px;
}

.team-card-content {
    padding: 24px;
}

.team-name-section h3 {
    font-size: 21px;
}

.team-cta {
    padding: 40px 22px;
}

.team-cta h2 {
    font-size: 25px;
}
```

}

/* =========================================================
   PROGRAMMES PAGE
   ========================================================= */

.programs-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.program-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    border: 1px solid #eeeeee;
    display: flex;
    gap: 22px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.program-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    background: #f0f5f1;
    color: #2f6b3f;
}

.program-card-content {
    flex: 1;
}

.program-card h3 {
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.3;
}

.program-card p {
    margin: 0 0 16px;
    line-height: 1.7;
}

.program-card ul {
    margin: 0;
    padding-left: 20px;
}

.program-card li {
    margin-bottom: 7px;
    line-height: 1.5;
}


/* =========================================================
   PROGRAMME APPROACH
   ========================================================= */

.programmes-approach {
    background: #f7f9f7;
}

.program-approach-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.program-approach-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
}

.program-approach-card .program-icon {
    margin: 0 auto 20px;
}

.program-approach-card h3 {
    margin-bottom: 12px;
    font-size: 21px;
}

.program-approach-card p {
    margin: 0;
    line-height: 1.7;
}


/* =========================================================
   PROGRAMMES CTA
   ========================================================= */

.programmes-cta {
    padding-top: 60px;
    padding-bottom: 60px;
}

.programmes-cta-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.programmes-cta-content h2 {
    margin-bottom: 15px;
}

.programmes-cta-content p {
    margin-bottom: 25px;
    line-height: 1.8;
}


/* =========================================================
   RESPONSIVE PROGRAMMES
   ========================================================= */

@media (max-width: 900px) {

    .programs-grid {
        grid-template-columns: 1fr;
    }

    .program-approach-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 600px) {

    .program-card {
        flex-direction: column;
        padding: 24px;
    }

    .program-card .program-icon {
        margin-bottom: 5px;
    }

    .program-card h3 {
        font-size: 20px;
    }

}