
/* Video Section Styling */
.video-section {
    background: rgb(255, 255, 12);
    padding: 30px 10px;
    margin-top: 150px;
}

.video-container {
    position: relative;
    padding-bottom: 60.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    margin-top: 10%;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.view-more {
    text-align: right;
    margin-top: 20px;
    font-family: "Montserrat", serif;
}

.view-more .btn {
    padding: 10px 10px;
    font-size: 1.2rem;
    background-color: #feac06;
    border: none;
    color: #fff;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.view-more .btn:hover {
    background-color: #218838;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .video-container {
        margin-bottom: 15px;
    }

    .view-more {
        text-align: right;
    }
}
