.services-section {
    /* background-color: #004aad; */
    background: linear-gradient(135deg, #004aad, #002f6c);
    padding: 60px 0;
    text-align: center;
    color: white;
    max-width: 100%;
    width: 100%;
    overflow-x: hidden;
  }
  
  /* Animate heading with fade + scale */
  /* .services-heading {
    opacity: 0;
    transform: translateY(-30px) scale(0.95);
    transition: all 1s ease;
  }
  
  .services-heading.active {
    opacity: 1;
    transform: translateY(0) scale(1);
  } */



  /* Animate heading from bottom with ease-out */
  /* .services-heading {
    transform: translateY(60px);
    transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  }
  
  .services-heading.active {
    transform: translateY(0);
  } */
  
  .services-heading {
    transform: translateY(80px);
    transition: transform 1.5s cubic-bezier(0.25, 1, 0.35, 1);
  }
  
  .services-heading.active {
    transform: translateY(0);
  }
  
  
  /* Animate service items from bottom smoothly */
  /* .service-item {
    text-align: center;
    flex: 1;
    min-width: 180px;
    padding: 10px;
    transform: translateY(60px);
    transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  }
  
  .service-item.active {
    transform: translateY(0);
  } */
  

  .service-item {
    text-align: center;
    flex: 1;
    min-width: 180px;
    padding: 10px;
    transform: translateY(80px);
    transition: transform 1.3s cubic-bezier(0.25, 1, 0.35, 1); /* slow smooth ease-out */
  }
  
  .service-item.active {
    transform: translateY(0);
  }
  
  
  .service-item:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 12px 25px rgba(163, 239, 130, 0.2);
  }
  





  
  .services-heading h2 {
    font-size: 2.7rem;
    font-weight: bold;
    font-style: italic;
    text-transform: uppercase;
    color: #a3ef82;
  }
  
  .services-heading p {
    font-size: 1.2rem;
    margin-top: 10px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Service Grid */
  .services-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 70px;
    margin-top: 30px;
    width: 100%;
    /* overflow: hidden; */
  }
  
  /* Animate service items with fade + scale */
  /* .service-item {
    text-align: center;
    flex: 1;
    min-width: 180px;
    padding: 10px;
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  
  .service-item.active {
    opacity: 1;
    transform: translateY(0) scale(1);
  } */
  
  /* Optional: Glow on hover */
  /* .service-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(163, 239, 130, 0.25);
  } */
  
  /* Images inside service */
  .service-item img {
    width: 150px;
    height: auto;
    margin-bottom: 15px;
  }
  
  .service-box {
    background-color: white;
    color: #004aad;
    padding: 10px 15px;
    width: 100%;
    font-size: 0.65rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 0px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  .services-grid + .services-grid {
    margin-top: 60px;
  }
  
  /* Responsive Breakpoints */
  @media (min-width: 1400px) {
    .services-grid {
      max-width: 1200px;
      margin: 0 auto;
      justify-content: center;
    }
  
    .service-item {
      max-width: 200px;
    }
  }
  
  @media (min-width: 1800px) {
    .services-grid {
      max-width: 1400px;
    }
  
    .service-item img {
      width: 180px;
    }
  }
  
  @media (max-width: 1400px) {
    .service-item {
      min-width: 120px;
      padding: 5px;
    }
  
    .service-item img {
      width: 110px;
    }
  
    .services-heading h2 {
      font-size: 2.3rem;
    }
  
    .services-heading p {
      font-size: 1rem;
    }
  }
  
  @media (max-width: 1200px) {
    .services-grid {
      gap: 40px;
    }
  
    .service-item img {
      width: 90px;
    }
  }
  
  @media (max-width: 991px) {
    .services-heading h2 {
      font-size: 2.2rem;
    }
  
    .services-heading p {
      font-size: 1.05rem;
      padding: 0 20px;
    }
  
    .services-grid {
      gap: 40px;
      justify-content: center;
      padding: 0 20px;
    }
  
    .service-item {
      flex: 1 1 40%;
      max-width: 45%;
    }
  
    .service-item img {
      width: 120px;
    }
  
    .service-box {
      font-size: 0.7rem;
    }
  }
  
  @media (max-width: 576px) {
    .services-section {
      padding: 40px 15px;
    }
  
    .services-heading h2 {
      font-size: 1.8rem;
    }
  
    .services-heading p {
      font-size: 1rem;
    }
  
    .services-grid {
      flex-direction: column;
      align-items: center;
      gap: 30px;
    }
  
    .service-item {
      flex: 1 1 100%;
      max-width: 90%;
    }
  
    .service-item img {
      width: 100px;
    }
  
    .service-box {
      font-size: 0.75rem;
      padding: 12px 18px;
    }
  }
  
  @media (hover: none) {
    .service-item:hover {
      transform: none;
      box-shadow: none;
    }
  }
  