/*
   APEX Medical Laboratories - About Page Styles
   Created: September 4, 2025
*/

/* Modern Hero Section */
.modern-hero-section {
    min-height: 400px;
    display: flex;
    align-items: center;
    position: relative;
}

.modern-hero-section .overlay {
    background: linear-gradient(
        135deg,
        rgba(0, 86, 179, 0.9) 0%,
        rgba(0, 60, 136, 0.85) 100%
    );
}

/* About Introduction Section */
.feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 20px;
}

.hover-effect {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.hover-effect:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.divider {
    width: 80px;
    height: 3px;
    background-color: var(--primary);
}

/* Our Story Section */
.feature-icon.rounded-circle {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Values Section Cards */
.icon-box i {
    transition: transform 0.3s ease;
}

.card:hover .icon-box i {
    transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .modern-hero-section {
        min-height: 300px;
    }

    .divider {
        width: 60px;
    }
}
