:where([class^="ri-"])::before {
  content: "\f3c2";
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(-5%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }

  50% {
    transform: none;
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

.animate-bounce {
  animation: bounce 1s infinite;
}

.scroll-snap-x {
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.scroll-snap-center {
  scroll-snap-align: center;
}

.hide-scroll::-webkit-scrollbar {
  display: none;
}

.hide-scroll {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.gradient-bg {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.stats-card {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.7);
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.logo {
  height: 50px !important;
}

:where([class^="ri-"])::before {
  content: "\f3c2";
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(-5%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }

  50% {
    transform: none;
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

.animate-bounce {
  animation: bounce 1s infinite;
}

.scroll-snap-x {
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.scroll-snap-center {
  scroll-snap-align: center;
}

.hide-scroll::-webkit-scrollbar {
  display: none;
}

.hide-scroll {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.gradient-bg {
  background: linear-gradient(135deg, #eef2ff 0%, #dbeafe 100%);
}

.stats-card {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.7);
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.bg-logo {
  background-color: #e2edf5;
}

.v1 {
  height: 400px !important;
  width: 100% !important;
}
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.service-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  overflow: visible !important;
}
.service-card a {
  width: 100%;
}
.service-card:hover {
  background-color: skyblue;
  /* transform: scale(1.05); */

  opacity: 0.8 !important;
  transition: all 0.5s ease-in-out;
  border-radius: 20px !important;
  color: black !important
    ;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  overflow: visible !important;
}

.why-choose-us-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
}

.container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  align-items: center;
  gap: 40px;
}

.image-box {
  flex: 1 1 45%;
  text-align: center;
}

.image-box img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease-in-out;
}

.image-box img:hover {
  transform: scale(1.05);
}

.reasons-box {
  flex: 1 1 50%;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #1a1a1a;
}

.reason-item {
  margin-bottom: 24px;
  padding: 24px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s forwards;
}

.reason-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.reason-item:nth-child(2) {
  animation-delay: 0.1s;
}

.reason-item:nth-child(3) {
  animation-delay: 0.2s;
}

.reason-item:nth-child(4) {
  animation-delay: 0.3s;
}

.reason-item:nth-child(5) {
  animation-delay: 0.4s;
}

.reason-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0070f3;
  margin-bottom: 8px;
}

.reason-item p {
  color: #444;
  line-height: 1.6;
  font-size: 1rem;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media screen and (max-width: 768px) {
  .container {
    flex-direction: column;
    padding: 0 10px;
  }

  .image-box,
  .reasons-box {
    flex: 1 1 100%;
  }

  .section-title {
    font-size: 1.5rem;
  }
}

.cta-section {
  background: linear-gradient(to right, #0f172a, #1e3a8a);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  animation: slideDown 1s ease forwards;
}

.cta-content p {
  font-size: 1.125rem;
  margin-bottom: 30px;
  opacity: 0.9;
  animation: fadeIn 1.2s ease forwards;
}

.cta-button {
  background-color: #2563eb;
  color: #fff;
  padding: 14px 32px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
  animation: popIn 1.4s ease forwards;
}

.cta-button:hover {
  background-color: #1d4ed8;
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.5);
}

/* Optional keyframes */
@keyframes slideDown {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes popIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Responsive */
@media screen and (max-width: 768px) {
  .cta-content h2 {
    font-size: 2rem;
  }

  .cta-content p {
    font-size: 1rem;
  }
  p,
  li {
    font-size: 16px !important;
  }
  h2 {
    font-size: 25px !important;
    line-height: 28px !important;
  }
  #mobile-menu button {
    font-size: 16.5px !important;
    font-family: "Lexend", sans-serif !important;
  }
}

html {
  scroll-behavior: smooth;
}

.tab-item {
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 8px;
  transition: background-color 0.3s ease, color 0.3s ease;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: solid 1px #e5e7eb; /* Light gray border */
}
.custom-swiper-btn {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 10;
}

.custom-swiper-btn:hover {
  background-color: #e0f2ff;
  transform: scale(1.1);
}

.custom-swiper-btn i {
  color: #0ea5e9;
  /* skyblue */
  font-size: 24px;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  display: none !important;
}

body {
  font-family: "Lexend", sans-serif !important;
}
p,
li {
  font-size: 18px;
}
button {
  font-size: 20px !important  ;
}
nav button {
  font-size: 16.5px !important;
  font-family: "Lexend", sans-serif !important;
  margin-top: 2px;
}
