/* About Hero Section */
.about-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--light-color);
    padding-top: 80px;
    
    position: relative;
    overflow: hidden;
}

.about-hero-image {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.about-hero-image img {
    max-width: 80%;
    height: auto;
    transform: perspective(1000px) rotateY(5deg);
    transition: transform 0.3s ease;
}

.about-hero-image:hover img {
    transform: perspective(1000px) rotateY(0deg);
}

/* Mission Section */
.mission-section {
    background-color: var(--gray-color);
}

.mission-content {
    padding: 2rem;
    text-align: right;
}

.mission-content .lead {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.mission-content p {
    line-height: 2;
    min-height: 160px;
}

.mission-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--dark-color);
    font-weight: 500;
}

.mission-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.mission-image img:hover {
    transform: translateY(-5px);
}

/* Team Section */
.team-section {
    background-color: var(--light-color);
}

.team-card {
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-content {
    padding: 1.5rem;
    text-align: center;
}

.team-content h3 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-content .position {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-content .description {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.team-content .social-links {
    margin-top: 1rem;
}

.team-content .social-links a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background-color: var(--gray-color);
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    margin: 0 5px;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.team-content .social-links a:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-3px);
}

/* Why Choose Us Section */
.why-choose-section {
    background-color: var(--gray-color);
}

.feature-card {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.8;
}

/* Section Title */
.section-title {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(to left, var(--primary-color), var(--secondary-color));
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero {
        text-align: center;
    }
    
    .mission-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .stat-item {
        margin-bottom: 1rem;
    }
    
    .team-card {
        margin-bottom: 2rem;
    }

    .mission-content {
        text-align: center;
    }
}

/* Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
} 