﻿.services-header-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #E2E8F0;
    color: #0F172A;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.services-header-icon i {
    font-size: 24px;
}

.services-title {
    font-size: 40px;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 15px;
}

.services-desc {
    font-size: 16px;
    color: #475569;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

.dept-sidebar {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 0px 20px 24px 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.dept-sidebar-title {
    font-size: 12px;
    font-weight: 700;
    color: #031b4e;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-left: 15px;
}

.dept-nav-pills .nav-link {
    color: #475569;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 20px;
    border-radius: 8px;
    margin-bottom: 2px;
    text-align: left;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    background: #031b4e0a;
    border: none;
}

    .dept-nav-pills .nav-link i {
        font-size: 18px;
        margin-right: 12px;
        width: 20px;
        text-align: center;
    }

    .dept-nav-pills .nav-link:hover {
        background-color: #F1F5F9;
        color: #0F172A;
    }

.nav-pills .nav-link.active {
    color: #ffffff;
    background-color: #079a0e;
}

.dept-content-pane {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dept-banner {
    width: 100%;
    height: 250px;
    border-radius: 16px;
    object-fit: cover;
    object-position: center;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.dept-title-area {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.dept-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background-color: #e2fce6;
    color: #07950e;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

    .dept-icon-box i {
        font-size: 24px;
    }

.dept-title {
    font-size: 18px;
    font-weight: 600;
    color: #07930d;
    margin-bottom: 4px;
}

.dept-subtitle {
    font-size: 15px;
    color: #64748B;
    margin-bottom: 0;
}

.dept-description {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 40px;
}

.service-card {
    display: block;
    background: #FFFFFF;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    height: 100%;
    border: 1px solid #F1F5F9;
}

.service-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #031b4e;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

    .service-card-title i {
        color: #079735 !important;
        margin-right: 12px;
        font-size: 20px;
    }

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .service-list li {
        font-size: 14px;
        color: #475569;
        margin-bottom: 12px;
        display: flex;
        align-items: flex-start;
    }

        .service-list li i {
            color: #079a0e;
            margin-top: 3px;
            margin-right: 10px;
            font-size: 16px;
            flex-shrink: 0;
        }

        .service-list li:last-child {
            margin-bottom: 0;
        }

.btn-appointment {
    background-color: #118C7E;
    color: #FFFFFF;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

    .btn-appointment i {
        margin-right: 8px;
    }

    .btn-appointment:hover {
        background-color: #0E776B;
        color: #FFFFFF;
        box-shadow: 0 4px 12px rgba(17, 140, 126, 0.2);
    }
