
/* Reset styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: 'Roboto';
  height: 100%;
  overflow-x: hidden;
}

#background-video {
  position: fixed;
  right: 0;
  bottom: 0;
  width: auto;
  height: 100vh; /* Set the height to match the viewport height */
  min-width: 100%;
  object-fit: cover; /* Ensures the video covers the screen while maintaining aspect ratio */
  z-index: -1;
  transition: left 0.3s ease; /* Smooth transition */
}


/* Sidebar styles */
.sidebar {
  height: 100%;
  width: 200px;
  position: fixed;
  top: 0;
  left: -200px; /* Initially hidden off-screen */
  background-color: #f4f4f4;
  padding-top: 20px;
  transition: 0.3s; /* Slide transition */
  z-index: 1;
}

.sidebar h2 {
  padding-left: 20px;
  margin-bottom: 20px;
}

.sidebar nav ul {
  list-style-type: none;
  padding: 0;
  margin-top: 80px;
  margin-left: 20px;
  margin-right: 17px;
}

.sidebar nav ul li {
  display: flex;
  justify-content: space-between;
  padding: 5px 20px;
  text-decoration: none;
  color: #333;
  font-size: 18px;

  font-weight: bolder;
  font-size: 14px;
  font-family: 'Roboto';
  padding-left: 30px;
  padding-right: 30px;
}

.sidebar nav ul li a {
  text-decoration: none;
  color: #333;
  font-family: 'Roboto';

  font-weight: bolder;
  font-size: 14px;
}


.sidebar nav ul li:hover, a:hover {
  color: #ffc800 !important
}

.sidebar nav ul li:hover {
  color: #ffc800 !important; /* Change the color of the text */
}

.sidebar nav ul li:hover a {
  color: #ffc800 !important; /* Change the color of the link */
}


/* Main content */
.content {
  margin-left: 0;
  transition: margin-left 0.3s;
  padding: 20px;
  display: flex;
  align-items: baseline;

}

.open-btn, #home {
  font-size: 24px;
  margin-left: 20px;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
}

.content-image {
  width: 100%;
  height: auto;
  max-width: 600px;
  display: block;
  margin: auto;
  object-fit: contain;
}


/* Hamburger Icon */

#nav-icon3 span:nth-child(1) {
  top: 0px;
}

#nav-icon3 span:nth-child(2), #nav-icon3 span:nth-child(3) {
  top: 7px; /* Adjusted from 18px to 10px */
}

#nav-icon3 span:nth-child(4) {
  top: 14px; /* Adjusted from 36px to 20px */
}

#nav-icon3.open span:nth-child(1) {
  top: 7px; /* Adjusted from 18px to 10px */
  width: 0%;
  left: 50%;
}

#nav-icon3.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#nav-icon3.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#nav-icon3.open span:nth-child(4) {
  top: 7px; /* Adjusted from 18px to 10px */
  width: 0%;
  left: 50%;
}

#nav-icon3 {
  width: 20px;
  height: 1px;
  position: relative;
  margin: 17px auto;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

.focus {
  color: #ffc800!important;
}

#nav-icon3 span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: white;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}


@media (max-width: 1000px) {
  .sidebar {
    width: 100%;
    height: auto;
    top: -250px;           /* Start hidden above */
    left: 0;
    transition: top 0.3s;  /* Slide down */
  }

  /* Ensure content doesn't shift on smaller screens */
  .content {
    margin-left: 0;
  }

  /* Hamburger icon adjustments */
  #nav-icon3, .open-btn, #home {
    z-index: 10;
  }
  .content {
    justify-content: space-between;
  }

  
}
