/* General Styles */
.certification-section {
  width: 100%;
  padding: 40px 0;
  text-align: center;
}

.certifications_heading {
  text-align: center;
  margin-bottom: 30px;
  color: #fff;
}

.certifications_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 0 20px;
}

.certifications_container img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certifications_container img:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Large Screens (Above 1199px) - Display in a Single Row */
@media (min-width: 1200px) {
  .certifications_container {
      flex-wrap: nowrap;
      justify-content: center;
  }
}

/* Tablet Screens (Below 1199px) - Wrap as Needed */
@media (max-width: 1199px) {
  .certifications_container {
      flex-wrap: wrap;
      justify-content: center;
  }
}

/* Mobile Screens (Below 768px) */
@media (max-width: 768px) {
  .certifications_container {
      flex-direction: row;
      flex-wrap: wrap;
  }

  .certifications_container img {
      max-width: 80px;
  }
}

/* Very Small Screens (Below 480px) */
@media (max-width: 480px) {
  .certifications_container {
     
      align-items: center;
  }

  .certifications_container img {
              width: 50px;
      height: 50px;
  }
}
  }
}
