/* Css for Product Guide Page Starts From Here */

/* SECTION WRAPPER */
.features {
  padding: 20px 10px;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .features-list {
    grid-template-columns: 1fr;
  }
}
/* CARD */
.service-card {
  border: 2px solid #1b459d;
  padding: 1rem;
  margin-bottom: 1rem;
}

/* IMAGE (FLOAT LEFT - KEY PART) */
.service_card_img {
  float: left;
  width: 100%;
  margin-right: 1rem;
}

.service_card_img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

/* CLEAR FLOAT AFTER CARD */
.service-card::after {
  content: "";
  display: block;
  clear: both;
}

/* HEADING */
.service-card > h3 {
  font-size: clamp(1.1rem, 1.4vw, 2rem);
  color: blue;
}

/* TABLET */
@media (max-width: 992px) {
  .service_card_img {
    width: 100%;
    float: none;
    margin-right: 0;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .service_card_img {
    width: 100%;
    float: none;
    text-align: center;
  }

  .service_card_img img {
    width: 100%;
  }
}


/* ========================= */
/* 📲 TABLET (<=1024px) */
/* ========================= */
@media (max-width: 1024px) {

  /* Features → 2 columns */
  .features-list {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Reduce image size slightly */
  .card-body img {
    width: auto;
  }

}

/* ========================= */
/* 📱 MOBILE (<=768px) */
/* ========================= */
@media (max-width: 768px) {

  /* Features → 1 column */
  .features-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .card-body img {
    width: 100%;
    margin: 0 0 10px 0;
  }

  /* Better text readability */
  .card-body p {
    font-size: 14px;
  }

  .service-card h3 {
    font-size: 16px;
  }

  /* Center button */
  .card-footer {
    justify-content: center;
  }

  .card-footer a {
    width: 100%;
    text-align: center;
  }
}

/* ========================= */
/* 📱 SMALL MOBILE (<=480px) */
/* ========================= */
@media (max-width: 480px) {

  .features {
    padding: 15px 10px;
  }

  .feature-item img {
    width: 16px;
    height: 16px;
  }

  /* .feature-item p {
    font-size: 13px;
  } */

  .card-body p {
    font-size: 13px;
  }
}
/* Css for Product Guide Page End Here */
