/*
Theme Name: Divi-child
Description: Divi Child theme
Version: 1.0
Template: Divi
*/
/* Toggle button */
.menu-btn {
  position: fixed;
  top: auto;
  left: auto ;
	z-index: 10001;
  font-size: 18px;
  background: none;
  color: #4b6931;
  border: none;
 /* padding: 10px 15px;*/
  cursor: pointer;
  font-family:'arial';
	text-transform:uppercase;
	font-size:20px;
}

/* Fullscreen overlay menu */
.slide-menu {
 position: fixed;
  top: 0;
  left: -100%;
  width: 100%; /* full screen */
  height: 100%;
  background: #333;
  transition: left 0.8s ease;
  z-index: 9999;
  padding: 80px 20px;
  overflow-y: auto;
}
div#slide-menu {
    z-index: 999999;
}
/* Active state - slide in from left */
.slide-menu.active {
  left: 0;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 60px;
  background: none;
  color: #fff;
  border: none;
  cursor: pointer;
}

/* Menu items */
.slide-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.slide-menu-list li {
  margin: 25px 0;
	list-style: none;
    text-align: left;
}

.slide-menu-list a {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
	text-transform: uppercase !important;
}
div#slidemenu_img {
    width: 50%;
    float: left;
}
.slide-menu-list a:hover {
  color: #f39c12;
}
#custom_header .et_pb_column {
    z-index: unset;
}
/* Submenu styles */

.slide-menu .menu-item-has-children > a::after {
  content: " ▼";
  font-size: 14px;
  margin-left: 6px;
}
/* Submenu hidden by default */
.slide-menu .sub-menu {
  max-height: 0;
  overflow: hidden;
  margin-left: 20px;
  padding-left: 10px;
  border-left: 2px solid rgba(255,255,255,0.2);
  transition: max-height 0.4s ease;
}

/* When parent is open */
.slide-menu li.open > .sub-menu {
  max-height: 500px; /* adjust based on your submenu size */
}
.slide-menu .menu-item-has-children > a::after {
  content: "▼";
  display: inline-block;
  margin-left: 6px;
  transition: transform 0.3s;
}

.slide-menu li.open > a::after {
  transform: rotate(180deg); /* flip arrow */
}
/*floating arrows*/
.floating-scroll-arrows {
  position: fixed;
  right: 30px;
  bottom: 50%;
  transform: translateY(50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 9999;
  gap: 15px;
}

.floating-scroll-arrows a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border-radius: 50%;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.floating-scroll-arrows a:hover {
  background: #ff4d4d;
  transform: scale(1.1);
}

