body {
  background-color: #000000 !important;
}
.elementor-background-overlay {
  background-color: black !important;
}
  
  .button {
    font-size: 1em;
    padding: 10px;
    color: #000000;
    border:#000000 1px;
    border-radius: 20px/50px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease-out;
  }
  .button:hover {
    background: #ff9e9e;
  }
  .elementor-container elementor-column-gap-default {
    background-color: #000000 !important;
  }
  .overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 500ms;
    visibility: hidden;
    opacity: 0;
  }
  .overlay:target {
    visibility: visible;
    opacity: 1;
  }
  
  .popup {
    margin: 70px auto;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    width: 30%;
    position: relative;
    transition: all 5s ease-in-out;
  }
  
  .popup h2 {
    margin-top: 0;
    color: #333;
    font-family: Tahoma, Arial, sans-serif;
  }
  .popup .close {
    position: absolute;
    top: 20px;
    right: 30px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #333;
  }
  .popup .close:hover {
    color: #06D85F;
  }
  .popup .content {
    max-height: 30%;
    overflow: auto;
  }
  
  @media screen and (max-width: 700px){
    .box{
      width: 70%;
    }
    .popup{
      width: 70%;
    }
  }
  .content {
    font-size: 10px;
  }@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;1,100;1,200;1,300;1,400;1,500&display=swap");
* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
}


.navigation {
  position: fixed;
  bottom: 20px; /* Adjust as needed */
  left: 50%;
  transform: translateX(-50%);
  width: 350px;
  height: 70px;
  border-radius: 40px;
  background-color: #fff;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
  border: #000000 1px solid;
  
}

.navigation ul {
  display: flex;
  width: 100%;
  padding: 0;
  margin: 0;

}


.navigation ul li {
  position: relative;
  list-style: none;
  width: 70px;
  height: 70px;
  z-index: 1;
}

.navigation ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
  color: #333;
  font-weight: 500;
  text-decoration: none; /* Added to remove underline */
}

.navigation ul li a .icon {
  line-height: 75px;
  transition: 0.5s;
}

.navigation ul li.active a .icon {
  color: #fff;
}

.navigation ul li a .icon i {
  font-size: 20px;
}

.navigation ul li a .title {
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translate(-50%, 15%);
  background: #fff;
  padding: 5px 10px;
  border-radius: 7px;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 5px 15px rgba(255, 3, 3, 0.1);
}

.navigation ul li:hover a .title {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 50%);
}

.navigation ul li a .title::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: #fff;
  bottom: -8px;
  left: 48%;
  transform: rotate(45deg) translateX(-50%);
  border-radius: 2px;
}

.navigation ul .indicator {
  position: absolute;
  left: 0;
  width: 70px;
  height: 70px;
  transition: all 0.5s;
}

.navigation ul .indicator::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: 0.5s;
}
.custom-icon {
  width: 90%; /* Scale down to 80% */
  height: auto; /* Maintain aspect ratio */
}

.navigation ul li:nth-child(1).active ~ .indicator {
  transform: translateX(calc(70px * 0));
}

.navigation ul li:nth-child(2).active ~ .indicator {
  transform: translateX(calc(70px * 1));
}

.navigation ul li:nth-child(3).active ~ .indicator {
  transform: translateX(calc(70px * 2));
}

.navigation ul li:nth-child(4).active ~ .indicator {
  transform: translateX(calc(70px * 3));
}

.navigation ul li:nth-child(5).active ~ .indicator {
  transform: translateX(calc(70px * 4));
}

.navigation ul li:nth-child(1).active ~ .indicator::before {
  background-color: rgb(219, 198, 202);
}

.navigation ul li:nth-child(2).active ~ .indicator::before {
  background-color: #3c40c6;
}

.navigation ul li:nth-child(3).active ~ .indicator::before {
  background-color: #05c46b;
}

.navigation ul li:nth-child(4).active ~ .indicator::before {
  background-color: #0fbcf9;
}

.navigation ul li:nth-child(5).active ~ .indicator::before {
  background-color: #ffa801;
}

.center {
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
  color: #000000;
}   