/* Menu container styles */
.menu-container {
  position: fixed;
  top: 15%;
  right: 5%;
  transform: translateY(-50%);
  z-index: 1000;
}

@media (max-width: 768px) {
  .menu-container {
    position: fixed;
    top: 20%;
    right: 5%;
    transform: translateY(-50%);
    z-index: 1000;
  }
}

/* Media query for screens with a maximum width of 480px (mobile) */
@media (max-width: 480px) {
  .menu-container {
    position: fixed;
    top: 100px;
    right: 50px;
    transform: translateY(-50%);
    z-index: 1000;
  }
}


/* Media query for screens with a maximum width of 480px (mobile) */
@media (max-width: 480px) {
  .menu-container img {
    width: 40px;
    height: 40px;
  }
}

/* Centered menu icon styles */
.centered-menu-icon {
  cursor: pointer;
  font-size: 24px;
  color: #333;

}

/* Centered menu image styles */
.centered-menu-img {
  position: fixed;
  width: 50px;
  right: 5%;
  top: 20%;
  z-index: 999;
}

.centered-menu {
  position: fixed;
  /* Use 'fixed' instead of 'cover' to cover the entire viewport */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  /* Initially hide the centered menu */
  z-index: 1000;
  flex-direction: column;
  /* Stack menu items vertically */
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  transition: top 5s ease-in-out;
  /* Smooth transition for sliding effect */
  background: linear-gradient(215deg, orange, black);
  /*Adjust the colors and angle as needed*/
  z-index: 999;
}


.centered-menu.show {
  display: flex;
  /* Display the centered menu when needed */
  animation: rollDown 0.5s ease forwards;
}

.centered-menu.hide {
  /* Hide the centered menu with a roll-up animation */
  animation: rollUp 0.5s ease forwards;
}

@keyframes rollDown {
  0% {
    top: -100%;
    right: 100%;
  }
  100% {
    top: 0;
    right: 0;
  }
}





.menu-item {
  display: block;
  padding: 10px 20px;
  color: white;
  font-size: 24px;
  cursor:grab;
  font-weight: 300;
  font-family: Impact;
  transition: background-color 0.3s;
}

.menu-item:hover {
  background-color: rgba(235, 7, 7, 0.2);
  /* Light background color on hover */
  text-decoration: none;
  border-radius: 5px;
  color: white;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: rgb(0, 0, 0); Adjust the color and transparency as needed */
  display: block;
  z-index: 999;
  /* Ensure the overlay appears below the menu */
}

.menu-container.show .overlay {
  display: block;
  /* Show the overlay when the menu is open */
}

.submenu {
  display: block;
  padding: 10px 20px;
  color: white;
  font-size: 20px;
  cursor: pointer;
  font-weight: 500;
  font-family: Arial, Helvetica, sans-serif;
  text-decoration: none;
  transition: background-color 0.3s;
}

.menu-item:hover .submenu {
  display: block;
}




.slider-container {
  height: 100vh;
  overflow: hidden;
  position: relative;
}

#slides {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 1s ease-in;

}

.section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.slider-controls {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: row;
  align-items: center;
  z-index: 1; /* Set a higher z-index value to display on top */
}

button {
  margin: 20px 10px;
  padding: 10px 20px;
  background-color: transparent;
  color: #fff;
  border: none;
  cursor: pointer;
}

.button-disabled {
  opacity: 0.5;
  pointer-events: none;
}

@media(max-width:480px){
  .sectiongifbg{
    display:block;
  }
}
@media(min-width:480px){
  .sectiongifbg{
    display:none;
  }
}

@media(max-width:480px){
  .sectionvideobg{
    display:none;
  }
}
@media(min-width:480px){
  .sectionvideobg{
    display:block;
  }
}