.certification-modern {
  background: #f7a4bc;
  padding: 30px 20px 50px;
  font-family: 'Segoe UI', sans-serif;
}

.cert-header {
  text-align: center;
  margin-bottom: 40px;
  /* background-color: antiquewhite; */
}

.cert-header h2 {
  font-size: 2.4rem;
  color: #1e3a5f;
  margin-bottom: 10px;
}

.cert-header p {
  color: #555;
  font-size: 1rem;
}

.cert-banner {
  text-align: center;
  margin-bottom: 40px;
}
.cert-banner img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.cert-content-img {
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  padding: auto 2rem;
  /* border: 1px solid red; */
  border-radius: 12px;
  gap: 2rem;
  /* box-shadow: 0 4px 15px rgba(0,0,0,0.1); */
  margin-bottom: 20px;
}
.cert-content-img img {
  width: 380px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.cert-content{
  max-width: 900px;
  margin: auto;
  font-size: 1.1rem;
  padding-top: 20px;
  text-align: justify;
  color: #3e3e3e;
  line-height: 1.6;
}
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: auto;
}

.cert-badge {
  background: #fff;
  border-radius: 16px;
  text-align: center;
  padding: 25px 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.cert-badge:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.badge-img {
  background: #f0f4ff;
  border-radius: 50%;
  /* padding: 15px; */
  width: 100px;
  height: 100px;
  margin: auto auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-img img {
  /* max-width: 60px; */
  height: auto;
  width: 100%;
}

.cert-badge h3 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 6px;
}

.cert-badge p {
  font-size: 0.9rem;
  color: #666;
}
