/* Custom styles for the video gallery */

body {
    background: linear-gradient(to right, #141e30, #243b55);
    color: white;
}

.School-h2 {
    color: aliceblue!important;
    font-size: 2.5rem;
    font-weight: 600;
}

.video-gallery {
    background-color: #f8f9fa;
    /* Light gray background */
    padding: 60px 0;
}

.video-gallery h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1a365d;
    /* Dark blue */
    margin-bottom: 40px;
}

.video-card {
    text-align: center;
}

.video-thumbnail {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-thumbnail:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.video-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: white;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.video-thumbnail:hover .play-icon {
    opacity: 1;
}

.video-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1a365d;
    /* Dark blue */
    margin-top: 15px;
}


/* new */


/* Custom styles for the video gallery */

.video-gallery {
    background-color: #f8f9fa;
    /* Light gray background */
    padding: 60px 0;
}

.video-gallery h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1a365d;
    /* Dark blue */
    margin-bottom: 40px;
}

.video-card {
    text-align: center;
}

.video-thumbnail {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-thumbnail:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.video-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: white;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.video-thumbnail:hover .play-icon {
    opacity: 1;
}

.video-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1a365d;
    /* Dark blue */
    margin-top: 15px;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    text-align: center;
}

.video-section {
    padding: 20px;
}

h2 {
    color: #333;
    margin-bottom: 20px;
}

.video-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

video {
    width: 350px;
    height: 200px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

video:hover {
    transform: scale(1.05);
}