:root {
    --primary: #0066cc;
    --primary-dark: #004f9e;
    --secondary: #ff9900;
    --dark: #212529;
    --light: #f8f9fa;
    --white: #ffffff;
    --transition: all 0.3s ease;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    color: var(--dark);
    overflow-x: hidden;
  }
  /* Header */
.VelocityWaveEchoConnect {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 0.5rem 0;
  }
  
  /* Hero Section */
  .ComboSpeedNetworkPulse {
    min-height: 85vh;
    background: linear-gradient(rgba(0, 102, 204, 0.8), rgba(0, 79, 158, 0.9)), 
                url('../img/background.webp') center/cover no-repeat;
    padding-top: 80px;
    color: #fff;
  }
  
  /* Plan Cards */
  .plan-card {
    transition: var(--transition);
  }
  
  .plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
  }
  
  .price-tag {
    color: var(--primary);
  }
  
  /* Features */
  .shadow-hover {
    transition: var(--transition);
  }
  
  .shadow-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
  }
  
  .feature-icon i {
    color: var(--primary);
  }
  
  /* About Section */
  .accent-shape {
    background-color: var(--primary);
    z-index: -1;
  }
  
  .accent-shape-alt {
    background-color: var(--secondary);
    z-index: -1;
  }
  
  .stat-icon {
    font-size: 1.5rem;
  }
  
  /* Testimonials */
  .avatar {
    width: 50px;
    height: 50px;
    font-weight: bold;
  }
  
  /* Metrics */
  .stats-container {
    background-color: var(--white);
  }
  
  .metric-box {
    padding: 1.5rem;
    transition: var(--transition);
  }
  
  .metric-box:hover {
    transform: translateY(-5px);
  }
  
  /* CTA Section */
  .cta-section {
    position: relative;
  }
  
  .cta-container {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  
  .cta-container:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url('../images/pattern.svg') repeat;
    opacity: 0.05;
    z-index: -1;
  }
  
  /* Contact Form */
  .form-control:focus, .form-select:focus {
    border-color: rgba(0, 102, 204, 0.25);
    box-shadow: 0 0 0 0.25rem rgba(0, 102, 204, 0.1);
  }
  
  .form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
  }
  
  /* Cookie Consent */
  .cookie-consent {
    display: block;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.95;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 992px) {
    .ComboSpeedNetworkPulse {
      min-height: auto;
      padding: 120px 0 50px;
    }
  }
  
  /* Fiber and Mobile Pages */
  .FiberQuantumNetPulse,
  .MobileDataUltraSonic,
  .LegalPulsePolicyDock,
  .SignupVelocityCenter {
    min-height: 50vh;
    background: linear-gradient(rgba(0, 102, 204, 0.8), rgba(0, 79, 158, 0.9)), 
                url('../images/section-bg.webp') center/cover no-repeat;
    padding-top: 80px;
    color: #fff;
  }
  
  /* Tech Icons */
  .tech-icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Service Cards */
  .service-type-card {
    cursor: pointer;
    transition: var(--transition);
  }
  
  .service-type-card:hover {
    border-color: var(--primary) !important;
    background-color: rgba(0, 102, 204, 0.05);
  }
  
  .form-check-input:checked + .service-type-card {
    border-color: var(--primary) !important;
    background-color: rgba(0, 102, 204, 0.05);
  }
  
  .plan-select-card {
    cursor: pointer;
    transition: var(--transition);
  }
  
  .plan-select-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary) !important;
  }
  
  /* Terms Page */
  .nav-pills .nav-link {
    color: var(--dark);
    border-radius: 0.5rem;
  }
  
  .nav-pills .nav-link.active {
    background-color: var(--primary);
  }
  
  /* Footer */
  footer a:hover {
    color: var(--secondary) !important;
  }

 
    input[name="serviceType"]:checked + label {
        border-color: #0d6efd !important;
        background-color: rgba(13, 110, 253, 0.05);
    }
    

    input[name="selectedPlan"]:checked + label {
        border-width: 2px;
        box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    }
    
   
    .card {
        transition: all 0.2s ease;
        cursor: pointer;
    }
    
    .card:hover {
        transform: translateY(-3px);
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    }