* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #2E7D32;
    --primary-blue: #1565C0;
    --primary-orange: #EF6C00;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 2rem;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-green#02306b);
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo-img-small {
    height: 40px;
    width: auto;
}



.footer-logo .logo-text {
    color: white;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-green);
}

.btn-donate {
    background: var(--primary-orange);
    color: white !important;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-donate:hover {
    background: #e65100;
    transform: translateY(-2px);
}

.nav-links li:last-child a {
    background: var(--primary-orange);
    color: white !important;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
}

.nav-links li:last-child a:hover {
    background: #e65100;
}

.nav-links a {
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-green);
}

.btn-donate {
    background: var(--primary-orange);
    color: white !important;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
}

.btn-donate:hover {
    background: #e65100;
}

.btn-primary {
    background: var(--primary-green);
    color: white;
}

.btn-primary:hover {
    background: #1b5e20;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(46, 125, 50, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-green);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
}

.btn-outline:hover {
    background: var(--primary-green);
    color: white;
}

.btn-donate {
    background: var(--secondary-green);
    color: white !important;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
}

.btn-donate:hover {
    background: var(--primary-orange);
}
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow);
    padding: 20px;
    z-index: 999;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-menu a {
    display: block;
    padding: 10px;
    font-weight: 500;
}

.mobile-menu a:hover {
    color: var(--primary-green);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: #000;
    display: flex;
    align-items: center;
    padding-top: 70px;
    position: relative;
}

.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    padding: 40px 0;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 15px;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 60px;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-orange);
    color: white;
}

.btn-primary:hover {
    background: var(--secondary-green);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(245, 124, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-orange);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
}

.btn-outline:hover {
    background: var(--primary-orange);
    color: white;
}

.btn-large {
    padding: 18px 45px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-content h3 {
    color: var(--primary-green);
    font-size: 1.5rem;
    margin: 30px 0 15px;
}

.about-content h3:first-child {
    margin-top: 0;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.about-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.about-card:hover {
    transform: translateY(-5px);
}

.about-card i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.about-card h4 {
    color: var(--text-dark);
    margin-bottom: 10px;
}

.about-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Programs Section */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.program-card {
    background: var(--bg-white);
    padding: 35px 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid var(--primary-green);
}

.program-card:nth-child(2) {
    border-top-color: var(--primary-blue);
}

.program-card:nth-child(3) {
    border-top-color: var(--primary-orange);
}

.program-card:nth-child(4) {
    border-top-color: #7B1FA2;
}

.program-card:hover {
    transform: translateY(-8px);
}

.program-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 25px;
    border: 4px solid rgba(255,255,255,0.3);
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.program-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.program-icon i {
    font-size: 2rem;
    color: white;
}

.program-card h3 {
    color: var(--text-dark);
    margin-bottom: 20px;
}

.program-list {
    text-align: left;
}

.program-list li {
    padding: 8px 0;
    color: var(--text-light);
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
}

.program-list li:last-child {
    border-bottom: none;
}

/* Membership Section */
.membership-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--text-light);
    font-size: 1.1rem;
}

.membership-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.membership-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.membership-card:hover {
    transform: translateY(-5px);
}

.membership-card.featured {
    border: 3px solid var(--primary-orange);
}

.membership-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-orange);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.membership-card h3 {
    margin-top: 15px;
    color: var(--text-dark);
}

.membership-card > p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 15px 0;
}

.membership-benefits {
    text-align: left;
    margin-top: 20px;
}

.membership-benefits li {
    padding: 8px 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.membership-benefits i {
    color: var(--primary-green);
    margin-right: 10px;
}

.membership-cta {
    text-align: center;
    margin-top: 50px;
}

/* Get Involved Section */
.involved-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.involved-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.involved-card:hover {
    transform: translateY(-5px);
}

.involved-card > i {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 25px;
}

.involved-card h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

.involved-card > p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.involved-list {
    text-align: left;
    margin-bottom: 25px;
}

.involved-list li {
    padding: 8px 0;
    color: var(--text-light);
    border-bottom: 1px solid #eee;
}

.involved-list li:last-child {
    border-bottom: none;
}

/* Transparency Section */
.transparency-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.transparency-intro p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.transparency-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.transparency-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
}

.transparency-card > i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.transparency-card h3 {
    color: var(--text-dark);
    margin-bottom: 10px;
}

.transparency-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.doc-tag {
    display: inline-block;
    background: var(--primary-green);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-top: 15px;
}

.transparency-policies h3 {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.policies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.policy-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: var(--bg-white);
    border-radius: 10px;
}

.policy-item i {
    color: var(--primary-green);
    font-size: 1.2rem;
}

.policy-item span {
    color: var(--text-dark);
}

/* Donate Section */
.section-donate {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    color: white;
}

.section-donate .section-header h2,
.section-donate .section-header p {
    color: white;
}

.donate-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.donate-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.donate-info > p {
    opacity: 0.9;
    margin-bottom: 30px;
}

.donation-impact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.impact-item {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 10px;
}

.impact-amount {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.impact-desc {
    font-size: 0.9rem;
    opacity: 0.9;
}

.donate-methods h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: right;
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.payment-card {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.payment-card i {
    font-size: 2rem;
    margin-bottom: 15px;
}

.payment-card h4 {
    margin-bottom: 10px;
}

.payment-card p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.donate-cta {
    text-align: center;
    margin-bottom: 20px;
}

.donate-cta .btn {
    background: white;
    color: var(--primary-green);
}

.donate-cta .btn:hover {
    background: var(--primary-orange);
    color: white;
}

.donate-note {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item > i {
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    color: var(--text-dark);
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--text-light);
}

.social-links {
    margin-top: 40px;
}

.social-links h4 {
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary-green);
    transform: translateY(-3px);
}

.contact-form {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo .logo-text {
    color: white;
}

.footer-col > p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-col h4 {
    margin-bottom: 25px;
    color: white;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-orange);
}

.footer-col > p i {
    margin-right: 10px;
    color: var(--primary-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

/* Responsive */
@media (max-width: 1024px) {
    .programs-grid,
    .membership-grid,
    .transparency-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }

    .about-grid,
    .donate-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-cards {
        grid-template-columns: 1fr;
    }

    .programs-grid,
    .membership-grid,
    .involved-grid,
    .transparency-grid {
        grid-template-columns: 1fr;
    }

    .policies-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo,
    .social-icons {
        justify-content: center;
    }
}
