/* ========== DOCTORS SECTION ========== */
.doctor-card {
    background: var(--white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.doctor-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.doctor-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.doctor-info {
    padding: 25px;
    text-align: center;
}

.doctor-info h4 {
    margin-bottom: 5px;
    color: var(--dark-blue);
}

.doctor-specialty {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.doctor-description {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
}

.doctor-social {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.doctor-social a {
    width: 40px;
    height: 40px;
    background: var(--light-blue);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 18px;
}

.doctor-social a:hover {
    background: var(--primary-color);
    color: var(--white);
}
