:root {
  --font-family-sans-serif:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace:
    SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New",
    monospace;
}
.bg-dark{
    background-color: #151758;
}
body {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #fff;
  font-display: swap;
  font-size-adjust: 0.53;
  font-family:
    Poppins,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0.5rem;
  font-family: inherit;
  font-weight: 500;
  line-height: 1.2;
  color: inherit;
}
.h1,
h1 {
  font-size: 2.5rem;
}
.h2,
h2 {
  font-size: 2rem;
  font-weight: 800;
}
.loader {
  position: fixed;
  inset: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}
.loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.circular {
  animation: rotate 2s linear infinite;
}
.path-bg {
  stroke: #eee;
}
.path {
  stroke: #151758;
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite;
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  z-index: 999;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  color: #fff;
}
@media (max-width: 576px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    right: 15px;
    bottom: 15px;
  }
}
.whatsapp-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: pulse 2s infinite;
  z-index: -1;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-float {
    transition: none;
  }
  .whatsapp-float::after {
    animation: none;
  }
}
.qr-side-button {
  position: fixed;
  bottom: 20px;
  left: 15px;
  z-index: 1000;
  transition: all 0.3s ease;
  width: 80px;
  height: 60px;
  overflow: hidden;
}
.qr-side-button a {
  background-color: #3431D1;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  width: 100%;
  height: 100%;
}
.qr-side-button img {
  width: 70%;
  height: 70%;
  transition: all 0.3s ease;
}
.qr-side-button:hover {
  left: -10px;
  width: 250px;
  height: 150px;
}
.qr-side-button:hover img {
  width: 90%;
  height: 90%;
}
.topbar {
  border-bottom: 1px solid #eee;
}
.brand-logo img {
  height: 40px;
}
.top-social a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e5e5e5;
  color: #212529;
  font-size: 16px;
  transition: all 0.25s ease;
  text-decoration: none;
}
.top-social a:hover {
  background: #151758;
  color: #fff;
  border-color: #151758;
  transform: translateY(-2px);
}
@media (max-width: 576px) {
  .top-social a {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }
}
.design-nav {
  background: #00043c !important;
  z-index: 30;
  padding: 0;
}
.design-nav .navbar-nav > .nav-item > .nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  padding: 1.8rem 30px;
  position: relative;
  opacity: 1;
}
.design-nav .navbar-nav > .nav-item > .nav-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #3431D1;
  transform: scaleX(0);
  visibility: hidden;
  transition: transform 0.2s ease-in-out;
  z-index: -1;
}
.design-nav .navbar-nav > .nav-item > .nav-link:hover {
  color: #000;
}
.design-nav .navbar-nav > .nav-item > .nav-link:hover::before {
  transform: scaleX(1);
  visibility: visible;
}
.design-nav .dropdown-menu {
  border: none;
  background: #fff;
  box-shadow: 0 10px 34px -20px rgba(0, 0, 0, 0.41);
  border-radius: 4px;
}
.design-nav .dropdown-menu .dropdown-item {
  font-size: 12px;
  color: #000;
}
.design-nav .dropdown-menu .dropdown-item:hover {
  background-color: #3431D1;
  color: #fff;
}
.dropdown-submenu {
  position: relative;
}
.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  display: none;
}
@media (min-width: 992px) {
  .dropdown-submenu:hover > .dropdown-menu,
  .navbar .dropdown:hover > .dropdown-menu {
    display: block;
  }
}
.dropdown-submenu > a.dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 991.98px) {
  .design-nav {
    background: #000 !important;
    padding: 10px 15px;
  }
  .design-nav .navbar-nav > .nav-item > .nav-link {
    padding: 0.9rem 0;
    color: rgba(255, 255, 255, 0.7);
  }
  .design-nav .navbar-nav > .nav-item > .nav-link:hover {
    color: #fff;
  }
  .design-nav .navbar-nav > .nav-item > .nav-link::before {
    display: none;
  }
  .design-nav .dropdown-menu {
    background: #000;
    box-shadow: none;
  }
  .design-nav .dropdown-menu .dropdown-item {
    color: rgba(255, 255, 255, 0.8);
  }
  .dropdown-menu .dropdown-menu {
    display: none;
    position: static;
    background: 0 0;
  }
  .dropdown-menu .dropdown-menu.show {
    display: block;
    padding-left: 2rem;
  }
  .dropdown-menu .dropdown-item {
    padding-left: 2rem;
  }
}
.design-nav .navbar-toggler {
  border: none;
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.design-nav .navbar-toggler:focus {
  outline: 0;
}
.design-nav .navbar-nav > .nav-item > .nav-link > .nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  padding: 0 !important;
  opacity: 1 !important;
}
@media (max-width: 991.98px) {
  .dropdown-submenu > .dropdown-menu {
    position: static;
    display: none;
    margin-left: 1rem;
  }
  .dropdown-submenu > .dropdown-menu.show {
    display: block;
  }
}
@media (max-width: 991.98px) {
  .design-nav .dropdown-menu.show {
    display: block !important;
  }
}
.hero-slide {
  position: relative;
  height: 90vh;
  min-height: 600px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}
.hero-slide .col-md-10,
.hero-slide .container,
.hero-slide .row {
  position: relative;
  z-index: 2;
}
.hero-heading {
  font-size: 50px;
  color: #fff;
  line-height: 1.2;
  font-weight: 800;
  font-family: Poppins, Arial, sans-serif;
  text-transform: uppercase;
}
.carousel-item.active .animate {
  opacity: 1;
  transform: translateY(0);
}
.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
}
@media (max-width: 991px) {
  .hero-heading {
    font-size: 42px;
  }
}
@media (max-width: 576px) {
  .hero-heading {
    font-size: 30px;
  }
}
.logo-large {
  display: inline;
  height: 40px;
  width: auto;
}
