﻿/* Typography & Layout */
.section-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 2rem;
}

.filter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 2.5rem;
}

.doctor-card {
    background-color: #fff;
    border-radius: 12px;
    transition: box-shadow 0.2s ease;
    align-items: center;
    min-height: 14rem;
    max-height: 15rem;
    overflow: hidden;
    word-break: break-word;


}

    .doctor-card:hover {
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    }


    .filter-form input,
    .filter-form select {
        min-width: 180px;
        max-width: 250px;
        border-radius: 8px;
        border: 1px solid #cbd5e1;
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
        background-color: #f8fafc;
        color: #334155;
    }

    .filter-form button {
        background-color: #20B2AA;
        color: white;
        padding: 0.75rem 1.5rem;
        border-radius: 8px;
        font-weight: 600;
        transition: background 0.2s ease;
    }

        .filter-form button:hover {
            background-color: #199e98;
        }

/* Doctor Card */
.doctor-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.25s ease;
    display: flex;
    flex-direction: column;
}

    .doctor-card:hover {
        transform: translateY(-4px);
    }

.doctor-img {
    height: 220px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.doctor-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
}

.doctor-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.doctor-specialty {
    color: #20B2AA;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.doctor-meta {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.doctor-contact {
    font-size: 0.85rem;
    color: #475569;
    margin-top: auto;
}

/* services page*/

.service-card {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    background-color: #ffffff;
    transition: box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

    .service-card:hover {
        box-shadow: 0 8px 24px rgba(0, 128, 96, 0.15);
    }

    .service-card img {
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
        height: 200px;
        object-fit: cover;
    }

.service-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #006d5b;
    margin-bottom: 0.5rem;
}

.service-description {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
    max-height: 100px;
    overflow: hidden;
}


