* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

body {
  padding-right: 0 !important;
  overflow-y: auto !important;
}

.container {
  max-width: 1540px !important;
}

:root {
  --navy-color: #212a4e;
  --primary-color: #d9831f;
  --secondary-color: #fff;
  --tertiary-color: #fcaf15;
  --light-text-color: #fff;
  --dark-text-color: #000;
  --text-active: #1d1d1d;
}

.active {
  color: var(--text-active);
}

.list-unstyled li {
  padding-bottom: 10px;
  list-style: disc;
  list-style-position: inside;
}

.list-unstyled li ul li {
  padding-bottom: 10px;
  list-style: circle;
  list-style-position: inside;
}

.list-unstyled li a {
  text-decoration: none;
  color: var(--light-text-color);
  font-size: 20px;
}

.list-unstyled li a:hover {
  color: var(--primary-color);
}

.text-light {
  color: var(--secondary-color) !important;
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -6px;
}

.set-btn-primary {
  position: relative;
  overflow: hidden;
  /* Ensures the slide effect stays within the button */
  background-color: var(--primary-color);
  /* No initial background */
  z-index: 1;
  transition: all 0.5s ease;
  color: var(--light-text-color);
  border: 0.5px solid var(--primary-color);
}

.set-btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  /* Initially hide the background */
  width: 100%;
  height: 100%;
  background-color: var(--secondary-color);
  /* The color that will slide in */
  transition: transform 0.5s ease;
  /* Smooth slide transition */
  z-index: -1;
  /* Keep the background behind the text */
}

.set-btn-primary:hover::before {
  transform: translateX(100%);
  /* Slide the background in from left to right */
}

.set-btn-primary:hover {
  border: 0.5px solid var(--primary-color);
  color: var(--dark-text-color);
  /* Ensure text stays visible */
}

.set-btn-secondary {
  position: relative;
  overflow: hidden;
  /* Ensures the slide effect stays within the button */
  background-color: var(--secondary-color);
  /* No initial background */
  z-index: 1;
  transition: all 0.5s ease;
  color: var(--primary-color);
}

.set-btn-secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  /* Initially hide the background */
  width: 100%;
  height: 100%;
  background-color: var(--navy-color);
  /* The color that will slide in */
  transition: transform 0.5s ease;
  /* Smooth slide transition */
  z-index: -1;
  /* Keep the background behind the text */
}

.set-btn-secondary:hover::before {
  transform: translateX(100%);
  /* Slide the background in from left to right */
}

.set-btn-secondary:hover {
  color: var(--light-text-color);
  /* Ensure text stays visible */
}

.set__heading {
  font-size: 4rem;
  overflow-wrap: break-word;
}

}

.z-100 {
  z-index: 10000;
}

.z-90 {
  z-index: 90;
}

.h-fit {
  height: fit-content;
}

.offcanvas.offcanvas-top {
  height: fit-content;
}

@media (max-width: 992px) {
  #navbarText {
    background-color: #bababa30;
  }
}
