 
.icon {
    cursor: pointer;
    background-color: #8b0000;
    border-radius: 100%;
    margin-top: -12px;
    padding-top: 8px;
    padding-bottom: 13px;
    padding-right: 12px;
    padding-left: 12px;
}

.icon .hamburger {
  width: 25px;
  height: 3px;
  background-color: white;
  margin-top: 5px;
}

ul.menu {
    padding-top: 23px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
    list-style: none;
    width: 100%;
    padding: 0;
    border-bottom: 1px solid #8b0000;
    position: absolute;
    top: 70px;
    z-index: 99999999999;
    background: white;
    height: 100%;
}

ul.menu a {
  color: #333333;
  text-decoration: none;
  font-weight: 500;
}

ul.menu a {
  font-family: var(--main-font); /* Replace with actual font if not using CSS variables */
  text-align: center;
  padding: 10px;
  border-top: 1px solid #8b0000;
  display: block;
  width: 100%;
}

ul.menu a:hover {
  color: #333333;
}
ul.menu a.active {
    background-color: #8b0000;
    color: white;
}
@media (min-width: 993px) {
    .icon{
        display: none;
    }


}
/* Add this to your CSS */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.page-loader.active {
  opacity: 1;
  visibility: visible;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}