
.doctors-hero {
    background-color: #f0f8ff;
    padding: 50px 20px;
    text-align: center;
}

.doctors-hero-content h1 {
    font-size: 3em;
    margin-bottom: 20px;
    color: #333;
}

.doctors-hero-content p {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 30px;
}

.search-and-filter {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.search-and-filter input,
.search-and-filter select {
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.doctor-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 50px 20px;
    gap: 30px;
}

.doctor-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
}

.doctor-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.doctor-card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #333;
}

.doctor-card p {
    font-size: 1em;
    color: #555;
    margin-bottom: 10px;
}

.doctor-card .btn {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.doctor-card .btn:hover {
    background-color: #0056b3;
}
