/* General Footer Styles */
.custom-footer {
  /* background-color: var(--l_dark); */
  background-color: var(--extra_light);
  /* border-radius: 8px; */
  padding: 8px; 
  margin: 20px 0;
}

.footer-menu-item {
  margin-bottom: 12px;
}
.footer-toggle {
  display: flex;
  justify-content: space-between; /* Align left and right content */
  align-items: center; /* Center items vertically */
  text-decoration: none;
  padding: 8px 12px; /* Adjust padding */
  background-color: #f9f9f9; /* Optional background */
  color: var(--dark); /* Text color */
  border: 1px solid #ddd; /* Optional border */
}
.footer-left {
  display: flex;
  align-items: center; /* Align icon and text vertically */
  gap: 8px; /* Space between the icon and text */
}

.footer-icon {
  font-size: 20px; /* Adjust the icon size */
  color: var(--dark); /* Optional icon color */
}
.footer-submenu {
  display: none; /* Hidden by default */
  margin-left: 30px;
  padding-top: 8px;
}

.footer-subitem {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  color:var(--dark); /* Sub Menu Text*/
  cursor: pointer;
}
.footer-subitem h6{
  color: var(--dark) ;
}
.footer-subitem span {
  margin-right: 8px;
  color:var(--dark)  /* Sub Menu Icon*/
}
.footer-submenu-icon {
  font-size: 18px; /* Size of the "+" icon */
  font-weight: bold;
  color:var(--dark) /* Color of "+" icon */
}

.footer-submenu-icon.rotate {
  transform: rotate(180deg);
}

.footer-copyright {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #555;
}

/* Social Icons */
.social-icons a {
  text-decoration: none;
  margin-right: 20px;
  font-size: 24px;
  color: var(--dark);
}

.social-icons a:hover {
  opacity: 50%;
}
