*{
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}
body{
  font-family: Roboto Slab,ff-tisa-web-pro,Georgia,Arial,sans-serif;
}
nav{
    background: #fff;
    height: 80px;
    width: 100%;
}
.logo{
    /* padding: 0 100px; */
    margin: 5px 0 5px 30px;
    position: relative;
    z-index: 1;
    background-color: #fff;
    box-shadow: 0 0.9px 1.5px rgba(0, 0, 0, 0.03), 0 3.1px 5.5px rgba(0, 0, 0, 0.08), 0 14px 25px rgba(0, 0, 0, 0.12);
    /* padding: 3px; */
    border-radius: 5px;
}
nav ul{
    float: right;
    /* margin: 20px; */
    margin-right: 40px;
    position: relative;
}
nav ul li{
    display: inline;
    line-height: 80px;
    margin: 0 20px 0 0px;
}
nav ul li a {
    text-decoration: none;
    color: #5A2F2F;
    padding: 7px 13px;
    border-radius: 3px;
  }
a:hover{
    box-shadow: 0 0.9px 1.5px rgba(0, 0, 0, 0.03), 0 3.1px 5.5px rgba(0, 0, 0, 0.08), 0 14px 25px rgba(0, 0, 0, 0.12);
    transition: 1s;
}
.check-button{
    font-size: 30px;
    float: right;
    line-height: 80px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
}
section.nav-section{
    height: 55px;
    width: 100%;
    background: #BE020E;
    position: absolute;
    top: 60px;
    /* z-index: 1; */
}



.image-slider-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 80px); /* Adjusted height to account for the margin-top */
    /* margin-top: 20px; */
    background: #5a2f2f;
  }
  
  .image-slider-plot {
    width: 90%;
    height: 400px;
  }
  #dropdown{
    margin-left: 3px;
  }

 

.menu-item4 {
  position: relative; /* Ensures dropdown is positioned relative to this item */
}

.menu-item4:hover ul {
  display: block; /* Show the dropdown menu */
}

.menu-item4 ul {
  display: none; /* Initially hide the dropdown */
  position: absolute;
  top: 100%; /* Position right below the menu item */
  left: 0; /* Align with the left edge of the menu item */
  background-color: #fff; /* Dropdown background color */
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2); /* Dropdown shadow */
  padding: 0;
  margin: 0;
  list-style: none;
  min-width: 160px; /* Minimum width of the dropdown */
}

.menu-item4 ul li {
  display: block;
  text-align: left; /* Align text to the left */
  line-height: normal; /* Reset the line height */
  margin: 0; /* Remove any margin */
  padding: 5px 16px; /* Reduced padding for compact appearance */
}

.menu-item4 ul li a {
  color: #5A2F2F; /* Text color for dropdown links */
  padding: 0; /* Remove padding */
  display: block; /* Make the link fill the entire list item */
}

.menu-item4 ul li a:hover {
  background-color: #f2f2f2; /* Change background on hover */
}

 /* Media query for mobile responsiveness */
 @media (max-width: 768px) {
  .check-button {
      display: block;
  }

  ul {
      position: fixed;
      width: 100%;
      height: calc(100vh - 180px); 
      /* background:  #cda4a4; */
      background: linear-gradient(to bottom right, #5A2F2F, #FFFFFF);
      margin-right: 0; /* Set margin-right to 0 */
      text-align: center;
      display: none;
      top: 80px; /* Adjust top to align with the height of the navbar */
      left: 0; /* Align to the left edge */
      padding-top: 20px; /* Add some padding at the top */
      /* overflow-y:hidden; Add this if you want scrollable content */
      overflow: hidden;
      ;
  }

  ul.open {
      display: block; /* Display the menu when it's open */

  }

  nav ul li {
      display: block;
      line-height: 50px;
      color: #FFFFFF;

   
     
  }
  .menu-item4 ul li a {
    color: #FFFFFF; /* Text color for dropdown links */
    padding: 0; /* Remove padding */
    display: block; /* Make the link fill the entire list item */
  }
  .menu-item4 ul li a:hover {
    background-color: #5A2F2F; /* Change background on hover */
  }

  .menu-item4 ul {
      position: static; /* Change to static for mobile view */
      width: 100%; /* Full width for the dropdown */
      box-shadow: none; /* Optional: remove box shadow for mobile view */
  }

  .menu-item4 ul li {
      padding: 4px 0; /* Adjust padding for mobile view */
      text-align: center; /* Center align the text */
      
  }
  nav ul li a {
    text-decoration: none;
    color: #FFFFFF;
    padding: 7px 13px;
    border-radius: 3px;
}


 }