@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Jost:ital,wght@0,100..900;1,100..900&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--font-inter);
  scroll-behavior: smooth;
}

:root {
  --color-brand-500: #fc9a04;
  --color-brand-600: #df7200;
  --color-black-50: #f6f6f6;
  --font-inter: "Inter", sans-serif;
  --font-jost: "Jost", sans-serif;
}


.hero-section svg {
  z-index: 5;
}

.hero-section svg:nth-child(3) {
  z-index: 4;
}



/* ==========================HEADER STYLE====================================== */
.bottom-line {
  transform: translateY(20px);
  opacity: 0;
  border-radius: 10px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

li:hover .bottom-line,
li:active .bottom-line {
  transform: translateY(0px);
  opacity: 1;
}

.btn-primary {
  background-color: var(--color-brand-500);
  color: white;
  padding: 14px 24px;
  border-radius: 56px;
  transition: all 300ms ease-in-out;
}

.btn-primary:hover {
  background-color: var(--color-brand-600);
}

.btn-secondary {
  background: transparent;
  color: var(--color-brand-600);
  outline: 1px solid var(--color-brand-600);
  padding: 14px 24px;
  border-radius: 56px;
  transition: all 300ms ease-in-out;
}

.btn-secondary:hover {
  background-color: var(--color-brand-600);
  color: white;
}

#mobile-menu {
  opacity: 0;
  transform: translateY(-20px) scaleY(0.95);
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#mobile-menu.open {
  opacity: 1;
  transform: translateY(0) scaleY(1);
  pointer-events: auto;
}


.hero-section {
  background: url("./assest/hero-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-jost);
}


.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-wrapper {
  width: 100%;
  overflow: hidden;
}

.carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
  scroll-behavior: smooth;
  /* width: calc(259px * 18); */
  animation: scroll-left 40s linear infinite;
  animation-play-state: running;
}

.carousel-left {
  animation: scroll-left 60s linear infinite;
}

.carousel-right {
  animation: scroll-right 60s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-259px * 6));
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(calc(-259px * 6));
  }

  100% {
    transform: translateX(0);
  }
}