* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(to right, #f4f7fb, #e6eef7);
}

/* HERO */
.hero {
    background: linear-gradient(135deg, #002b5c, #00509e);
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 38px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
    opacity: 0.9;
}

/* COMMITTEE SECTION */
.committee-section {
    padding: 70px 8%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

/* CARD */
.committee-card {
    background: white;
    padding: 25px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    transition: 0.3s ease;
}

.committee-card h2 {
    margin-bottom: 20px;
    color: #002b5c;
    font-size: 22px;
}

.committee-card img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.committee-card img:hover {
    transform: scale(1.05);
}

.committee-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

.lightbox-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    position: relative;
    max-width: 95vw;
    max-height: 95vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-content img {
    width: auto;
    height: auto;
    max-width: 95vw;
    max-height: 95vh;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #ffcc00;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* FOOTER */
footer {
    background: #002b5c;
    color: white;
    text-align: center;
    padding: 25px;
    margin-top: 50px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 50px 15px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .committee-section {
        padding: 50px 5%;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
    
    .committee-card {
        padding: 18px;
        border-radius: 12px;
    }
    
    .committee-card h2 {
        font-size: 18px;
    }
    
    .committee-card img {
        height: 300px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }
    
    .hero {
        padding: 30px 15px;
    }
    
    .hero h1 {
        font-size: 20px;
    }
    
    .hero p {
        font-size: 13px;
    }
    
    .committee-section {
        padding: 20px 3%;
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .committee-card {
        padding: 14px;
        border-radius: 10px;
    }
    
    .committee-card h2 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .committee-card img {
        height: 220px;
        border-radius: 8px;
    }
}
