.img-icon {
  display: block;         /* Makes it a block so we can center it */
  margin: 0 auto 1rem;    /* Auto left/right centers it */
  max-width: 60px;        /* Adjust size as needed */
  height: auto;           /* Keeps proportions */
}

/* Card styling */
/*
.step-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}*/
/*
.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}*/

/* Icon styling */
.step-icon {
  display: block;
  margin: 0 auto 15px;
  max-width: 60px; /* same size for all */
  height: auto;
}

/* Title */
.step-card h5 {
  color: #1953A0; /* Corporate blue */
  margin-bottom: 10px;
}

.background-video {
  left: 40% !important;
}

.step-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

/* Image container - fixed half height */
.step-img {
  flex: 1;
  height: 200px; /* adjust for layout */
  overflow: hidden;
}

.step-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Keeps proportion, crops excess */
  display: block;
}

/* Text section */
.step-content {
  flex: 1;
  background-color: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.step-content h5 {
  color: #1953A0;
  margin-bottom: 10px;
  font-weight: 700;
}

.step-content p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #333;
}

.remove-space {
  padding-top: 0% !important;
}

