  /* Wrapper for all three cards */
  .logistics-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem; /* Increased gap back to 2rem */
    max-width: 1400px; /* Increased from 1400px to provide more space for wider cards */
    margin: 1rem auto 3rem auto; /* ⬅️ Reduce top margin (was 3rem) */
    padding: 0 1rem;
  }
  
  /* Individual card */
  .logistics-card {
    background-color: #002b45;
    color: white;
    padding: 1.5rem 2.5rem; /* Increased horizontal padding from 1.5rem to 2.5rem for more text margin */
    border-radius: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    flex: 0 1 28%; /* Simplified to 28% width */
    min-width: 260px;
    box-sizing: border-box;
    transition: opacity 1.2s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1), background-color 0.3s, box-shadow 0.3s;
  }
  
  /* Modern hover effect with color shift */
  .logistics-card:hover {
    transform: translateY(-8px);
    background-color: #14475d;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18), 0 1.5px 6px rgba(0,0,0,0.10);
  }
  
  /* Card title with smooth transitions */
  .logistics-card h3 {
    margin-top: 0;
    font-size: 1.4rem; /* Increased from 1.2rem to make headers larger */
    margin-bottom: 0.8rem;
    text-align: center;
    transition: color 0.3s ease;
  }
  
  .logistics-card:hover h3 {
    color: #ffffff;
  }
  
  /* Card text with smooth transitions */
  .logistics-card p {
    margin: 0;
    line-height: 1.5;
    font-size: 1rem;
    color: #e0e0e0; /* Light text for contrast */
    transition: color 0.3s ease;
  }
  
  .logistics-card:hover p {
    color: #f0f0f0; /* Slightly brighter text on hover */
  }
  
  /* Mobile responsive: stack vertically */
  @media (max-width: 768px) {
    .logistics-card {
      flex: 1 1 100%;
      cursor: pointer;
      transition: transform 0.18s, background-color 0.18s, box-shadow 0.18s;
    }
    .logistics-card.pressed {
      transform: translateY(-2px) !important;
      background-color: #14475d !important;
      box-shadow: 0 8px 24px rgba(0,0,0,0.18) !important;
    }
    .logistics-card:active,
    .logistics-card:focus:active {
      transform: translateY(-2px) !important;
      background-color: #14475d !important;
      box-shadow: 0 8px 24px rgba(0,0,0,0.18) !important;
      transition: transform 0.18s, background-color 0.18s, box-shadow 0.18s !important;
    }
  }
  
/* --- Floating In Animation for Logistics Cards (Desktop Only) --- */
@media (min-width: 769px) {
  .logistics-card {
    opacity: 0;
    transform: translateY(20px);
    background-color: #002b45;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: opacity 2.0s cubic-bezier(0.22, 0.61, 0.36, 1), transform 2.0s cubic-bezier(0.22, 0.61, 0.36, 1), background-color 0.3s, box-shadow 0.3s;
    pointer-events: none;
  }
  .logistics-card.float-in {
    opacity: 1;
    transform: translateY(0);
    background-color: #002b45;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    pointer-events: auto;
    /* Keep the same transition as above for fade-in */
  }
  .logistics-card.float-in.hover-ready {
    transition: opacity 2.0s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.25s cubic-bezier(0.4, 0.0, 0.2, 1), background-color 0.3s, box-shadow 0.3s;
  }
  .logistics-card.float-in.hover-ready:hover {
    transform: translateY(-3px) !important;
    background-color: #14475d;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18), 0 1.5px 6px rgba(0,0,0,0.10);
  }
  .logistics-card.no-hover {
    pointer-events: none !important;
  }
}
  