/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Work Sans", sans-serif;
}

/* Header Layout */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  background: #ffffff;
  border-bottom: 1px solid #eaeaea;
  position: sticky;
  top: 0;
  z-index: 999;
}

/* Logo */
.logo a {
  font-size: 22px;
  font-weight: 700;
  color: #111;
  text-decoration: none;
}

/* Navigation */
#navMenu {
  display: flex;
  gap: 26px;
}

#navMenu a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
}

#navMenu a:hover,
#navMenu a.active {
  color: #0d6efd;
}

/* Mobile Menu Icon */
.mobile-menu-icon {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #111;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .mobile-menu-icon {
    display: block;
  }

  #navMenu {
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 20px 0;
    display: none;
    border-top: 1px solid #eaeaea;
  }

  #navMenu a {
    font-size: 17px;
  }

  #navMenu.show {
    display: flex;
  }
}







/* ================================
   GLOBAL STYLES
================================ */
section {
  padding: 60px 20px;
}

.container,
.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

h1, h2, h3, h4 {
  color: #111;
}

p {
  color: #444;
  line-height: 1.7;
  font-size: 16px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ================================
   BANNER SECTION
================================ */
.banner {
  background: #f6f9fc;
  text-align: center;
}

.banner h1 {
  font-size: 38px;
  margin-bottom: 15px;
}

.banner p {
  max-width: 720px;
  margin: 0 auto 40px;
}

/* Plans */
.plans {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.plan {
  background: #fff;
  padding: 30px;
  width: 100%;
  max-width: 350px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.plan h2 {
  font-size: 22px;
  margin-bottom: 15px;
}

.plan ul {
  list-style: none;
  padding: 0;
}

.plan ul li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  font-size: 15px;
}

.price {
  font-size: 26px;
  font-weight: 700;
  margin-top: 18px;
  color: #0d6efd;
}

/* ================================
   CHECK AVAILABILITY
================================ */
.check-speed {
  background: #ffffff;
  text-align: center;
}

.check-speed input {
  width: 100%;
  max-width: 420px;
  padding: 14px;
  margin: 15px auto;
  display: block;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.check-speed button {
  padding: 12px 28px;
  background: #0d6efd;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.small-note {
  font-size: 13px;
  margin-top: 10px;
}

/* ================================
   NEXT SECTION (IMAGE + TEXT)
================================ */
.next-section {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.next-section .content {
  flex: 1;
}

.call-link {
  display: inline-block;
  margin: 15px 0;
  font-weight: 600;
  color: #0d6efd;
  text-decoration: none;
}

.phone-btn {
  padding: 12px 26px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

/* ================================
   PREMIUM TV FEATURES
================================ */
.premium-wifi {
  background: #f8f9fb;
  text-align: center;
}

.subtitle {
  margin-bottom: 40px;
}

.wifi-features {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.feature-box {
  background: #fff;
  padding: 25px;
  max-width: 300px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.check-circle {
  font-size: 22px;
  color: #0d6efd;
  margin-bottom: 10px;
}

.learn-more-btn {
  margin-top: 30px;
  padding: 14px 32px;
  background: #0d6efd;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

/* ================================
   ABOUT TEXT
================================ */
.about-us-text-only {
  background: #fff;
}

.about-us-text-only p {

  margin: 0 auto 18px;
}

/* ================================
   ICON FEATURES
================================ */
.features-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  background: #f6f9fc;
}

.feature-item {
  text-align: center;
  width: 180px;
}

.feature-item i {
  font-size: 34px;
  color: #0d6efd;
  margin-bottom: 10px;
}

/* ================================
   FIBER BENEFITS
================================ */
.fiber-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
}

.fiber-text {
  flex: 1;
}

.fiber-icons {
  display: flex;
  gap: 25px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.fiber-icon {
  text-align: center;
}

.fiber-icon img {
  width: 60px;
  margin-top: 8px;
}

/* ================================
   SERVICES
================================ */
.services-section {
  background: #f8f9fb;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.service-card i {
  font-size: 30px;
  color: #0d6efd;
  margin-bottom: 12px;
}

/* ================================
   TESTIMONIAL
================================ */
.testimonial-rating {
  text-align: center;
}

.stars-box {
  font-size: 22px;
  color: #ffc107;
  margin: 12px 0;
}

.call-now-btn {
  padding: 14px 30px;
  background: #0d6efd;
  border: none;
  border-radius: 6px;
  margin-top: 15px;
}

/* ================================
   NEW HOME SECTION
================================ */
.new-home-container {
  display: flex;
  gap: 40px;
  align-items: center;
}

.customer-options {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.outline-btn {
  padding: 12px 26px;
  border: 2px solid #0d6efd;
  background: transparent;
  color: #0d6efd;
  border-radius: 6px;
  cursor: pointer;
}

/* ================================
   RESPONSIVE BREAKPOINTS
================================ */
@media (max-width: 991px) {
  .next-section,
  .fiber-wrapper,
  .new-home-container {
    flex-direction: column;
    text-align: center;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .customer-options {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .banner h1 {
    font-size: 28px;
  }

  section {
    padding: 40px 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .feature-item {
    width: 100%;
  }

  .fiber-icons {
    justify-content: center;
  }
}
















.site-footer {
  background: #0b0f19;
  color: #e6e6e6;
  padding: 50px 20px 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.footer-logo {
  flex: 1 1 35%;
}

.footer-logo h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #ffffff;
}

.footer-logo p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #cfcfcf;
}

.footer-links,
.footer-contact {
  flex: 1 1 22%;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 18px;
  margin-bottom: 14px;
  color: #ffffff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #cfcfcf;
  text-decoration: none;
  font-size: 14.5px;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #0d6efd;
}

.footer-contact p {
  font-size: 14.5px;
  margin-bottom: 10px;
  color: #cfcfcf;
}

/* Disclaimer Section */
.disclaimer-section {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
}

.disclaimer-text {
  font-size: 13px;
  line-height: 1.6;
  color: #bdbdbd;
  max-width: 1000px;
  margin: 0 auto 12px;
}

.copyright {
  font-size: 13px;
  color: #9a9a9a;
}

/* Responsive */
@media (max-width: 991px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-logo,
  .footer-links,
  .footer-contact {
    flex: 1 1 100%;
  }

  .footer-links ul li {
    margin-bottom: 8px;
  }
}

/* ================================
   CONTACT SECTION
================================ */
.contact-section {
  background: #f8f9fb;
  padding: 70px 20px;
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
}

.contact-container h2 {
  text-align: center;
  margin-bottom: 10px;
}

.contact-intro {
  text-align: center;
  margin-bottom: 50px;
  color: #555;
}

/* Grid Layout */
.contact-grid {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* Form */
.contact-form {
  flex: 1;
}

.contact-form form {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 15px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  width: 100%;
  padding: 14px;
  background: #0d6efd;
  border: none;
  border-radius: 6px;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #0b5ed7;
}

/* Contact Info */
.contact-info {
  flex: 0.9;
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
}

.info-block {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  font-size: 15px;
  color: #333;
}

.info-block i {
  font-size: 20px;
  color: #0d6efd;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 991px) {
  .contact-grid {
    flex-direction: column;
  }

  .contact-form,
  .contact-info {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .contact-section {
    padding: 50px 16px;
  }

  .contact-form form,
  .contact-info {
    padding: 22px;
  }

  .info-block {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
.fiber-icon img {
     width: 100%; 

}
#sat img{
  width: 100%!important;
}
}