/* Về chúng tôi Section Specific Styles */

/* Stats Cards Animation */
.stat-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Core Values Icons */
.core-values .rounded-circle {
    transition: all 0.3s ease;
}

.core-values .rounded-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(var(--bs-primary-rgb), 0.3);
}

/* Process Flow Animation */
.process-flow .rounded-circle {
    position: relative;
    transition: all 0.3s ease;
}

.process-flow .rounded-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(var(--bs-primary-rgb), 0.4);
}

/* Company Profile Section */
.company-profile {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Legal Information Card */
.legal-card {
    border-left: 5px solid var(--bs-primary);
}

/* Vision Mission Cards */
.vision-mission-card {
    transition: all 0.3s ease;
    border-top: 4px solid var(--bs-primary);
}

.vision-mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Services Overview */
.services-overview .card {
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.services-overview .card:hover {
    border-bottom-color: var(--bs-primary);
    transform: translateY(-5px);
}

/* Process Timeline */
@media (max-width: 768px) {
    .process-flow .fa-arrow-right {
        display: none;
    }
    
    .process-flow .text-center {
        margin-bottom: 1rem;
    }
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .stats-row {
        text-align: center;
    }
    
    .core-values .col-6 {
        margin-bottom: 2rem;
    }
}