.freight-carousel-section {
  margin: auto;
  /* padding: 40px 20px; */
}

.section-title {
  font-size: 2rem;
  margin-bottom: 30px;
}

/* Card container */
.freight-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  min-height: 600px; /* Changed to min-height for flexibility */
}



/* Content wrapper */
.freight-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Heading */
.freight-card-content h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

/* Paragraph text */
.freight-card-content p {
  flex: 1;
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 20px;
  max-height: 200px; /* Prevent overflow with long text */
  overflow: auto; /* Scroll or hide overflow */
  min-height: 100px; /* Ensure consistent spacing for short text */
}

/* Button styles */
.freight-card .btn {
  background: #0262ED;
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  transition: background 0.3s ease;
}

.freight-card .btn:hover {
  background: #005f88;
}

/* Swiper pagination bullets */
.swiper-pagination-bullet {
  background-color: #005f88 !important;
  opacity: 0.4 !important;
  width: 12px !important;
  height: 12px !important;
  border-radius: 50% !important;
  margin: 0 8px !important; /* Slightly increased for better spacing */
}

.swiper-pagination-bullet-active {
  background-color: #0262ED !important;
  opacity: 1 !important;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .section-title {
    font-size: 1.75rem;
  }
  .freight-card-content h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.5rem;
  }
  .freight-card-content
  {
    flex:0;
  }
  .freight-card .btn {
font-size: small;
  }
  .freight-card {
    padding: 15px;
    min-height: 500px; /* Adjusted for smaller screens */
  }
  .freight-img {
    height: 30vw; /* Relative unit for better scaling */
    max-height: 180px;
  }
  .freight-card-content p {
    font-size: 0.9rem;
    max-height: 150px; /* Adjusted for smaller screens */
  }
  
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.3rem;
  }
  .freight-card-content h3 {
    font-size: 1.1rem;
  }
  .freight-card-content p {
    font-size: 0.85rem;
    max-height: 120px;
  }
  .freight-img {
    height: 25vw; /* Further adjusted for small screens */
    max-height: 150px;
  }
}