  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Segoe UI', sans-serif;
  }

  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: white;
    border-bottom: 2px solid #eaeaea;
    position: relative;
  }

  .logo {
    display: flex;
    align-items: center;
  }

  .logo img {
    height: 50px;
    margin-right: 10px;
  }

  .logo .brand {
    font-size: 24px;
    color: #00bfff;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0, 191, 255, 0.5);
  }

  .navbar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
  }

  .navbar ul {
    list-style: none;
    display: flex;
    gap: 0px;
  }

  .navbar a {
    text-decoration: none;
    font-size: 16px;
    color: #111;
    padding: 8px 12px;
    transition: all 0.3s ease;
  }

  .navbar a.active {
    border: 2px solid orange;
    padding: 8px 12px;
    color: #00bfff;
  }

  .hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
    color: #000;
    margin-left: 10px;
  }

  .call-button {
    display: none;
  }

  /* 🔧 Mobile Styles */
  @media (max-width: 768px) {
    .header {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      background-color: #FFD700;
      padding: 10px 15px;
    }

    .logo img {
      height: 40px;
    }

    .navbar ul {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 60px;
      right: 20px;
      background: #fff;
      border: 1px solid #ddd;
      padding: 10px;
      z-index: 999;
    }

    .navbar.active ul {
      display: flex;
    }

    .hamburger {
      display: block;
      margin-left: 10px;
    }

    .call-button {
      display: flex;
      align-items: center;
      color: red;
      font-weight: bold;
      font-size: 14px;
      text-decoration: none;
      margin-left: 60px;
    }

    .call-button i {
      color: red;
      margin-right: 5px;
      font-size: 18px;
    }
  }

  /* 🔧 Desktop Center Menu Update */
  @media (min-width: 769px) {
    .header {
      justify-content: center;
    }

    .logo {
      position: absolute;
      left: 20px;
    }

    .navbar {
      justify-content: center;
      flex: none;
    }
  }



  
    * {
      box-sizing: border-box;
      font-family: Arial, sans-serif;
    }

    body {
      margin: 0;
      padding: 0;
    }

    .hero-section {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      background: url('https://shubhlogisticscourier.com/assets/images/shubh-banner.webp');
      background-size: 100% 100%;
      background-repeat: no-repeat;
      padding: 60px 30px;
    }

    .hero-content {
      flex: 1 1 50%;
      color: #00bfff;
      padding: 20px;
      background: #00070973;
    }

    .hero-content h1 {
      font-size: 3em;
      color: #fff;
      margin-bottom: 10px;
    }

    .hero-content p {
      font-size: 1.2em;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .features {
      display: flex;
      gap: 20px;
      margin-top: 20px;
      font-weight: bold;
    }

    .features div {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .hero-form {
      flex: 1 1 40%;
      background-color: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
      max-width: 350px;
    }

    .hero-form h2 {
      margin-bottom: 20px;
      color: #00bfff;
      text-align: center;
    }

    .hero-form input,
    .hero-form select,
    .hero-form button {
      width: 100%;
      padding: 12px;
      margin-bottom: 15px;
      border: 1px solid #ccc;
      border-radius: 5px;
      font-size: 1em;
    }

    .hero-form button {
      background-color: #ffa500;
      color: #fff;
      border: none;
      cursor: pointer;
      font-weight: bold;
    }

    .hero-form button:hover {
      background-color: #00bfff;
    }

    .discount-text {
    color: #00bfff; /* लाल रंग */
    font-weight: bold;
    text-align: center;
    margin-top: 20px;
    font-size: 18px;
    font-family: Arial, sans-serif;
}


    @media (max-width: 768px) {
      .hero-section {
        flex-direction: column;
        padding: 30px 15px;
      }
      .hero-content, .hero-form {
        flex: 1 1 100%;
        max-width: 100%;
      }
    }
  
  

    body {
      font-family: 'Inter', sans-serif;
      margin: 0;
      background: #e6f2fc;
    }

    .services-section {
      padding: 60px 20px;
      text-align: center;
    }

    .services-section h2 {
      font-size: 32px;
      color: #002366;
      font-weight: 700;
      margin: 10px;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .service-card {
      background: #fff;
      border-radius: 20px;
      padding: 30px 20px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 25px rgba(0,0,0,0.1);
    }

    .service-card img {
      height: 50px;
      margin-bottom: 20px;
    }

    .service-card h3 {
      font-size: 20px;
      font-weight: 600;
      color: #1a1a1a;
      margin-bottom: 10px;
    }

    .service-card p {
      font-size: 14px;
      color: #555;
      margin: 0;
      line-height: 1.6;
    }
  

  
   
    /* #why choose us  */
  @import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');
.why-choose-us {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  padding: 80px 20px;
  color: #fff;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.light-effect {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  opacity: 0.3;
  z-index: 1;
  animation: glow 6s ease-in-out infinite alternate;
}

@keyframes glow {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.2); opacity: 0.7; }
}

.container {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.why-choose-us h2 {
  font-size: 42px;
  margin-bottom: 50px;
  font-weight: bold;
}

.why-choose-us h2 span {
  color: #fdb813;
}

.content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.left, .right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.center-image img {
  width: 320px;
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0px 10px 20px rgba(0,0,0,0.4);
}

.feature {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 12px;
  gap: 20px;
  transition: transform 0.4s ease, background 0.4s ease;
  cursor: pointer;
}

.feature:hover {
  transform: translateY(-8px) scale(1.02);
  /*background: rgba(255, 255, 255, 0.1);*/
}

.feature i {
  font-size: 42px;
  color: #fdb813;
  transition: transform 0.6s ease, color 0.4s ease;
}

.feature:hover i {
  transform: rotate(360deg);
  color: #00d4ff;
}

.feature h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 5px;
}

.feature p {
  font-size: 15px;
  color: #ddd;
}

/* Responsive */
@media (max-width: 992px) {
  .content {
    flex-direction: column;
  }
  .center-image {
    order: -1;
    margin-bottom: 40px;
  }
}
    
    
    
        .achievements-section {
          padding: 60px 20px;
          text-align: center;
        }
    
        .achievements-section h2 {
          font-size: 32px;
          color: #002366;
          font-weight: 700;
          margin-bottom: 50px;
        }
    
        .achievement-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
          gap: 30px;
          max-width: 1100px;
          margin: 0 auto;
        }
    
        .achievement-card {
          background: #fff;
          padding: 30px 20px;
          border-radius: 16px;
          box-shadow: 0 4px 20px rgba(0,0,0,0.05);
          transition: transform 0.3s ease;
        }
    
        .achievement-card:hover {
          transform: translateY(-5px);
        }
    
        .achievement-icon {
          font-size: 40px;
          margin-bottom: 20px;
        }
    
        .achievement-number {
          font-size: 26px;
          font-weight: 700;
          color: #000;
        }
    
        .achievement-label {
          font-size: 15px;
          color: #666;
          margin-top: 8px;
        }
    
        /* Colors for each card */
        .blue { color: #007bff; }
        .green { color: #28a745; }
        .orange { color: #fd7e14; }
        .purple { color: #6f42c1; }
      
      
      .testimonials-section {
        padding: 40px 0;
        background: #fff;
        font-family: 'Segoe UI', sans-serif;
      }
      
      .testimonial-container {
        display: flex;
        align-items: center;
        justify-content: center;
        max-width: 1200px;
        margin: auto;
        flex-wrap: wrap;
      }
      
      /* NEW: Ensure image and content stack nicely on small screens */
      .testimonial-image, .testimonial-content {
        flex: 1 1 100%;
        padding: 20px;
      }
      
      @media (min-width: 769px) {
        .testimonial-image, .testimonial-content {
          flex: 1;
        }
      }
      
      .testimonial-image img {
        max-width: 100%;
        border-radius: 10px;
      }
      
      /* Heading Styling */
      .testimonial-content h2 {
        font-size: 32px;
        font-weight: bold;
        margin-bottom: 30px;
        text-align: left;
      }
      
      @media (max-width: 768px) {
        .testimonial-content h2 {
          font-size: 24px;
          text-align: center;
        }
      }
      
      .testimonial-box {
        background: #f5f3f3;
        padding: 20px;
        border-radius: 10px;
        margin-bottom: 20px;
      }
      
      .testimonial-box .quote {
        font-size: 16px;
        color: #333;
        line-height: 1.6;
        margin-bottom: 10px;
      }
      
      .testimonial-box .author {
        color: #f5a500;
        font-weight: bold;
        text-align: right;
      }
          
 
 
 
    .services-section2 {
      padding: 20px 30px;
      max-width: 1200px;
      margin: auto;
      text-align: center;
    }

    .services-section2 h2 {
      font-size: 18px;
      color: #007bff;
      text-transform: uppercase;
      margin-bottom: 5px;
    }

    .services-section2 h3 {
      font-size: 28px;
      margin-bottom: 40px;
      color: #222;
    }

    .services-grid2 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .service-box2 {
      background: #fff;
      border: 1px solid #eee;
      border-radius: 20px;
      padding: 25px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
      transition: transform 0.3s;
    }

    .service-box2:hover {
      transform: translateY(-5px);
    }

    .service-box2 img {
      width: 100%;
      height: 180px;
      object-fit: contain;
      border-radius: 15px;
      margin-bottom: 20px;
    }

    .service-title2 {
      font-size: 18px;
      font-weight: bold;
      margin-bottom: 10px;
      color: #111;
    }

    .service-list2 {
      text-align: left;
      padding-left: 0;
      list-style: none;
    }

    .service-list2 li {
      margin-bottom: 8px;
      padding-left: 24px;
      position: relative;
      color: #333;
    }

    .service-list2 li::before {
      content: '✔';
      position: absolute;
      left: 0;
      color: orange;
      font-weight: bold;
    }

    @media (max-width: 600px) {
      .service-box2 img {
        height: 150px;
      }

      .services-section2 h3 {
        font-size: 22px;
      }
    }
  
  
  
    .footer {
      background-color: #fff;
      padding: 60px 40px 20px;
      color: #333;
      font-family: 'Segoe UI', sans-serif;
    }
  
    .footer h2 {
      text-align: center;
      font-size: 36px;
      margin-bottom: 50px;
      font-weight: bold;
    }
  
    .footer-container {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 40px;
      max-width: 1200px;
      margin: auto;
    }
  
    .footer-box {
      flex: 1;
      min-width: 250px;
    }
  
    .footer-box h3 {
      color: #00bfff;
      font-size: 22px;
      margin-bottom: 20px;
    }
  
    .footer-box p {
      line-height: 1.7;
      font-size: 15px;
    }
  
    .footer-links a {
      display: flex;
      align-items: center;
      margin-bottom: 10px;
      color: #0077cc;
      text-decoration: none;
      font-size: 15px;
    }
  
    .footer-links a i {
      color: orange;
      margin-right: 8px;
    }
  
    .footer-contact i {
      color: orange;
      margin-right: 10px;
    }
  
    .footer-contact span {
      display: block;
      margin-bottom: 10px;
      color: #333;
      font-size: 15px;
    }
  
    .footer-bottom {
      background-color: #00bfff;
      color: white;
      text-align: center;
      padding: 15px 10px;
      margin-top: 40px;
    }
  
    .footer-bottom strong {
      font-weight: bold;
    }
  
  
    
      .navbar {
        background-color: white;
        padding: 10px 20px;
        color: black;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
      }
    
      .navbar-left {
        display: flex;
        align-items: center;
      }
    
      .hamburger {
        cursor: pointer;
        display: flex;
        flex-direction: column;
        font-size: 24px;
        line-height: 24px;
        color: black;
        user-select: none;
        margin-left: auto; /* This moves it to right in flex container */
      }
    
      .menu {
        display: none;
        flex-direction: column;
        background-color: white;
        position: absolute;
        top: 60px;
        right: 20px;
        width: 180px;
        border-radius: 5px;
        overflow: hidden;
        z-index: 999;
      }
    
      .menu li {
        list-style: none;
      }
    
      .menu a {
        padding: 12px;
        text-decoration: none;
        color: black;
        display: block;
        text-align: center;
      }
    
      .menu a:hover {
        background-color: #eee;
      }
    
      @media (min-width: 768px) {
        .hamburger {
          display: none;
        }
    
        .menu {
          display: flex !important;
          position: static;
          flex-direction: row;
          background: none;
          width: auto;
        }
    
        .menu li {
          list-style: none;
        }
    
        .menu a {
          color: black;
          padding: 10px 15px;
          text-align: left;
        }
    
        .menu a:hover {
          background-color: rgba(255, 255, 255, 0.2);
        }
      }

      .tel{
        /* position: fixed; */
        display: inline;
        margin: 0;
        padding: 0;
        /* margin-top: 40px; */
        width: 40px;
        height: 40px;
        /* float: right;
        margin-right: 0;
        text-align: end; */
        color: #000;
        margin-right: -200px;
        text-decoration: none;
      }
      .num{
        margin: 0;
        padding: 0;
        margin-top: -25px;
        padding-left: 28px;
      }
      @media  screen and (max-width: 767px) {
        .tel{
          display: none;
        }
        .num{
          display: none;
        }
      }
      
    
     /* Sirf mobile ke liye show kare (max-width: 768px) */
  .mobile-cta {
    display: none;
  }
  
  @media (max-width: 768px) {
    .mobile-cta {
      display: flex;
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      z-index: 9999;
    }
  
    .mobile-cta a {
      flex: 1;
      text-align: center;
      padding: 15px 0;
      background-color: #ffc107;
      color: red;
      font-weight: bold;
      text-decoration: none;
      border-right: 1px solid white;
    }
  
    .mobile-cta a:last-child {
      border-right: none;
    }
  }
  
  .menu a {
    padding: 8px 10px;
    font-size: 12px;
}
input[type="submit"] {
    background-color: #ffa500;
}
input[type="submit"]:hover {
    background-color: #00bfff;
}
.testimonial-content {
    height: 410px;
    overflow-y: scroll;
}
body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background-color: #f9f9f9;
    }

    .about-section {
      padding: 60px 20px;
      background-color: #ffffff;
    }

    .about-container {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      max-width: 1200px;
      margin: auto;
      flex-wrap: wrap;
    }

    .about-text {
      flex: 1;
      padding: 20px;
    }

    .about-text h2 {
      font-size: 32px;
      font-weight: bold;
      margin-bottom: 20px;
      color: #333;
    }

    .about-text p {
      font-size: 16px;
      color: #555;
      line-height: 1.7;
      margin-bottom: 15px;
    }

    .about-image {
      flex: 1;
      padding: 20px;
      text-align: center;
    }

    .about-image img {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    @media (max-width: 768px) {
      .about-container {
        flex-direction: column;
        text-align: center;
      }

      .about-text h2 {
        font-size: 28px;
      }

      .about-text p {
        font-size: 15px;
      }
    }
    
     .portfolio-section {
      padding: 60px 20px;
      text-align: center;
      background: #ffffff;
    }

    .portfolio-section h2 {
      font-size: 32px;
      color: #1a237e;
      font-weight: bold;
      margin-bottom: 40px;
    }

    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .portfolio-card {
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
    }

    .portfolio-card:hover {
      transform: translateY(-5px);
    }

    .portfolio-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .portfolio-card .content {
      padding: 15px;
    }

    .portfolio-card .content h3 {
      font-size: 18px;
      color: #333;
      margin-bottom: 10px;
    }

    .portfolio-card .content p {
      font-size: 14px;
      color: #666;
    }

    @media (max-width: 768px) {
      .portfolio-card img {
        height: 150px;
      }
    }
    
     /* call to action  */
.cta-section {
    /*background: linear-gradient(to right, #007bff, #00c6ff);*/
    background-image: url("https://shubhlogisticscourier.com/assets/images/background-1.webp");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    text-align: center;
    padding: 50px 20px;
    color: white;
    border-radius: 10px;
    margin: 20px auto;
    width: 100%;
}
.cta-container {
    background: #0000004f;
}
.cta-container h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #fff;
}

.cta-container p {
    font-size: 18px;
    margin-bottom: 20px;
}

.cta-button, .cta-button-alt {
    background: white;
    color: #007bff;
    padding: 12px 25px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    font-weight: bold;
    margin: 10px;
    display: inline-block;
    transition: 0.3s;
}

.cta-button-alt {
    background: #ffcc00;
    color: #333;
}

.cta-button:hover {
    background: #0056b3;
    color: white;
}

.cta-button-alt:hover {
    background: #ff9900;
}
