        body {
            font-family: 'Arial', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f9f9f9;
            color: #333;
        }
        header {
            background: #333;
            color: #fff;
            padding: 20px 0;
            text-align: center;
        }
        header h1 {
            font-size: 36px;
        }
        nav {
            text-align: center;
            margin: 20px 0;
        }
        nav a {
            color: #333;
            font-size: 18px;
            text-decoration: none;
            margin: 0 15px;
        }
        nav a:hover {
            color: #0073e6;
        }
        section {
            padding: 40px 15%;
        }
        .skills, .events {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .skill, .event {
            background: #fff;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 20px;
            width: 30%;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .skill h3, .event h3 {
            font-size: 24px;
            margin-bottom: 10px;
        }
        footer {
            background: #333;
            color: #fff;
            text-align: center;
            padding: 15px;
            position: fixed;
            width: 100%;
            bottom: 0;
        }
#gallery {
    padding: 40px 15%;
    text-align: center;
}

#gallery h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    justify-items: center;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer; /* Pointer cursor to indicate clickability */
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05); /* Subtle zoom effect on hover */
}

#video-gallery {
    padding: 40px 15%;
    text-align: center;
}

#video-gallery h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

#video-lightbox {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Black overlay */
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#video-lightbox iframe {
    width: 90%;
    height: 70%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    animation: fadeIn 0.3s ease;
}

#lightbox {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Black transparent overlay */
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
