html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "Inter", sans-serif;
}

* {
  --main-color: #1977f3;
}

.swiper-pagination-bullet {
  background-color: #3b82f6;
  opacity: 0.5;
}
.swiper-pagination-bullet-active {
  opacity: 1;
}
.swiper-button-next,
.swiper-button-prev {
  color: #3b82f6;
  width: 50px;
  height: 50px;
  margin-top: -25px;
}
.swiper-button-next {
  right: -20px;
}
.swiper-button-prev {
  left: -20px;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 24px;
  font-weight: bold;
}
.swiper-pagination {
  margin-top: 40px !important;
  position: static !important;
}
.team-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.form-animate {
  transition: all 0.3s ease;
}
.form-animate:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.input-focus:focus {
  ring: 2px;
  ring-color: #3b82f6;
  border-color: #3b82f6;
  outline: none;
}
