/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Hero Section */
.hero {
    padding: 3rem 0;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1400px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin: auto;
    padding: 0 1rem;
}

.hero-text {
    z-index: 2;
}

.hero-title {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary {
    background: #ddae06;
    color: white;
    border-color: rgb(176, 162, 10);
}

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

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

.btn-secondary:hover {
    background: white;
    color: #667eea;
    transform: translateY(-2px);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 1.5s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

.slide.slide-out {
    opacity: 1;
    transform: translateX(-100%);
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* About Section */
.about {
    padding: 3rem 0;
    background: #ffffff;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    min-height: 500px;
}

.about-image {
    flex: 1;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text {
    flex: 1;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-intro {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: #4CAF50;
    color: white;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.stat-item p {
    font-size: 0.9rem;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
}

/* Purpose Section */
.purpose {
    padding: 3rem 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Objectives Slider */
.objectives-slider {
    padding: 2rem 0;
    margin-top: 2rem;
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding: 0 1rem;
}

/* Swiper Pagination */
.objectives-pagination {
    position: relative !important;
    margin-top: 2rem;
}

.objectives-pagination .swiper-pagination-bullet {
    background: #ddd;
    opacity: 1;
    width: 12px;
    height: 12px;
    margin: 0 6px;
}

.objectives-pagination .swiper-pagination-bullet-active {
    background: #4CAF50;
}

.objective-card {
    padding: 1.5rem 0;
    text-align: left;
    position: relative;
    border-bottom: 1px solid #e9ecef;
    background: transparent;
    animation: none !important;
    transition: none !important;
    transform: none !important;
}

.objective-card:last-child {
    border-bottom: none;
}

.objective-number {
    position: absolute;
    top: 1.5rem;
    left: 0;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.objective-card h3 {
    font-size: 1.2rem;
    margin: 0 0 0.5rem 3rem;
    color: #333;
    font-weight: 600;
    line-height: 1.4;
}

.objective-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-left: 3rem;
    margin-bottom: 0;
}


/* Projects Section */
.projects {
    padding: 5rem 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.projects .section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.project-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 10px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1), 0 20px 25px rgba(0, 0, 0, 0.15);
}

.project-card.active-project {
    border: 2px solid #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
}

.project-category {
    display: inline-block;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.project-content {
    padding: 1.5rem;
    position: relative;
}

.project-content h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 800;
    line-height: 1.3;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.project-content p {
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    --webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
}

.project-finance {
    background: #f8f9fa;
    padding: 1rem;
}

.finance-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.finance-row:last-child {
    margin-bottom: 0;
}

.finance-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.finance-label {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.finance-value {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
}

.project-progress {
    margin-bottom: 1.5rem;
    background-color: #f8f9fa;
    padding: 1rem;
    border: 1px solid rgba(76, 175, 80, 0.1);
}

.progress-bar {
    background: linear-gradient(90deg, #e8f5e8, #f0f9ff);
    height: 12px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 0.8rem;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(76, 175, 80, 0.1);
}

.progress-fill {
    background: linear-gradient(90deg, #4CAF50, #66bb6a, #4CAF50);
    height: 100%;
    border-radius: 15px;
    transition: width 1s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.4) 50%, transparent 70%);
    animation: shimmer 2.5s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.progress-text {
    font-size: 0.9rem;
    color: #4CAF50;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.progress-text::before {
    content: '📊';
    font-size: 1rem;
}

.project-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.btn-donate {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.btn-donate:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
    color: white;
    text-decoration: none;
}

.project-status {
    display: flex;
    align-items: center;
}

.status-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-ongoing {
    background: #d1ecf1;
    color: #0c5460;
}

.status-completed {
    background: #d4edda;
    color: #155724;
}

.status-planning {
    background: #fff3cd;
    color: #856404;
}

.status-active {
    background: #d4edda;
    color: #155724;
}

.status-inactive {
    background: #f8d7da;
    color: #721c24;
}

.project-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.project-location i {
    color: #4CAF50;
    font-size: 1rem;
}

.project-link {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.project-link:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

.projects-cta {
    text-align: center;
    margin-top: 3rem;
}

.projects-cta .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 30px;
}

.error-message {
    text-align: center;
    color: #e74c3c;
    font-size: 1.1rem;
    padding: 2rem;
    background: #fff5f5;
    border: 1px solid #fed7d7;
    border-radius: 10px;
    grid-column: 1 / -1;
}

.no-projects {
    text-align: center;
    color: #666;
    padding: 3rem 2rem;
    grid-column: 1 / -1;
}

.no-projects i {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 1rem;
    display: block;
}

.no-projects h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.no-projects p {
    font-size: 1rem;
    line-height: 1.6;
}


/* Mission Section */
.mission {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%234CAF50" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%234CAF50" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%234CAF50" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%234CAF50" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%234CAF50" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.mission .container {
    position: relative;
    z-index: 2;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
    margin-top: 3rem;
}

.mission-text h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 700;
}

.mission-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.mission-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.mission-images {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-single-image {
    position: relative;
    width: 100%;
    height: 100%;
    max-height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.mission-single-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.mission-single-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mission-single-image:hover img {
    transform: scale(1.05);
}

/* Mission Badge */
.mission-badge {
    width: 150px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    animation: pulse 2s infinite;
}

.mission-badge i {
    font-size: 1rem;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}



.image-grid {
    display: grid;
    gap: 1rem;
}


/* Vision Grid Layout: img, img, img (vertical stack) */
.vision-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
}

.vision-item-1 {
    grid-column: 1;
    grid-row: 1;
}

.vision-item-2 {
    grid-column: 1;
    grid-row: 2;
}

.vision-item-3 {
    grid-column: 1;
    grid-row: 3;
}

.image-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.image-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.image-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-item:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: all 0.4s ease;
}

.image-item:hover .image-overlay {
    transform: translateY(0);
}

.overlay-icon {
    width: 60px;
    height: 60px;
    background: rgba(76, 175, 80, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.image-overlay h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.image-overlay p {
    font-size: 0.95rem;
    opacity: 0.95;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.overlay-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.overlay-stats span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.6rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.overlay-stats i {
    font-size: 0.7rem;
    color: #4CAF50;
}

/* Vision Section */
.vision {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="vision-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1" fill="%234CAF50" opacity="0.1"/><circle cx="70" cy="70" r="1" fill="%234CAF50" opacity="0.1"/><circle cx="20" cy="80" r="0.5" fill="%234CAF50" opacity="0.1"/><circle cx="80" cy="20" r="0.5" fill="%234CAF50" opacity="0.1"/><circle cx="50" cy="50" r="0.5" fill="%234CAF50" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23vision-grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.vision .container {
    position: relative;
    z-index: 2;
}

.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
    margin-top: 3rem;
}

.vision-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.vision-text h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 700;
}

.vision-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Vision Badge */
.vision-badge {
    width: 150px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    animation: pulse 2s infinite;
}

.vision-badge i {
    font-size: 1rem;
}

.vision-images {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vision-single-image {
    position: relative;
    width: 100%;
    height: 100%;
    max-height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.vision-single-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.vision-single-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.vision-single-image:hover img {
    transform: scale(1.05);
}

.vision-goals {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.goal-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.goal-item:hover {
    background: #4CAF50;
    color: white;
    transform: translateX(10px);
}

.goal-number {
    width: 40px;
    height: 40px;
    background: #4CAF50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.goal-item:hover .goal-number {
    background: white;
    color: #4CAF50;
}

.goal-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
    transition: color 0.3s ease;
}

.goal-item:hover .goal-content h4 {
    color: white;
}

.goal-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
    transition: color 0.3s ease;
}

.goal-item:hover .goal-content p {
    color: white;
}

/* Page Header */
.page-header {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="page-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23page-grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.7;
}

.breadcrumb span {
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-content {
        gap: 2rem;
    }

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

    .mission-content,
    .vision-content {
        gap: 2rem;
    }
}

@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .project-card {
        max-width: none;
    }

    .project-content {
        padding: 1.2rem;
    }

    .project-content h3 {
        font-size: 1.3rem;
    }

    .project-finance {
        padding: 0.8rem;
    }

    .finance-row {
        gap: 0.3rem;
    }

    .finance-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .finance-label {
        font-size: 0.75rem;
        margin-bottom: 0.2rem;
    }

    .finance-value {
        font-size: 0.9rem;
    }
}

@media (max-width: 900px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

    .project-content {
        padding: 1rem;
    }

    .project-content h3 {
        font-size: 1.2rem;
    }

    .project-content p {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    .project-finance {
        padding: 0.7rem;
        margin-bottom: 1rem;
    }

    .finance-row {
        flex-direction: column;
        gap: 0.4rem;
    }

    .finance-item {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .finance-label {
        font-size: 0.8rem;
        margin-bottom: 0;
    }

    .finance-value {
        font-size: 0.9rem;
    }

    .project-progress {
        padding: 0.8rem;
        margin-bottom: 1rem;
    }

    .progress-bar {
        height: 10px;
    }

    .progress-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-slider {
        height: 350px;
    }

    .about {
        padding: 60px 0;
    }

    .about-content {
        flex-direction: column;
        gap: 2rem;
        min-height: auto;
    }

    .about-image {
        height: 300px;
        order: 1;
    }

    .about-text {
        height: auto;
        order: 2;
    }

    .about-text h2 {
        font-size: 2rem;
        text-align: center;
    }

    .about-intro {
        text-align: center;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-item h3 {
        font-size: 1.5rem;
    }

    .mission-content,
    .vision-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        min-height: auto;
    }

    .mission-text,
    .mission-images {
        height: auto;
    }

    .mission-text h3,
    .vision-text h3 {
        font-size: 1.5rem;
        text-align: center;
    }

    .mission-text p,
    .vision-text p {
        text-align: center;
    }

    .mission-single-image {
        max-height: 300px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .objectives-grid {
        grid-template-columns: 1fr;
        padding: 0;
    }

    .objectives-prev,
    .objectives-next {
        width: 40px;
        height: 40px;
    }

    .objectives-prev:after,
    .objectives-next:after {
        font-size: 14px;
    }

    /* Projects Mobile */
    .projects {
        padding: 2rem 0;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        margin-top: 1.5rem;
    }

    .project-card {
        margin: 0;
        max-width: none;
        width: 100%;
    }

    .project-content {
        padding: 1rem;
    }

    .project-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .project-content p {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
        line-height: 1.5;
    }

    .project-finance {
        padding: 0.8rem;
        margin-bottom: 0.8rem;
    }

    .finance-row {
        flex-direction: column;
        gap: 0.5rem;
    }

    .finance-item {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0.3rem 0;
    }

    .finance-label {
        font-size: 0.75rem;
        margin-bottom: 0;
    }

    .finance-value {
        font-size: 0.85rem;
        font-weight: 600;
    }

    .project-progress {
        padding: 0.8rem;
        margin-bottom: 0.8rem;
    }

    .progress-bar {
        height: 8px;
        margin-bottom: 0.5rem;
    }

    .progress-text {
        font-size: 0.75rem;
    }

    .project-footer {
        flex-direction: column;
        gap: 0.8rem;
        align-items: stretch;
    }

    .project-status {
        text-align: center;
    }

    .btn-donate {
        width: 100%;
        justify-content: center;
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

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

@media (max-width: 480px) {
    .projects {
        padding: 1.5rem 0;
    }

    .projects-grid {
        gap: 1rem;
        margin-top: 1rem;
    }

    .project-content {
        padding: 0.8rem;
    }

    .project-content h3 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }

    .project-content p {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
    }

    .project-finance {
        padding: 0.6rem;
        margin-bottom: 0.6rem;
    }

    .finance-item {
        padding: 0.2rem 0;
    }

    .finance-label {
        font-size: 0.7rem;
    }

    .finance-value {
        font-size: 0.8rem;
    }

    .project-progress {
        padding: 0.6rem;
        margin-bottom: 0.6rem;
    }

    .progress-bar {
        height: 6px;
    }

    .progress-text {
        font-size: 0.7rem;
    }

    .btn-donate {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }

    /* Testimonials Mobile */
    .page-header-content h1 {
        font-size: 2.5rem;
    }

    .page-header-content p {
        font-size: 1.1rem;
    }

    .testimonials-grid {
        display: none;
    }

    .testimonials-slider {
        display: block;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .author-image {
        width: 50px;
        height: 50px;
    }

    .author-name {
        font-size: 1rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 250px;
    }

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

    /* Footer content styles moved to footer.css */
}

/* Testimonials Section */
.testimonials-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="testimonial-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(76,175,80,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23testimonial-pattern)"/></svg>');
    opacity: 0.5;
}

.testimonials-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.testimonials-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonials-section .section-header h2 i {
    color: #4CAF50;
    font-size: 2rem;
}

.testimonials-section .section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-container {
    position: relative;
    z-index: 2;
}

.testimonials-slider {
    padding: 20px 0 60px;
    overflow: hidden;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4CAF50, #ffd700);
}

.testimonial-content {
    flex: 1;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.quote-icon {
    font-size: 2rem;
    color: #4CAF50;
    margin-bottom: 20px;
    opacity: 0.7;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #ffd700;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #4CAF50;
    flex-shrink: 0;
}

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

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

/* Testimonials Navigation */
.testimonials-navigation {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.testimonials-prev,
.testimonials-next {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: #4CAF50;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonials-prev:hover,
.testimonials-next:hover {
    background: #45a049;
    transform: scale(1.1);
}

.testimonials-prev:active,
.testimonials-next:active {
    transform: scale(0.95);
}

/* Testimonials Pagination */
.testimonials-pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.testimonials-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ddd;
    opacity: 1;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.testimonials-pagination .swiper-pagination-bullet-active {
    background: #4CAF50;
    transform: scale(1.2);
}

/* Responsive Design for Testimonials */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }

    .testimonials-section .section-header h2 {
        font-size: 2rem;
    }

    .testimonial-card {
        padding: 25px;
        min-height: 280px;
    }

    .testimonial-text {
        font-size: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .author-image {
        width: 50px;
        height: 50px;
    }

    .testimonials-navigation {
        margin-top: 20px;
    }

    .testimonials-prev,
    .testimonials-next {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .testimonials-section .section-header h2 {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 10px;
    }

    .testimonial-card {
        padding: 20px;
        min-height: 250px;
    }

    .quote-icon {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .testimonial-text::before {
        font-size: 2rem;
        top: -5px;
        left: -5px;
    }
}

/* Work Videos Section */
.work-videos-section {
    padding: 3rem 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.work-videos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="video-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="rgba(76,175,80,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23video-pattern)"/></svg>');
    opacity: 0.3;
}

.work-videos-section .section-header {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.work-videos-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.work-videos-section .section-header h2 i {
    color: #4CAF50;
    font-size: 2rem;
}

.work-videos-section .section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.videos-container {
    position: relative;
    z-index: 2;
}

.videos-slider {
    padding: 20px 0 60px;
    overflow: hidden;
}

.video-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.video-thumbnail-container {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-card:hover .video-thumbnail {
    transform: scale(1.05);
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 3rem;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.video-card:hover .video-overlay {
    opacity: 1;
}

.play-btn {
    width: 50px;
    height: 50px;
    background: rgba(76, 175, 80, 0.9);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.play-btn:disabled {
    background: rgba(108, 117, 125, 0.7);
    cursor: not-allowed;
    transform: none;
}


/* Videos Navigation */
.videos-navigation {
    display: flex;
    justify-content: right;
    gap: 15px;
    margin-bottom: 10px;
}

.videos-prev,
.videos-next {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 5px;
    background: #4CAF50;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.videos-prev:hover,
.videos-next:hover {
    background: #45a049;
    transform: scale(1.1);
}

.videos-prev:active,
.videos-next:active {
    transform: scale(0.95);
}

/* Videos Pagination */
.videos-pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.videos-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ddd;
    opacity: 1;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.videos-pagination .swiper-pagination-bullet-active {
    background: #4CAF50;
    transform: scale(1.2);
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    max-height: 90%;
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 1001;
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Design for Work Videos */
@media (max-width: 768px) {
    .work-videos-section {
        padding: 60px 0;
    }

    .work-videos-section .section-header h2 {
        font-size: 2rem;
    }

    .video-thumbnail-container {
        height: 150px;
    }

    .play-btn {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }


    .videos-navigation {
        margin-top: 20px;
    }

    .videos-prev,
    .videos-next {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .video-modal-content {
        width: 95%;
    }

    .video-modal-close {
        top: -40px;
        right: 10px;
    }
}

@media (max-width: 480px) {
    .work-videos-section .section-header h2 {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 10px;
    }

    .video-thumbnail-container {
        height: 120px;
    }

    .play-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

}