:root {
    --primary-dark: #187C3C;
    --primary-darker: #0F5E2B;
    --accent-red: #95BF3F;
    --accent-red-dark: #81A635;
    --accent-orange: #DD9C5C;
    --text-white: #ffffff;
    --text-gray: rgba(255, 255, 255, 0.95);
    --header-height-desktop: 140px;
    --top-bar-height-desktop: 54px;
    --header-height-mobile: 188px;
    --top-bar-height-mobile: 126px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    width: 100%;
    margin: 0;
    padding: 0;
    padding-top: var(--header-height-desktop);
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
    background: #f5f5f5;
    transition: padding-top 0.4s ease;
}

body.scrolled {
    padding-top: calc(var(--header-height-desktop) - var(--top-bar-height-desktop));
}

.mobile-only {
    display: none;
}


/* Header Container */
.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.4s ease;
}

/* Top Bar Section - RED BACKGROUND */
.top-bar {
    background: #5c5752;
    padding: 7px 0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.header.scrolled {
    transform: translateY(calc(-1 * var(--top-bar-height-desktop)));
}

.header.scrolled .nav-bar {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    right: -50px;
    width: 300px;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    transform: skewX(-15deg);
}

.top-bar-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-white);
    font-size: 14px;
    font-weight: 400;
}

.info-item a {
    color: #fff;
}

.info-item svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex-shrink: 0;
}

/* Get In Touch Button */
.get-touch-btn {
    background: var(--primary-dark);
    color: var(--text-white);
    padding: 10px 24px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(24, 124, 60, 0.3);
}

.get-touch-btn:hover {
    background: #187c3c;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(24, 124, 60, 0.4);
}

.get-touch-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.get-touch-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.3;
}

.get-touch-label {
    font-size: 11px;
    opacity: 0.9;
}

.get-touch-phone {
    font-size: 17px;
    font-weight: 600;
}

/* Navigation Bar - WHITE BACKGROUND */
.nav-bar {
    background: var(--text-white);
    padding: 18px 0;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.nav-bar.scrolled {
    padding: 10px 0;
    background: rgb(255 255 255);
    backdrop-filter: blur(10px);
}

.nav-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 74px;
    
    width: auto;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 35px;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: #187c3c;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-red);
    transition: width 0.3s ease;
    border: unset;
}

.nav-menu a:hover {
    color: var(--accent-red);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Dropdown Menu Styles */
.nav-menu .dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-icon {
    font-size: 11px !important;
    transition: transform 0.3s ease;
    margin-top: 2px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 240px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-top: 3px solid var(--accent-red);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    z-index: 1100;
    border-radius: 0 0 4px 4px;
    list-style: none;
    display: unset;
    /* Ensure no bullets */
}

.nav-menu .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
    position: relative;
    /* Context */
}

.dropdown-menu a {
    padding: 10px 20px;
    font-size: 14px;
    color: var(--primary-dark);
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.2s ease;
    text-transform: capitalize;
    /* Ensure nice casing */
}

.dropdown-menu a:hover {
    background: rgba(24, 124, 60, 0.05);
    color: var(--accent-red);
    padding-left: 25px;
}

.dropdown-menu a::after {
    display: none;
    /* No underline anim for dropdown items */
}

/* Header Actions Area */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Language Selector */
.lang-selector {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(24, 124, 60, 0.05);
    padding: 6px 8px;
    border-radius: 5px;
    border: 1px solid rgba(24, 124, 60, 0.1);
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--primary-dark);
    padding: 6px 11px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s ease;
    font-family: 'Poppins', sans-serif;
    min-width: 42px;
    text-align: center;
}

.lang-btn:hover {
    background: rgba(24, 124, 60, 0.1);
}

.lang-btn.active {
    background: var(--accent-red);
    color: var(--text-white);
}

/* Hide Google Translate UI while allowing logic to work */
.goog-te-banner-frame.skiptranslate,
.goog-te-gadget-icon,
.goog-te-gadget-simple span,
.goog-te-menu-value span {
    display: none !important;
}

#goog-gt-tt,
.goog-te-balloon-frame {
    display: none !important;
}

.goog-text-highlight {
    background: none !important;
    box-shadow: none !important;
}

body {
    top: 0 !important;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--primary-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .nav-menu {
        gap: 28px;
    }

    .contact-info {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        gap: 24px;
    }

    .nav-menu a {
        font-size: 14px;
    }

    .contact-info {
        gap: 25px;
    }

    .info-item {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: var(--header-height-mobile);
    }
    .page-header {
        padding: 30px 0 !important;;
    }
    .header.scrolled .nav-bar {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    margin-top: 60px;
}
.impact-plus {
    font-size: 16px !important;
}
    .footer-social {
        display: flex;
        gap: 10px !important;
    }
    .social-link {
    width: 25px !important;
    height: 25px !important;
    font-size: 14px !important;
    }

    body.scrolled {
        padding-top: calc(var(--header-height-mobile) - var(--top-bar-height-mobile));
    }

    .footer-col:last-child {
        grid-column: span 2;
    }
    .footer-container {
        padding: 0 20px !important;
    }


    /* Top Bar Mobile */
    .top-bar {
        padding: 12px 0;
    }

    .top-bar-container {
        display: flex;
        gap: 12px;
        padding: 0 20px;
    }

    .contact-info {
                display: flex;
        gap: 10px;
        width: 100%;
        align-items: center;
    }

    .info-item {
        font-size: 12px;
    }

    .get-touch-btn {
               width: unset;
        justify-content: center;
        padding: 10px 14px;
    }

    body {
        padding-top: var(--header-height-mobile);
    }

    .mobile-only {
        display: block !important;
    }

    .menu-donation-btn {
        margin-top: 30px;
        width: 100%;
        text-align: center;
        padding: 16px 20px !important;
        font-size: 16px !important;
        background: var(--accent-red);
        color: var(--text-white) !important;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(149, 191, 63, 0.4);
        transition: all 0.3s ease;
    }

    .menu-donation-btn:hover {
        background: var(--accent-red-dark);
        transform: scale(1.02);
    }

    .header.scrolled {
        transform: translateY(calc(-1 * var(--top-bar-height-mobile)));
    }

    /* Navigation Mobile */
    .nav-container {
        padding: 0 20px;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 300px;
        background: var(--primary-darker);
        flex-direction: column;
        gap: 0;
        padding: 80px 30px 30px;
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-menu a {
        padding: 16px 0;
        font-size: 15px;
        color: var(--text-white) !important;
    }

    .nav-menu a::after {
        display: none;
    }

    .lang-selector {
        padding: 4px 6px;
    }

    .lang-btn {
        min-width: 36px;
        padding: 5px 8px;
        font-size: 12px;
    }

    .header-actions {
        gap: 12px;
    }

    .logo img {
        height: 42px;
    }

    /* Mobile Menu Overlay */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 999;
        animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    /* Mobile Dropdown */
    .dropdown-menu {
        position: static;
        width: 100%;
        background: rgba(255, 255, 255, 0.05);
        box-shadow: none;
        border-top: none;
        padding: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        border-radius: 0;
    }

    .dropdown.active .dropdown-menu {
        display: block;
        animation: slideDown 0.3s ease;
    }

    .dropdown-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .dropdown-menu li:last-child {
        border-bottom: none;
    }

    .dropdown-menu a {
        padding: 12px 20px 12px 40px;
        color: rgba(255, 255, 255, 0.8) !important;
        font-size: 14px;
        border-bottom: none;
    }

    .dropdown-menu a:hover {
        background: rgba(255, 255, 255, 0.1);
        color: var(--text-white) !important;
        padding-left: 45px;
    }

    .dropdown.active .dropdown-icon {
        transform: rotate(180deg);
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

@media (max-width: 480px) {
    .top-bar-container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 0 15px;
    }

    .info-item span {
        font-size: 11px;
    }

    .get-touch-phone {
        font-size: 15px;
    }

    .nav-menu {
        width: 280px;
    }

    .logo img {
        height: 70px;
        
    }
    .nav-bar {
    padding: 5px 0;
    }

    .contact-info {
        gap: 8px;
        display: none;
    }
}

@media (max-width: 360px) {
    .nav-menu {
        width: 260px;
        padding: 70px 20px 20px;
    }

    .logo img {
        height: 35px;
    }

    .get-touch-content {
        align-items: center;
    }
}

/* Demo Content */
.demo-content {
    padding: 60px 20px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.demo-content h1 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.demo-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .demo-content {
        padding: 40px 20px;
    }

    .demo-content h1 {
        font-size: 1.8rem;
    }

    .demo-content p {
        font-size: 1rem;
    }
}

/* Button Utilities */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--accent-red);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(149, 191, 63, 0.3);
}

.btn-primary:hover {
    background: var(--accent-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(149, 191, 63, 0.4);
}

.btn-outline {
    background: transparent;
    border-color: var(--text-white);
    color: var(--text-white);
}

.btn-outline:hover {
    background: var(--text-white);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    width: 100%;
    height: calc(100vh - var(--header-height-desktop));
    min-height: 500px;
    overflow: hidden;
    background: #000;
}

.slider-container {
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.65);
    transform: scale(1.1);
    transition: transform 8s linear;
}

.slide.active img {
    transform: scale(1);
}

.slide-content {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -45%);
    text-align: center;
    color: var(--text-white);
    width: 100%;
    max-width: 900px;
    padding: 0 20px;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
}

.slide.active .slide-content {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.slide-tag {
    display: inline-block;
    background: var(--accent-orange);
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease backwards 0.6s;
}

.slide-content h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    text-transform: capitalize;
    animation: fadeInUp 0.8s ease backwards 0.8s;
}

.slide-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease backwards 1s;
}

.slide-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 0.8s ease backwards 1.2s;
}

/* Slider Controls */
.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
}

.slider-prev {
    left: 40px;
}

.slider-next {
    right: 40px;
}

.slider-prev svg,
.slider-next svg {
    width: 32px;
    height: 32px;
    fill: var(--text-white);
}

/* Dots */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--accent-orange);
    width: 30px;
    border-radius: 10px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mission Section Styles */
.mission-section {
    padding: 50px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
    position: relative;
    overflow: hidden;
}

.mission-section .section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.mission-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    color: var(--primary-dark);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.mission-header .section-title {
    font-size: 42px;
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-weight: 800;
    position: relative;
}

.mission-header .section-subtitle {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.mission-card {
    background: #fcfcfc;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #187c3c;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mission-card:hover {
    background: var(--text-white);
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-red);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: rgba(24, 124, 60, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.mission-card:hover .card-icon {
    background: var(--primary-dark);
    transform: rotateY(360deg);
}

.card-icon i {
    font-size: 32px;
    color: var(--primary-dark);
    transition: all 0.4s ease;
}

.mission-card:hover .card-icon i {
    color: var(--text-white);
}

.mission-card h3 {
    font-size: 22px;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.mission-card p {
    font-size: 15px;
    color: #777;
    line-height: 1.6;
}

/* Responsive Mission Grid */
@media (max-width: 1200px) {
    .mission-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .mission-card:last-child {
        grid-column: span 3;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 992px) {
    .mission-header .section-title {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .mission-section {
        padding: 70px 0;
    }

    .mission-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mission-card:last-child {
        grid-column: span 2;
    }

    .mission-header .section-title {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .mission-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .mission-card:last-child {
        grid-column: span 2;
        max-width: 100%;
    }

    .mission-card {
        padding: 25px 15px;
    }

    .card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .card-icon i {
        font-size: 24px;
    }

    .mission-card h3 {
        font-size: 16px;
    }
}

/* Responsive Slider */
@media (max-width: 992px) {
    .slide-content h1 {
        font-size: 48px;
    }

    .slide-content p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: calc(100vh - var(--header-height-mobile));
        min-height: 450px;
    }

    .slide-content h1 {
        font-size: 36px;
    }

    .slide-content p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .slider-prev,
    .slider-next {
        width: 45px;
        height: 45px;
        display: none;
        /* Hide on small screens if desired */
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .slide-btns {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .slide-content h1 {
        font-size: 28px;
    }

    .slide-tag {
        font-size: 11px;
        padding: 4px 12px;
    }
}

/* Main Footer */
.main-footer {
    background: #0a3d1d;
    /* Slightly darker brand green for depth */
    color: var(--text-white);
    padding: 80px 0 0;
    margin-top: 0;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    width: 100%;
    max-width: 1600px;
    /* Optional: adds a very wide limit for ultra-large screens */
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 60px;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-logo {
    background: white;
    display: inline-block;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.footer-about {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.8;
}

.footer-col h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
    color: var(--accent-red);
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-orange);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-orange);
    padding-left: 5px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-item span {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.6;
}

.payment-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid var(--accent-orange);
}

.payment-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--accent-orange);
    margin-bottom: 5px;
}

.payment-number {
    font-size: 14px;
    font-weight: 500;
}

/* Footer Bottom */
.footer-bottom {
    background: #072a14;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    font-size: 13px;
    opacity: 0.7;
}



.bottomFooterLink ul li {
    display: inline-block;
}

.bottomFooterLink ul li a {
    color: #fff;
    margin-right: 10px;
        text-decoration: underline;
}
.footer-bottom-container p {
    margin: 0;
}

.credit-link {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        text-align: left;
    }

    .footer-col:first-child {
        grid-column: span 2;
    }

    .footer-col h3::after {
        left: 0;
        transform: none;
    }

    .contact-item {
        justify-content: flex-start;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* Impact Section Styles */
.impact-section {
    padding: 50px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
    position: relative;
    overflow: hidden;
}

.section-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px;
}

.section-tag {
    display: inline-block;
    background: rgba(149, 191, 63, 0.1);
    color: var(--accent-red);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.section-subtitle {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

.impact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.impact-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #187c3c;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgb(0 0 0 / 19%);
}

.impact-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1;
}

.impact-plus {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-orange);
    vertical-align: top;
    margin-left: 1px;
}

.impact-label {
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .impact-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .impact-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .impact-card:last-child {
        grid-column: span 2;
    }

    .impact-card {
        padding: 30px 15px;
    }

    .impact-number {
        font-size: 22px;
    }

    .impact-label {
        font-size: 12px;
    }

    .section-title {
        font-size: 28px;
    }

    .impact-section {
        padding: 50px 0;
    }
}

/* Projects Section Styles */
.projects-section {
    padding: 50px 0;
    background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
}

.projects-slider-wrapper {
    position: relative;
    padding: 20px 0;
    overflow: hidden;
}

.projects-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: slideContinuous 65s linear infinite;
}

.projects-slider-wrapper:hover .projects-track {
    animation-play-state: paused;
}

/* Animate ONLY half of the track */
@keyframes slideContinuous {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}




.project-card {
    min-width: 380px;
    max-width: 380px;
    flex: 0 0 380px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgb(24 124 60 / 73%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(24, 124, 60, 0.08);
    border-color: rgba(24, 124, 60, 0.2);
}

.project-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover .project-img img {
    transform: scale(1.1);
}

.project-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent-orange);
    color: white;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.project-content {
    padding: 30px;
}

.project-content h3 {
    font-size: 22px;
    color: var(--primary-dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.project-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-project {
    display: block;
    width: 100%;
    padding: 12px 20px;
    text-align: center;
    background: transparent;
    color: var(--primary-dark);
    border: 1.5px solid var(--primary-dark);
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-project:hover {
    background: var(--primary-dark);
    color: white;
}

/* View All Style */
.view-all-wrapper {
    text-align: center;
    margin-top: 60px;
}

.view-all-btn {
    border-color: var(--primary-dark) !important;
    color: var(--primary-dark) !important;
    font-weight: 700;
    padding: 16px 45px !important;
}

.view-all-btn:hover {
    background: var(--primary-dark) !important;
    color: white !important;
}

@media (max-width: 768px) {
    .section-container {
        padding: 0 20px;
    }
    .project-card {
        min-width: 320px;
        flex: 0 0 320px;
    }

    .projects-section {
        padding: 60px 0;
    }

    .project-img {
        height: 200px;
    }
}

/* Gallery Section Styles */
.gallery-section {
    padding: 50px 0;
    background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 2px solid #187c3c;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(24, 124, 60, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .item-overlay {
    opacity: 1;
}

.item-overlay i {
    color: white;
    font-size: 30px;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.gallery-item:hover .item-overlay i {
    transform: scale(1);
}

/* Lightbox Modal */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
}

.gallery-modal.active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border-radius: 8px;
    animation: zoom 0.3s ease;
}

@keyframes zoom {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.modal-close:hover {
    color: var(--accent-orange);
}

.modal-caption {
    margin: auto;
    display: block;
    width: 80%;
    text-align: center;
    color: #ccc;
    padding: 20px 0;
    font-size: 18px;
    font-weight: 500;
}

/* Responsive Gallery */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .modal-close {
        right: 20px;
        top: 20px;
    }
}

/* Latest Projects Section Styles */
.latest-projects-section {
    padding: 50px 0;
    background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
}

.latest-projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.latest-project-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #187c3c;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.latest-project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(24, 124, 60, 0.1);
}

.project-card-img {
    height: 200px;
    overflow: hidden;
}

.project-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.latest-project-card:hover .project-card-img img {
    transform: scale(1.1);
}

.project-card-info {
    padding: 20px;
    text-align: center;
}

.project-card-info h3 {
    font-size: 18px;
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.donate-card-btn {
    width: 100%;
    padding: 10px 0 !important;
    font-size: 14px !important;
    border-radius: 6px !important;
}

/* Responsive Latest Projects */
@media (max-width: 1200px) {
    .latest-projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .latest-projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .project-card-img {
        height: 150px;
    }

    .project-card-info {
        padding: 15px;
    }

    .project-card-info h3 {
        font-size: 15px;
        margin-bottom: 15px;
    }
}

/* Trusted Partners Slider Styles */
.partners-section {
    padding: 50px 0;
    background: #ffffff;
    border-top: 1px solid rgba(24, 124, 60, 0.05);
}

.partners-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.partners-slider {
    flex: 1;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.partners-track {
    display: flex;
    gap: 15px;
    align-items: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.partners-track.auto-scroll {
    width: max-content;
    animation: scrollLogos 30s linear infinite;
}

.partners-track:hover {
    animation-play-state: paused;
}

.partner-logo {
    width: 220px;
    height: 120px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px;
    filter: grayscale(20%);
    opacity: 0.9;
    transition: all 0.4s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-5px);
    border-color: var(--primary-dark);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.partner-ctrl-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid var(--primary-dark);
    color: var(--primary-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    flex-shrink: 0;
}

.partner-ctrl-btn:hover {
    background: var(--primary-dark);
    color: white;
    transform: scale(1.1);
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 6));
    }
}

/* Mobile Adjustments for Partners */
@media (max-width: 768px) {
    .partners-track {
        gap: 10px;
    }

    .partner-logo {
        width: 160px;
        height: 80px;
        padding: 8px;
    }

    .partner-ctrl-btn {
        width: 35px;
        height: 35px;
    }

    .partners-track.auto-scroll {
        animation: scrollLogosMobile 25s linear infinite;
    }
}

@keyframes scrollLogosMobile {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-200px * 6));
    }
}

/* Footer Social Media Styles */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

.social-link:hover {
    background: var(--accent-orange);
    color: #ffffff;
    transform: translateY(-5px);
    border-color: var(--accent-orange);
    box-shadow: 0 5px 15px rgba(243, 112, 33, 0.3);
}

.social-link i {
    transition: transform 0.3s ease;
}

.social-link:hover i {
    transform: rotate(360deg);
}

/* Floating Action Buttons */
.floating-btn {
    position: fixed;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    border: none;
    outline: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.floating-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* WhatsApp Button */
.whatsapp-btn {
    bottom: 90px;
    background: #25d366;
    /* Always visible */
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.whatsapp-btn:hover {
    background: #20bd5a;
    transform: translateY(-5px) !important;
}

/* Scroll Top Button */
.scroll-top-btn {
    bottom: 30px;
    background: var(--primary-dark);
}

.scroll-top-btn:hover {
    background: var(--accent-orange);
}

/* Responsive Position */
@media (max-width: 768px) {
    .floating-btn {
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .whatsapp-btn {
        bottom: 80px;
    }

    .scroll-top-btn {
        bottom: 25px;
    }
}

/* Donation Page Styles */
.page-header {
    background: linear-gradient(rgba(7, 42, 20, 0.8), rgba(7, 42, 20, 0.8)),
     url('{{ asset(assetLink().'/images/img/slider-1.png') }}');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    text-align: center;
    color: white;
}
.contact-item i {
    font-size: 13px;
    color: #d6985b;
}
.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.donation-grid-section {
    padding: 60px 0;
    background: #f9fdfa;
}

.donation-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.donation-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgb(24 124 60 / 72%);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.donation-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(24, 124, 60, 0.3);
}

.donation-card-img {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.donation-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.donation-card:hover .donation-card-img img {
    transform: scale(1.1);
}

.donation-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.donation-card-content h3 {
    font-size: 16px;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    /* Limit lines if titles are long */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.donation-card-content .donate-btn {
    width: 100%;
    margin-top: auto;
    font-weight: 600;
    font-size: 14px;
}

/* Responsive Donation Grid */
@media (max-width: 1400px) {
    .donation-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1100px) {
    .donation-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .donation-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .donation-card-content {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .donation-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .donation-card-img {
        height: 120px;
    }

    .donation-card-content {
        padding: 10px;
    }

    .donation-card-content h3 {
        font-size: 13px;
        margin-bottom: 10px;
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }

    .donation-card-content .donate-btn {
        padding: 8px 10px;
        font-size: 12px;
    }

    .page-header h1 {
        font-size: 32px;
    }
}

/* About Us Page Styles */
.about-header {
    background: linear-gradient(rgba(7, 42, 20, 0.85), rgba(7, 42, 20, 0.85)), url('../img/slider-2.png');
    background-size: cover;
    background-position: center;
}

.about-content-section {
    padding: 80px 0;
    background: #ffffff;
}

.about-main-text {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.about-main-text h2 {
    font-size: 36px;
    color: var(--primary-dark);
    margin-bottom: 30px;
    font-weight: 700;
}

.about-main-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
    text-align: justify;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.vm-card {
    background: #f9fdfa;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(24, 124, 60, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.vm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: rgba(24, 124, 60, 0.3);
}

.vm-icon {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(24, 124, 60, 0.1);
    color: var(--accent-orange);
    font-size: 28px;
}

.vm-card h3 {
    font-size: 24px;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.vm-card p {
    color: #555;
    line-height: 1.6;
}

.objectives-container {
    background: var(--primary-dark);
    padding: 50px;
    border-radius: 15px;
    color: white;
}

.objectives-container h3 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    color: var(--accent-orange);
}

.objectives-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 20px;
}

.objectives-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.objectives-list li:hover {
    background: rgba(255, 255, 255, 0.2);
}

.objectives-list i {
    color: var(--accent-orange);
    font-size: 20px;
}

/* Responsive About Page */
@media (max-width: 768px) {
    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-main-text h2 {
        font-size: 28px;
    }

    .about-main-text p {
        text-align: left;
    }

    .objectives-container {
        padding: 30px 20px;
    }

    .objectives-list li {
        font-size: 15px;
        padding: 12px;
    }
}

/* Chairman's Message Page Styles */
.message-section {
    padding: 80px 0;
    background: #ffffff;
}

.message-container {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.chairman-image-col {
    flex: 0 0 350px;
    position: sticky;
    top: 100px;
}

.chairman-img-wrapper {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(24, 124, 60, 0.1);
    text-align: center;
}

.chairman-img-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.chairman-info h3 {
    font-size: 20px;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.chairman-info span {
    font-size: 14px;
    color: var(--accent-orange);
    font-weight: 600;
    text-transform: uppercase;
}

.chairman-text-col {
    flex: 1;
}

.message-quote {
    font-size: 40px;
    color: var(--accent-orange);
    opacity: 0.3;
    margin-bottom: 20px;
}

.greeting {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 25px;
    font-style: italic;
}

.quran-verse {
    background: #f9fdfa;
    border-left: 4px solid var(--accent-orange);
    padding: 20px;
    margin: 25px 0;
    font-size: 18px;
    font-style: italic;
    color: #555;
    border-radius: 0 8px 8px 0;
}

.highlight-text {
    color: var(--primary-dark);
    font-weight: 500;
    background: rgba(24, 124, 60, 0.05);
}

.chairman-text-col p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
    text-align: justify;
}

.message-signoff {
    margin-top: 50px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 30px;
}

.message-signoff h4 {
    font-size: 20px;
    color: var(--primary-dark);
    margin: 10px 0 5px;
    font-family: 'Great Vibes', cursive;
    /* Optional: adds a signature feel if font available, otherwise falls back */
}

/* Responsive Message Page */
@media (max-width: 992px) {
    .message-container {
        flex-direction: column;
    }

    .chairman-image-col {
        width: 100%;
        flex: auto;
        position: static;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Contact Us Page Styles */
.contact-header {
    background: linear-gradient(rgba(7, 42, 20, 0.85), rgba(7, 42, 20, 0.85)), url('../img/slider-3.png');
    background-size: cover;
    background-position: center;
}

.contact-page-section {
    padding: 80px 0;
    background: #f9fdfa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 50px;
}

/* Info Box Styles */
.contact-info-box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.info-content-wrapper {
    padding: 40px;
}

.contact-info-box h2 {
    font-size: 24px;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.org-name {
    font-size: 14px;
    color: var(--accent-orange);
    font-weight: 600;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.c-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.c-icon {
    min-width: 40px;
    height: 40px;
    background: rgba(24, 124, 60, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 16px;
}

.c-text {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.map-container {
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Contact Form Styles */
.contact-form-box {
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form-box h2 {
    font-size: 28px;
    color: var(--primary-dark);
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form label {
    font-size: 14px;
    font-weight: 600;
    color: #444;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fcfcfc;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-dark);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(24, 124, 60, 0.1);
}

.submit-btn {
    align-self: flex-start;
    padding: 14px 40px;
    margin-top: 10px;
    border: none;
    cursor: pointer;
}

.success-message {
    display: none;
    background: #e6fffa;
    color: #1a8f6e;
    padding: 15px;
    border-radius: 6px;
    margin-top: 20px;
    border: 1px solid #b2f5ea;
    text-align: center;
    font-weight: 500;
}

.success-message i {
    margin-right: 8px;
    font-size: 18px;
}

/* Responsive Contact Page */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-box {
        order: 2;
    }

    .contact-form-box {
        order: 1;
    }
}

@media (max-width: 600px) {
    .contact-form-box {
        padding: 30px 20px;
    }

    .info-content-wrapper {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* Partner Section Styles are handled around line 1900 */
.hero-tagline {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 152, 0, 0.2);
    color: var(--accent-orange);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    border-radius: 4px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 152, 0, 0.3);
}

.centered-donation-wrapper {
    max-width: 650px;
    margin: 0 auto;
    width: 100%;
}

.fast-donation-card-large {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    color: #333;
    text-align: center;
}

.hero-tagline.centered {
    margin-bottom: 25px;
}

.project-title-xl {
    font-size: 32px;
    color: var(--primary-dark);
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.donation-amount-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.amount-btn-xl {
    padding: 12px;
    border: 2px solid #e2e8f0;
    background: #f8fafc;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 700;
    color: #4a5568;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.amount-btn-xl span {
    font-size: 18px;
    opacity: 0.7;
}

.amount-btn-xl:hover {
    border-color: var(--primary-dark);
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
}

.amount-btn-xl.active {
    background: var(--primary-dark);
    color: #fff;
    border-color: var(--primary-dark);
    box-shadow: 0 10px 20px rgba(24, 124, 60, 0.3);
}

.custom-amount-box {
    position: relative;
    margin-bottom: 30px;
}

.input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-dark);
}

.big-amount-input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    font-size: 20px;
    font-weight: 700;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s;
    background: #f8fafc;
    text-align: center;
}

.big-amount-input:focus {
    outline: none;
    border-color: var(--primary-dark);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(24, 124, 60, 0.1);
}

.btn-giant {
    width: 100%;
    padding: 16px;
    font-size: 18px;
    font-weight: 800;
    border-radius: 12px;
    display: block;
    text-align: center;
    box-shadow: 0 10px 20px rgba(24, 124, 60, 0.2);
    margin-bottom: 25px;
}

.btn-giant:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 20px 40px rgba(24, 124, 60, 0.4);
}

.payment-trust-footer {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding-top: 20px;
    border-top: 1px solid #edf2f7;
}

.trust-item {
    font-size: 14px;
    color: #718096;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-item i {
    color: #187c3c;
}

@media (max-width: 768px) {
    .fast-donation-card-large {
        padding: 40px 20px;
    }

    .project-title-xl {
        font-size: 32px;
    }

    .donation-amount-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .big-amount-input {
        font-size: 22px;
    }

    .input-icon {
        font-size: 22px;
    }
}

/* Donation Details Page Styles - High Impact Redesign */
.donation-impact-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #187c3c 0%, #115e2e 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.donation-impact-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 152, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.donation-impact-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.impact-hero-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}

.project-title-large {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 900;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: -1px;
}

.main-impact-display {
    display: inline-flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.1);
    padding: 25px 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.donated-highlight {
    display: flex;
    flex-direction: column;
}

.donated-highlight .label {
    font-size: 15px;
    letter-spacing: 2px;
    opacity: 0.9;
    margin-bottom: 8px;
    font-weight: 600;
}

.donated-highlight .amount {
    font-size: 64px;
    font-weight: 900;
    color: var(--accent-orange);
    line-height: 1;
}

.impact-subtitle {
    font-size: 18px;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
}

.fast-donation-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    color: #333;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.fast-donation-card h3 {
    font-size: 26px;
    color: var(--primary-dark);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 800;
    position: relative;
    padding-bottom: 15px;
}

.fast-donation-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent-orange);
    border-radius: 2px;
}

.btn-block {
    width: 100%;
    padding: 18px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(24, 124, 60, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-block:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 25px rgba(24, 124, 60, 0.3);
}

.secure-text {
    text-align: center;
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.project-story-section {
    padding: 80px 0;
    background: #f9fafb;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
}

.story-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.story-content h3 {
    font-size: 28px;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.story-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 25px;
}

.fund-usage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.usage-item {
    display: flex;
    gap: 15px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #edf2f7;
}

.usage-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.usage-icon.education {
    background: #e6fffa;
    color: #319795;
}

.usage-icon.food {
    background: #fffaf0;
    color: #dd6b20;
}

.usage-icon.health {
    background: #fff5f5;
    color: #e53e3e;
}

.usage-icon.home {
    background: #ebf8ff;
    color: #3182ce;
}

.sidebar-help-box,
.bank-details-box {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid #edf2f7;
}

.help-links {
    list-style: none;
    margin-top: 20px;
}

.help-links li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: #4a5568;
    font-weight: 500;
}

.help-links i {
    color: var(--accent-orange);
}

.bank-info {
    margin-top: 15px;
    padding: 15px;
    background: #f7fafc;
    border-left: 4px solid var(--primary-dark);
    font-family: monospace;
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 1200px) {
    .impact-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .impact-form-col {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .project-title-large {
        font-size: 32px;
    }

    .main-impact-display {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .impact-mini-stats {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        padding: 25px 0 0;
    }

    .story-grid {
        grid-template-columns: 1fr;
    }

    .story-image {
        height: 300px;
    }

    .fund-usage-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Checkout Page Styles --- */
.checkout-section {
    padding: 60px 0;
    background: #f1f3f5;
}

.checkout-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.checkout-card {
    background: #fff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
    .checkout-section {
        padding: 30px 0;
    }

    .checkout-card {
        padding: 25px;
        border-radius: 12px;
    }

    .checkout-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
}

.checkout-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.checkout-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #eee;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 15px;
    }
}

.form-group {
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .form-group {
        margin-bottom: 15px;
    }
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #444;
    margin-bottom: 10px;
}

.form-group label span {
    color: #ff4d4d;
}

.form-control {
    width: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-dark);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(24, 124, 60, 0.1);
}

/* Donation Summary Table */
.donation-summary-wrapper {
    margin: 50px 0;
    background: #fdfdfd;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
}

@media (max-width: 768px) {
    .donation-summary-wrapper {
        margin: 30px 0;
        padding: 15px;
    }
}

.summary-table {
    width: 100%;
    border-collapse: collapse;
}

.summary-table th,
.summary-table td {
    padding: 18px;
    text-align: left;
}

@media (max-width: 600px) {

    .summary-table th,
    .summary-table td {
        padding: 12px 8px;
        font-size: 13px;
    }
}

.summary-table th {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    font-weight: 600;
    border-bottom: 2px solid #eee;
}

.summary-table td {
    color: #333;
    font-weight: 500;
    border-bottom: 1px solid #f5f5f5;
}

.summary-table .amount-col {
    text-align: right;
}

.summary-table .total-row {
    font-weight: 700;
    font-size: 20px;
    color: var(--primary-dark);
}

.summary-table .total-row td {
    border-bottom: none;
    padding-top: 30px;
}

/* Payment Section */
.payment-content-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
}

@media (max-width: 850px) {
    .payment-content-flex {
        flex-direction: column;
        align-items: stretch;
        gap: 30px;
    }
}

.payment-options {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-option {
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 600px) {
    .payment-option {
        padding: 15px;
        gap: 12px;
    }

    .payment-info-text strong {
        font-size: 14px;
    }

    .ssl-info {
        font-size: 11px;
    }

    .payment-logo-group img {
        height: 20px;
    }
}

.payment-option:hover {
    border-color: #ddd;
}

.payment-option.active {
    border-color: var(--primary-dark);
    background: rgba(24, 124, 60, 0.03);
}

.payment-info-text strong {
    display: block;
    margin-bottom: 4px;
    color: #333;
}

.ssl-info {
    font-size: 13px;
    color: #888;
}

.payment-logo-group {
    margin-left: auto;
    display: flex;
    gap: 12px;
}

.payment-logo-group img {
    height: 30px;
    filter: grayscale(1);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.payment-option.active .payment-logo-group img {
    filter: grayscale(0);
    opacity: 1;
}

.payment-action-right {
    min-width: 300px;
    text-align: right;
}

@media (max-width: 850px) {
    .payment-action-right {
        min-width: 100%;
        text-align: center;
    }

    .donation-final-note {
        align-items: center;
        margin-bottom: 25px;
    }
}

.donation-final-note {
    margin-bottom: 20px;
    color: #777;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.donation-final-note i {
    color: var(--primary-dark);
    margin-right: 5px;
}

.complete-donation-btn {
    width: 100%;
    padding: 20px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 12px;
    background: var(--primary-dark);
    box-shadow: 0 10px 25px rgba(24, 124, 60, 0.2);
}

@media (max-width: 768px) {
    .complete-donation-btn {
        padding: 16px;
        font-size: 16px;
    }
}

.complete-donation-btn:hover {
    background: var(--primary-darker);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(24, 124, 60, 0.3);
}

/* --- News Page Styles --- */
.news-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 1200px) {
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .news-section {
        padding: 50px 0;
    }
    .slide-content {
        position: absolute;
        top: 60%;
        left: 50%;
    }
    .slider-dots {
    position: absolute;
    bottom: 40px;
    left: 14%;
    }
    
    
}

@media (max-width: 480px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

.news-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    /* Ensure all cards in a row have equal height */
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.news-card-img {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    /* Perfect modern ratio */
    overflow: hidden;
}

.news-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

@media (max-width: 768px) {
    .news-card-img {
        aspect-ratio: 4 / 3;
        /* More vertical space for 2-column layout */
    }
}

.news-card:hover .news-card-img img {
    transform: scale(1.08);
}

.news-date {
    position: absolute;
    top: 15px;
    /* Moved to top for cleaner look */
    left: 15px;
    background: var(--primary-dark);
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.news-card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.news-card-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-excerpt {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 768px) {
    .news-card-content {
        padding: 12px;
        gap: 8px;
    }

    .news-card-content h3 {
        font-size: 14px;
    }

    .news-excerpt {
        font-size: 12px;
        line-height: 1.4;
    }

    .news-date {
        top: 10px;
        left: 10px;
        padding: 4px 10px;
        font-size: 10px;
        border-radius: 4px;
    }
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--primary-dark);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
    padding: 10px 18px;
    border: 1.5px solid #0a3d1d;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    align-self: flex-start;
    margin-top: auto;
    text-decoration: none;
}

.read-more-btn i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.read-more-btn:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
    padding-right: 22px;
    box-shadow: 0 5px 15px rgba(24, 124, 60, 0.2);
}

.read-more-btn:hover i {
    transform: translateX(4px);
}

/* --- News Details Page Styles --- */
.news-details-section {
    padding: 80px 0;
    background: #fff;
}

.news-details-container {
    max-width: 900px;
    margin: 0 auto;
}

.news-details-header {
    margin-bottom: 40px;
}

.news-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    color: #777;
    font-size: 14px;
    font-weight: 500;
}

.news-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-meta-item i {
    color: var(--primary-dark);
}

.news-details-title {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .news-details-title {
        font-size: 30px;
    }
}

.news-details-img {
    width: 100%;
    aspect-ratio: 21 / 9;
    /* More cinematic, less vertical space */
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.news-details-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .news-details-img {
        aspect-ratio: 16 / 9;
        /* More height on mobile for better visibility */
    }
}


.news-full-content {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
}

.news-short-desc {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    line-height: 1.6;
    margin-bottom: 30px;
    padding-left: 20px;
    border-left: 4px solid var(--primary-dark);
}

.news-full-content p {
    margin-bottom: 25px;
}

.news-details-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
}

.news-sidebar {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.sidebar-widget {
    background: #fdfdfd;
    border: 1px solid #eee;
    padding: 25px;
    border-radius: 12px;
}

.widget-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #eee;
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-red);
}

/* Recent Posts Widget */
.recent-posts-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.recent-post-item {
    display: flex;
    gap: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.recent-post-thumb {
    width: 80px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
}

.recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-info h4 {
    font-size: 14px;
    color: #333;
    line-height: 1.4;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recent-post-info span {
    font-size: 12px;
    color: #888;
}

.recent-post-item:hover h4 {
    color: var(--primary-dark);
}

/* Sidebar Support Widget */
.sidebar-support-card {
    background: var(--primary-dark);
    color: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
}

.sidebar-support-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.sidebar-support-card p {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.sidebar-donate-btn {
    display: block;
    background: #fff;
    color: var(--primary-dark);
    padding: 12px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sidebar-donate-btn:hover {
    background: var(--accent-orange);
    color: #fff;
    transform: translateY(-3px);
}

@media (max-width: 1100px) {
    .news-details-layout {
        grid-template-columns: 1fr;
    }

    .news-sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .news-sidebar {
        grid-template-columns: 1fr;
    }
}

/* Sidebar Contact Widget */
.sidebar-contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.s-contact-item {
    display: flex;
    gap: 12px;
}

.s-contact-item i {
    color: var(--primary-dark);
    font-size: 16px;
    margin-top: 3px;
}

.s-contact-item span {
    font-size: 14px;
    color: #444;
    line-height: 1.4;
}


@media (max-width: 768px) {
    .news-details-section {
        padding: 50px 0;
    }

    .news-short-desc {
        font-size: 18px;
    }

    .news-full-content {
        font-size: 16px;
    }
}

/* --- Projects Page Styles --- */
.projects-page-section {
    padding: 80px 0;
    background: #fdfdfd;
}

.projects-page-section .section-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}


.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    width: 100%;
    margin: 0 auto;
}

@media (max-width: 1400px) {
    .projects-grid {
        gap: 20px;
    }
}

@media (max-width: 1200px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .projects-page-section .section-container {
        padding: 0 12px;
    }

    .project-content {
        padding: 12px;
        gap: 8px;
    }

    .project-content h3 {
        font-size: 14px;
    }

    .project-content p {
        font-size: 12px;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }

    .btn-project {
        padding: 6px 12px;
        font-size: 11px;
    }
}

.projects-page-section .project-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgb(24 124 60 / 66%);
    /* Reset flex/width properties from slider */
    min-width: 0;
    max-width: none;
    flex: 1;
}

.projects-page-section .project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(24, 124, 60, 0.12);
}

.projects-page-section .project-img {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
}

.projects-page-section .project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.projects-page-section .project-card:hover .project-img img {
    transform: scale(1.1);
}


.project-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.project-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.3;
    margin: 0;
}

.project-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.btn-project {
    display: inline-block;
    padding: 9px 20px;
    background: transparent;
    border: 1.5px solid var(--primary-dark);
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 13px;
    align-self: flex-start;
    margin-top: 5px;
}

.btn-project:hover {
    background: var(--primary-dark);
    color: #fff;
    box-shadow: 0 4px 12px rgba(24, 124, 60, 0.2);
}

/* --- Mission Page Styles --- */
.mission-item-section {
    padding: 100px 0;
    overflow: hidden;
    background: #fff;
}

.mission-item-section.alternate {
    background: #fdfdfd;
}

.mission-item-row {
    display: flex;
    align-items: center;
    gap: 80px;
}

.mission-item-img {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(24, 124, 60, 0.1);
}

.mission-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4 / 3;
}

.mission-item-content {
    flex: 1;
}

.mission-item-content h2 {
    font-size: 36px;
    color: var(--primary-dark);
    font-weight: 800;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.mission-item-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--accent-orange);
    border-radius: 2px;
}

.mission-overview {
    font-size: 18px;
    font-weight: 600;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-dark);
    padding-left: 20px;
}

.mission-item-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 35px;
}

.mission-item-content .btn {
    padding: 15px 40px;
    font-size: 15px;
    letter-spacing: 0.5px;
}

/* Scroll Smoothing */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    /* Offset for sticky header */
}

/* Responsive Mission Items */
@media (max-width: 1200px) {
    .mission-item-row {
        gap: 40px;
    }

    .mission-item-content h2 {
        font-size: 30px;
    }
}

@media (max-width: 991px) {
    .mission-item-section {
        padding: 60px 0;
    }

    .mission-item-row {
        flex-direction: column !important;
        text-align: center;
    }

    .mission-item-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .mission-overview {
        border-left: none;
        padding-left: 0;
        border-bottom: 2px solid var(--primary-dark);
        padding-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .mission-item-content h2 {
        font-size: 24px;
    }

    .mission-overview {
        font-size: 16px;
    }
}