.committee-header h2 {
    font-size: 2.2rem;
    color: #2c3e50;
}
.doctor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
.doctor-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #fff;
    padding: 18px;
    border-radius: 18px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

/* Passport Size Image */
.doctor-img img {
    width: 120px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    border: 3px solid #fa8100;
}

/* Info */
.doctor-info {
    margin-top: 15px;
}

.doctor-info h3 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 5px;
}

.doctor-info span {
    font-size: 0.85rem;
    color: #888;
}

/* Hover Glow */
.doctor-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 15px;
    background: linear-gradient(45deg, #3498db, #e74c3c);
    opacity: 0;
    z-index: -1;
    transition: 0.3s;
}

.doctor-card:hover::before {
    opacity: 0.08;
}

.committee-section {
    padding: 80px 20px;
    background: #f5f7fb;
}

.committee-container {
    max-width: 1200px;
    margin: auto;
}

.committee-header {
    text-align: center;
    margin-bottom: 50px;
}

.committee-header p {
    font-size: 1.1rem;
    color: #666;
}

.committee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}


.doctor-img img {
    width: 110px;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
    border: 3px solid #0d6efd;
}

.doctor-info {
    flex: 1;
}

.doctor-info h3 {
    font-size: 1.3rem;
    color: #1a2b49;
    margin-bottom: 8px;
}

.doctor-info p {
    font-size: 1rem;
    color: #0d6efd;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 600px) {

    .doctor-card {
        gap: 14px;
        padding: 14px;
    }

    .doctor-img img {
        width: 85px;
        height: 110px;
    }

    .doctor-info h3 {
        font-size: 1.05rem;
    }

    .doctor-info p {
        font-size: 0.9rem;
    }
}
