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

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

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

/* Services Overview Cards */
.service-card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 86, 179, 0.1);
    border-radius: 50%;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 32px;
    color: var(--primary);
}

/* Test Categories */
.test-category-nav {
    display: flex;
    overflow-x: auto;
    margin-bottom: 30px;
    padding-bottom: 5px;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

.test-category-nav::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.test-category-nav .nav-link {
    white-space: nowrap;
    color: var(--dark);
    border-radius: 30px;
    padding: 10px 20px;
    margin: 0 5px;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.test-category-nav .nav-link.active,
.test-category-nav .nav-link:hover {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Test Content Panel */
.test-content-panel {
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background-color: white;
}

.test-list-container {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 10px;
}

.test-category-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.test-category-image img {
    transition: all 0.5s ease;
}

.test-category-image:hover img {
    transform: scale(1.05);
}

.test-list {
    padding-left: 0;
    list-style-type: none;
}

.test-list li {
    padding: 10px 15px;
    margin-bottom: 8px;
    background-color: rgba(0, 86, 179, 0.05);
    border-radius: 5px;
    position: relative;
    padding-left: 35px;
    transition: all 0.3s ease;
}

.test-list li:before {
    content: "\f00c";
    font-family: "FontAwesome";
    position: absolute;
    left: 12px;
    color: var(--primary);
}

.test-list li:hover {
    background-color: rgba(0, 86, 179, 0.1);
}

.category-title {
    background: var(--primary);
    color: white;
    display: inline-block;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
}
.category-title h5{
    color: white !important;
}

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

    .test-category-nav {
        justify-content: flex-start;
    }

    .service-card {
        margin-bottom: 20px;
    }
}
