/* Committee Section */
.committee-container {
    padding: 80px 20px;
    background-color: rgba(6, 106, 14, 0.2);
    display: flex;
    justify-content: center;
}

/* Grid */
.committee-grid {
    max-width: 1000px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* later 4 */
    gap: 60px;
    /* later 30 */
}

/* Card */
.committee-card {
    background: #fff;
    border-radius: 14px;
    text-align: center;
    padding: 25px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

/* Image */
.committee-card img {
    width: 250px;
    height: 300px;
    object-fit: cover;
    border-radius: 10%;
    margin-bottom: 15px;
}

/* Name */
.committee-card h3 {
    font-size: 18px;
    margin-bottom: 6px;
    color: #111;
}

/* Designation */
.committee-card p {
    font-size: 15px;
    color: #666;
}

/* Hover */
.committee-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media(max-width:1000px) {
    .committee-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:500px) {
    .committee-grid {
        grid-template-columns: 1fr;
    }
}