.nbn-section {
    background-color: #f5f8ff;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
  }
  
  .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  position: relative;
  z-index: 2;
  background-color: rgba(245, 248, 255, 0.9);
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  opacity: 0.8;
}
  
  .container h2 {
    color:  #ff6e05;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .nbn-content {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .nbn-content p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  
  .nbn-benefits h3 {
    color:  #ff6e05;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
  }
  
  .benefit-item {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .benefit-item p {
    color: #333;
    font-size: 1rem;
  }
  
  .cta-container-1 {
    text-align: center;
  }
  
  .cta-button-3 {
    display: inline-block;
    background-color: #ff6e05;
    color: #ffffff;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .cta-button-3:hover {
    background-color: #d02c68;
    transform: translateY(-3px);
  }
  
  .particles-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  
  @keyframes dataTransfer {
    0% {
      stroke-dashoffset: 1000;
    }
    100% {
      stroke-dashoffset: 0;
    }
  }
  
  #particles-js canvas {
    position: absolute;
    top: 0;
    left: 0;
  }
  
  #particles-js .particles-js-canvas-el {
    animation: dataTransfer 20s linear infinite;
  }
  
  @media (max-width: 768px) {
    .benefits-grid {
      grid-template-columns: 1fr;
    }
  }
  @keyframes dataTransfer {
    0% {
      stroke-dashoffset: 1000;
    }
    100% {
      stroke-dashoffset: 0;
    }
  }
  #particles-js canvas {
    position: absolute;
    top: 0;
    left: 0;
  }
  
  #particles-js .particles-js-canvas-el {
    animation: dataTransfer 20s linear infinite;
  }  
  .nbn-advantage {
    --primary-color: #3a4d8c;
    --secondary-color: #2c3e50;
    --bg-color: #f8f9fa;
    font-family: 'Poppins', sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
    background-color: var(--bg-color);
  }
  
  .nbn-advantage__title {
    text-align: center;
    /*color: var(--secondary-color);*/
    font-size: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
    font-weight: 700;
  }
  
  .nbn-advantage__title::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
  }
  
  .nbn-advantage__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  .nbn-advantage__card {
    background-color: #fff;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .nbn-advantage__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  }
  
  .nbn-advantage__icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
  }
  
  .nbn-advantage__card h3 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
  }
  
  .nbn-advantage__card p {
    color: #34495e;
    font-size: 1rem;
    line-height: 1.6;
  }
  
  @media (max-width: 768px) {
    .nbn-advantage__grid {
      grid-template-columns: 1fr;
    }
  }
  .nbn-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

h1 {
  font-size: 2.5em;
  color: #34495e;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature h2 {
  color: #3498db;
  font-size: 1.5em;
  margin-bottom: 15px;
  position: relative;
  text-align: left;
}

.feature h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 50px;
  height: 3px;
  background: #3498db;
  transition: width 0.3s ease;
  
}

.feature:hover h2::after {
  width: 100px;
}

.feature p {
  color: #555;
  line-height: 1.6;
}