/* ===============================
   ABOUT SLIDER SECTION
================================= */

.about-silder-section {
  width: 100%;
  padding: 4rem 2rem;
  background: #f8f9fa;
  text-align: center;
}

.about-silder-section p {
  margin: 0 auto 3rem;
  font-family: "Montserrat", Sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 48px;
  letter-spacing: 2px;
  color: #000000;
}

/* ===============================
   SWIPER CONTAINER
================================= */

.about-swiper {
  width: 100%;
  padding-bottom: 2rem;
}

.swiper {
  width: 100%;
}

.swiper-wrapper {
  align-items: center;
}

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

.about-card {
  border-radius: 20px;
  overflow: hidden;
  transition: 0.3s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.about-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

/* Hover Effect */
.about-card:hover {
  transform: translateY(-10px);
}

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

@media (max-width: 1024px) {
  .about-card img {
    height: 260px;
  }
}

@media (max-width: 768px) {
  .about-card img {
    height: 220px;
  }

  .about-silder-section p {
    font-size: 16px;
    line-height: 24px;
  }
}

@media (max-width: 576px) {
  .about-card img {
    height: 200px;
  }
}
