/* Leading Logistics Section Styles */

.leading_logistics {
  width: 94%;
  max-width: 1100px;
  margin: 60px auto;
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.leading_logistics:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.leading_logistics:before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 123, 255, 0.08) 0%, transparent 70%);
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(1deg); }
}

.leading_logistics .title_area {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.leading_logistics .title {
  font-size: 36px;
  font-weight: bold;
  color: #2c3e50;
  margin: 0;
  position: relative;
  display: inline-block;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.leading_logistics .title:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #007bff, #0056b3);
  border-radius: 2px;
  animation: expand 0.8s ease-out 0.5s both;
}

@keyframes expand {
  from { width: 0; }
  to { width: 80px; }
}

.leading_logistics .content_area {
  padding: 0 80px;
  position: relative;
  z-index: 2;
}

.leading_logistics .content_area p {
  font-size: 17px;
  line-height: 1.8;
  color: #495057;
  margin: 0;
  text-align: justify;
  white-space: break-spaces;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tablet Styles */
@media screen and (max-width: 1023px) {
  .leading_logistics {
    width: 92%;
    padding: 60px 0;
    margin: 40px auto;
  }

  .leading_logistics .title {
    font-size: 30px;
  }

  .leading_logistics .title:after {
    width: 60px;
    height: 3px;
  }

  .leading_logistics .content_area {
    padding: 0 50px;
  }

  .leading_logistics .content_area p {
    font-size: 16px;
  }
}

/* Mobile Styles */
@media screen and (max-width: 767px) {
  .leading_logistics {
    width: 92%;
    padding: 40px 0;
    margin: 20px auto;
  }

  .leading_logistics .title {
    font-size: 24px;
  }

  .leading_logistics .title:after {
    width: 40px;
    height: 2px;
    bottom: -10px;
  }

  .leading_logistics .content_area {
    padding: 0 25px;
  }

  .leading_logistics .content_area p {
    font-size: 14px;
    line-height: 1.6;
  }

  .leading_logistics:hover {
    transform: none;
  }
} 