/* Additional Styles for About, Programs, and Contact Pages */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #00a86b, #008a5a);
    color: #fff;
    padding: 120px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Mission & Vision Cards */
.mission-vision {
    padding: 80px 0;
    background: #f8f9fa;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mv-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.mv-card:hover {
    transform: translateY(-10px);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00a86b, #008a5a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.mv-icon i {
    font-size: 2rem;
    color: #fff;
}

.mv-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #333;
}

.mv-card p {
    color: #666;
    line-height: 1.8;
}

/* Founder Story */
.founder-story {
    padding: 80px 0;
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.founder-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.founder-content h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.founder-content h3 {
    font-size: 1.5rem;
    color: #00a86b;
    margin-bottom: 1.5rem;
}

.founder-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.founder-achievements {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.achievement {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.achievement i {
    color: #00a86b;
    font-size: 1.2rem;
    width: 20px;
}

/* Impact Statistics */
.our-impact {
    padding: 80px 0;
    background: linear-gradient(135deg, #00a86b, #008a5a);
    color: #fff;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
}

.impact-stat {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

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

/* Team Section */
.our-team {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    text-align: center;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-member img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.5rem;
    color: #333;
}

.team-member p {
    color: #00a86b;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding-bottom: 1.5rem;
}

.team-social a {
    width: 35px;
    height: 35px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
}

.team-social a:hover {
    background: #00a86b;
    color: #fff;
}

/* Partnerships */
.partnerships {
    padding: 80px 0;
    background: #f8f9fa;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: center;
}

.partner-logo {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    border: 2px solid #f0f0f0;
}

.partner-logo:hover {
    transform: translateY(-5px);
    border-color: #00a86b;
}

.partner-logo img {
    max-width: 100%;
    height: 80px;
    object-fit: contain;
    transition: transform 0.3s;
}

.partner-logo:hover img {
    transform: scale(1.05);
}

/* Program Detail Sections */
.program-detail {
    padding: 80px 0;
}

.program-detail.alt {
    background: #f8f9fa;
}

.program-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.program-badge {
    display: inline-block;
    background: #00a86b;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.program-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

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

.program-features h3,
.program-schedule h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.program-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.program-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #666;
}

.program-features i {
    color: #00a86b;
    font-size: 0.9rem;
}

.program-schedule {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.program-schedule p {
    margin-bottom: 0.5rem;
    color: #666;
}

.program-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Special Programs */
.special-programs {
    padding: 80px 0;
    background: #f8f9fa;
}

.special-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.special-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

.special-card:hover {
    transform: translateY(-10px);
}

.special-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00a86b, #008a5a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.special-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.special-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #333;
}

.special-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.special-details {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #00a86b;
    font-weight: bold;
}

.special-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Registration Process */
.registration-process {
    padding: 80px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00a86b, #008a5a);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form-container h2,
.contact-info-container h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00a86b;
}

.form-group.focused label {
    color: #00a86b;
}

/* Contact Methods */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00a86b, #008a5a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: #fff;
    font-size: 1.2rem;
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-details p {
    color: #666;
    line-height: 1.6;
}

/* Social Links Large */
.social-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #333;
}

.social-links-large {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
}

.social-link:hover {
    background: #00a86b;
    color: #fff;
}

.social-link i {
    font-size: 1.2rem;
    width: 20px;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.map-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.map-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.map-detail i {
    font-size: 1.5rem;
    color: #00a86b;
    width: 30px;
}

.map-detail h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.map-detail p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #00a86b;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #333;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Additional Pages */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .founder-grid,
    .program-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mv-grid,
    .team-grid,
    .special-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .founder-achievements {
        align-items: center;
    }
    
    .special-details {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
    
    .map-info {
        grid-template-columns: 1fr;
    }
}

/* Board of Directors Styles */
.board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.board-member {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.board-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.board-member img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 4px solid #00a86b;
    transition: transform 0.3s ease;
}

.board-member:hover img {
    transform: scale(1.05);
}

.board-member h3 {
    color: #00a86b;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.board-member .position {
    color: #666;
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.board-member .citation {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    text-align: left;
}

/* Chairman Styles */
.chairman-profile {
    margin-top: 4rem;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 20px;
    padding: 4rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    position: relative;
    overflow: hidden;
}

.chairman-profile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #00a86b, #008a5a, #00a86b);
}

.chairman-image {
    float: left;
    width: 350px;
    height: 450px;
    margin: 0 3rem 2rem 0;
    position: relative;
}

.chairman-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: linear-gradient(45deg, rgba(0,168,107,0.1), rgba(0,138,90,0.1));
    border-radius: 25px;
    z-index: 0;
}

.chairman-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    border: 4px solid white;
}

.chairman-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}

.chairman-bio h2 {
    color: #00a86b;
    margin-bottom: 0.5rem;
    font-size: 2.8rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.chairman-bio .title {
    color: #666;
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 2rem;
    font-style: italic;
}

.chairman-bio p {
    margin-bottom: 2rem;
    line-height: 1.8;
    color: #444;
    font-size: 1.1rem;
    text-align: justify;
}

.chairman-bio p:first-of-type {
    position: relative;
    padding-left: 2rem;
}

.chairman-bio p:first-of-type::before {
    content: '"';
    font-size: 4rem;
    color: #00a86b;
    position: absolute;
    left: 0;
    top: -1rem;
    opacity: 0.3;
    font-family: serif;
}

/* Events Styles */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.event-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.event-date {
    background: linear-gradient(135deg, #00a86b, #008a5a);
    color: white;
    padding: 1.5rem;
    text-align: center;
    position: relative;
}

.event-date::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #008a5a;
}

.event-date .day {
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
    line-height: 1;
}

.event-date .month {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.event-content {
    padding: 2rem;
}

.event-content h3 {
    color: #333;
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.event-content .time {
    color: #00a86b;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-content .time::before {
    content: '🕒';
    font-size: 1.1rem;
}

.event-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.register-btn {
    background: linear-gradient(135deg, #00a86b, #008a5a);
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.register-btn:hover {
    background: linear-gradient(135deg, #008a5a, #006b47);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,168,107,0.3);
}

/* Testimonials Styles */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

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

.testimonial-card::before {
    content: '"';
    font-size: 5rem;
    color: #00a86b;
    position: absolute;
    top: -15px;
    left: 25px;
    opacity: 0.2;
    font-family: serif;
}

.testimonial-content {
    margin-bottom: 2rem;
    font-style: italic;
    line-height: 1.8;
    color: #555;
    font-size: 1.05rem;
    padding-top: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.testimonial-author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #00a86b;
}

.author-info h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.author-info .title {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
}

/* Donation Styles */
.donation-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
}

.donation-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.donation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #00a86b, #008a5a);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.donation-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    border-color: #00a86b;
}

.donation-card:hover::before {
    transform: scaleX(1);
}

.donation-card i {
    font-size: 4rem;
    color: #00a86b;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
    background: rgba(0,168,107,0.1);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.donation-card:hover i {
    transform: scale(1.1) rotate(10deg);
    background: #00a86b;
    color: white;
}

.donation-card h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 700;
}

.donation-card p {
    color: #666;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.donate-btn {
    background: linear-gradient(135deg, #00a86b, #008a5a);
    color: white;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    font-weight: 700;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.donate-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.donate-btn:hover::before {
    left: 100%;
}

.donate-btn:hover {
    background: linear-gradient(135deg, #008a5a, #006b47);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,168,107,0.4);
}

.bank-details {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    padding: 3rem;
    margin: 3rem 0;
    border: 1px solid #e0e0e0;
}

.bank-details h3 {
    color: #00a86b;
    margin-bottom: 2rem;
    font-size: 1.6rem;
    font-weight: 600;
    text-align: center;
}

.bank-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.bank-detail {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 5px solid #00a86b;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.bank-detail:hover {
    transform: translateX(5px);
}

.bank-detail strong {
    color: #333;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bank-detail span {
    color: #555;
    font-size: 1.1rem;
    font-weight: 500;
}

.transparency {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    margin-top: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.transparency h3 {
    color: #00a86b;
    margin-bottom: 2rem;
    font-size: 1.6rem;
    font-weight: 600;
    text-align: center;
}

.transparency ul {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.transparency li {
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    position: relative;
    padding-left: 3rem;
    transition: all 0.3s ease;
    border-left: 4px solid #00a86b;
}

.transparency li:hover {
    background: #e9f7ef;
    transform: translateX(5px);
}

.transparency li::before {
    content: '✓';
    color: #00a86b;
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

/* Enhanced Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.board-member,
.event-card,
.testimonial-card,
.donation-card {
    animation: fadeInUp 0.6s ease forwards;
}

.board-member:nth-child(2) { animation-delay: 0.1s; }
.board-member:nth-child(3) { animation-delay: 0.2s; }
.board-member:nth-child(4) { animation-delay: 0.3s; }
.board-member:nth-child(5) { animation-delay: 0.4s; }
.board-member:nth-child(6) { animation-delay: 0.5s; }

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .board-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .chairman-profile {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .donation-options {
        grid-template-columns: 1fr;
    }
    
    .bank-info {
        grid-template-columns: 1fr;
    }
    
    .board-member img {
        width: 150px;
        height: 150px;
    }
    
    .testimonial-card::before {
        font-size: 4rem;
        top: -10px;
        left: 20px;
    }
}
.chairman-achievements {
    background: linear-gradient(135deg, rgba(0,168,107,0.08), rgba(0,138,90,0.05));
    border-radius: 20px;
    padding: 3rem;
    margin-top: 4rem;
    border: 2px solid rgba(0,168,107,0.2);
    position: relative;
    overflow: hidden;
}

.chairman-achievements::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00a86b, #008a5a, #00a86b);
}

.chairman-achievements h3 {
    color: #00a86b;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    font-weight: 700;
    text-align: center;
    position: relative;
}

.chairman-achievements h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #00a86b;
    border-radius: 2px;
}

.achievements-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #00a86b;
    position: relative;
}

.achievement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left-width: 6px;
}

.achievement-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-top: 20px solid rgba(0,168,107,0.1);
    transition: all 0.3s ease;
}

.achievement-item:hover::before {
    border-top-color: rgba(0,168,107,0.2);
}

.achievement-item i {
    color: #00a86b;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(0,168,107,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.achievement-item:hover i {
    background: #00a86b;
    color: white;
    transform: scale(1.1);
}

.achievement-item span {
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
}
/* Professional Donation Page Layout */
.donation-impact {
    padding: 80px 0;
    background: #f8f9fa;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.impact-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.impact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00a86b, #008a5a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.impact-item h3 {
    font-size: 2rem;
    color: #00a86b;
    margin-bottom: 1rem;
    font-weight: 700;
}

.impact-item p {
    color: #666;
    line-height: 1.6;
}

.donation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.amount-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.amount-btn {
    padding: 1rem;
    border: 2px solid #00a86b;
    background: transparent;
    color: #00a86b;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.amount-btn:hover,
.amount-btn.active {
    background: #00a86b;
    color: white;
}

.custom-amount {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.monthly-options {
    margin: 2rem 0;
}

.monthly-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.monthly-option:hover {
    border-color: #00a86b;
    background: rgba(0,168,107,0.05);
}

.monthly-option input[type="radio"] {
    margin: 0;
}

.other-ways {
    padding: 80px 0;
}

.ways-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.way-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.way-card i {
    font-size: 3rem;
    color: #00a86b;
    margin-bottom: 1.5rem;
}

.way-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #333;
}

.way-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.way-link {
    color: #00a86b;
    text-decoration: none;
    font-weight: 600;
}

.social-share {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
}

.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.linkedin { background: #0077b5; }

.bank-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.bank-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.bank-card h3 {
    color: #00a86b;
    margin-bottom: 2rem;
    font-size: 1.4rem;
}

.bank-detail {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.bank-detail .label {
    font-weight: 600;
    color: #333;
}

.bank-detail .value {
    color: #666;
    text-align: right;
}

.transparency {
    padding: 80px 0;
    background: #f8f9fa;
}

.transparency-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.transparency-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.transparency-stat {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.transparency-stat h3 {
    font-size: 3rem;
    color: #00a86b;
    margin-bottom: 0.5rem;
}

.transparency-stat p {
    color: #666;
    font-weight: 600;
}
/* Avatar Styles for Testimonials */
.avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00a86b, #008a5a);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}