*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-green: #3b7d3c;
    --forest-green: #1e3d2f;
    --accent-gold: #c9a25d;
    --deep-brown: #5c3a1e;
    --light-beige: #f2efe9;
    --text-dark: #2b2b2b;
    --white: #ffffff;
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    overflow-x: hidden;
}


header {
   background-color: var(--forest-green);
    color: white;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1002;
}


header .logo-link {
    text-decoration: none;
    color: white;
}


header .logo-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
}

header .hamburger {
    font-size: 2rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1003;
    display: block;
}

header nav {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 260px;
    height: calc(100vh - 60px);
    background-color: var(--forest-green);
    padding-top: 2rem;
    transition: left 0.3s ease;
    z-index: 1001;
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

header nav ul li {
    padding: 1rem 1.5rem;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

header .nav-open {
    left: 0;
}

.overlay {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100vw;
    height: calc(100vh - 60px);
    background: rgba(0, 0, 0, 0.4);
    z-index: 1000;
    display: none;
}

.overlay.show {
    display: block;
}

.hero {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
    margin-top: 60px;
}

.hero video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(59, 125, 60, 0.3) 0%, rgba(201, 162, 93, 0.2) 100%);
    z-index: 1;
}

.hero .hero-content.left-align {
    position: relative;
    z-index: 2;
    color: white;
    margin: 0 auto;
    padding: 0.5rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.hero .hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero .hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

   .hero-buttons a {
    padding: 8px 20px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

/* First button: white border */
.hero-btn-outline {
    border: 2px solid white;
    color: white;
    background-color: transparent;
}
.hero-btn-outline:hover {
    background-color: white;
    color: #000;
}

/* Second button: solid white */
.hero-btn-white {
    background-color: white;
    color: #000;
    border: 2px solid white;
}
.hero-btn-white:hover {
    background-color: #f0f0f0;
}


.btn {
    padding: 0.3rem 1.5rem;
    text-transform: uppercase;
    border-radius: 2rem;
    border: 2px solid transparent;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn.outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn.white {
    background-color: var(--white);
    color: #2c3e50;
}

.btn:hover {
    background-color: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
}

@media (min-width: 992px) {
    header .hamburger {
        display: none;
    }

    header nav {
        position: static;
        height: auto;
        width: auto;
        background: transparent;
        padding: 0;
        left: auto !important;
    }

    header nav ul {
        display: flex;
        gap: 1.5rem;
    }

    header nav ul li {
        padding: 0;
    }

    header nav ul li a {
        font-size: 1rem;
        color: white;
    }

    .overlay {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 60vh;
    }

    .hero .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero .hero-content p {
        font-size: 1rem;
    }
}

.about-mission {
    padding: 30px 20px;
    background-color: #f8f8f8;
}

.about-mission .mission-grid {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.about-mission .mission-text {
    flex: 1;
}

.about-mission .mission-subtitle {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #5c7c5c;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.about-mission .mission-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #222;
}

.about-mission .mission-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.about-mission .mission-visual {
    flex: 1;
    text-align: right;
}

.about-mission .mission-picture {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    object-fit: cover;
    display: block;
}

.about-mission .mission-btn {
    background-color: var(--primary-green);
}

.about-mission a.mission-btn {
    color: var(--white);
}

@media (max-width: 767px) {
    .about-mission {
        padding: 40px 10px;
    }

    .about-mission .mission-grid {
        flex-direction: column;
    }

    .about-mission .mission-visual {
        order: 1;
        text-align: center;
        padding: 0;
        margin: 0;
    }

    .about-mission .mission-text {
        order: 2;
        padding: 0 10px;
    }

    .about-mission .mission-picture {
        width: 100%;
        margin: 0 auto 20px;
    }

    .about-mission .mission-title {
        font-size: 24px;
    }

    .about-mission .mission-desc {
        font-size: 15px;
    }
}

.achievements-section {
    position: relative;
    padding: 3rem 0;
    background-image: url('../img/f.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

.achievements-section .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.achievements-section .container {
    position: relative;
    z-index: 2;
}

.achievements-section .achievement-item {
    background-color: rgba(0, 0, 0, 0.65);
    border-radius: 10px;
    padding: 1.2rem 1rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.achievements-section .achievement-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
}

.achievements-section .achievement-number {
    font-size: 2.3rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.achievements-section .achievement-label {
    font-size: 0.95rem;
    opacity: 0.95;
}

@media (max-width: 992px) {
    .achievements-section .achievement-item {
        padding: 1rem;
    }

    .achievements-section .achievement-number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .achievements-section {
        padding: 2.5rem 0;
    }

    .achievements-section .achievement-number {
        font-size: 1.75rem;
    }

    .achievements-section .achievement-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .achievements-section .achievement-item {
        padding: 0.75rem 0.5rem;
    }

    .achievements-section .achievement-number {
        font-size: 1.5rem;
    }

    .achievements-section .achievement-label {
        font-size: 0.8rem;
    }
}

.mission-pillars {
    padding: 2rem 0;
    background-color: white;
}

.mission-pillars .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.mission-pillars .section-header h2 {
    font-size: 2.2rem;
    color: var(--deep-brown);
    margin-bottom: 0.5rem;
}

.mission-pillars .section-header p {
    font-size: 1.1rem;
    color: var(--text-dark);
    opacity: 0.8;
}

.mission-pillars .header-divider {
    width: 80px;
    height: 3px;
    background: var(--accent-gold);
    margin: 1.5rem auto;
}

.mission-pillars .pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-pillars .pillar-card {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    border-radius: 8px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    min-height: 100%;
}

.mission-pillars .pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.mission-pillars .pillar-visual {
    position: relative;
    margin-bottom: 1rem;
}

.mission-pillars .pillar-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.mission-pillars .pillar-icon-1 {
    background-color: #E8F5E9;
    color: #2E7D32;
}

.mission-pillars .pillar-icon-2 {
    background-color: #E3F2FD;
    color: #1565C0;
}

.mission-pillars .pillar-icon-3 {
    background-color: #FFF8E1;
    color: #FF8F00;
}

.mission-pillars .pillar-icon-4 {
    background-color: #F3E5F5;
    color: #7B1FA2;
}

.mission-pillars .pillar-icon-5 {
    background-color: #E0F7FA;
    color: #00838F;
}

.mission-pillars .pillar-icon-6 {
    background-color: #F1F8E9;
    color: #558B2F;
}

.mission-pillars .pillar-number {
    position: absolute;
    top: 10px;
    right: -10px;
    background: var(--accent-gold);
    color: var(--deep-brown);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
}

.mission-pillars .pillar-content h3 {
    font-size: 1.2rem;
    color: var(--deep-brown);
    margin-bottom: 0.5rem;
}

.mission-pillars .pillar-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
    opacity: 0.9;
}

@media (max-width: 992px) {
    .mission-pillars .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mission-pillars .pillars-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .mission-pillars .pillar-card {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    .mission-pillars .section-header h2 {
        font-size: 1.8rem;
    }
}

/* Projects Section - Optimized */
.projects-section {
    padding: 3rem 0;
    background-color: white;
}

.projects-section .section-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.projects-section .section-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    color: var(--deep-brown);
    margin-bottom: 0.5rem;
}

.projects-section .section-header p {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: var(--text-dark);
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto;
}

.projects-section .header-divider {
    width: 80px;
    height: 3px;
    background: var(--accent-gold);
    margin: 1rem auto;
}

.projects-section .projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.projects-section .project-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.projects-section .project-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.projects-section .project-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.projects-section .project-content {
    padding: 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.projects-section .project-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    gap: 0.5rem;
}

.projects-section .project-status {
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.projects-section .project-status.ongoing {
    background-color: #E8F5E9;
    color: #2E7D32;
}

.projects-section .project-status.completed {
    background-color: #E3F2FD;
    color: #1565C0;
}

.projects-section .project-status.upcoming {
    background-color: #FFF8E1;
    color: #FF8F00;
}

.projects-section .project-year {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.85rem;
}

.projects-section .project-content h3 {
    color: var(--deep-brown);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    line-height: 1.3;
}

.projects-section .project-desc {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 0.85rem;
    line-height: 1.5;
    flex-grow: 1;
}

.projects-section .project-btn {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--accent-gold);
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: background 0.2s ease;
    text-align: center;
}

.projects-section .project-btn:hover {
    background: var(--deep-brown);
}

.projects-section .view-all-btn {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: var(--primary-green);
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: background 0.2s ease;
}

.projects-section .view-all-btn:hover {
    background: var(--deep-brown);
}

/* CTA Section - Optimized */
.cta-section {
    padding: 3.5rem 1rem;
    background: linear-gradient(rgba(59, 125, 60, 0.9), rgba(59, 125, 60, 0.9)),
        url('https://images.unsplash.com/photo-1476231682828-37e571bc172f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.cta-section>.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.cta-section h2 {
    font-size: clamp(1.6rem, 3vw, 2rem);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.cta-section p {
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.5;
}

.cta-section .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-section .cta-btn {
    padding: 0.6rem 1.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.cta-section .donate-btn {
    background: white;
    color: var(--primary-green);
}

.cta-section .partner-btn {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-section .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .projects-section .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .projects-section .project-image {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .projects-section {
        padding: 2rem 0;
    }

    .projects-section .section-header {
        margin-bottom: 1.5rem;
    }

    .projects-section .project-image {
        height: 200px;
    }

    .cta-section {
        padding: 2.5rem 1rem;
    }
}

@media (max-width: 576px) {
    .projects-section .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .projects-section .project-card {
        max-width: 400px;
        margin: 0 auto;
    }

    .cta-section .cta-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.75rem;
        justify-content: center;
    }

    .cta-section .cta-btn {
        width: auto;
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
        margin: 0;
    }
}

.footer-section {
    background-color: var(--deep-brown) !important;
    color: white;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-link:hover {
    color: var(--accent-gold);
}

.footer-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-gold);
    transition: width 0.3s ease;
}

.footer-link:hover:after {
    width: 100%;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    margin-right: 8px;
}

.social-icons a:hover {
    background-color: var(--accent-gold);
    transform: translateY(-3px);
}

.newsletter-form .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .btn-primary {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
}

.newsletter-form .btn-primary:hover {
    background-color: #b38e4e;
    border-color: #b38e4e;
}

hr {
    border-color: rgba(255, 255, 255, 0.1);
}


/* ABOUT US CSS START */

.about-page-title {
    position: relative;
    background-image: url('../img/img-2.jpg');
    background-size: cover;
    background-position: center;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-page-title::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 0;
}



.about-page-title .container {
    position: relative;
    z-index: 1;
}

.about-page-title h1,
.about-page-title p,
.about-page-title .breadcrumb {
    color: #fff;
}

.about-page-title .breadcrumb {
    justify-content: center;
    color: white;
}

.about-page-title .breadcrumb-item a {
    color: white !important;
    text-decoration: none;
}

.about-page-title .breadcrumb-item.active {
    color: white;
}

.header-divider {
    width: 60px;
    height: 4px;
    background-color: #28a745;
    border-radius: 2px;
    margin-top: 10px;
}

.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-card img {
    height: 170px;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.team-card {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 12px;
    background-color: #fff;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}



.team-card h5 {
    margin-top: 12px;
    margin-bottom: 6px;
}

.team-card h5 {
  display: -webkit-box;
  -webkit-line-clamp: 2;   /* allow max 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}


.team-card p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.fixed-image-section {
    position: relative;
    background-image: url('../img/1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    border-radius: 20px;
    padding: 20px;
}

.fixed-image-section .about-overlay-content h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.fixed-image-section .about-overlay-content p {
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.fixed-image-section .button-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.fixed-image-section .button-group a {
    padding: 10px 25px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s ease;
}

.fixed-image-section .btn-primary {
    background-color: #ffc107;
    color: #000;
    border: none;
}

.fixed-image-section .btn-primary:hover {
    background-color: #e0a800;
    color: #fff;
}

.fixed-image-section .btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.fixed-image-section .btn-outline:hover {
    background: #fff;
    color: #000;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .fixed-image-section {
        background-attachment: scroll;
        height: auto;
        padding: 60px 20px;
        border-radius: 0;
    }

    .fixed-image-section .about-overlay-content {
        padding: 20px 15px;
    }

    .fixed-image-section .about-overlay-content h2 {
        font-size: 1.5rem;
    }

    .fixed-image-section .about-overlay-content p {
        font-size: 0.95rem;
    }

    .fixed-image-section .button-group a {
        font-size: 0.9rem;
        padding: 8px 20px;
    }
}

/* ABOUT US CSS END */


/* BLOG CSS START */
.news-page-title {
    position: relative;
    background-image: url('../img/f.jpg');
    background-size: cover;
    background-position: center;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.news-page-title::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(34, 85, 34, 0.3);
    z-index: 0;
}


.news-page-title .container {
    position: relative;
    z-index: 1;
}

.news-page-title h1,
.news-page-title p,
.news-page-title .breadcrumb {
    color: #fff;
}

.news-page-title .breadcrumb {
    justify-content: center;
    color: white;
}

.news-page-title .breadcrumb-item a {
    color: white !important;
    text-decoration: none;
}

.news-page-title .breadcrumb-item.active {
    color: white;
}

.blog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.blog-card img {
    height: 220px;
    object-fit: cover;
}

.blog-card .card-body {
    padding: 1.2rem;
}

.blog-card .badge {
    font-size: 0.75rem;
    padding: 0.4em 0.6em;
    border-radius: 4px;
}

.section-header h2 {
    font-weight: 600;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
}



/* Blog details
---------------------*/


.blog-grid {
    box-shadow: 0 0 30px rgba(31, 45, 61, 0.125);
    border-radius: 5px;
    overflow: hidden;
    background: #ffffff;
    margin-top: 15px;
    margin-bottom: 15px;
}

.article-meta {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.article-meta i {
    color: #20247b;
    margin-right: 5px;
}


.blog-grid .blog-img {
    position: relative;
}

.article-img {
    width: 100%;
    aspect-ratio: 800 / 350;
    overflow: hidden;
    border-radius: 10px;
}

.article-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}



.blog-grid .blog-img .date {
    position: absolute;
    background: #fc5356;
    color: #ffffff;
    padding: 8px 15px;
    left: 10px;
    top: 10px;
    border-radius: 4px;
}

.blog-grid .blog-img .date span {
    font-size: 22px;
    display: block;
    line-height: 22px;
    font-weight: 700;
}

.blog-grid .blog-img .date label {
    font-size: 14px;
    margin: 0;
}

.blog-grid .blog-info {
    padding: 20px;
}

.blog-grid .blog-info h5 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 10px;
}

.blog-grid .blog-info h5 a {
    color: #20247b;
}

.blog-grid .blog-info p {
    margin: 0;
}

.blog-grid .blog-info .btn-bar {
    margin-top: 20px;
}


/* Blog Sidebar
-------------------*/
.blog-aside .widget {
    box-shadow: 0 0 30px rgba(31, 45, 61, 0.125);
    border-radius: 5px;
    overflow: hidden;
    background: #ffffff;
    margin-top: 15px;
    margin-bottom: 15px;
    width: 100%;
    display: inline-block;
    vertical-align: top;
}

.blog-aside .widget-body {
    padding: 15px;
}

.blog-aside .widget-title {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.blog-aside .widget-title h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fc5356;
    margin: 0;
}

.blog-aside .widget-author .media {
    margin-bottom: 15px;
}

.blog-aside .widget-author p {
    font-size: 16px;
    margin: 0;
}

.blog-aside .widget-author .avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
}

.blog-aside .widget-author h6 {
    font-weight: 600;
    color: #20247b;
    font-size: 22px;
    margin: 0;
    padding-left: 20px;
}

.blog-aside .post-aside {
    margin-bottom: 15px;
}

.blog-aside .post-aside .post-aside-title h5 {
    margin: 0;
}

.blog-aside .post-aside .post-aside-title a {
    font-size: 18px;
    color: #20247b;
    font-weight: 600;
}

.blog-aside .post-aside .post-aside-meta {
    padding-bottom: 10px;
}

.blog-aside .post-aside .post-aside-meta a {
    color: #6F8BA4;
    font-size: 12px;
    text-transform: uppercase;
    display: inline-block;
    margin-right: 10px;
}

.blog-aside .latest-post-aside+.latest-post-aside {
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: 15px;
}

.blog-aside .latest-post-aside .lpa-right {
    width: 90px;
}

.blog-aside .latest-post-aside .lpa-right img {
    border-radius: 3px;
}

.blog-aside .latest-post-aside .lpa-left {
    padding-right: 15px;
}

.blog-aside .latest-post-aside .lpa-title h5 {
    margin: 0;
    font-size: 15px;
}

.blog-aside .latest-post-aside .lpa-title a {
    color: #20247b;
    font-weight: 600;
}

.blog-aside .latest-post-aside .lpa-meta a {
    color: #6F8BA4;
    font-size: 12px;
    text-transform: uppercase;
    display: inline-block;
    margin-right: 10px;
}

.tag-cloud a {
    padding: 4px 15px;
    font-size: 13px;
    color: #ffffff;
    background: #20247b;
    border-radius: 3px;
    margin-right: 4px;
    margin-bottom: 4px;
}

.tag-cloud a:hover {
    background: #fc5356;
}

.blog-single {
    padding-top: 30px;
    padding-bottom: 30px;
}

.article {
    box-shadow: 0 0 30px rgba(31, 45, 61, 0.125);
    border-radius: 5px;
    overflow: hidden;
    background: #ffffff;
    padding: 15px;
    margin: 15px 0 30px;
}

.article .article-title {
    padding: 15px 0 20px;
}

.article .article-title h6 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.article .article-title h6 a {
    text-transform: uppercase;
    color: #fc5356;
    border-bottom: 1px solid #fc5356;
}

.article .article-title h2 {
    color: #20247b;
    font-weight: 600;
}

.article .article-title .media {
    padding-top: 15px;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 20px;
}

.article .article-title .media .avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
}

.article .article-title .media .media-body {
    padding-left: 8px;
}

.article .article-title .media .media-body label {
    font-weight: 600;
    color: #fc5356;
    margin: 0;
}

.article .article-title .media .media-body span {
    display: block;
    font-size: 12px;
}

.article .article-content h1,
.article .article-content h2,
.article .article-content h3,
.article .article-content h4,
.article .article-content h5,
.article .article-content h6 {
    color: #20247b;
    font-weight: 600;
    margin-bottom: 15px;
}

.article .article-content blockquote {
    max-width: 600px;
    padding: 15px 0 30px 0;
    margin: 0;
}

.article .article-content blockquote p {
    font-size: 20px;
    font-weight: 500;
    color: #fc5356;
    margin: 0;
}

.article .article-content blockquote .blockquote-footer {
    color: #20247b;
    font-size: 16px;
}

.article .article-content blockquote .blockquote-footer cite {
    font-weight: 600;
}

.article .tag-cloud {
    padding-top: 10px;
}

.article-comment {
    box-shadow: 0 0 30px rgba(31, 45, 61, 0.125);
    border-radius: 5px;
    overflow: hidden;
    background: #ffffff;
    padding: 20px;
}

.article-comment h4 {
    color: #20247b;
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 22px;
}

img {
    max-width: 100%;
}

img {
    vertical-align: middle;
    border-style: none;
}

/* Contact Us
---------------------*/
.contact-name {
    margin-bottom: 30px;
}

.contact-name h5 {
    font-size: 22px;
    color: #20247b;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-name p {
    font-size: 18px;
    margin: 0;
}

.social-share a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    color: #ffffff;
    text-align: center;
    margin-right: 10px;
}

.social-share .dribbble {
    box-shadow: 0 8px 30px -4px rgba(234, 76, 137, 0.5);
    background-color: #ea4c89;
}

.social-share .behance {
    box-shadow: 0 8px 30px -4px rgba(0, 103, 255, 0.5);
    background-color: #0067ff;
}

.social-share .linkedin {
    box-shadow: 0 8px 30px -4px rgba(1, 119, 172, 0.5);
    background-color: #0177ac;
}

.contact-form .form-control {
    border: none;
    border-bottom: 1px solid #20247b;
    background: transparent;
    border-radius: 0;
    padding-left: 0;
    box-shadow: none !important;
}

@media (max-width: 768px) {
    .contact-form .form-control {
        margin-bottom: 1.5rem;
    }
}


.contact-form .form-control:focus {
    border-bottom: 1px solid #fc5356;
}

.contact-form .form-control.invalid {
    border-bottom: 1px solid #ff0000;
}

.contact-form .send {
    margin-top: 20px;
}

@media (max-width: 767px) {
    .contact-form .send {
        margin-bottom: 20px;
    }
}

.section-title h2 {
    font-weight: 700;
    color: #20247b;
    font-size: 45px;
    margin: 0 0 15px;
    border-left: 5px solid #fc5356;
    padding-left: 15px;
}

.section-title {
    padding-bottom: 45px;
}

.contact-form .send {
    margin-top: 20px;
}

.px-btn {
    padding: 0 50px 0 20px;
    line-height: 60px;
    position: relative;
    display: inline-block;
    color: #20247b;
    background: none;
    border: none;
}

.px-btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    border-radius: 30px;
    background: transparent;
    border: 1px solid rgba(252, 83, 86, 0.6);
    border-right: 1px solid transparent;
    -moz-transition: ease all 0.35s;
    -o-transition: ease all 0.35s;
    -webkit-transition: ease all 0.35s;
    transition: ease all 0.35s;
    width: 60px;
    height: 60px;
}

.px-btn .arrow {
    width: 13px;
    height: 2px;
    background: currentColor;
    display: inline-block;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 25px;
}

.px-btn .arrow:after {
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-top: 2px solid currentColor;
    content: "";
    position: absolute;
    top: -3px;
    right: 0;
    display: inline-block;
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* BLOG CSS END */


/* PROJECTS CSS START */

.projects-page-title {
    position: relative;
    background-image: url('../img/1.jpg');
    background-size: cover;
    background-position: center;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.projects-page-title::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(34, 85, 34, 0.3);
    z-index: 0;
}


.projects-page-title .container {
    position: relative;
    z-index: 1;
}


.our-project-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 300px;
}

.our-project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.our-project-card:hover img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: #fff;
    transition: background 0.3s ease;
}


.card-overlay h3 {
    margin: 0 0 8px;
    font-size: 1.5rem;
}

.card-overlay p {
    margin: 0;
    font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .card-overlay h3 {
        font-size: 1.25rem;
    }

    .card-overlay p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .our-project-card {
        height: 200px;
    }
}


.accordion-button {
    background-color: transparent;
    color: inherit;
    box-shadow: none !important;
    transition: none;
}

.accordion-button:not(.collapsed) {
    background-color: transparent;
    color: inherit;
}

.accordion-button:focus {
    box-shadow: none;
    outline: none;
}

/* PROJECTS PAGE END */



/* DONATION PAGE START */

.donation-video-section {
    position: relative;
    width: 100%;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.content-overlay {
    position: relative;
    z-index: 1;
}

.donation-video-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.donation-crumb {
    font-family: 'Segoe UI', sans-serif;
    font-size: 1.1rem;
    color: #fff;
}

.donation-crumb p {
    margin: 0;
    text-transform: uppercase;
}

.donation-arrow {
    margin: 0 0.5rem;
    color: #ecf900;
    font-weight: bold;
    font-size: 2rem;
}

.donation-impact-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    line-height: 1.7;
}

.donation-impact-list li {
    display: flex;
    align-items: center;
    font-size: 1rem;
    margin-bottom: 0.6rem;
}

.text-purple {
    color: #6f42c1;
}



.donation-wizard {
    max-width: 500px;
}

.step {
    display: none;
}

.step.active {
    display: block;
}

.donation-amounts {
    display: flex;
    gap: 10px;
}


.amount-btn {
    border: 1px solid #198754;
    color: #198754;
    background: white;
    padding: 8px 20px;
    margin-right: 10px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.amount-btn.selected,
.amount-btn:hover {
    background: #198754;
    color: #fff;
}


.toggle-switch {
    --active: #198754;
    --inactive: #e2e8f0;
    --text: #1e293b;
    display: flex;
    position: relative;
    background: var(--inactive);
    border-radius: 50px;
    padding: 4px;
    width: fit-content;
}

.toggle-switch input {
    display: none;
}

.toggle-switch label {
    padding: 8px 24px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    z-index: 1;
    transition: color 0.3s ease;
}

.toggle-switch input:checked+label {
    color: white;
}

.slider {
    position: absolute;
    top: 4px;
    left: 4px;
    bottom: 4px;
    width: calc(50% - 4px);
    background: var(--active);
    border-radius: 50px;
    z-index: 0;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#one-time:checked~.slider {
    transform: translateX(0);
}

#monthly:checked~.slider {
    transform: translateX(100%);
}


.no-focus-style:focus {
    border-color: inherit !important;
    box-shadow: none !important;
    outline: none !important;
}

.no-spinner::-webkit-outer-spin-button,
.no-spinner::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* .no-spinner {
    -moz-appearance: textfield;
} */

.custom-padding {
    padding: 0.75rem 1.25rem;
}


.comment-focus-style:focus {
    border: none !important;
    border-bottom: 1px solid #198754 !important;
    box-shadow: none !important;
    outline: none !important;
}

.form-check-input:focus {
    border-color: #198754;
    box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

.form-check-input:checked {
    background-color: #198754;
    border-color: #198754;
}

.form-check-input:focus {
    border-color: #198754;
    box-shadow: none;
    outline: none;
}

.anonymous-tool-tip i {
    cursor: pointer;
    font-size: 1rem;
    vertical-align: middle;
}

.tooltip-inner {
    max-width: 250px;
    font-size: 0.875rem;
    text-align: left;
    white-space: normal;
}

.donate-btn,
.donate-next-btn {
    width: auto;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    text-transform: capitalize;
}

@media (max-width: 767.98px) {

    .donate-btn,
    .donate-next-btn {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .donate-next-btn {
        width: 100%;
        margin-top: 20px;
    }
}

.text-danger {
    font-size: 0.875rem;
    margin-bottom: 10px;
}

.cursor {
    cursor: pointer;
}

.step-indicator {
    background-color: transparent;
    border: 1px solid white;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.step-indicator.active {
    background-color: white;
    border-color: white;
    opacity: 1;
}

.donate-comment {
    display: none;
}

/* DONATION PAGE END */



/* CONTACT US PAGE */
.email-link {
    color: #2c7a3f;
    text-decoration: none;
}

.email-link:hover {
    text-decoration: underline;
    color: #1a5e2d;
}

/* TRANSPARENCY PAGE */
.transparency-section {
    background: linear-gradient(135deg, #2e7d32, #1b5e20);
    min-height: 30vh;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}


.progress-container {
    margin-top: 10px;
}

.progress-label {
    font-weight: 600;
    margin-bottom: 5px;
}

.progress-bar-wrapper {
    width: 100%;
    height: 20px;
    background-color: #e0e0e0;
    border-radius: 50px;
    overflow: hidden;
}

.progress-bar-inner {
    height: 100%;
    border-radius: 50px;
    transition: width 1.5s ease;
}


/* PARTNERSHIPS PAGE */
.partner-slider img {
    max-height: 80px;
    margin: 0 auto;
    display: block;
}

/* STORIES PAGE */
a.no-underline {
    text-decoration: none !important;
}

.story-section-heading {
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.story-card,
.milestone-card {
    background-color: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    margin-bottom: 2rem;
}

.story-media {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.story-content {
    padding: 1.2rem;
}


 .supplier-img {
    height: 250px;          /* Same height for all images */
    object-fit: cover;      /* Ensures image fills area nicely */
    width: 100%;            /* Full width */
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
  }