  /* Global Font Styles */
body {
      font-family: "Varela", sans-serif;
}

h1, h2, h3, h4, h5, h6, .call-btn {
      font-family: "Varela", sans-serif;
}

   .navbar-brand {
  font-size: 1.6rem;
  letter-spacing: 1px;
  color: #00aaff!important;


}

.navbar .nav-link {
  color: #ddd;
  transition: 0.3s;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #fff;
}

.navbar .btn-primary {
  background-color: #00aaff;
  border-color: #00aaff;
}
/* Banner Styling */
.netwave-banner {
  background: #0d0f10; /* Pink-orange gradient */
  min-height: 90vh;
  padding: 60px 0;
  overflow: hidden;
  position: relative;
}

.elements-wrapper {
  position: relative;
  width: 250px;
  height: 250px;
  margin: 0 auto;
}

.signal-circle {
  position: absolute;
  border: 2px solid #fff;
  border-radius: 50%;
  animation: pulse 3s infinite ease-in-out;
  opacity: 0.4;
}

.signal-circle.one {
  width: 80px;
  height: 80px;
  top: 85px;
  left: 85px;
}

.signal-circle.two {
  width: 140px;
  height: 140px;
  top: 55px;
  left: 55px;
  animation-delay: 0.3s;
}

.signal-circle.three {
  width: 200px;
  height: 200px;
  top: 25px;
  left: 25px;
  animation-delay: 0.6s;
}

.big-icon {
  font-size: 48px;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes pulse {
  0%, 100% {
    transform: scale(0.9);
    opacity: 0.4;
  }
  50% {
    transform: scale(1);
    opacity: 0.8;
  }
}


.netwave-about ul li i {
  color: #00aaff;
}
.about-icon-box {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.about-icon-box:hover {
  transform: scale(1.1);
}
.btn-outline-primary{
  color: #00aaff;
  border: 1px solid #00aaff;;
}

.icon-circle {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.bg-gradient-blue {
  background: linear-gradient(135deg, #00b4db, #0083b0);
}

.bg-gradient-green {
  background: linear-gradient(135deg, #00c853, #64dd17);
}

.bg-gradient-orange {
  background: linear-gradient(135deg, #ff6f00, #ff8f00);
}

.service-card:hover {
  transform: translateY(-5px);
  transition: 0.3s ease;
}
.netwave-cta .btn:hover {
  background-color: #ffd700;
  color: #000;
}
.benefit-card:hover {
  transform: translateY(-8px);
  transition: 0.3s ease-in-out;
}
.netwave-benefits{
  background: #fff;
}
.netwave-top-features{
  background:  #f6f9ff;
}