.row {
    width: 100%;
    display: inline-flex;
    background: url(../images/video-wallpaper.jpg);
    background-position: cover;
    background-attachment: unset;
}

/********** Gallery.css *************/
.gallery-container {
    width: 100%;
    /* background-image: linear-gradient(to right, #b6fbff, #83a4d4); */
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-container .heading {
    width: fit-content;
    padding: 0px 20px;
    font-size: 22px;
    background: linear-gradient(rgb(255, 247, 247),rgb(152, 157, 180));
    border-radius: 15px;
    color: #050532;
    box-shadow: 1px 1px 2px rgb(0, 0, 0);
}

.gallery-wrap {
    position: relative;
    margin-top: 30px;
    padding: 20px 10px 12px 10px;
    width: 100%;
    height: 275px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    background-color: #fff;
    border-radius: 20px;
    justify-content: center;
}

.group-heading {
    position: absolute;
    top: 10px; /* Adjust the value to control the distance between the heading and the videos */
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.gallery {
    width: 1220px;
    display: flex;
    overflow: scroll;
}

.gallery div {
    width: 100%;
    display: flex;
    gap: 10px;
}

.gallery div video {
    width: 400px;
    transition:  transform 0.5s;
    height: 28vh;
}

.gallery::-webkit-scrollbar {
    display: none;
}

.backbtn, .nextbtn {
    width: 45px;
    margin: 5px; /* Adjust the margin to center the buttons vertically */
    margin-bottom: 85px;
    cursor: pointer;
}

.gallery div video:hover {
    cursor: pointer;
    transform: scale(1.1);
}

/*********** back-to-home ************/
.back-to-home {
    position: absolute;
    top: 20px;
    right: 20px;
    display: inline-block;
    text-align: right;
    text-decoration: none;
    color: rgb(13, 48, 113);
    background-color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
}

.back-to-home:hover {
    color: #fff;
    background-color: rgb(13, 32, 113);
}

.back-to-home:hover::before {
    content: "\2190";
    display: inline-block;
    margin-right: 5px;
}

.back-to-home:hover::before {
    transform: translateX(-2px);
}


/************ Scroll-to-top ************/
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: none;
    width: 40px;
    height: 40px;
    background-color: #1d197e;
    color: #ffffff;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.scroll-to-top:hover {
    opacity: 0.7;
}

