@import "assets/section-css/reset.css";
@import "assets/section-css/mobile-menu.css";
@import "assets/section-css/header.css";
@import "assets/section-css/hero.css";
@import "assets/section-css/about.css";
@import "assets/section-css/category.css";
@import "assets/section-css/features.css";
@import "assets/section-css/course.css";
@import "assets/section-css/why-choose.css";
@import "assets/section-css/funfact.css";
@import "assets/section-css/partner.css";
@import "assets/section-css/testimonial.css";
@import "assets/section-css/blog.css";
@import "assets/section-css/call-action.css";
@import "assets/section-css/team.css";
@import "assets/section-css/faq.css";
@import "assets/section-css/breadcrumbs.css";
@import "assets/section-css/apply.css";
@import "assets/section-css/event.css";
@import "assets/section-css/contact.css";
@import "assets/section-css/product.css";
@import "assets/section-css/checkout.css";
@import "assets/section-css/sidebars.css";
@import "assets/section-css/auth-pages.css";
@import "assets/section-css/footer.css";

.list-menu {
  padding: 0px;
}

.list-menu a {
  padding: 15px;
  font-weight: 500;
  color: #0a3a38;
  font-size: 15px;
  cursor: pointer;
}

.list-menu a:hover {
  background: #fff9f5;
}

.list-menu a.active {
  background: #fff1e4;
  border-left: 3px solid #d37815;
  color: #be6a0f;
  font-size: 14px;
  cursor: pointer;
  font-weight: 500;
}
.btn-main {
  background: #0a3a38;
  color: white;
}
.btn-main:hover {
  border: 1px solid #0a3a38;
  color: #0a3a38;
}

.nowrap {
  white-space: nowrap;
}

.border-left {
  border-left: 3px solid #d37815;
  padding-right: 10px;
}

.border-bottom-dark {
  border-bottom: 1px solid #d37815 !important;
}

/*  */
/* From Uiverse.io by VassoD */
.fixed-btn {
  position: fixed;
  bottom: 110px;
  z-index: 9;
  right: 0px;
}

.tooltip-container {
  position: relative;
  display: inline-block;
}

.help-button {
  background: #e17e0c;
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 30px;
  font-weight: 500;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.help-button:hover,
.help-button:focus {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.enquiry-tooltip {
  position: absolute;
  bottom: 1px;
  right: calc(100% - 90px);
  transform: translateX(-50%) translateY(10px);
  padding: 12px 20px;
  background: linear-gradient(135deg, #0a3838, #0a3a38);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  color: #ffffff;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(229, 231, 235, 1);
}

/* Tooltip arrow */
.enquiry-tooltip::after {
  content: "";
  position: absolute;
  top: 23%;
  right: -15px;
  transform: translateX(-51%);
  border-width: 8px;
  border-style: solid;
  border-color: #0a3a38 transparent transparent transparent;
  rotate: 270deg;
}

.tooltip-container:hover .enquiry-tooltip,
.help-button:focus + .enquiry-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

@keyframes glow {
  0% {
    text-shadow: 0 0 10px #ffffff;
    color: #ffffff;
  }

  50% {
    text-shadow: 0 0 20px #e17e0c;
    color: #e17e0c;
  }

  100% {
    text-shadow: 0 0 10px #ffffff;
    color: #ffffff;
  }
}

.enquiry-tooltip strong {
  animation: glow 2s infinite;
  font-weight: 600;
}

.enquiry-tooltip i {
  margin-right: 6px;
  color: #6366f1;
}

@media (max-width: 768px) {
  .enquiry-tooltip {
    font-size: 13px;
    padding: 10px 16px;
  }

  .help-button {
    padding: 10px 10px;
    font-size: 21px;
  }
}

/* modal style  */

#open-enquiry-modal {
  cursor: pointer;
}
.box-head {
  border-bottom: 1px solid gray;
  margin-bottom: 10px;
}

.box-body {
  margin-top: 15px;
}

.backdrop {
  background: #24222238;
  z-index: 99;
  position: absolute;
  width: 100%;
  height: 100%;
}
.enquiry-close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 25px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  z-index: 1002;
}

.enquiry-modal-box {
  position: fixed;
  bottom: 170px;
  right: 10px;
  z-index: 999;
  max-width: 360px;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #071235;
  padding: 20px;
  opacity: 0;
  transform: translateY(30px);
  pointer-events: none;
  transition: all 0.3s ease;
}

.enquiry-modal-box.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.backdrop {
  background: #24222238;
  z-index: 998;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.backdrop.show {
  opacity: 1;
  pointer-events: auto;
}
