/* ===== Reset and Base Styles ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}
body {
  background: #f8f9fa;
  color: #333;
}
/* ===== Navigation Bar ===== */
nav {
  padding: 7px 30px; /* Reduced vertical padding */
  background: white;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
nav .logo {
  font-size: 24px;
  font-weight: bold;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}
nav ul li a {
  color: black;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  font-weight: bold;
}
nav ul li a:hover {
  color: rgb(11, 114, 233);
}
/* Industry Icon Styling */
.industry-icon {
  font-size: 48px;
  color: #0d6efd;
  transition: transform 0.3s ease;
}
.industry-icon:hover {
  transform: scale(1.2);
  color: #063d99;
}
h6 {
  font-weight: 600;
  color: #333;
}
footer .social-icons a {
  transition: color 0.3s ease, transform 0.3s ease;
}
footer .social-icons a:hover {
  color: #0d6efd;
  transform: scale(1.2);
}



.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  text-decoration: none; /* This removes the underline */
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.whatsapp-float:hover {
  background-color: #1ebd59;
  transform: scale(1.1);
}

.facebook i {
  color: #1877F2; /* Facebook Blue */
}

.instagram i {
  color: #E1306C; /* Instagram Pink/Red */
}

.twitter i {
  color: #1DA1F2; /* Twitter Blue */
}

.whatsapp i {
  color: #25D366; /* WhatsApp Green */
}
.social-icons a:hover i {
  opacity: 0.8;
  transform: scale(1.1);
  transition: 0.3s ease;
}


/* Section Styling */
.logistics-section {
  background-color: #f4f9fc;
}

/* Heading Box */
.section-heading {
  background: #0077b6;
  box-shadow: 0 4px 12px rgba(0, 119, 182, 0.3);
  display: inline-block;
  width: 100%;
}

/* Paragraph */
.logistics-section p {
  text-align: center;
  line-height: 1.8;
}

/* Key Points */
.keypoints {
  list-style: none;
  padding-left: 0;
  text-align: left;       /* align text nicely */
  display: inline-block;  /* keeps list centered as a group */
  font-size: 16px;
  line-height: 1.8;
}

.keypoints li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  color: #333;
  transition: all 0.3s ease;
}

.keypoints li i {
  color: #0077b6;
  margin-right: 8px;
  transition: transform 0.3s ease;
}

.keypoints li:hover {
  color: #005f73;
  transform: translateX(5px);
}

.keypoints li:hover i {
  transform: scale(1.2);
}

/* ========================
   1. Large Desktops (≥1200px)
   ======================== */
@media (min-width: 1200px) {
  nav ul {
    gap: 35px; /* wider spacing on big screens */
  }
  .logistics-section p {
    font-size: 18px;
  }
  .keypoints {
    font-size: 17px;
  }
}

/* ========================
   2. Laptops & Tablets Landscape (992px–1199px)
   ======================== */
@media (max-width: 1199px) and (min-width: 992px) {
  nav ul {
    gap: 20px;
  }
  nav .logo {
    font-size: 22px;
  }
  .logistics-section p {
    font-size: 16px;
    padding: 0 20px;
  }
  .keypoints {
    font-size: 15px;
  }
}

/* ========================
   3. Tablets Portrait & Large Phones (768px–991px)
   ======================== */
@media (max-width: 991px) and (min-width: 768px) {
  nav {
    flex-wrap: wrap;
    padding: 10px 15px;
  }
  nav ul {
    flex-wrap: wrap;
    gap: 15px;
  }
  .logistics-section p {
    font-size: 15px;
    padding: 0 15px;
  }
  .keypoints {
    font-size: 14px;
  }
}

/* ========================
   4. Small Mobile Devices (≤767px)
   ======================== */
@media (max-width: 767px) {
  nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
  }
  nav ul {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    padding: 0;
  }
  nav ul li {
    width: 100%;
  }
  nav .logo {
    margin-bottom: 10px;
    font-size: 20px;
  }
  .logistics-section p {
    font-size: 14px;
    padding: 0 10px;
  }
  .keypoints {
    font-size: 14px;
    display: block; /* stacked neatly */
    width: 100%;
    text-align: left;
  }
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 15px;
    right: 15px;
  }
}


