 /* Global Font Styles */
body {
  font-family: "Work Sans", sans-serif;

}

h1, h2, h3, h4, h5, h6, .call-btn {
     font-family: "Work Sans", sans-serif;
      }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

       header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 30px;
      border-bottom: 1px solid #ccc;
    }
    .logo {
      font-size: 1.5rem;
      font-weight: bold;
    }
    nav {
      display: flex;
      gap: 20px;
    }
    nav a {
      text-decoration: none;
      color: #000;
      font-weight: 500;
      position: relative;
    }
    nav a:hover::after,
    nav a.active::after {
      content: "";
      position: absolute;
      width: 100%;
      height: 2px;
      background: #000;
      bottom: -5px;
      left: 0;
    }
    .top-links {
      display: flex;
      gap: 15px;
      font-size: 0.9rem;
    }
    .banner {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 40px 20px;
      background: linear-gradient(to right, #f1f9ff, #ffffff);
    }
    .banner h1 {
      font-size: 2.5rem;
      color: #0056cc;
      margin-bottom: 10px;
    }
    .banner p {
      font-size: 1.1rem;
      margin-bottom: 30px;
    }
    .plans {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      max-width: 1000px;
      margin: 0 auto 40px;
    }
    .plan {
      background: #fff;
      border: 1px solid #ccc;
      border-radius: 10px;
      padding: 20px;
      width: 300px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    .plan h2 {
      color: #0056cc;
      margin-bottom: 10px;
    }
    .plan ul {
      list-style: none;
      text-align: left;
      margin-bottom: 15px;
    }
    .plan ul li {
      margin-bottom: 8px;
    }
    .price {
      font-size: 1.8rem;
      font-weight: bold;
    }
    .check-speed {
      text-align: center;
      margin-bottom: 40px;
    }
    .check-speed input {
      padding: 10px;
      width: 300px;
      max-width: 90%;
      border: 1px solid #ccc;
      border-radius: 5px;
    }
    .check-speed button {
      padding: 10px 20px;
      margin-left: 10px;
      border: none;
      background: #00ad6d;
      color: #fff;
      border-radius: 5px;
      cursor: pointer;
    }
    .next-section {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-around;
      padding: 60px 20px;
      background-color: #fff;
    }
    .next-section .content {
      max-width: 500px;
    }
    .next-section h2 {
      font-size: 2rem;
      color: #0056cc;
      margin-bottom: 15px;
    }
    .next-section p {
      font-size: 1.1rem;
      margin-bottom: 15px;
    }
    .next-section a {
      color: #0056cc;
      text-decoration: underline;
    }
    .next-section button {
      margin-top: 20px;
      padding: 12px 25px;
      font-size: 1rem;
      background: #f9f9f9;
      border: 1px solid #00ad6d;
      border-radius: 4px;
      color: #000;
      cursor: pointer;
    }
    .next-section img {
      max-width: 100%;
      height: auto;
    }
    .mobile-menu-icon {
      display: none;
      font-size: 1.5rem;
    }
    @media screen and (max-width: 768px) {
      nav {
        display: none;
        flex-direction: column;
        gap: 10px;
        position: absolute;
        top: 60px;
        right: 30px;
        background: #fff;
        padding: 20px;
        border: 1px solid #ccc;
      }
      nav.show {
        display: flex;
      }
      .mobile-menu-icon {
        display: block;
        cursor: pointer;
      }
      .next-section {
        flex-direction: column;
        text-align: center;
      }
    }

    .features-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  padding: 40px 20px;
  background-color: #fff;
  text-align: center;
}

.feature-item {
  flex: 1 1 200px;
  margin: 20px;
}

.feature-item i {
  font-size: 2.5rem;
  color: #0056cc;
  margin-bottom: 10px;
}

.feature-item p {
  font-size: 1rem;
  font-weight: 500;
}


.fiber-benefits {
  background-color: #fff;
  padding: 60px 0;
}

.fiber-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}


.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.fiber-text {
  flex: 1 1 45%;
  max-width: 600px;
}

.fiber-text h2 {
  font-size: 2rem;
  color: #0056cc;
  margin-bottom: 20px;
}

.fiber-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.fiber-text a {
  color: #0056cc;
  text-decoration: underline;
}

.fiber-text button {
  background: #f9f9f9;
  border: 1px solid #00ad6d;
  color: #000;
  padding: 14px 30px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
}

.fiber-image {
  flex: 1 1 45%;
  text-align: center;
}

.fiber-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

@media screen and (max-width: 768px) {
  .fiber-benefits {
    flex-direction: column;
    text-align: center;
  }

  .fiber-text, .fiber-image {
    flex: 1 1 100%;
  }
}


.fiber-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.fiber-icon {
  text-align: center;
  max-width: 140px;
}

.fiber-icon p {
  font-weight: 600;
  margin-bottom: 10px;
}

.fiber-icon img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}


.testimonial-rating {
  background-color: #f2f2f2;
  text-align: center;
  padding: 60px 20px;
}

.testimonial-rating h2 {
  font-size: 1.8rem;
  color: #0046c0;
  margin-bottom: 10px;
}

.rating-text {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.stars-box {
  display: inline-flex;
  background: #fff;
  padding: 12px 20px;
  border-radius: 20px;
  box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.1);
  margin: 15px 0;
  font-size: 2rem;
}

.star {
  color: #00d4b2;
  margin: 0 5px;
}

.star.half {
  position: relative;
}
.star.half::after {
  content: '★';
  position: absolute;
  color: #ccc;
  left: 0.5em;
  width: 50%;
  overflow: hidden;
}

.highlight-text {
  font-size: 1.1rem;
  margin: 25px 0 10px;
  color: #0046c0;
  font-weight: 500;
}

.call-now-btn {
  margin-top: 15px;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  background-color: #00ad6d;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.call-now-btn:hover {
  background-color: #009a60;
}

.disclaimer {
  font-size: 0.8rem;
  color: #333;
  margin-top: 15px;
}


.premium-wifi {
  background-color: #f2f2f2;
  text-align: center;
  padding: 60px 20px;
}

.premium-wifi h2 {
  font-size: 2rem;
  color: #0046c0;
}

.premium-wifi .subtitle {
  font-size: 1.5rem;
  margin-bottom: 40px;
  color: #111;
}

.wifi-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 30px;
}

.feature-box {
  max-width: 220px;
}

.check-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #00c084;
  margin: 0 auto 15px;
  font-size: 28px;
  color: #0046c0;
  line-height: 50px;
}

.feature-box h4 {
  color: #0046c0;
  margin-bottom: 8px;
}

.feature-box p {
  font-size: 0.95rem;
  color: #333;
}

.learn-more-btn {
  padding: 10px 25px;
  font-weight: 600;
  background: #f8f8f8;
  border: 1px solid #00c084;
  cursor: pointer;
  transition: background 0.3s ease;
}

.learn-more-btn:hover {
  background: #e6f7f1;
}

.disclaimer {
  margin-top: 15px;
  font-size: 0.8rem;
  color: #333;
}


.new-home-section {
  background: #fff;
  padding: 60px 20px;
}

.new-home-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.new-home-image img {
  max-width: 300px;
  width: 100%;
  height: auto;
}

.new-home-content {
  max-width: 600px;
}

.new-home-content h2 {
  font-size: 2rem;
  color: #0046c0;
  margin-bottom: 15px;
}

.new-home-content p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 25px;
}

.customer-options {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.option {
  text-align: center;
}

.outline-btn {
  padding: 10px 24px;
  margin-top: 8px;
  font-weight: bold;
  color: #000;
  border: 1px solid #00c084;
  background-color: #f8f8f8;
  cursor: pointer;
  transition: all 0.3s ease;
}

.outline-btn:hover {
  background-color: #e6f7f1;
}


.site-footer {
  background: #f2f2f2;
  color: #333;
  font-size: 0.95rem;
  padding-top: 40px;
  border-top: 1px solid #ddd;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 40px;
}

.footer-logo h3 {
  font-size: 1.5rem;
  color: #0046c0;
  margin-bottom: 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin: 8px 0;
}

.footer-links a {
  text-decoration: none;
  color: #0046c0;
}

.footer-contact p {
  margin: 6px 0;
}

.disclaimer-section {
  border-top: 1px solid #ccc;
  padding: 20px;
  background-color: #e9e9e9;
  text-align: center;
  font-size: 0.85rem;
}

.disclaimer-text {
  margin-bottom: 10px;
  color: #444;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}


.services-section {
  padding: 60px 20px;
  background: #ffffff;
  text-align: center;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-section h2 {
  font-size: 2rem;
  color: #0046c0;
  margin-bottom: 10px;
}

.services-intro {
  font-size: 1rem;
  margin-bottom: 40px;
  color: #555;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background: #f9f9f9;
  padding: 25px 20px;
  border-radius: 10px;
  transition: box-shadow 0.3s ease;
}

.service-card i {
  font-size: 2.5rem;
  color: #0046c0;
  margin-bottom: 15px;
}

.service-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #0046c0;
}

.service-card p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}

.service-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.contact-section {
  padding: 60px 20px;
  background-color: #f5f5f5;
  text-align: center;
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
}

.contact-section h2 {
  font-size: 2rem;
  color: #0046c0;
}

.contact-intro {
  margin-bottom: 40px;
  color: #555;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.contact-form button {
  padding: 12px 30px;
  background-color: #0046c0;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #003399;
}

.contact-info {
  text-align: left;
}

.info-block {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  color: #444;
}

.info-block i {
  font-size: 1.3rem;
  color: #0046c0;
  margin-right: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    text-align: center;
  }

  .info-block {
    justify-content: center;
  }
}

.about-us-text-only {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: left;
}

/*.about-us-text-only .container {
  max-width: 900px;
  margin: 0 auto;
}*/

.about-us-text-only h2 {
  font-size: 2rem;
  color: #0046c0;
  margin-bottom: 20px;
}

.about-us-text-only p {
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}
