/* General Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Arial, sans-serif; line-height: 1.6; color: #333; }
  /* Navbar */
    header {
      background: linear-gradient(90deg, #ff6600, #ff3300);
      color: #fff;
      padding: 15px 20px;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    }

    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: auto;
    }

    .logo {
      font-size: 22px;
      font-weight: bold;
      letter-spacing: 1px;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 25px;
    }

    nav ul li a {
      color: #fff;
      text-decoration: none;
      font-weight: 500;
      transition: 0.3s;
      padding: 8px 12px;
      border-radius: 4px;
    }

    nav ul li a:hover,
    nav ul li a.active {
      background: rgba(255,255,255,0.2);
    }

    .btn-call {
      background: #fff;
      color: #ff3300;
      padding: 10px 18px;
      border-radius: 6px;
      text-decoration: none;
      font-weight: bold;
      transition: 0.3s;
    }

    .btn-call:hover {
      background: #ffe6e0;
    }

    /* Mobile Menu */
    .menu-toggle {
      display: none;
      font-size: 26px;
      cursor: pointer;
      background: none;
      border: none;
      color: #fff;
    }

    @media (max-width: 768px) {
      nav ul {
        position: absolute;
        top: 65px;
        left: 0;
        width: 100%;
        background: #ff3300;
        flex-direction: column;
        gap: 0;
        display: none;
      }

      nav ul li {
        border-top: 1px solid rgba(255,255,255,0.2);
      }

      nav ul li a {
        display: block;
        padding: 12px;
      }

      nav ul.active {
        display: flex;
      }

      .btn-call {
        display: none; /* hide call button in nav on mobile */
      }

      .menu-toggle {
        display: block;
      }
    }

    /* Hero Section */
.hero {
  background: linear-gradient(135deg, #ff3300, #ff6600);
  color: #fff;
  padding: 80px 20px;
}

.hero-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.hero-text {
  flex: 1;
  min-width: 300px;
}

.hero-text h1 {
  font-size: 2.5em;
  margin-bottom: 15px;
}

.hero-text p {
  font-size: 1.2em;
  margin-bottom: 25px;
  line-height: 1.6;
}

.btn-primary {
  background: #fff;
  color: #ff3300;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  margin-right: 10px;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #ffe6e0;
}

.btn-secondary {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.2);
}

.hero-image {
  flex: 1;
  min-width: 280px;
}

.hero-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Plans Section */
.plans {
  background: #f8f8f8;
  padding: 80px 20px;
  text-align: center;
}

.plans-container {
  max-width: 1200px;
  margin: auto;
}

.plans h2 {
  font-size: 2.2em;
  margin-bottom: 10px;
  color: #333;
}

.plans-subtitle {
  font-size: 1.1em;
  margin-bottom: 50px;
  color: #666;
}

.plans-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.plan-card {
  background: #fff;
  border-radius: 10px;
  padding: 30px 20px;
  width: 300px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.plan-card:hover {
  transform: translateY(-8px);
}

.plan-card h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #ff3300;
}

.price {
  font-size: 1.8em;
  font-weight: bold;
  margin: 15px 0;
  color: #333;
}

.price span {
  font-size: 0.6em;
  color: #777;
}

.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
}

.plan-card ul li {
  margin-bottom: 12px;
  font-size: 1em;
  color: #444;
  position: relative;
  padding-left: 20px;
}

.plan-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ff3300;
  font-weight: bold;
}

.btn-plan {
  display: inline-block;
  background: #ff3300;
  color: #fff;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn-plan:hover {
  background: #cc2900;
}

/* Highlight Featured Plan */
.plan-card.featured {
  border: 2px solid #ff3300;
  transform: scale(1.05);
}
/* Why Choose Us Section */
.why-choose {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.why-container {
  max-width: 1200px;
  margin: auto;
}

.why-choose h2 {
  font-size: 2.2em;
  margin-bottom: 10px;
  color: #222;
}

.why-subtitle {
  font-size: 1.1em;
  margin-bottom: 50px;
  color: #666;
}

.why-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.why-box {
  background: #f9f9f9;
  padding: 30px 20px;
  border-radius: 10px;
  width: 250px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.why-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.why-box i {
  font-size: 2em;
  color: #ff3300;
  margin-bottom: 15px;
}

.why-box h3 {
  font-size: 1.3em;
  margin-bottom: 10px;
  color: #333;
}

.why-box p {
  font-size: 0.95em;
  color: #555;
}
/* CTA Offer Section */
.cta-offer {
  background: linear-gradient(135deg, #ff3300, #ff6600);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.cta-container {
  max-width: 900px;
  margin: auto;
}

.cta-offer h2 {
  font-size: 2.5em;
  margin-bottom: 10px;
  font-weight: bold;
}

.cta-offer p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.cta-offer span {
  font-weight: bold;
  color: #ffe600;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.countdown div {
  background: rgba(255,255,255,0.1);
  padding: 20px;
  border-radius: 10px;
  width: 90px;
}

.countdown span {
  font-size: 2em;
  font-weight: bold;
  display: block;
}

.countdown p {
  margin: 5px 0 0;
  font-size: 0.9em;
}

.cta-btn {
  display: inline-block;
  background: #fff;
  color: #ff3300;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #ffe600;
  color: #222;
}

.awards-section {
  background: linear-gradient(135deg, #ff9800, #f44336);
  color: #fff;
  text-align: center;
  padding: 70px 20px;
}

.awards-section .section-title {
  font-size: 2.4em;
  margin-bottom: 15px;
}

.awards-section .section-subtitle {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.awards-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-bottom: 40px;
}

.stat-card {
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 20px 30px;
  min-width: 200px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-card h3 {
  font-size: 2em;
  margin-bottom: 8px;
}

.cta-btn {
  background: #fff;
  color: #f44336;
  font-weight: bold;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #fce4ec;
}
.about-us-section {
  background: #fafafa;
  padding: 70px 20px;
  color: #333;
  text-align: left;
}

.about-us-section h2 {
  font-size: 2.2em;
  text-align: center;
  margin-bottom: 30px;
  color: #222;
}

.about-us-section p {
  max-width: 850px;
  margin: 0 auto 20px auto;
  font-size: 1.05em;
  line-height: 1.8;
  color: #555;
}
.coverage-section {
  background: linear-gradient(135deg, #f0f4f8, #ffffff);
  padding: 80px 20px;
  text-align: center;
}

.coverage-section h2 {
  font-size: 2.2em;
  margin-bottom: 15px;
  color: #222;
}

.coverage-subtitle {
  font-size: 1em;
  color: #555;
  margin-bottom: 40px;
}

.coverage-states ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  justify-content: center;
  margin-bottom: 30px;
  list-style: none;
  padding: 0;
}

.coverage-states li {
  font-size: 1.1em;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
}

.coverage-states i {
  color: #28a745;
}

.coverage-btn {
  display: inline-block;
  background: #ff6300;
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.coverage-btn:hover {
  background: #ff3500;
}
/* ================= Footer ================= */
.footer {
  background: #111; /* dark footer */
  color: #ddd;
  padding: 40px 20px;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}

.footer p {
  margin: 0 0 15px;
  color: #ccc;
  font-size: 15px;
}

.footer a {
  color: #f5a623;
  text-decoration: none;
  margin: 0 5px;
  font-weight: 500;
}

.footer a:hover {
  text-decoration: underline;
}

.footer small {
  display: block;
  max-width: 900px;
  margin: 10px auto;
  color: #fff;
  font-size: 12px;
  text-align: justify;
}
.call-now {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, #ff6a00, #ee0979);
  color: #fff;
  text-align: center;
  padding: 10px 0;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  z-index: 9999;
  box-shadow: 0 -3px 10px rgba(0,0,0,0.25);
  transition: background 0.3s ease;
}

.call-now i {
  font-size: 20px;
}

.call-now:hover {
  background: linear-gradient(90deg, #ee0979, #ff6a00);
}
/* Contact Section */
.contact-section {
  padding: 80px 20px;
  background: #f9f9f9;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  align-items: flex-start;
}

.contact-info {
  flex: 1 1 40%;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #222;
}

.contact-info p {
  margin-bottom: 20px;
  color: #555;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info ul li {
  margin-bottom: 15px;
  font-size: 1rem;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info ul li i {
  color: #ff6b6b;
  font-size: 18px;
}

/* Contact Form */
.contact-form {
  flex: 1 1 50%;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
}

.contact-form button {
  background: linear-gradient(45deg, #ff6a00, #ee0979);
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  opacity: 0.9;
}

/* Map Section */
.map-section iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: none;
  margin-top: -5px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}

/* Breadcrumb */
.breadcrumb-section {
  background: linear-gradient(135deg, #ff6a00, #ee0979);
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

.breadcrumb-container {
  max-width: 1200px;
  margin: auto;
}

.breadcrumb-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.breadcrumb-nav {
  font-size: 0.95rem;
}

.breadcrumb-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.breadcrumb-nav a:hover {
  text-decoration: underline;
}

.breadcrumb-nav span {
  margin: 0 5px;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-nav .current {
  font-weight: 600;
  color: #fff;
}
/* Channels Section with Icons */
.channels-section {
  padding: 60px 20px;
  background: #f0f4f8;
  text-align: center;
}

.channels-section h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #222;
}

.section-subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
}

.channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 25px;
  justify-items: center;
  margin-bottom: 30px;
}

.channel-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.channel-card i {
  font-size: 40px;
  color: #ff6a00;
  margin-bottom: 15px;
}

.channel-card h3 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 10px;
}

.channel-card p {
  font-size: 0.9rem;
  color: #555;
}

.channel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.channels-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #ff6a00;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.channels-btn:hover {
  background: #e65c00;
}
