/* ===============================
   SERVICES SLIDER FIXED VERSION
=============================== */

/* Container */
.info-card-slider-area {
  overflow: hidden;
}

.info-card-slider {
  padding-bottom: 50px;
}

/* Swiper reset */
.info-card-slider .swiper {
  padding: 0;
  margin: 0;
}

.info-card-slider .swiper-wrapper {
  align-items: stretch;
}

.info-card-slider .swiper-slide {
  height: auto;
  display: flex;
}

/* ===============================
   CARD DESIGN
=============================== */

.info-card {
 
  border-radius: 30px;
  padding: 30px;
  background: #eef3f8;
  transition: all 0.4s ease;
  cursor: pointer;
}

/* Hover Animation */
.info-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);

  background: linear-gradient(
    135deg,
    #ffffff,
    #f5fbff
  );
}

/* Icon animation */
.info-card .icon img {
  transition: all 0.4s ease;
}

.info-card:hover .icon img {
  transform: scale(1.2) rotate(8deg);
}

/* Title animation */
.info-card .title {
  transition: color 0.3s ease;
}

.info-card:hover .title {
  color: #000;
}

/* Description fade */
.info-card .desc {
  transition: opacity 0.3s ease;
}

.info-card:hover .desc {
  opacity: 0.9;
}

/* ===============================
   NAVIGATION BUTTONS
=============================== */

.services-nav {
  display: flex;
  gap: 12px;
}

.nav-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: white;
  border: 1px solid #c0c0c0;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Arrow hover */
.nav-btn:hover {
  background: #94DDD3;
  border-color: #94DDD3;
  transform: scale(1.1);
}

/* ===============================
   PAGINATION DOTS
=============================== */

.info-card-slider .swiper-pagination {
  bottom: 0;
}

.info-card-slider .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  background-color: #7ECAEB;
  opacity: 0.5;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.info-card-slider .swiper-pagination-bullet-active {
  opacity: 1;
}

/* ===============================
   SMOOTH LOOP
=============================== */

.swiper-wrapper {
  transition-timing-function: linear;
}

/* ===============================
   RESPONSIVE
=============================== */

@media (max-width: 1200px) {
  .info-card {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .nav-btn {
    width: 50px;
    height: 50px;
  }
}