/* CONTAINER WRAPPER FOR 1200PX WIDTH */
.air-express-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* MAIN AIR EXPRESS SECTION */
.air-express-section {
  padding: 60px 40px;
  background: linear-gradient(135deg, #f1fdf1, #e9ffe9);
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 128, 0, 0.1);
  margin-top: 60px;
  font-family: 'Poppins', sans-serif;
  color: #2d2d2d;
  position: relative;
  overflow: hidden;
}

.air-express-section::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: rgba(31, 126, 0, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.air-express-section h2 {
  font-size: 32px;
  color: #1f7e00;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
  background: -webkit-linear-gradient(#1f7e00, #146300);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 1;
}

.air-express-section h3 {
  font-size: 22px;
  color: #222;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.air-express-section p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.air-express-section ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  position: relative;
  z-index: 1;
}

.air-express-section ul li {
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.6;
  position: relative;
}

.air-express-section ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #1f7e00;
  font-weight: 600;
}

.air-express-section .cta {
  text-align: center;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.air-express-section .cta p {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.air-express-section .cta a {
  background: #1f7e00;
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 128, 0, 0.3);
  transition: background 0.3s ease, transform 0.2s ease;
}

.air-express-section .cta a:hover {
  background: #146300;
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .air-express-section {
    padding: 40px 25px;
  }
}

@media (max-width: 768px) {
  .air-express-section {
    padding: 30px 20px;
  }

  .air-express-section h2 {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .air-express-section {
    padding: 25px 15px;
  }

  .air-express-section .cta a {
    display: block;
    width: 100%;
  }
}



  /* Container & Form Styling */
 .courier-search-box {
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px 20px;
  background: linear-gradient(135deg, #f9f9ff, #e6f7ff);
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 128, 0.08);
  font-family: 'Poppins', sans-serif;
  color: #2d2d2d;
}

.courier-search-box h1 {
  font-size: 30px;
  font-weight: 700;
  color: #1f7e00; /* Green */
  text-align: center;
}

.courier-search-box form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 500px;
  margin: 0 auto;
}

.courier-search-box label {
  font-size: 16px;
  font-weight: 600;
}

.courier-search-box input[type="text"] {
  padding: 12px 16px;
  font-size: 16px;
  border: 2px solid #0073e6;
  border-radius: 8px;
  outline: none;
  transition: border 0.3s ease;
}

.courier-search-box input[type="text"]:focus {
  border-color: #003366;
}

.courier-search-box button {
  padding: 14px 20px;
  background: #1f7e00;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.courier-search-box button:hover {
  background: #008c1f;
}

.courier-search-box p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 16px;
  text-align: center;
}

.courier-search-box .cta {
  text-align: center;
  margin-top: 30px;
}

.courier-search-box .cta p {
  font-size: 18px;
  font-weight: 600;
}

.courier-search-box .cta a {
  display: inline-block;
  margin-top: 10px;
  background: #28a745;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
  transition: background 0.3s ease, transform 0.2s ease;
}

.courier-search-box .cta a:hover {
  background: #008c1f;
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .courier-search-box {
    padding: 30px 15px;
  }

  .courier-search-box h1 {
    font-size: 26px;
  }

  .courier-search-box form {
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .courier-search-box {
    padding: 25px 12px;
  }

  .courier-search-box input[type="text"],
  .courier-search-box button {
    font-size: 15px;
    width: 100%;
  }

  .courier-search-box .cta a {
    width: 100%;
    text-align: center;
  }
}



/* Table Section */
.courier-container {
  font-family: Arial, sans-serif;
  margin: 40px auto;
  max-width: 1200px;
  padding: 0 15px;
}
.courier-container h1 {
  text-align: center;
  margin-bottom: 30px;
}
.courier-container h2 {
  background: #1f7e00;
  color: #fff;
  padding: 12px;
  margin-top: 30px;
  border-radius: 5px;
  font-size: 22px;
}
.table-wrapper {
  overflow-x: auto;
  margin-top: 10px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}
th, td {
  padding: 14px 16px;
  border: 1px solid #ddd;
  text-align: left;
  font-size: 16px;
}
th {
  background-color: #f4f4f4;
  font-weight: bold;
}
tr:nth-child(even) {
  background-color: #f9f9f9;
}
.fa-stopwatch {
  color: #0b5ed7;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    margin: 20px;
    padding: 15px;
  }
  h1 {
    font-size: 24px;
  }
  input, button {
    font-size: 15px;
  }
  th, td {
    padding: 12px;
    font-size: 15px;
  }
  .courier-container h2 {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 12px;
  }
  h1 {
    font-size: 20px;
  }
  input, button {
    font-size: 14px;
  }
  th, td {
    padding: 10px;
    font-size: 14px;
  }
  .courier-container h2 {
    font-size: 18px;
    text-align: center;
  }
  table {
    font-size: 14px;
  }
}


/**-- blog --**/
              .blog-section {
            width: 90%;
            max-width: 1920px;
            margin: 50px auto;
        }
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }
        .blog-post {
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: transform 0.3s ease;
        }
        .blog-post:hover {
            transform: translateY(-10px);
        }
        .blog-post img {
            width: 100%;
            height: 230px;
            object-fit: cover;
        }
        .blog-post-content {
            padding: 20px;
        }
        .blog-post-title {
            font-size: 1.5em;
            margin: 0 0 10px;
            color: #333;
        }
        .blog-post-excerpt {
            font-size: 1em;
            line-height: 1.6;
            color: #666;
        }
        .read-more {
            display: inline-block;
            margin-top: 15px;
            padding: 10px 20px;
            background-color: #1f7e00;
            color: #fff;
            text-decoration: none;
            border-radius: 4px;
        }
        .read-more:hover {
            background-color: #146300;
        }
        
