  * { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: Arial, sans-serif; }

    /* Top Contact Bar */
    .top-bar {
      background: #fff;
      padding: 10px 20px;
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 25px;
      border-bottom: 1px solid #ddd;
      flex-wrap: wrap;
    }

    .top-bar a {
      color: #0074cc;
      font-size: 14px;
      text-decoration: none;
    }

    .top-bar i {
      margin-right: 6px;
    }

    /* Header */
    header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 15px 20px;
      flex-wrap: wrap;
    }

/*    .logo img {
      height: 40px;
    }
*/
    nav {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    nav a {
      text-decoration: none;
      color: #003087;
      font-weight: bold;
      padding: 10px 15px;
      transition: 0.3s;
    }

    nav a:hover {
      background: #003087;
      color: white;
      border-radius: 4px;
    }

    /* Submenu */
    .submenu {
      display: flex;
      justify-content: center;
      border-top: 1px solid #ccc;
      border-bottom: 2px solid #003087;
      background: white;
      padding: 10px;
      flex-wrap: wrap;
    }

    .submenu a {
      margin: 0 15px;
      color: #003087;
      text-decoration: none;
      font-weight: bold;
    }

    .submenu a:hover {
      text-decoration: underline;
    }

    /* Banner */
    .banner {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      padding: 40px 20px;
      background: #003087;
      color: white;
    }

    .banner-text {
      flex: 1 1 400px;
    }

    .banner-text h1 {
      font-size: 2.5rem;
      margin-bottom: 15px;
    }

    .banner-text p {
      margin-bottom: 25px;
      font-size: 1.1rem;
      line-height: 1.5;
    }

    .address-box {
      background: #f58121;
      padding: 20px;
      border-radius: 6px;
      display: flex;
      max-width: 600px;
      gap: 10px;
      flex-wrap: wrap;
    }

    .address-box input {
      flex: 1 1 100px;
      padding: 12px;
      border: none;
      border-radius: 4px;
      font-size: 16px;
    }

    .address-box button {
      background: #003087;
      color: white;
      padding: 12px 20px;
      border: none;
      border-radius: 4px;
      font-size: 16px;
      cursor: pointer;
    }

    .banner-image {
      flex: 1 1 300px;
      text-align: center;
    }

    .banner-image img {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
    }

    /* Mobile Nav Toggle */
    .menu-toggle {
      display: none;
      font-size: 24px;
      cursor: pointer;
    }

    @media (max-width: 768px) {
      nav {
        display: none;
        flex-direction: column;
        width: 100%;
      }

      nav.active {
        display: flex;
        margin-top: 15px;
      }

      .menu-toggle {
        display: block;
      }

      .top-bar {
        justify-content: center;
      }

      .banner {
        flex-direction: column;
      }

      .address-box {
        flex-direction: column;
      }

      .address-box input,
      .address-box button {
        width: 100%;
      }
    }


.fiber-speeds {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.fiber-speeds h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: 700;
  color: #1c2c7f;
}

.speed-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  width: 260px;
  padding: 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  text-align: left;
}

.card.highlight {
  background: #0d3082;
  color: #fff;
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.card .speed {
  font-weight: bold;
  color: #0d3082;
}

.card.highlight .speed {
  color: #fff;
}

.button-container {
  margin-top: 30px;
}

.shop-button {
  display: inline-block;
  background: #0d3082;
  color: #fff;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.shop-button:hover {
  background: #001f5f;
}

.availability-note {
  margin-top: 10px;
  font-size: 0.85rem;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .speed-cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
  }
}


.award-section {
  background-color: #143c88;
  color: #fff;
  padding: 50px 20px;
  text-align: center;
}

.award-heading h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.award-heading p {
  font-size: 1rem;
  margin-bottom: 8px;
}

.details-link {
  color: #d3e1ff;
  text-decoration: underline;
  font-weight: 500;
  font-size: 0.95rem;
}

.features {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.feature-box {
  max-width: 240px;
  text-align: center;
}

.icon {
  font-size: 48px;
  color: #a5e0f4;
  margin-bottom: 15px;
}

.feature-box h4 {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.feature-box p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #e0e7f5;
}

/* Responsive Design */
@media (max-width: 768px) {
  .features {
    flex-direction: column;
    align-items: center;
  }
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #fff;
}

.fiber-tabs {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.fiber-tabs h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #1c2c7f;
}

.tab-buttons {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.tab-btn {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: #b0c5e0;
  font-weight: 600;
  cursor: pointer;
  padding: 10px 20px;
  transition: color 0.3s;
}

.tab-btn.active {
  color: #0070e0;
  border-bottom: 3px solid #0070e0;
}

.tab-content-container {
  position: relative;
}

.tab-content {
  display: none;
  animation: fade 0.4s ease-in-out;
}

.tab-content.active {
  display: block;
}

.tab-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  text-align: left;
}

.tab-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
}

.tab-text {
  max-width: 500px;
}

.tab-text h3 {
  font-size: 1.6rem;
  color: #1c2c7f;
  margin-bottom: 10px;
}

.tab-text p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #444;
}

.btn {
  background: #1c2c7f;
  color: #fff;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  transition: background 0.3s;
}

.btn:hover {
  background: #0d1c5a;
}

@keyframes fade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .tab-grid {
    flex-direction: column;
  }

  .tab-buttons {
    gap: 20px;
  }

  .tab-btn {
    font-size: 1rem;
  }
}


.tds-services {
  padding: 50px 20px;
  text-align: center;
  max-width: 1200px;
  margin: auto;
}

.tds-services h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1c2c7f;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 20px;
}

.service-box {
  padding: 30px 20px;
  border-radius: 10px;
  color: #fff;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service-box i {
  font-size: 40px;
  margin-bottom: 20px;
}

.service-box h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-box p {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Background styles */
.service-box.light {
  background: #eaeaea;
  color: #1c2c7f;
}

.service-box.dark {
  background: linear-gradient(135deg, #0d1c5a, #063f6f);
}

.service-box.blue {
  background: #3087cc;
}

.service-box.deep-blue {
  background: #1c2c7f;
}

.service-box:hover {
  transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 600px) {
  .tds-services h2 {
    font-size: 1.5rem;
  }

  .service-box i {
    font-size: 36px;
  }

  .service-box h3 {
    font-size: 1.1rem;
  }
}

.cta-section {
  background-image: url('../images/logo/call.webp'); /* Replace with your parallax image path */
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 80px 20px;
  color: white;
  text-align: center;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 20, 40, 0.6);
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: auto;
}

.cta-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
}

.cta-content p {
  font-size: 1.1rem;
  margin: 15px 0;
  line-height: 1.7;
  color: #e0e0e0;
}

.cta-btn {
  display: inline-block;
  margin-top: 30px;
  background-color: #1c2c7f;
  color: #fff;
  padding: 14px 28px;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 6px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background-color: #0a194d;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-content h2 {
    font-size: 1.6rem;
  }

  .cta-content p {
    font-size: 1rem;
  }

  .cta-btn {
    font-size: 0.95rem;
    padding: 12px 24px;
  }
}
.referral-slider {
  width: 100%;
  background: #fff;
  position: relative;
  padding: 40px 0;
  overflow: hidden;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: auto;
}

.slide {
  display: none;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background: #f8f8f8;
  border-radius: 10px;
  overflow: hidden;
  padding: 30px;
  transition: all 0.5s ease-in-out;
}

.slide.active {
  display: flex;
}

.slide-content {
  flex: 1;
  padding: 20px;
}

.slide-content h5 {
  font-size: 1rem;
  color: #1c2c7f;
  margin-bottom: 10px;
}

.slide-content h2 {
  font-size: 2rem;
  color: #1c2c7f;
  margin-bottom: 15px;
}

.slide-content p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
}

.slide-content .btn {
  display: inline-block;
  background: #1c2c7f;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.slide-image {
  flex: 1;
  text-align: center;
}

.slide-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Navigation dots */
.dots {
  text-align: center;
  margin-top: 20px;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background-color: #1c2c7f;
}

/* Responsive Design */
@media (max-width: 768px) {
  .slide {
    flex-direction: column;
    text-align: center;
  }

  .slide-content h2 {
    font-size: 1.5rem;
  }

  .slide-content,
  .slide-image {
    padding: 10px 0;
  }
}

.testimonial-section {
  background-color: #1e88e5; /* Change to any brand blue */
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.testimonial-container {
  max-width: 1000px;
  margin: auto;
}

.testimonial-section h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  font-weight: 700;
}

.testimonial {
  margin-bottom: 40px;
}

.testimonial p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 10px;
  font-style: italic;
}

.testimonial cite {
  display: block;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
}


.faq-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
}

.faq-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #0e2a5f;
  margin-bottom: 40px;
}

.faq-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.faq-item {
  border-bottom: 2px solid #f57c00;
  padding-bottom: 15px;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: left;
  color: #0e2a5f;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question span {
  font-size: 1.5rem;
  color: #999;
  transition: transform 0.3s ease;
}

.faq-answer {
  display: none;
  margin-top: 10px;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-question span {
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  .faq-container {
    grid-template-columns: 1fr;
  }
}


.call-now-section {
  background-color: #f1f1f1;
  text-align: center;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
}

.call-now-section .container {
  max-width: 800px;
  margin: 0 auto;
}

.call-now-section h2 {
  font-size: 2rem;
  color: #0e2a5f;
  margin-bottom: 15px;
}

.call-now-section p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 30px;
}

.call-now-section .call-button {
  background-color: #16388e;
  color: #fff;
  text-decoration: none;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 6px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease;
}

.call-now-section .call-button:hover {
  background-color: #0b2a6a;
}

.site-footer {
  background-color: #f7f7f7;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #555;
  border-top: 1px solid #ddd;
}

.disclaimer {
  padding: 20px;
  text-align: center;
  background-color: #e9e9e9;
  font-size: 13px;
  line-height: 1.6;
}

.footer-bottom {
  padding: 15px 20px;
  background-color: #dcdcdc;
  text-align: center;
}

.footer-bottom .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-bottom p {
  margin: 0 0 10px;
  color: #333;
}

.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.footer-links li a {
  color: #0e2a5f;
  text-decoration: none;
  font-weight: bold;
}

.footer-links li a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}


.internet-section {
  background-color: #ffffff;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.7;
}

.internet-section .container {
  max-width: 1000px;
  margin: 0 auto;
}

.internet-section h2 {
  font-size: 32px;
  color: #0e2a5f;
  margin-bottom: 20px;
}

.internet-section h3 {
  font-size: 22px;
  margin-top: 30px;
  color: #1e3a7a;
}

.internet-section ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-top: 10px;
}

.internet-section ul li {
  margin-bottom: 10px;
}

.internet-section a {
  color: #0e2a5f;
  text-decoration: underline;
}

.internet-section a:hover {
  text-decoration: none;
}

.cabletv-section {
  background-color: #f7f9fc;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.7;
}

.cabletv-section .container {
  max-width: 1000px;
  margin: 0 auto;
}

.cabletv-section h2 {
  font-size: 32px;
  color: #0e2a5f;
  margin-bottom: 20px;
}

.cabletv-section h3 {
  font-size: 22px;
  margin-top: 30px;
  color: #1e3a7a;
}

.cabletv-section ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-top: 10px;
}

.cabletv-section ul li {
  margin-bottom: 10px;
}

.cabletv-section a {
  color: #0e2a5f;
  text-decoration: underline;
}

.cabletv-section a:hover {
  text-decoration: none;
}
/* Breadcrumb Navigation */
.breadcrumb {
  background-color: #f7f7f7;
  padding: 12px 20px;
  font-size: 14px;
  font-family: 'Segoe UI', sans-serif;
}

.breadcrumb ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.breadcrumb li {
  display: flex;
  align-items: center;
}

.breadcrumb li span {
  color: #999;
  font-size: 14px;
  margin: 0 6px;
}

.breadcrumb a {
  color: #0073e6;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

/*.breadcrumb a:hover {
  color: #004ea0;
}*/

/* Responsive */
@media (max-width: 576px) {
  .breadcrumb {
    font-size: 13px;
    padding: 10px 15px;
  }

  .breadcrumb ul {
    flex-wrap: wrap;
  }
}

/* Contact Section */
.contact-section {
  background-color: #f8f8f8;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.contact-wrapper {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-details {
  flex: 1 1 350px;
}

.contact-details h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #003636;
}

.contact-details p {
  margin-bottom: 20px;
  color: #555;
}

.contact-details ul {
  list-style: none;
  padding: 0;
  color: #333;
  font-size: 15px;
  line-height: 1.8;
}

.contact-details li strong {
  color: #000;
}

/* Form Section */
.contact-form {
  flex: 1 1 350px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  width: 100%;
  resize: none;
}

.contact-form button {
  padding: 12px 20px;
  background-color:#004ab1;
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #005a5a;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
    padding: 20px;
  }

  .contact-form,
  .contact-details {
    width: 100%;
  }

  .contact-details h2 {
    font-size: 24px;
  }
}
