/* about.css */
.about-hero {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.about-content {
    padding: 80px 0;
}

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

.about-image:hover img {
    transform: scale(1.02);
}

.vision-mission .card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.vision-mission .card-body {
    padding: 25px;
}

.company-facts .card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.fact-item {
    padding: 15px;
}

.fact-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.fact-label {
    color: #6c757d;
    font-size: 0.9rem;
}

.team-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.team-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

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

.team-img img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 5px solid #e9ecef;
}

.team-social a {
    color: #6c757d;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.team-social a:hover {
    color: #0066cc;
}

@media (max-width: 768px) {
    .about-content {
        padding: 50px 0;
    }
    
    .team-img img {
        width: 120px;
        height: 120px;
    }
}