/* ===============================
   CERTIFICATIONS SECTION
================================ */

.certification-section {
  background: #f8fafc;
}

.cert-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  transition: all 0.35s ease;
  height: 100%;
}

.cert-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(13, 110, 253, 0.35);
}

/* ===============================
   CERTIFICATE IMAGE – BIG & CLEAR
================================ */

.cert-card img {
  width: 100%;
  height: 300px;              /* 🔥 pehle 220px tha */
  object-fit: contain;        /* certificate full dikhe */
  background: #ffffff;
  padding: 18px;              /* border se thoda gap */
  border-radius: 12px;
  border: 1px solid #e5e7eb;  /* light frame feel */
}


.cert-card h5 {
  font-size: 18px;
  font-weight: 600;
  color: #0d1b2a;
  margin-bottom: 10px;
}

.cert-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #475569;
}

/* Responsive */
@media (max-width: 768px) {
  .cert-card img {
    height: 180px;
  }
}
/* ===============================
   CERTIFICATION INFO CARDS
================================ */

.cert-info {
  margin-top: 60px;
}

/* Card */
.info-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 26px;
  text-align: center;
  height: 100%;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  transition: all 0.35s ease;
}

/* Hover Effect */
.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(13, 110, 253, 0.35);
}

/* Icon */
.info-card i {
  font-size: 44px;
  color: #0d6efd;
  margin-bottom: 16px;
  display: inline-block;
}

/* Title */
.info-card h6 {
  font-size: 17px;
  font-weight: 600;
  color: #0d1b2a;
  margin-bottom: 10px;
}

/* Text */
.info-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 576px) {
  .info-card {
    padding: 28px 22px;
  }

  .info-card i {
    font-size: 38px;
  }
}
