.transport-hero-section {
    height: 60vh;
    min-height: 500px;
    background:
        url(https://www.cm.com/cdn/web/hero/logistic-industry-hero-medium.jpg) center / cover no-repeat;
    position: relative;
    display: flex;
    overflow: hidden;
}

/* .background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #e7f5ff;
    opacity: 0.7;
    z-index: 1;
} */



/* Remove card-body or extra wrappers if not needed */

.transport-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background-color: rgba(209, 232, 235, 0.268);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  max-width: 400px;
  height: auto; /* IMPORTANT: Let content define height */
  overflow: hidden;
}

/* Fixed image height (does NOT stretch the card) */
.transport-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  flex-shrink: 0;
}

/* Sub-card takes full space */
.sub-card {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.2rem;
  background-color: rgb(231, 239, 247) !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border-radius: 0;
  margin: 0;
}

/* Ensure .transport-card fills height of its parent (col) */
.transport-card {
  display: flex;
  flex-direction: column;
}

/* Make sure the image doesn't stretch */
.transport-card img {
  height: 180px;
  object-fit: cover;
  flex-shrink: 0;
}

/* Let .card-body grow and push .sub-card to the bottom */
.transport-card .card-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0;
}

/* Make all .sub-card heights equal */
.sub-card {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.2rem;
  background-color: rgb(231, 239, 247) !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border-radius: 0;
  margin: 0;
}


.transport-card {
  background-color: rgba(209, 232, 235, 0.268);
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  max-width: 400px;
  height: auto;
  max-height: 410px;
  transition: transform 0.3s ease;
}

.transport-card:hover {
  transform: translateY(-5px);
}

.transport-card img {
  width: 100%;
  height: 180px;
  display: block;
  filter: brightness(0.8);
}

.transport-card .card-body {
  padding: 1.5rem;
}

.transport-card h5 {
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.transport-card p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.sub-card {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    bottom: 80px;
    background-color: rgb(231, 239, 247) !important;
    border-radius: 0px;
    z-index: 10;
}




.improved-card {
  position: relative;
  max-width: 360px;
  background: #fff;
  border: 2px solid #fa923d;
  border-radius: 16px;
  padding: 40px 20px 20px 20px;
  color: #444;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  overflow: visible;
  margin: 20px auto;
  background-color: #fff;
}

.card-header {
  position: absolute;
  top: -25px;
  left: 30px;
  background: #fa923d;
  padding: 10px 36px 10px 36px;
  border-radius: 100px !important;
  box-shadow: 0 4px 8px rgba(5, 4, 4, 0.1);
  user-select: none;
  display: flex;
  align-items: center;
}

/* .card-icon {
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  background: #fff;
  border: 2.5px solid var(--secondary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 3px 6px rgb(248 195 40 / 0.3);
}

.card-icon img {
  width: 18px;
  height: 18px;
  filter: drop-shadow(0 1px 0 rgba(0,0,0,0.05));
} */

.card-body {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-top: 10px;
  color: var(--gray);
  padding-left: 10px;
}


.feature-card {
    display: flex;
    align-items: flex-start;
  }
  .feature-icon {
    width: 40px;
    height: 40px;
    border: 2px solid #5c4def;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #5c4def;
  }
  .feature-content {
    display: flex;
    flex-direction: column;
  }
  .feature-title {
    margin: 0 0 6px 0;
  }
  .feature-desc {
    color: #7a7a7a;
    font-size: 14px;
    margin: 0;
  }
  /* SVG icon style */
  .feature-icon svg {
    width: 24px;
    height: 24px;
  }
