  /* Gallery Page Styling */
  .gallery-container {
    max-width: 1200px !important;
    width: 100% !important;
    text-align: center !important;
  }

  .gallery-container h1 {
    color: #0a0c85 !important;
    margin-bottom: 20px !important;
    margin-top: 50px !important;
    font-size: 2.5em !important;
    animation: slideInFromLeft 1s ease-in-out !important;
  }
 .gallery-container h1 span{
     color:#ff161a !important;
 }
  .gallery {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
    gap: 15px !important;
    padding: 10px 30px !important;
  }

  .gallery img {
    width: 100% !important;
    height: 200px !important;
    border-radius: 12px !important;
    /*border: 4px solid #1565c0 !important;*/
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease !important;
    opacity: 1 !important;
    transform: scale(0.8) !important;
    animation: fadeInZoom 1s ease forwards !important;
  }

  /* Stagger animation effect */
  .gallery img:nth-child(odd) { animation-delay: 0.3s !important; }
  .gallery img:nth-child(even) { animation-delay: 0.6s !important; }

  /* Hover Effects */
  .gallery img:hover {
    transform: scale(1.05) rotate(1deg) !important;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3) !important;
    opacity: 1 !important;
  }

  /* Animation Keyframes */
  @keyframes fadeInZoom {
    from {
      opacity: 0 !important;
      transform: scale(0.8) !important;
    }
    to {
      opacity: 1 !important;
      transform: scale(1) !important;
    }
  }

  @keyframes slideInFromLeft {
    from {
      opacity: 0 !important;
      transform: translateX(-50px) !important;
    }
    to {
      opacity: 1 !important;
      transform: translateX(0) !important;
    }
  }

  /* Responsive Design */
  @media screen and (max-width: 600px) {
    h1 {
      font-size: 1.8em !important;
    }
  }
  
  
  
  
  
  /*Contact page styling*/
  
     .responsive-section1 {
      position: relative !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      text-align: center !important;
      min-height: 600px !important;
      width: 100% !important;
    }

    .responsive-section1 img {
      position: absolute !important;
      top: 0 !important;
      left: 0 !important;
      width: 100% !important;
      height: 100% !important;
      /*object-fit: cover !important;*/
      z-index: -1 !important;
      filter: brightness(100%) !important;
    }

    .responsive-section1 .content {
      color: #fff !important;
      padding: 0px !important;
      max-width: 225px !important;
      position: relative !important;
      top: 118px !important;
      left: -27px !important;
}
  

    /*.responsive-section1 .content button {*/
    /*  padding: 10px 20px !important;*/
    /*  font-size: 18px !important;*/
    /*  font-weight:700 !important;*/
    /*  background-color: yellow !important;*/
    /*  color: #000000 !important;*/
    /*  border: none !important;*/
    /*  cursor: pointer !important;*/
    /*  border-radius: 5px !important;*/
    /*}*/

    /*.responsive-section1 .content button:hover {*/
    /*  background-color: black !important;*/
    /*  color:#ffffff !important;*/
    /*}*/

    /* Responsive Styles */
    @media (max-width: 768px) {
        .responsive-section1 .content {
      color: #fff !important;
      padding: 0px !important;
      max-width: 225px !important;
      position: relative !important;
      top: 100px !important;
      left: 0px !important;
}
   .responsive-section1 {
      min-height: 500px !important;
    }
   
    }

    @media (max-width: 480px) {
   
    }
   .responsive-section1 .content button {
      padding: 10px 20px !important;
      font-size: 1rem !important;
      background: linear-gradient(45deg, #ffff00, #ffff00) !important;
      border: none !important;
      border-radius: 5px !important;
      color: #000000 !important;
      cursor: pointer !important;
      box-shadow: 0 0 15px rgba(255, 255, 0), 0 0 25px rgba(255, 0, 102, 0.5) !important;
      transition: all 0.3s ease-in-out !important;
    }

  .responsive-section1 .content button:hover {
      box-shadow: 0 0 25px rgba(232, 239, 34, 1), 0 0 35px rgba(255, 0, 102, 1) !important;
      transform: scale(1.05) !important;
        background: linear-gradient(45deg, #000000, #000000) !important;
         color: #ffffff !important;
    }

    /* Pop-up container */
    .popup-overlay {
      position: fixed !important;
      top: 0 !important;
      left: 0 !important;
      width: 100% !important;
      height: 100% !important;
      background: rgba(0, 0, 0, 0.8);
      display: none ;
      justify-content: center !important;
      align-items: center !important;
      z-index: 1000 !important;
    }

    .popup {
      background: linear-gradient(135deg, #222, #333) !important;
      padding: 30px !important;
      border-radius: 10px !important;
      box-shadow: 0 0 15px rgba(255, 255, 0), 0 0 25px rgba(255, 255, 0) !important;
      max-width: 400px !important;
      width: 100% !important;
    }

    .popup h2 {
      text-align: center !important;
      margin-bottom: 20px !important;
      color: #ffff00 !important;
    }

    .popup form {
      display: flex !important;
      flex-direction: column !important;
    }

    .popup form input,
    .popup form textarea {
      margin-bottom: 15px !important;
      padding: 10px !important;
      border: 1px solid #ffff00 !important;
      background: transparent !important;
      color: #fff !important;
      border-radius: 5px !important;
      font-size: 1rem !important;
    }

    .popup form input:focus,
    .popup form textarea:focus {
      outline: none !important;
      box-shadow: 0 0 10px #ffff00 !important;
    }

    .popup form button {
      padding: 10px !important;
      font-size: 1rem !important;
      background: linear-gradient(45deg, #ffff00, #ffff00) !important;
      border: none !important;
      border-radius: 5px !important;
      color: #000 !important;
      cursor: pointer !important;
      box-shadow: 0 0 15px rgba(0, 255, 204, 0.5), 0 0 25px rgba(0, 204, 255, 0.5) !important;
      transition: all 0.3s ease-in-out ;
    }

    .popup form button:hover {
      box-shadow: 0 0 25px rgba(0, 255, 204, 1), 0 0 35px rgba(0, 204, 255, 1) !important;
      transform: scale(1.05) !important;
    }

    .popup-close {
      position: absolute !important;
      top: 10px !important;
      right: 10px !important;
      background: transparent !important;
      border: none !important;
      font-size: 1.5rem !important;
      color: #fff !important;
      cursor: pointer !important;
    }
    
    /*man power page service section*/

.service-section2 {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 30px !important;
    padding: 50px 100px !important;
    background-color: white !important;
    box-sizing: border-box !important;
    text-align: center !important;
}

/* Individual service box styles */
.service-box2 {
    background: transparent !important;
    padding: 10px !important;
    border-radius: 10px !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease-in-out !important;
}

.service-box2:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2) !important;
}

.service-logo {
    max-width: 120px !important;
    height: auto !important;
    margin-bottom: 20px !important;
}

.service-box2 h3 {
    font-size: 20px !important;
    margin-bottom: 15px !important;
    color: #333 !important;
}

 .service-box2 p {
    font-size: 15px !important;
    color: #666 !important;
    line-height: 1.6 !important;
    margin-bottom: 0 !important;
    text-align:justify !important;
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
    .service-section2 {
        grid-template-columns: repeat(3, 1fr) !important;
        padding: 40px 80px !important;
    }
}

@media screen and (max-width: 900px) {
    .service-section2 {
        grid-template-columns: repeat(2, 1fr) !important;
        padding: 30px 60px !important;
    }
}

@media screen and (max-width: 600px) {
    .service-section2 {
        grid-template-columns: 1fr !important;
        padding: 20px 30px !important;
    }

    .service-logo {
        max-width: 100px !important;
    }

   .service-box2 h3 {
        font-size: 1.4em !important;
    }

   .service-box2 p {
        font-size: 0.95em !important;
    }
}
