.elementor-19 .elementor-element.elementor-element-b64de1c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-c16d4c3 *//* Card Containers */
.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); /* Responsive grid layout */
  gap: 20px; /* Space between cards */
  justify-items: center; /* Center align cards */
}

.card, .process-card {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease-in-out;
}

.card h3, .process-card h3 {
  font-size: 22px;
  color: #0056D2;
  margin-bottom: 15px;
}

.card p, .process-card p {
  font-size: 16px;
  color: #666;
}

.card:hover, .process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .card, .process-card {
    width: 48%; /* Adjust cards to be slightly larger but still fit two per row */
  }
}

@media (max-width: 480px) {
  .card, .process-card {
    width: 100%; /* On mobile, each card will take up the full width */
  }
}

/* Animation */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.animate__fadeIn {
  animation: fadeIn 1.5s ease-out forwards;
}

.animate__fadeInUp {
  animation: fadeInUp 1.5s ease-out forwards;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate__delay-1s {
  animation-delay: 1s;
}

.animate__delay-2s {
  animation-delay: 2s;
}

.animate__delay-3s {
  animation-delay: 3s;
}

.animate__delay-4s {
  animation-delay: 4s;
}

.animate__delay-5s {
  animation-delay: 5s;
}/* End custom CSS */