/* Updated Header Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color:  #f9f9f9;
  }
  header {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #fff;
    color: #333;
    min-height: 80px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    
  }
  
  header .logo img {
    max-width: 150px;
    height: auto;
  }
  
  header nav {
    display: flex;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
  }
  
  .nav-links li {
    margin: 0 15px;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 1rem;
    transition: color 0.3s;
  }
  
  .nav-links a:hover {
    color: #00bcd4;
  }
  
  /* Hamburger Menu Styles */
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
   
  }
  
  .hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    border-radius: 3px;
    transition: 0.3s;
    
  }
  
  
 
  
  
  
  
  
  /* Slider Section */
  .slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 80px; /* Adjust for header height */
  }
  
  .slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  
  .slide {
    min-width: 100%;
    height: auto;
  }
  
  .slide img {
    width: 100%;
    height: auto;
  }
  .slider_text {
    position: absolute;
    top: 25%;
    left: 50%;
  }
  
  /* Dots for Slider Navigation */
  .dots-container {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
  }
  
  .dot {
    width: 20px;
    height: 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 10%;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  
  .dot.active {
    background-color: rgba(255, 255, 255, 1);
  }




  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .slides img {
      height: auto;
    }
  }

/* why choose Section*/
  .why-choose-us {
    padding: 50px 10px;
    background-color: #fff;
    text-align: center;
}

.why-choose-us h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #020202;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.feature-item {
    
    color: rgb(56, 56, 56);
    border-radius: 10px;
    padding: 20px;
    width: 250px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    text-align: center;
}

.feature-item:hover {
    transform: scale(1.05);
}

.feature-item i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #d84949;
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.why_heading {
    display: flex;
    align-items: center;
    justify-content: center;
}
.choose_logo {
    max-height: 3rem;
    padding-left: 15px;
}



 /* Payloads Section*/
  

/* Base Styling */
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

/* Section Header */
.payload_heasing h2 {
  text-align: center;
  font-size: 2.5rem;
  margin: 40px 0 20px;
  color: #222;
}

/* Grid Container */
.payloads_section .payload-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 0 5%;
  max-width: 1200px;
  margin: 0 auto 60px;
}

/* Individual Item */
.payload-item {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.payload-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.payload-item img {
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: contain;
  border-radius: 8px;
}

.payload-item h3 {
  margin: 15px 0 10px;
  font-size: 1.25rem;
  color: #005792;
}

.payload-item p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

  /* Hover effect for .payload-item */
  .payload-item:hover {
    transform: translateY(-10px); /* Lift the card slightly */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Enhance the shadow */
  }
  
  .payload-item:hover img {
    transform: scale(1.1); /* Slight zoom on the image */
  }

  /* Benefit Section*/
  .benefit_heading h2 {
    text-align: center;
    font-size: 2rem;
    color: #333;
    margin-bottom: 0.5rem;
  }
  
  .section-description {
    text-align: center;
    font-size: 1rem;
    color: #555;
    margin-bottom: 2rem;
  }
  
  #benefits-features {
    padding: 2rem;
    background-color: #f9f9f9;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
  }
  
  .feature-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  
  .icon-container {
    background-color: #00bcd4;
    color: white;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
  }
  
  .feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #222;
  }
  
  .feature-card p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
  }
  

  




  /* Service Heading */
  .solutions {
    text-align: center;
    padding: 50px 20px;
  }
  
  .solutions h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
  }
  
  .solutions p {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 30px;
  }
  
  .view-all {
    display: inline-block;
    margin-bottom: 40px;
    text-decoration: none;
    color: #ffcc00;
    font-weight: bold;
  }
  
  .solution_cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .solution_card {
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    width: 300px;
    height: auto;
    text-align: left;
  }
  
  .solution_card img {
    width: 100%;
    height: 500px;
    object-fit: cover;
  }
  
  .card-content {
    padding: 15px;
  }
  
  .card h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
  }
  
  .card p {
    color: #555;
    line-height: 1.5;
  }
  
  /* Products Section */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
  }
  
  /* Product Center Section */
  .product-center h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
  }
  
  .product-center .view-all {
    font-size: 1rem;
    font-weight: bold;
    color :#ffcc00;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 40px;
  }
  
  .product-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .product-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    width: 300px;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #f1f1f1;
  }
  
  .product-card h3 {
    font-size: 1.2rem;
    color: #333;
    margin: 10px 0;
  }
  
  .product-card p {
    font-size: 0.9rem;
    color: #555;
    padding: 0 10px;
    margin-bottom: 15px;
    line-height: 1.5;
  }
  
  .product-card .learn-more {
    font-size: 0.9rem;
    color: #d32f2f;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 0;
    display: inline-block;
    transition: color 0.3s;
  }
  
  .product-card .learn-more:hover {
    color: #f56a6a;
  }
  
  .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .product-card {
        width: 100%;
    }
  
    .product-card img {
        height: 180px;
    }
  
    .product-center h1 {
        font-size: 2rem;
    }
  }
  
  @media (max-width: 480px) {
    .product-card img {
        height: 150px;
    }
  
    .product-center h1 {
        font-size: 1.8rem;
    }
  }

  
  /* Footer */
  
  /* Mobile (max-width: 768px) */
  @media (max-width: 768px) {
    /* Navigation Links (Hidden Initially) */
    .nav-links {
      display: none;
      flex-direction: column;
      width: 100%;
      position: absolute;
      top: 70px; /* Adjust based on header height */
      left: 0;
      background: #fff;
      padding: 1rem 0;
      box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
      z-index: 100;
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .nav-links li {
      margin: 10px 0;
      text-align: center;
    }
  
    /* Hamburger Menu Styles */
    .hamburger {
      display: flex;
      flex-direction: column;
      cursor: pointer;
      gap: 4px;
      position: absolute;
      right: 20px; /* Position hamburger on the right side */
      top: 35px; /* Align with header height */
      z-index: 110; /* Ensure it’s above other elements */
    }
  
    .hamburger span {
      width: 25px;
      height: 3px;
      background-color: #333;
      border-radius: 3px;
      transition: 0.3s;
    }
  
    /* Header Adjustments for Mobile */
    header {
      flex-direction: row;
      justify-content: space-between; /* Ensure spacing between logo and hamburger */
      align-items: center;
      padding: 1rem;
    }
  
    /* Align navigation links below header */
    header nav ul {
      flex-direction: column;
      align-items: flex-start;
      margin-top: 1rem;
    }
  
    header nav ul li {
      margin: 0.5rem 0;
    }
  
    /* Hero Section */
    .slider {
      
      margin-top: 80px; /* Adjust for header height */
    }
    .hero h2 {
      font-size: 2rem; /* Smaller headline size */
      margin-bottom: 1rem;
    }
  
    .hero p {
      font-size: 1rem;
      margin-bottom: 1.5rem;
    }
  
    .cta-btn {
      font-size: 1rem;
      padding: 0.8rem 1.5rem;
    }
  
    /* Services Section */
    .services {
      padding: 2rem 1rem;
    }
  
    .service {
      flex-basis: 100%; /* Each service takes full width */
      max-width: 100%;
    }
  
    .service img {
      max-height: 300px;
    }
  
    /* Products Section */
    .products {
      padding: 1rem 1rem;
      flex-direction: column;
      align-items: center;
      gap: 1rem; /* Reduce gaps for better spacing */
    }
  
    .product {
      max-width: 100%; /* Products take full width */
      margin: 1rem 0;
    }
  
    .product img {
      max-width: 100%;
      height: auto;
    }
    .product_heading h1 {
        font-size: 2rem;
    }
    /* Contact Form */
    .contact form {
      padding: 0 1rem;
    }
  
    .contact input,
    .contact textarea {
      width: 90%; /* Reduce width for smaller screens */
    }
  }
  
  /* Tablet (max-width: 1024px) */
  @media (max-width: 1024px) {
    /* Hero Section */
    .hero h2 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }
  
    .hero p {
      font-size: 1.2rem;
    }
  
    /* Products Section */
    .product {
      max-width: 48%; /* Two products per row */
    }
  
    /* Services Section */
    .services {
      padding: 2rem;
      flex-direction: row;
      flex-wrap: wrap; /* Ensure items wrap properly */
    }
  
    .service {
      flex-basis: 48%; /* Two services per row */
      margin: 1rem;
    }
  
    /* Product Heading */
    .product_heading {
      font-size: 2rem;
    }
  
    /* Contact Form */
    .contact form {
      width: 90%; /* Reduce form width slightly */
    }
  }
  
  