/* General Styles */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
    color: #0a1f44;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Header */
  header {
    background: #ffffff;
    padding: 10px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 999;
  }
  
  .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .logo {
    height: 70px;
    width: auto;
  }
  
  nav {
    position: relative;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
  }
  
  .nav-links::-webkit-scrollbar {
    width: 6px;
  }
  
  .nav-links::-webkit-scrollbar-thumb {
    background: #a57927;
    border-radius: 10px;
  }
  
  .nav-links li a {
    text-decoration: none;
    color: #0a1f44;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s;
  }
  
  .nav-links li a:hover {
    color: #FFD700;
  }
  
  .hamburger {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: #0a1f44;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1002;
  }
  
  /* Hero Section */
  .hero {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 120px 20px;
    color: #ffffff;
  }
  
  #particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a1f44, #000000);
    z-index: 0;
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: auto;
  }
  
  .hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
  }
  
  .hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
  }
  
  .hero-content button {
    padding: 12px 30px;
    font-size: 18px;
    background: #FFD700;
    border: none;
    color: #0a1f44;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .hero-content button:hover {
    background: #e6c200;
  }
  
  /* Sections */
  .overview,
  .services,
  .why-choose,
  .be-eliteemp,
  .success-numbers,
  .industries,
  .contact,
  .how-we-work,
  .latest-articles,
  .testimonials {
    padding: 60px 20px;
    text-align: center;
  }
  
  .services,
  .be-eliteemp,
  .how-we-work,
  .latest-articles,
  .industries {
    background: #f9f9f9;
  }
  
  .success-numbers,
  .overview,
  .contact,
  .testimonials {
    background: #ffffff;
  }
  
  .service-cards,
  .choose-cards,
  .options,
  .numbers,
  .industry-list,
  .steps,
  .testimonial-cards,
  .article-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
  }
  
  .card,
  .service-card,
  .choose-card,
  .option,
  .testimonial,
  .article-card,
  .step {
    background: #ffffff;
    border: 2px solid #0a1f44;
    padding: 30px 20px;
    border-radius: 8px;
    flex: 1 1 280px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .card:hover,
  .service-card:hover,
  .choose-card:hover,
  .article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .service-card img {
    max-width: 100px;
    height: auto;
    margin-bottom: 20px;
  }
  
  .card h3,
  .choose-card h3,
  .option h3,
  .article-card h3,
  .step h3 {
    font-size: 20px;
    color: #0a1f44;
    margin-bottom: 10px;
  }
  
  .card p,
  .choose-card p,
  .option p,
  .testimonial p,
  .article-card p {
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 10px;
  }
  
  .option,
  .choose-card,
  .step {
    background: #0a1f44;
    color: white;
  }
  
  .option h3,
  .choose-card h3,
  .step h3 {
    color: #FFD700;
  }
  
  .option .btn,
  .article-card a {
    background: #FFD700;
    color: #0a1f44;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
  }
  
  .option .btn:hover,
  .article-card a:hover {
    background: #e6c200;
  }
  
  .contact form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: auto;
  }
  
  .contact input,
  .contact textarea {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  .contact button {
    padding: 15px;
    background: #0a1f44;
    color: #fff;
    border: none;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .contact button:hover {
    background: #a57927;
    color: #0a1f44;
  }
  
  footer {
    background: #0a1f44;
    color: #fff;
    text-align: center;
    padding: 20px 0;
  }
  
  /* Responsive Design */
  @media (max-width: 992px) {
    .card,
    .choose-card,
    .option,
    .testimonial,
    .article-card,
    .step,
    .industry,
    .service-card {
      width: 90%;
    }
  }
  
  @media (max-width: 768px) {
    .nav-links {
      position: fixed;
      top: 0;
      right: -100%;
      width: 60%;
      height: 100vh;
      background-color: #ffffff;
      flex-direction: column;
      align-items: flex-start;
      padding: 80px 20px 20px;
      box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
      transition: right 0.3s ease-in-out;
      z-index: 1000;
    }
  
    .nav-links.active {
      right: 0;
    }
  
    .nav-links li {
      width: 100%;
      margin-bottom: 15px;
    }
  
    .nav-links li a {
      font-size: 18px;
      padding: 10px 0;
      display: block;
      transition: background 0.3s;
    }
  
    .nav-links li a:hover {
      background-color: #FFD700;
      color: #0a1f44;
      padding-left: 10px;
      border-radius: 4px;
    }
  
    .hero-content h1 {
      font-size: 32px;
    }
  
    .hero-content p,
    .card p,
    .choose-card p,
    .option p,
    .testimonial p,
    .article-card p {
      font-size: 14px;
      line-height: 1.4;
    }
  
    .hero-content button,
    .option .btn,
    .article-card a {
      font-size: 16px;
      padding: 10px 20px;
    }
  
    .card h3,
    .choose-card h3,
    .option h3,
    .testimonial h4,
    .article-card h3 {
      font-size: 18px;
    }
  }

  @media (max-width: 768px) {
    .hamburger {
        display: block;
        font-size: 30px;
        cursor: pointer;
        color: #0a1f44;
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 1002;
      
        /* Remove these lines 👇 */
        /* background: #ffffff; */
        /* padding: 5px 10px; */
        /* border-radius: 5px; */
        /* box-shadow: 0 0 8px rgba(0, 0, 0, 0.1); */
      }
      
  
    .nav-links {
      flex-direction: column;
      align-items: flex-start;
      position: fixed;
      top: 0;
      right: -100%;
      width: 60%;
      height: 100vh;
      background-color: #ffffff;
      padding: 80px 20px 20px;
      box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
      transition: right 0.3s ease-in-out;
      z-index: 1000;
    }
  
    .nav-links.active {
      right: 0;
    }
  
    .nav-links li {
      width: 100%;
      margin-bottom: 15px;
    }
  
    .nav-links li a {
      color: #0a1f44;
      text-decoration: none;
      font-size: 18px;
      display: block;
      width: 100%;
      padding: 10px 0;
      transition: background 0.3s;
    }
  
    .nav-links li a:hover {
      background-color: #FFD700;
      color: #0a1f44;
      padding-left: 10px;
      border-radius: 4px;
    }
  }
  

  .nav-links {
    max-height: 300px; /* या अपने हिसाब से height set करें */
    overflow-y: auto;
    overflow-x: hidden;
  }
  
  .nav-links::-webkit-scrollbar {
    width: 6px;
  }
  
  .nav-links::-webkit-scrollbar-thumb {
    background: #a57927;
    border-radius: 10px;
  }
    .whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  width: 65px;
  height: 65px;
  background: linear-gradient(145deg, #25d366, #1ebe5d);
  border-radius: 50%;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.whatsapp-float img {
  width: 36px;
  height: 36px;
  filter: brightness(0) invert(1); /* makes icon white */
}
