@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

* {
  padding: 0;
  margin: 0;
  font-family: "Jost", sans-serif;
}

.orange:hover {
  background-color: #ff681a !important;
}

.Skyblue:hover {
  background-color: #31d2f2 !important;
}

.orange-color:hover {
  color: #ff681a !important;
}

.Skyblue-color:hover {
  color: #31d2f2 !important;
}

::placeholder {
  color: white !important;
  opacity: 1 !important;
}


.nav-item.dropdown {
  position: relative;
}

/* Fix navigation layering issue */
.bg-light.position-sticky {
  z-index: 1030 !important;
}

.box-card:hover {
  scale: 1.0
}

.nav-item.dropdown .dropdown-menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 75px;
  left: 0;
  border: 0px;
  z-index: 9999;
  background-color: white;
  border-bottom: 3px solid #ff6600;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  transform: translateY(30px);
  padding: 20px 30px;
}

.nav-item.dropdown:hover .dropdown-menu,
.nav-item.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-link {
  transition: color 0.3s ease;
}

/* Main nav menu item color change on hover and when dropdown active */
.nav-item.dropdown:hover>.nav-link,
.nav-item.dropdown:focus-within>.nav-link {
  color: #31d2f2 !important;
}

.dropdown-menu li {
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
}

.dropdown-menu li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border: 3px solid #ff6600;
  border-radius: 50%;
}

.dropdown-menu li:hover {
  color: #31d2f2;
  background-color: white;
}

.dropdown-menu li:hover::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 30px;
  width: 70%;
  height: 2px;
  background-color: #31d2f2;
}

.footer {
    background: url('../images/testimonial-bg.jpg') no-repeat center center/cover;
    color: white;
    padding: 80px 0;
  }
  
  .footer a {
    color: white;
    text-decoration: none;
    display: inline-block;
    transition: margin-left 0.3s ease, color 0.3s ease;
  }
  
  .footer a:hover {
    color: #e65c00;
    margin-left: 8px;
  }
  
  .footer-icons a {
    font-size: 1.5rem;
    padding: 10px;
    margin: 0 10px;
    border: 1px solid wheat;
    border-radius: 50%;
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }
  
  .footer-icons a:hover {
    background-color: #e65c00;
    color: white;
    border-color: #e65c00;
    text-decoration: none;
  }
  
  .nav-icons:hover {
    margin-right: 20px;
  }
  
  .input {
    width: 100%;
    padding: 6px;
    background-color: transparent;
    color: white;
    border: 1px solid white;
    outline: none;
    
  }
  
  .input:focus {
    outline: 2px solid #e65c00;
    border-color: #e65c00;
  }
  
  .subscribe-btn {
    background-color: #e65c00;
    border: none;
    padding: 10px 20px;
    color: white;
    margin-top: 10px;
  }
  
  .subscribe-btn:hover {
    background-color: #00bcd4;
  }
  
  .underline {
    position: relative;
    width: 80px;
    height: 3px;
    background-color: #e65c00;
    margin: 10px 0px;
  }
  
  /* Center white part */
  .underline::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 3px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  /* Moving Circle */
  .circle {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: white;
    border-radius: 50%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation: moveCircle 2s infinite alternate ease-in-out;
  }
  
  @keyframes moveCircle {
    0% {
      left: 0;
    }
  
    100% {
      left: calc(100% - 12px);
    }
  }  
  
  /* mobile offcanvas */
  
  /* 📌 Offcanvas Design */
  .custom-offcanvas {
    background: #fceee7; /* Peach Background */
    width: 80%;
    border-right: 2px solid #ff681a;
  }
  
/* 📌 Offcanvas Design */
.offcanvas {
  z-index: 1055 !important;
}

/* 📌 Header Design */
.offcanvas-header {
    background: #ffefe2;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .menu-logo {
    width: 120px;
  }
  
  /* 📌 Menu List */
  .menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .menu-link {
    font-size: 18px;
    font-weight: 600;
    color: black;
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    text-decoration: none;
  }
  
  /* 📌 Submenu Styling */
  .sub-menu {
    list-style: none;
    padding-left: 20px;
  }
  
  .sub-menu a {
    font-size: 16px;
    padding: 5px 0;
    color: #444;
    display: block;
  }
  
  /* 📌 Plus Icon */
  .bi-plus {
    font-size: 20px;
    color: #ff681a;
  }
  