body {
  font-family: "Nunito Sans", sans-serif;
}

.counter-number {
  font-weight: 700;
  font-size: 2.5rem;
}

.product-card {
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.industry-card {
  transition: all 0.3s ease;
}

.industry-card:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #1e3a8a 0%, #51a2ff 100%);
  color: white;
}

.industry-card:hover h3 {
  color: white;
}

.industry-card:hover p {
  color: white;
}

.testimonial-card {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.swiper-pagination-bullet-active {
  background: #667eea !important;
}

.testimonial-swiper .swiper-pagination-bullet {
  background: #51a2ff !important;
}

.testimonial-swiper .swiper-pagination-bullet-active {
  background: #1c398e !important;
}

.mobile-menu {
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.mobile-menu.active {
  transform: translateX(0);
}
a.bg-blue-900.hover\:bg-blue-700.text-white.px-8.py-4.rounded-lg.text-lg.font-semibold.transition.duration-300.inline-block.fade-in-up {
    background-color: rgb(30 58 138 / 35%);
}

.hero-swiper {
  height: 100vh;
}

.hero-slide {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.hero-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-swiper .swiper-pagination {
  bottom: 40px;
}

.swiper-wrapper {
  height: inherit;
}

.swiper-button-next,
.swiper-button-prev {
  color: white !important;
  background: rgba(255, 255, 255, 0.2) !important;
  border-radius: 50% !important;
  width: 50px !important;
  height: 50px !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px !important;
}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5) !important;
  opacity: 1 !important;
}

.swiper-pagination-bullet-active {
  background: white !important;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

.pt-70 {
  padding-top: 70px;
}
