/* Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.5;
}

/* Variables */
.shade {
  background-color: rgba(203, 240, 204, 0.5);
  border-radius: 20px;
  padding: 10px;
}

.med-shade {
  box-shadow: 0 16px 32px -8px rgba(0, 0, 0, 0.28);
  border-radius: 12px;
  background: rgba(203, 240, 204, 0.5);
  padding: 0px;
  transition: box-shadow 0.3s;
}

.certificates-section {
  text-align: center;
  padding: 8rem 20px 3rem;
  background: linear-gradient(to right, rgba(243, 120, 14, 0.5), rgba(243, 120, 14, 0.6));
}
.certificates-section h2 {
  font-size: 2.2rem;
  padding-top: 20px;
  color: #fff;
  font-weight: 700;
  background: #0072b1;
  border-radius: 10px 10px 0px 0px;
}
.certificates-section p {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 600;
  padding-bottom: 30px;
  background: #0072b1;
  border-radius: 0px 0px 10px 10px;
}

.certificates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 10px;
  max-width: 1200px;
  margin: auto;
  padding-top: 2rem;
}

.certificate-card {
  background: #fff;
  border-radius: 12px;
  width: 400px;
  height: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: auto;
}
.certificate-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.certificate-card img {
  width: 350px;
  border-radius: 8px;
  border: 2px solid rgba(122, 191, 14, 0.4);
  -o-object-fit: fill;
     object-fit: fill;
  transition: transform 0.3s ease;
}
.certificate-card img:hover {
  transform: scale(1.05);
}

.certificate-title {
  margin-top: 10px;
  font-weight: bold;
  font-size: 1.1rem;
  color: #2c3e50;
}

/* Responsive */
@media (max-width: 600px) {
  .certificates-section h2 {
    font-size: 1.5rem;
  }
  .certificate-title {
    font-size: 1rem;
  }
}/*# sourceMappingURL=certi.css.map */