html, body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  background-color: #000;
  font-family: 'Roboto', sans-serif;
}

.row-main {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  width: 100%;
  height: 100vh;
  position: relative;
}

/*.video-bg {*/
/*  width: 40%;*/
/*  height: 35%;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  overflow: hidden;*/
/*  border-radius: 30px;*/
/*  z-index: 1;*/
/*}*/

.video-bg video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.eq-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  margin-top: -10%;
  width: 100%;
  z-index: 2;
  justify-content: center;
}

video {
  width: 100%;
  height: 80vh;
  object-fit: cover;
}

.buttons {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-top: 20px;
}

.btn {
  opacity: 1; /* Always visible now */
  transform: none; /* No transform */
}

.btn a {
  text-decoration: none;
  font-weight: 600;
  font-size: 30px;
  background: #fff;
  color: #031742;
  padding: 13px 80px;
  border-radius: 30px;
  display: inline-block;
}

img {
  width: 70%;
  filter: drop-shadow(2px 4px 4px black);
}

@media (max-width: 1366px) {
    .btn a {
    font-size: 24px;
}
}
@media (max-width: 1024px) {
    html, body{
    overflow: visible;
}
/*.buttons {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    gap: 20px;*/
/*    margin-top: 180px;*/
/*    flex-wrap: nowrap;*/
/*    align-items: center;*/
/*}*/
.btn a {
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    background: #fff;
    color: #031742;
    padding: 8px 30px;
    border-radius: 30px;
    display: inline-flex;
}
}

@media (max-width: 800px) {
  
}

@media (max-width: 480px) {
    html, body {
    height: 100%;
    margin: 0;
    padding: 0;
  }
  .row-main {
    display: flex;
    flex-direction: column; /* video upar aur buttons niche */
    justify-content: center; /* vertically center */
    align-items: center;     /* horizontally center */
    height: 100vh; /* full screen height */
    text-align: center;
  }
  .video-bg {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .video-bg video {
    width: auto !important;
    height: auto !important;
    max-width: 100%;
    display: block;
    margin: 0 auto;
  }
  /*.buttons {*/
  /*  flex-direction: column;*/
  /*  gap: 20px;*/
  /*  align-items: center;*/
  /*}*/
  .buttons {
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: -100px;
    z-index:999 !important;
}
}
