@import "tailwindcss";
@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');
*{
   
    font-family: 'Mulish', sans-serif;
}
details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;  
  width: 100%;                     
  cursor: pointer;
}

details summary::after {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  transition: transform 0.3s ease;
  color: currentColor;
}

details[open] summary::after {
  transform: rotate(180deg);
}
body.overflow-hidden {
  overflow-x: hidden;
}
/* filepath: d:\Munatech-Static\style.css */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 80%; /* Adjust as needed */
  background-color: #333; /* Or your desired background */
  z-index: 1000; /* Ensure it's on top */
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}

.mobile-menu.open {
  transform: translateX(0);
}
