/* Reset default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: "Urbanist", sans-serif;
  font-optical-sizing: auto;
  color: #333;
  background-color: white;
}

.object-center-top {
  object-position: center top;
}

.sectionHeading {
  font-size: 9rem;
  background-image: linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.04) 20%,
    rgba(0, 0, 0, 0.21) 100%
  );
  display: inline-block;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  left: 50%;
  position: absolute;
  top: -110px;
  transform: translate(-50%);
  width: 100%;
  text-align: center;
}

.main-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0 40px; /* Top padding for header, bottom for content */
}

.text-wrapper {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.1;
  position: relative;
  text-align: center;
  max-width: 90%;
  margin: 0 auto;
}

.blur-text {
  color: black;
  position: relative;
  display: block;
}

.blur-word {
  display: inline-block;
  position: relative;
}

.blur-text span {
  display: inline-block;
  transition: filter 0.6s ease-out, transform 0.6s ease-out;
}

.blur-text span.blurring {
  filter: blur(4px);
  transform: scale(0.98) translateY(1px);
}

/* tiny custom gradient used by the logo */
#logo-gradient stop:first-child {
  stop-color: #9b99fe;
}

#logo-gradient stop:last-child {
  stop-color: #2bc8b7;
}

.logo-swiper {
  width: 100%;
  padding: 20px 0;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 20%,
    black 80%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 20%,
    black 80%,
    transparent 100%
  );
}

.logo-swiper-slick .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.owl-carousel .item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.slick-slider-marquee {
  display: none;
}

.logo-swiper .swiper-slide {
  width: auto !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

.swiper-slide {
  margin-right: 20px !important;
}
@keyframes car-move {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(30px);
  }
}

.animate-car-move {
  animation: car-move 3s ease-in-out infinite;
}

.testimonialSwiper {
  width: 100%;
  height: 100%;
  position: relative;
}

.testimonialSwiper .swiper-slide {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonialSwiper .swiper-slide-active {
  opacity: 1;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes marquee-reverse {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(50%);
  }
}

.animate-marquee {
  animation: marquee 30s linear infinite;
}

.animate-marquee-reverse {
  animation: marquee-reverse 30s linear infinite;
}

/* Canvas Scroll */

.canvas-container:active {
  cursor: grabbing;
}

.zoomable {
  position: absolute;
  top: 0;
  left: 0;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes marquee-reverse {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(50%);
  }
}

/* tiny custom gradient used by the logo */
#logo-gradient stop:first-child {
  stop-color: #9b99fe;
}

#logo-gradient stop:last-child {
  stop-color: #2bc8b7;
}

#back-to-top {
  z-index: 8888;
}

/* Noise texture for background */
.bg-noise {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

.star-cta {
  display: inline-block;
  animation: rotateStar 6s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
}

@keyframes rotateStar {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(90deg);
  }

  50% {
    transform: rotate(180deg);
  }

  75% {
    transform: rotate(270deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 767px) {
  .sectionHeading {
    display: none !important;
  }
  .slick-slider-marquee {
    display: block;
  }

  .owl-carousel-silder {
    display: block;
  }

  .text-wrapper {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 80px;
  }
}
