/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #ff6b6b;
    --accent-color: #ffd166;
    --light-color: #f8f9fa;
    --dark-color: #333;
    --gray-color: #6c757d;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #f5f7fa;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background-color: var(--secondary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.btn:hover {
    background-color: #1e421f;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: #e05555;
}

.bg-light {
    background-color: var(--light-color);
}

/* Header & Navigation */
header {
    background-color: white;
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-text span {
    color: var(--secondary-color);
}

nav ul {
    display: flex;
    gap: 25px;
}

nav ul li a {
    font-weight: 600;
    color: var(--dark-color);
    transition: var(--transition);
    padding: 5px 0;
    position: relative;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary-color);
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
    transition: var(--transition);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    
    text-align: center;
    margin-top: 80px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--gray-color);
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.image-placeholder {
    background-color: var(--primary-color);
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-align: center;
    padding: 20px;
}

.image-placeholder i {
    margin-bottom: 20px;
}

/* Vision Mission */
.vision-mission {
    background-color: white;
}

.vm-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.vision-box, .mission-box {
    background-color: var(--light-color);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.vision-box:hover, .mission-box:hover {
    transform: translateY(-10px);
}

.vision-box h3, .mission-box h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.vision-box {
    border-top: 5px solid var(--primary-color);
}

.mission-box {
    border-top: 5px solid var(--secondary-color);
}

/* Programs Section */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.program-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.program-card:hover {
    transform: translateY(-10px);
}

.program-img {
    height: 200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.program-img.health { background-color: #2c5f2d; }
.program-img.women { background-color: #ff6b6b; }
.program-img.child { background-color: #ffd166; }
.program-img.tribal { background-color: #8B4513; }
.program-img.minority { background-color: #6c5ce7; }
.program-img.art { background-color: #e17055; }
.program-img.skill { background-color: #00b894; }
.program-img.environment { background-color: #1dd1a1; }
.program-img.disaster { background-color: #54a0ff; }
.program-img.volunteer { background-color: #2c5f2d; }
.program-img.donate { background-color: #ff6b6b; }
.program-img.partner { background-color: #ffd166; }

.program-content {
    padding: 25px;
}

.program-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Impact Section */
.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.stat-box {
    text-align: center;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.stat-box i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Governance */
.governance-content {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.governance-list {
    margin-top: 30px;
}

.governance-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.governance-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Page Header */
.page-header {
    background-color: var(--primary-color);
    color: white;
    padding: 150px 0 80px;
    text-align: center;
    margin-top: 80px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.breadcrumb a:hover {
    color: var(--accent-color);
}

/* Contact Section */
.contact-section {
    background-color: white;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-form h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.alert {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* Team Page */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.team-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
    padding-bottom: 25px;
}

.team-img {
    height: 200px;
    background-color: var(--light-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 4rem;
}

.team-card h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.team-card p {
    color: var(--gray-color);
    margin-bottom: 15px;
}

/* Awards Page */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.award-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: center;
    border-top: 5px solid var(--accent-color);
}

.award-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: var(--accent-color);
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .about-content, .vm-container, .contact-container {
        grid-template-columns: 1fr;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    nav ul {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        transition: var(--transition);
        gap: 30px;
        box-shadow: var(--shadow);
    }
    
    nav ul.active {
        left: 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.3rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .page-header {
        padding: 130px 0 60px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .vision-box, .mission-box, .governance-content {
        padding: 25px;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}
/* President Message Styles */
.message-content {
    padding: 20px;
}

.message-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light-color);
}

.message-header h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.date {
    color: var(--gray-color);
    font-style: italic;
    margin-top: 5px;
}

.message-body {
    line-height: 1.8;
    font-size: 1.1rem;
}

.message-body p {
    margin-bottom: 20px;
    text-align: justify;
}

.highlight-box {
    background-color: rgba(44, 95, 45, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 25px;
    margin: 30px 0;
    border-radius: 0 5px 5px 0;
    position: relative;
}

.highlight-box i.fa-quote-left {
    position: absolute;
    top: 15px;
    left: 15px;
    color: var(--primary-color);
    opacity: 0.3;
    font-size: 1.5rem;
}

.highlight-box p {
    margin: 0;
    padding-left: 25px;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--dark-color);
}

.signature {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--light-color);
}

.signature-details {
    margin-top: 20px;
}

.signature-details h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.signature-details p {
    margin-bottom: 5px;
    color: var(--gray-color);
}

/* Vision/Mission Lists */
.vision-list, .mission-list {
    list-style: none;
    padding: 0;
}

.vision-list li, .mission-list li {
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
}

.vision-list li i, .mission-list li i {
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-color);
}

.mission-list li i {
    color: var(--secondary-color);
}

/* Hero Image Slider */
.image-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 800px;
    overflow: hidden;
    margin-top: 80px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide.active {
    opacity: 1;
}

/* Background images for slides */
.slide:nth-child(1) {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/hero-slide1.png');
}

.slide:nth-child(2) {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/hero-slide2.png');
}

.slide:nth-child(3) {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/hero-slide3.png');
}

/* Fallback background colors if images don't load */
.slide:nth-child(1) {
    background-color: #2c5f2d;
}

.slide:nth-child(2) {
    background-color: #1a472a;
}

.slide:nth-child(3) {
    background-color: #0d3b1e;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 100%;
    padding: 0 20px;
}

.slide-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

.slide-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.slide-content .hero-buttons {
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Slider Navigation Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: white;
    transform: scale(1.2);
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* Slider Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 30px;
}

.slider-arrow.next {
    right: 30px;
}

/* Animation for slide content */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments for slider */
@media (max-width: 992px) {
    .slide-content h1 {
        font-size: 2.8rem;
    }
    
    .image-slider {
        height: 80vh;
        min-height: 500px;
    }
}

@media (max-width: 768px) {
    .slide-content h1 {
        font-size: 2.3rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
    
    .image-slider {
        height: 70vh;
        min-height: 450px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-arrow.prev {
        left: 15px;
    }
    
    .slider-arrow.next {
        right: 15px;
    }
}

@media (max-width: 576px) {
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .image-slider {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
}
/* President Profile Styles */
.president-profile {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
}

.president-image {
    height: 600px;
    overflow: hidden;
    position: relative;
}

.president-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease;
}

.president-image:hover img {
    transform: scale(1.05);
}

.president-details {
    padding: 30px;
    text-align: center;
}

.president-details h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.8rem;
}

.president-details .designation {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.president-details .organization {
    color: var(--gray-color);
    margin-bottom: 20px;
}

.president-contact {
    background-color: var(--light-color);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    text-align: left;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.contact-item i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.president-qualifications {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid var(--light-color);
}

.president-qualifications h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.president-qualifications ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.president-qualifications li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.president-qualifications li i {
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Signature Styles */
.signature-details {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
}

.signature-image {
    width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.signature-image img {
    max-width: 100%;
    max-height: 100%;
    filter: brightness(0) saturate(100%) invert(17%) sepia(55%) saturate(1000%) hue-rotate(100deg) brightness(90%) contrast(90%);
}

.signature-text h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.signature-text p {
    color: var(--gray-color);
    margin-bottom: 5px;
}

/* Timeline Styles */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: var(--primary-color);
}

.timeline-item {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(odd) .timeline-date {
    right: -120px;
    text-align: left;
}

.timeline-item:nth-child(even) .timeline-date {
    left: -120px;
    text-align: right;
}

.timeline-date {
    position: absolute;
    top: 0;
    width: 100px;
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.timeline-content {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    width: calc(50% - 30px);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -40px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -40px;
}

.timeline-content h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Responsive Timeline */
@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        margin-left: 60px;
    }
    
    .timeline-date {
        position: static;
        text-align: left !important;
        margin-bottom: 10px;
        font-size: 1.2rem;
        color: var(--primary-color);
        font-weight: bold;
    }
    
    .timeline-content {
        width: 100%;
    }
    
    .timeline-content::before {
        left: -40px !important;
    }
    
    .timeline-item:nth-child(odd) .timeline-date,
    .timeline-item:nth-child(even) .timeline-date {
        left: 0;
        right: auto;
    }
}

/* Responsive President Profile */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .president-profile {
        margin-bottom: 30px;
    }
    
    .signature-details {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .signature-image {
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .president-image {
        height: 250px;
    }
    
    .president-details {
        padding: 20px;
    }
    
    .president-qualifications ul {
        font-size: 0.9rem;
    }
}
/* Program Images Styling */
.program-img {
    height: 200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    overflow: hidden;
    position: relative;
}

.program-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.program-card:hover .program-img img {
    transform: scale(1.1);
}

/* Fallback icon styling when image doesn't load */
.program-img i {
    position: absolute;
    z-index: 1;
}

/* Add overlay to images for better text visibility */
.program-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.3));
    transition: background 0.3s ease;
}

.program-card:hover .program-img::after {
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.4));
}

/* Fallback background colors when no image loads */
.program-img.health:not(:has(img)) {
    background-color: #2c5f2d;
}

.program-img.women:not(:has(img)) {
    background-color: #ff6b6b;
}

.program-img.child:not(:has(img)) {
    background-color: #ffd166;
}

/* Fallback for other program types */
.program-img.tribal:not(:has(img)) { background-color: #8B4513; }
.program-img.minority:not(:has(img)) { background-color: #6c5ce7; }
.program-img.art:not(:has(img)) { background-color: #e17055; }
.program-img.skill:not(:has(img)) { background-color: #00b894; }
.program-img.environment:not(:has(img)) { background-color: #1dd1a1; }
.program-img.disaster:not(:has(img)) { background-color: #54a0ff; }
.program-img.volunteer:not(:has(img)) { background-color: #2c5f2d; }
.program-img.donate:not(:has(img)) { background-color: #ff6b6b; }
.program-img.partner:not(:has(img)) { background-color: #ffd166; }