:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-fda026e */.services-new {
  position: relative;
  background: #000;
  padding: 100px 20px;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

/* ===== ANIMATED NETWORK BACKGROUND ===== */
.services-new::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  z-index: 0;

  background-image:
    radial-gradient(circle, rgba(0,212,164,0.3) 2px, transparent 2px),
    linear-gradient(rgba(0,212,164,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,164,0.08) 1px, transparent 1px);

  background-size: 
    80px 80px,
    80px 80px,
    80px 80px;

  animation: moveNetwork 25s linear infinite;
}

@keyframes moveNetwork {
  0% {
    transform: translate(0,0);
  }
  100% {
    transform: translate(80px,80px);
  }
}

/* HEADER */
.overlay {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: auto;
  margin-bottom: 60px;
}

.overlay h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #fff;
}

.overlay p {
  color: #aaa;
  font-size: 14px;
}

/* GRID */
.services-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

/* CARD */
.service-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 40px 20px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

/* HOVER EFFECT */
.service-box::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(0,212,164,0.2), transparent);
  top: 0;
  left: -100%;
  transition: 0.5s;
}

.service-box:hover::before {
  left: 100%;
}

.service-box:hover {
  transform: translateY(-10px);
  border-color: #00d4a4;
  box-shadow: 0 10px 30px rgba(0,212,164,0.3);
}

/* TEXT */
.service-box h3 {
  font-size: 16px;
  line-height: 1.5;
  color:#fff;
}

/* ===== REMOVE UNDERLINE COMPLETELY ===== */
a,
a:link,
a:visited,
a:hover,
a:active,
.service-link,
.service-link * {
  text-decoration: none !important;
  color: inherit;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .service-box {
    padding: 25px 10px;
  }

  .service-box h3 {
    font-size: 13px;
  }

  .overlay h2 {
    font-size: 26px;
  }
}/* End custom CSS */