@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  --tw-shadow: 0 0 #0000;
  --org: #ff6011;
  --bl: #2e4a9f;
  font-family: "Bricolage Grotesque", serif !important;
}

a {
  text-decoration: none;
}

p {
  margin: 0;
  padding: 0;
}
ul {
  list-style-type: none;
}

body {
  margin-left: 20%;
  margin-right: 20%;
}

.shadow {
  box-shadow: 0 0 transparent, 0 0 transparent, var(--tw-shadow);
  border-radius: 20px;
}

.shadow-lg {
  box-shadow: 0 0 transparent, 0 0 transparent, var(--tw-shadow);
}

.inner-items-center {
  display: flex !important;
  align-items: center;
}

.btn-org {
  background: #ff6011;
  border-radius: 10px;
  padding: 5px 10px 5px 10px;
  a {
    color: white;
  }
}

#active-nav {
  background-color: rgba(224, 224, 224, 0.514);
  border-radius: 10px;
  .nav-img {
    filter: brightness(0) saturate(100%) invert(40%) sepia(100%) saturate(5000%)
      hue-rotate(-10deg) brightness(100%);
  }
  span {
    color: var(--org);
  }
}

.inc-clr {
  filter: brightness(0) saturate(100%) invert(40%) sepia(100%) saturate(5000%)
    hue-rotate(-10deg) brightness(100%);
}

.clr-bl {
  color: #2e4a9f;
}
.clr-org {
  color: #ff6011;
}
.btn-danger {
  background-color: #2e4a9f !important;
  border: 1px solid #2e4a9f !important;
  &:hover {
    background-color: #10339b !important;
  }
}
.btn-danger2 {
  background-color: #ff6011 !important;
  border: 1px solid #ff6011 !important;
  color: white !important;
  &:hover {
    background-color: #ff5805 !important;
  }
}
.btn-danger3 {
  background-color: #b4b4c2 !important;
  border: 1px solid #e3e3e9 !important;
  color: white !important;
  &:hover {
    background-color: #a5a5b4 !important;
  }
}
.btn-org-01 {
  background: transparent !important;
  border: 2px solid #ff6011 !important;
  &:hover {
    background-color: #e9e9e93d !important;
  }
}

.accordion-button:focus {
  outline: none !important;
  box-shadow: none !important;
}
.btn-active {
  background-color: #ff6011 !important;
  border: 1px solid #ff6011 !important;
  color: white !important;
  &:hover {
    background-color: #ff5805 !important;
  }
}
/* ========================================================================== */
/* Loader CSS Start========================================================== */
/* ========================================================================== */
.loader-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}
.loader {
  width: 60px;
  height: 60px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid var(--org);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  box-shadow: 0 0 15px rgba(255, 96, 17, 0.2);
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/* ======================================================================== */
/* Loader CSS End========================================================== */
/* ======================================================================== */

/* ========================================================================== */
/* Navbar CSS Start========================================================== */
/* ========================================================================== */
.navbar_container {
  margin-top: 25px;
  border-radius: 20px;
  position: sticky !important;
  top: 0;
  background: #ffffff !important;
  z-index: 111;
}
.nav-link {
  border-radius: 10px;
  padding-left: 5px !important;
  padding-right: 5px !important;
}
.nav-link:hover {
  cursor: pointer;
  background-color: rgba(224, 224, 224, 0.514);
  border-radius: 10px;
  .nav-img {
    filter: brightness(0) saturate(100%) invert(40%) sepia(100%) saturate(5000%)
      hue-rotate(-10deg) brightness(100%);
  }
  span {
    color: var(--org);
  }
}

/* ========================================================================== */
/* Navbar CSS End============================================================ */
/* ========================================================================== */

/* ========================================================================== */
/* Elements animation up-down Start========================================== */
/* ========================================================================== */
@keyframes float {
  0%,
  100% {
    transform: translateY(0); /* Starting and ending position */
  }
  50% {
    transform: translateY(-15px); /* Move up slightly */
  }
}

/* Apply animation to the robot */
.fixed-robot {
  animation: float 3s ease-in-out infinite; /* Smooth animation loop */
}

/* Apply animation to the shape */
.fixed-shape {
  animation: float 3s ease-in-out infinite; /* Same animation properties */
  animation-delay: 1.5s; /* Add delay for a staggered effect */
}
/* ========================================================================== */
/* Elements animation up-down End============================================ */
/* ========================================================================== */
