/* Css for Product Guide Page Starts From Here */

/* SECTION WRAPPER */
.features {
  padding: 20px 10px;
}

/* GRID LIST */
.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

/* ITEM */
.feature-item {
  display: flex;
  align-items: center;
  color: #333;
  margin: .5rem 0;
}
.service_card_content > p span{
  color: var(--hiperlink)
}

/* ICON */
.feature-item img {
  width: 1.2em;
  height: 1.2em;
  margin-right: 10px;
  object-fit: contain;
}

/* 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;
}

/* TEXT CONTENT */
/* IMPORTANT: no overflow, no flex */
.service_card_content {
  display: none;
}

/* 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;
}

/* FOOTER */
.card-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 1rem;
}

/* BUTTON STYLE */
.card-footer a {
  display: inline-block;
  background: var(--background);
  padding: 10px 24px;
  border-radius: 25px;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* HOVER EFFECT */
.card-footer a:hover {
  box-shadow: 0px 12px 30px rgba(0, 0, 0, 0);
  transform: translateY(-3px);
}

/* 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 */
