/* About Page Custom Styles */

/* Active navigation link */
.right ul li a.active {
    color: #4a90e2;
    font-weight: bold;
}

/* 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-1523050854058-8df90110c9f1?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1170&q=80') no-repeat center center; */
    background-size: cover;
    padding: 100px 0;
    /* color: white; */
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-hero h1 {
    font-weight: 700;
    margin-bottom: 20px;
}

.about-hero .lead {
    font-size: 1.5rem;
}

/* About Section */
.about-section {
    padding: 60px 0;
}

.about-img {
    max-height: 400px;
    object-fit: cover;
    border: 8px solid white;
}

.section-title {
    position: relative;
    margin-bottom: 30px;
    color: #333;
    font-weight: 700;
}

.section-title:after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background-color: #4a90e2;
    margin-top: 15px;
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* Mission & Vision Cards */
.mission-card, .vision-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-title {
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.card-text {
    color: #555;
    line-height: 1.7;
}

/* Team Section */
.team-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.team-avatar {
    margin: 0 auto;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #f8f9fa;
}

/* Achievements Section */
.achievement-item {
    padding: 30px 20px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.achievement-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4a90e2;
    margin: 15px 0;
}

.achievement-text {
    font-size: 1.1rem;
    color: #555;
}

/* Testimonials */
.testimonial-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    background-color: white;
}

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

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
}

.testimonial-author h5 {
    font-weight: 700;
    color: #333;
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, #4a90e2, #357ABD);
}

.contact-cta .btn {
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-cta .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-hero {
        padding: 60px 0;
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-hero .lead {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .achievement-number {
        font-size: 2rem;
    }
}