/* New About Page Styles */

/* Hero Section */
.hero-section-about {
    position: relative;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section-about .img--bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 3;
}

.hero-title {
    font-family: 'Poppins', sans-serif !important;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif !important;
    font-size: 1.3rem;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Section Styling */
.section {
    padding: 80px 0;
}

.section-label {
    font-family: 'Poppins', sans-serif !important;
    font-size: 0.9rem;
    font-weight: 600;
    color: #28a745;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    display: block;
}

.section-title {
    font-family: 'Poppins', sans-serif !important;
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-description {
    font-family: 'Poppins', sans-serif !important;
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* About Us Main Section */
.about-us-main {
    background-color: #f8f9fa;
}

.about-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.about-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.about-content {
    padding-left: 2rem;
}

.lead-text {
    font-family: 'Poppins', sans-serif !important;
    font-size: 1.2rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.about-content p {
    font-family: 'Poppins', sans-serif !important;
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

/* Programs and Achievements Section */
.programs-achievements {
    background-color: #fff;
}

.achievement-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

.achievement-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.achievement-card h4 {
    font-family: 'Poppins', sans-serif !important;
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.achievement-card p {
    font-family: 'Poppins', sans-serif !important;
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
}

/* Three-Prong Approach Section */
.three-prong-approach {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.approach-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

.approach-number {
    position: absolute;
    top: -15px;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif !important;
    font-size: 1.2rem;
    font-weight: 700;
}

.approach-card h4 {
    font-family: 'Poppins', sans-serif !important;
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 1.5rem 0 1rem;
}

.approach-card p {
    font-family: 'Poppins', sans-serif !important;
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-content {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .achievement-card,
    .approach-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .achievement-card,
    .approach-card {
        padding: 2rem 1.5rem;
    }
    
    .approach-number {
        left: 1.5rem;
    }
}

