
  .menu-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #6a5724ff;
    display: none; /* Initially hidden */
    color: #f3d4a2;
    align-items: center;
    z-index: 4000;
    padding: 2rem;
justify-content: space-between;


  }
  
  .menu-container.active {
    display: flex; /* Show the menu when active */
  }
  
  .menu-new {
    padding-left: 8%;
  }
  
  .menu-new ul {
    list-style: none;
    padding: 0;
  }
  
  .menu-new ul li a{
    cursor: pointer;
    color: #f3d4a2;
    text-decoration: none;
    font-size: 1.9rem;
    margin-bottom: 1rem;
  }
  
  .image-section {
    display: flex;
    width: 62%;
    padding-top: 3%;
  }
  
  .image-container {
    text-align: center;
  }
  
  .image-container img {
    width: 350px;
     object-fit: cover;
    height: 400px;
    border-radius: 25px;
  }
  
  .image-container p {
    font-size: 20px;
    margin-top: 0.5rem;
    margin-right: 15%;
    margin-left: 10%;
  }
  
  .close-btn {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background-color: transparent;
    border: 2px solid #00ff00;
    color: #00ff00;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }
  
  .close-btn:hover {
    background-color: #00ff00;
    color: #0f372a;
  }
  @media (max-width: 768px) {
    .menu-container {
        width: 100%; /* Adjust width for mobile screens */
        padding: 1.5rem;
        z-index: 4000;
        flex-direction: column; /* Stack elements vertically */
        justify-content: flex-start; /* Align content to the top */
        overflow-y: auto; /* Enable scrolling if content overflows */
    }

    .menu-new {
        padding-left: 5%; /* Adjust padding for better alignment */
    }

    .menu-new ul li a{
        font-size: 1.5rem; /* Slightly smaller font for better fit */
        margin-bottom: 1rem;
    }
    .menu-new ul li {
      font-size: 1.5rem; /* Slightly smaller font for better fit */
      margin-bottom: 1rem;
  }

    .image-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      overflow: hidden; /* Hide overflowing elements */
      position: relative;
      height: 100vh; /* Full viewport height */
  }
  
  .image-container {
      position: absolute;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transform: translateX(100%); /* Start off-screen to the right */
      animation: slideInOut 6s linear infinite; /* Continuous animation */
  }
  
  .image-container:nth-child(2) {
      animation-delay: 3s; /* Offset the second image by half the animation duration */
  }
  
  @keyframes slideInOut {
      0% {
          opacity: 0;
          transform: translateX(100%); /* Start off-screen to the right */
      }
      10% {
          opacity: 1;
          transform: translateX(0); /* Fully visible */
      }
      40% {
          opacity: 1;
          transform: translateX(0); /* Stay in the center */
      }
      50% {
          opacity: 0;
          transform: translateX(-100%); /* Exit to the left */
      }
      100% {
          opacity: 0;
          transform: translateX(-100%); /* Remain off-screen to the left */
      }
  }
  
    .image-container img {
      /* display: none; */
        width: 100%; /* Adjust image width for smaller screens */
       height: 220px;
        margin-bottom: 1rem; /* Add spacing between stacked images */
    }

    .image-container p {
        font-size: 1rem; /* Smaller font for text under images */
        margin-left: 2%;
        /* display: none; */
        margin-right: 5%;
    }

    .close-btn {
        top: 1rem; /* Adjust position for smaller screens */
        right: 4rem;
        font-size: 1.2rem; /* Smaller button size */
        width: 40px;
        height: 40px;
    }
}


.submenu {
  position: relative;
  left: 11%;
  display: inline-block; /* Ensures the dropdown aligns properly */
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  color: black;
  left: 18%;
  background-color: #ffffff;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  /* border-radius: 5px; */
  overflow: hidden;
  flex-direction: column;
  white-space: nowrap;
  z-index: 10;
}

.dropdown a {
  padding: 10px 25px;
  text-decoration: none;
  color: black;
  display: block;
}

.dropdown a:hover {
  background-color: #f0f0f0;
}

.submenu:hover .dropdown {
  display: flex;
}


/* transition: transform 3s ease; */

/* cursor: pointer;
transform: scale(1.05); */