#section1{
    position: relative;
    width: 100%;
    height: 120vh;
    overflow: hidden;
}

#section1 {
    padding: 80px 20px;
    background-color: #1a1d20;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#section1 h1 {
    margin-top: -100px;
    color: white;
    font-size: 30px;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

#section1 > div {
    width: 100%;
    max-width: 1700px;
    border-radius: 15px;
    margin-top: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

#section1 video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

#section1 video:hover {
    transform: scale(1.01);
}

/* Responsive Design */
@media (max-width: 768px) {
    #section1 {
        padding: 50px 15px;
        min-height: auto;
    }

    #section1 h1 {
        margin-bottom: 30px;
        font-size: 2rem;
        letter-spacing: 1px;
    }

    #section1 > div {
        border-radius: 10px;
    }

    #section1 video {
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    #section1 {
        padding: 40px 10px;
    }

    #section1 h1 {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
}


.video-section {
    background-color: #1a1d20;
    padding: 20px;
    text-align: center;
}

.main-title {
    color: white;
    margin-bottom: 20px;
}

.video-container1 {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.video-container1 video {
    width: 100%;
    border-radius: 10px;
}

.video-text1 {
    position: absolute;
    top: 20%;
    left: 33%;
    transform: translate(-50%, -50%);
    color: white;
}

.video-text1 h2 {
    top: -80%;
    position: absolute;
    font-size: 36px;
    font-weight: bold;
}

.video-text1 h5 {
    font-size: 18px;
    margin-top: 10px;
}
