 body{
  margin: 0;
  padding: 0;

 }

 /* Style the video: 100% width and height to cover the entire window */
 #myVideo {
    position: relative;
    right: 0;
    bottom: 0;
    min-width: 100vw;
    min-height: 100vh;
  }
  
  /* Add some content at the bottom of the video/page */
  .content {
    position: fixed;
    bottom: 0;
    /* background: rgba(0, 0, 0, 0.5); */
    color: #f1f1f1;
    width: 100%;
    height: 70vh;
    padding: 20px;
    margin-bottom: 100px;
  }

  
  /* Style the button used to pause/play the video */
  #myBtn {
    width: 200px;
    font-size: 18px;
    padding: 10px;
    border: none;
    background: #000;
    color: #fff;
    cursor: pointer;
  }
  
  #myBtn:hover {
    background: #ddd;
    color: black;
  } 

  /*menu*/
  /* Ensure the mobile menu is hidden by default */
#burger-button {
  cursor: pointer;
}

.mobile-menu {
  display: none;
}

/* Show mobile menu when button is clicked */
.mobile-menu.active {
  display: block;
}

/*vision*/
.image-container {
  position: absolute;
  z-index: -1;
}

.image-container img {
  width: 100vw;
  height: 100vh;
  background-size: cover;
margin: auto;
}

/*overly*/
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1); /* Adjust color and opacity */
}


/*carousel*/
.carousel-item {
  transition: opacity 1s ease-in-out;
}
#prev, #next {
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#prev:hover, #next:hover {
  background-color: #2c3e50;
}

/*text animation*/

@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}
/* Apply the animation to elements */
.fade-in {
  opacity: 0; /* Initial state */
  animation: fadeIn 4s forwards; /* Animation properties */
}

/* Optional: Add a delay or adjust duration for different elements */
.fade-in-delay {
  animation-delay: 7s; /* Delay before the animation starts */
}

@media screen and (max-width:500px) {
  #myVideo{
    
    min-height: 50vh !important;
    margin-bottom: 10rem;
  }
  .video-text {
    position: absolute !important;
    top:0 !important;
    font-size: 1.2rem !important;
    margin-bottom: 18rem;
    
  }
  #aboutus{
    
    display:flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
  }

  #about-image{
    position:unset;
    width: 80%;
   margin-bottom: 20px;
    
  }
  #about-text{
    width:80%;
    position:unset;
  }

  #menu-body{
    height: 20px;
    
  }
  
  .image-container img {
    display:none;
    height: auto;
    position: relative;
    
  }

  .LS {
    position: absolute;
    left: 1rem;
    height:auto !important;
    width:60%;
  }

  .RS {
    position: absolute;
    right: 1rem;
    bottom: 2rem;
  }

  .MS {
    position: absolute;
    top:2rem;
    right:1rem;
  }
}

@media screen and (max-width:1200px) {
  #menu-body{
    height: 20px;
  }
}