.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.feature-box {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #334155;
}

.feature-box i {
  font-size: 18px;
}

/* IMAGE WRAPPER */
.about-img-wrapper {
  position: relative;
}

.main-img {
  border-radius: 20px;
  width: 100%;
  height: 450px;
  object-fit: cover;
}

/* FLOATING CARDS */
.about-card {
  position: absolute;
  background: #fff;
  padding: 14px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.about-card h4 {
  margin: 0;
  font-size: 22px;
  color: #06bbcc;
  font-weight: 700;
}

.about-card p {
  margin: 0;
  font-size: 14px;
  color: #64748b;
}

/* POSITION */
.card-1 {
  top: 20px;
  left: -20px;
}

.card-2 {
  bottom: 30px;
  right: -20px;
}

.card-3 {
  top: 50%;
  left: -30px;
  transform: translateY(-50%);
}

/* MOBILE */
@media (max-width: 991px) {
  .main-img {
    height: 350px;
  }

  .about-card {
    position: static;
    margin-top: 10px;
  }
}

@media (max-width: 576px) {
  .about-features {
    grid-template-columns: 1fr;
  }

  .main-img {
    height: 280px;
  }
}

/* WHY CHOOSE US SECTION */
/* .why-choose-us {
  background: #f8fafc;
} */

.why-choose-img img {
  width: 100%;
  height: 100%;
  max-height: 550px;
  object-fit: cover;
  /* border-radius: 18px; */
}

.why-choose-content p {
  color: #6b7280;
  line-height: 1.8;
}

.why-list {
  margin-top: 10px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 0 0 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid #e5e7eb;
}

.why-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.why-icon1 {
  min-width: 56px;
  width: 56px;
  height: 56px;
  background: rgba(6, 187, 204, 0.1);
  color: #06bbcc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.why-text h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0f172a;
}

.why-text p {
  margin-bottom: 0;
  font-size: 15px;
}

/* Tablet */
@media (max-width: 991.98px) {
  .why-choose-img img {
    max-height: 420px;
  }

  .why-text h5 {
    font-size: 18px;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  .why-item {
    gap: 14px;
    padding-bottom: 18px;
    margin-bottom: 18px;
  }

  .why-icon1 {
    min-width: 48px;
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .why-text h5 {
    font-size: 17px;
  }

  .why-text p {
    font-size: 14px;
    line-height: 1.7;
  }
}
