/* About Page Specific Styles */

/* Hero Section */
.about-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
    position: relative;
}

.about-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(44, 90, 160, 0.8), rgba(231, 76, 60, 0.6));
}

.about-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.about-hero .highlight {
    color: #ffc107;
    font-weight: 600;
}

.about-hero p {
    font-size: 1.3rem;
    margin-bottom: 0;
    opacity: 0.95;
}

/* Navigation active state */
.nav-links a.active {
    background: #2c5aa0;
    color: white !important;
}

/* Who We Are Section */
.who-we-are {
    padding: 100px 0;
    background: white;
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    align-items: start;
}

.text-content h2 {
    font-size: 2.8rem;
    color: #2c5aa0;
    margin-bottom: 30px;
    font-weight: 600;
}

.lead {
    font-size: 1.3rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 50px;
    font-weight: 400;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.mission, .vision {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #2c5aa0;
}

.mission h3, .vision h3 {
    color: #2c5aa0;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.mission p, .vision p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.values h3 {
    color: #2c5aa0;
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.value-item {
    text-align: center;
    padding: 25px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.value-item h4 {
    color: #2c5aa0;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.value-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* What We Do Section */
.what-we-do {
    padding: 100px 0;
    background: #f8f9fa;
}

.what-we-do h2 {
    font-size: 2.8rem;
    color: #2c5aa0;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-top-color: #2c5aa0;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    color: #2c5aa0;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* What We Support Detailed Section */
.what-we-support-detailed {
    padding: 100px 0;
    background: white;
}

.what-we-support-detailed h2 {
    font-size: 2.8rem;
    color: #2c5aa0;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
}

.support-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.support-category h3 {
    color: #e74c3c;
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 600;
    border-bottom: 3px solid #e74c3c;
    padding-bottom: 10px;
}

.support-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.support-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.support-bullet {
    color: #2c5aa0;
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 5px;
}

.support-item h4 {
    color: #2c5aa0;
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.support-item p {
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-size: 14px;
}

/* Founder Section */
.founder-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.founder-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: center;
}

.founder-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.founder-info h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 300;
}

.founder-info h3 {
    font-size: 2rem;
    margin-bottom: 5px;
    font-weight: 600;
    color: #ffc107;
}

.founder-title {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    font-style: italic;
}

.founder-info blockquote {
    font-size: 1.3rem;
    line-height: 1.6;
    margin: 30px 0;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-left: 4px solid #ffc107;
    border-radius: 5px;
    font-style: italic;
}

.founder-bio p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.95;
}

/* Impact Statistics */
.impact-stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #e0f2fe, #b3e5fc);
    text-align: center;
}

.impact-stats h2 {
    font-size: 2.8rem;
    color: #2c5aa0;
    margin-bottom: 60px;
    font-weight: 600;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    background: white;
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c5aa0;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Call to Action Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c5aa0, #e74c3c);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #ffc107;
    color: #333;
}

.btn-primary:hover {
    background: #ffb300;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
}

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

.btn-secondary:hover {
    background: white;
    color: #2c5aa0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .section-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .founder-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .support-categories {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-hero p {
        font-size: 1.1rem;
    }
    
    .text-content h2 {
        font-size: 2.2rem;
    }
    
    .lead {
        font-size: 1.1rem;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .founder-img {
        height: 300px;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .menu-toggle {
        display: block;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}
