    /* Global Reset */
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      font-family: 'Lato', sans-serif;
      line-height: 1.6;
      color: #222;
      background: #fff;
    }
    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; display: block; }
/* Top Banner */
.banner {
  background: #1b1b38;
  color: #fff;
  padding: 8px 20px;
  text-align: right;
}
.banner a { color: #fff; font-size: 14px; }

/* Navbar */
.navbar {
  background: #f8f8f8;
  border-bottom: 1px solid #ddd;
}
.navbar-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  padding: 10px 20px;
}
.navbar-wrapper img.logo {
  height: 50px;
}
.nav-links a {
  margin-left: 20px;
  font-weight: 600;
  color: #333;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: #0078ff;
}
.navbar-button {
  background: #0078ff;
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 4px;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    background: #f8f8f8;
    position: absolute;
    top: 70px;
    right: 20px;
    width: 220px;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 15px;
  }
  .nav-links a {
    margin: 10px 0;
    display: block;
  }
  .nav-links.active {
    display: flex;
  }
}

.features-list {
  list-style: none;
  padding: 0;
}
.features-list li {
  margin-bottom: 12px;
  font-size: 16px;
  display: flex;
  align-items: center;
}
.features-list i {
  color: #e63946; /* red accent for icons */
  margin-right: 10px;
  font-size: 18px;
}

/* Hero Section */
.hero { background: #f5f9ff; }
.hero-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero-left h1 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 15px;
  line-height: 1.2;
}
.hero-left .highlight { color: #e63946; }
.hero-left .italic-text { font-style: italic; color: #555; }
.tagline { font-size: 18px; margin-bottom: 20px; color: #333; }

.cta-button {
  display: inline-block;
  background: #e63946;
  color: #fff;
  padding: 12px 24px;
  font-weight: bold;
  border-radius: 6px;
  transition: background 0.3s;
  margin-bottom: 20px;
}
.cta-button:hover { background: #b91d2c; }

.deals-heading { font-size: 22px; margin: 15px 0; color: #e63946; }
.features-list { list-style: none; padding: 0; }
.features-list li {
  display: flex; align-items: center;
  margin-bottom: 10px;
  font-size: 16px;
}
.features-list img { width: 18px; margin-right: 10px; }

/* Form */
.hero-form-wrapper {
  background: #fff;
  padding: 25px;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.hero-form-wrapper h3 { margin-bottom: 10px; color: #e63946; }
.hero-form-wrapper p { font-size: 14px; margin-bottom: 15px; color: #444; }
.form label { display: block; margin-bottom: 5px; font-weight: 600; }
.form input {
  width: 100%; padding: 10px;
  border: 1px solid #ccc; border-radius: 6px;
  margin-bottom: 12px;
}
.submit-button {
  background: #1d3557;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}
.submit-button:hover { background: #14213d; }

/* Responsive */
@media (max-width: 900px) {
  .hero-wrapper { grid-template-columns: 1fr; }
}

    /* Generic Sections */
    .padding-section { padding: 60px 20px; }
    .centered-heading { text-align: center; font-size: 32px; margin-bottom: 20px; }
   .pricing-section {
  padding: 60px 20px;
  background: #f8fbff;
  text-align: center;
}
.centered-heading { font-size: 32px; margin-bottom: 10px; color: #1d3557; }
.centered-subtext { font-size: 16px; margin-bottom: 40px; color: #555; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}
.pricing-card-three {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  border: 1px solid #eee;
  transition: transform 0.3s, box-shadow 0.3s;
}
.pricing-card-three:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}
.pricing-card-three h3 {
  margin: 15px 0;
  color: #0078ff;
  font-size: 22px;
}
.pricing-card-three i { margin-right: 6px; color: #e63946; }
.duration { font-size: 14px; color: #666; margin-bottom: 10px; }
.text-span-2 { font-size: 24px; font-weight: 700; color: #e63946; }

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 15px 0 20px;
  text-align: left;
}
.pricing-features li {
  margin-bottom: 8px;
  font-size: 14px;
  display: flex;
  align-items: center;
}
.pricing-features i { color: #1d3557; }

.pricing-btn {
  display: inline-block;
  background: #e63946;
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}
.pricing-btn:hover { background: #b91d2c; }
    /* Buttons */
    .button, .call-now-button, .hero-button, .pricing-card-three a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #0078ff;
      color: #fff;
      padding: 10px 18px;
      border-radius: 4px;
      margin-top: 15px;
      transition: background 0.3s;
    }
    .button:hover, .call-now-button:hover, .hero-button:hover, .pricing-card-three a:hover {
      background: #005bb5;
    }

    /* Footer */
   /* .last-block, .div-block-3 {
      display: flex; justify-content: center;
      align-items: center; flex-wrap: wrap;
      gap: 20px; padding: 20px;
    }
    .last-block img, .div-block-3 img { height: 40px; }
    .bottom-banner {
      background: #1b1b38; color: #fff;
      text-align: center; padding: 15px;
    }
*/
    /* Responsive */
    @media (max-width: 768px) {
      .hero-wrapper { grid-template-columns: 1fr; }
      .navbar-wrapper { flex-wrap: wrap; gap: 10px; }
    }

    .pricing-btn i {
  margin-right: 8px;
  font-size: 16px;
}


.quality-section {
  background: #f9f9f9;
  padding: 60px 20px;
}

.quality-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.quality-image img {
  max-width: 350px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.quality-content {
  flex: 1;
}

.quality-content h2 {
  font-size: 2rem;
  color: #e63946;
  margin-bottom: 15px;
}

.quality-subtext {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 25px;
}

.quality-feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.quality-feature i {
  font-size: 28px;
  color: #0078ff;
}

.quality-feature h3 {
  margin: 0 0 8px;
  color: #0078ff;
}

.quality-feature p {
  margin: 0;
  color: #555;
  font-size: 0.95rem;
}

.quality-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #e63946;
  color: #fff;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}

.quality-btn:hover {
  background: #c82333;
}

.promo-section {
  background: linear-gradient(135deg, #0078ff, #00b4d8);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.promo-box {
  max-width: 700px;
  margin: auto;
}

.promo-heading {
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.promo-subheading {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.promo-desc {
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.promo-price {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 25px;
}

.promo-btn {
  display: inline-block;
  background: #e63946;
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}

.promo-btn i {
  margin-right: 8px;
}

.promo-btn:hover {
  background: #c82333;
}

.promo-terms {
  margin-top: 20px;
  font-size: 0.9rem;
  opacity: 0.9;
}


.why-choose-section {
  padding: 70px 20px;
  background: #f9f9f9;
  text-align: center;
}

.section-heading {
  font-size: 2rem;
  color: #e63946;
  margin-bottom: 10px;
  font-weight: bold;
}

.section-subtext {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 40px;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

.why-card {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.why-card i {
  font-size: 36px;
  color: #0078ff;
  margin-bottom: 15px;
}

.why-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #222;
}

.why-card p {
  font-size: 0.95rem;
  color: #555;
}

.hero-bottom-wrapper {
  background: #e63946;
  color: #fff;
  padding: 50px 20px;
  text-align: center;
}

.hero-bottom-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.heading-10 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.hero-subtext {
  font-size: 1.1rem;
  max-width: 600px;
  margin: auto;
  line-height: 1.6;
}

.hero-button {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #0078ff;
  font-weight: bold;
  padding: 14px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s, transform 0.3s;
}

.hero-button i {
  font-size: 20px;
}

.hero-button:hover {
  background: #f1f1f1;
  transform: translateY(-3px);
}
/* General layout */
.satellite-plans-view {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

/* Text block */
.satellite-plans-view .div-block-8 {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.satellite-plans-view .heading-7 {
  color: #e63946;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.satellite-plans-view .text-block-7 {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Offer button */
.button-2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0078ff;
  color: #fff;
  padding: 14px 24px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}

.button-2:hover {
  background: #005ec2;
}

/* Right-side image */
.satellite-img {
  background: url("images/img2.webp") center/cover no-repeat;
  min-height: 300px;
  border-radius: 8px;
}

.what-we-do-heading {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: #e63946;
}

.what-we-do-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.what-we-do-card {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.what-we-do-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.what-we-do-icon {
  font-size: 48px;
  color: #0078ff;
  margin-bottom: 15px;
}

.what-we-do-card-heading {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #333;
}

.what-we-do-card-text {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.what-we-do-card-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0078ff;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}

.what-we-do-card-button:hover {
  background: #005ec2;
}


.disclaimer-section {
  background: #f5f5f5;
  padding: 40px 20px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.disclaimer-heading {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

.disclaimer-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
  text-align: justify;
}
.site-footer {
  background: #222;
  color: #ccc;
  text-align: center;
  padding: 20px 15px;
  font-size: 14px;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
  margin: 0 8px;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-links {
  margin-bottom: 10px;
}

.footer-disclaimer {
  font-size: 12px;
  color: #aaa;
  line-height: 1.5;
}

/* Fixed Call Now Button */
.call-now-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #0078ff;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 999;
  transition: background 0.3s;
}
.call-now-btn:hover {
  background: #005fcc;
}

/* Mobile friendly */
@media (max-width: 600px) {
  .call-now-btn {
    font-size: 14px;
    padding: 10px 16px;
    bottom: 15px;
    right: 15px;
  }
}

/* Testimonials Section */
.testimonials {
  background: #f8f8f8;
  padding: 60px 20px;
  text-align: center;
}

.testimonial-heading {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #222;
}

.testimonial-wrapper {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.testimonial-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  max-width: 320px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: left;
  transition: transform 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-text {
  font-size: 15px;
  color: #444;
  margin-bottom: 15px;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.testimonial-icon {
  font-size: 50px;
  color: #0078ff;
}

.testimonial-author h4 {
  font-size: 16px;
  margin: 0;
  color: #0078ff;
}

.testimonial-author span {
  font-size: 14px;
  color: #666;
}

.stars {
  margin-top: 5px;
  color: #ffc107; /* gold stars */
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-wrapper {
    flex-direction: column;
    align-items: center;
  }
}


/* Contact Section */
.contact-section {
  background: #f9f9f9;
  padding: 60px 20px;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  align-items: flex-start;
  margin-bottom: 40px;
}

.contact-info h2,
.contact-form h2 {
  margin-bottom: 15px;
  color: #0078ff;
}

.contact-info p {
  font-size: 14px;
  margin-bottom: 15px;
  color: #555;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info li {
  margin-bottom: 12px;
  font-size: 15px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info i {
  color: #0078ff;
  font-size: 18px;
}

/* Contact Form */
.contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  transition: border 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0078ff;
  outline: none;
}

.contact-btn {
  background: #0078ff;
  color: #fff;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-btn:hover {
  background: #005bb5;
}

/* Full Width Map */
.contact-map {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .contact-map {
    height: 300px;
  }
}

/* Privacy Policy Page */
.pv {
  padding: 60px 20px;
  background: #f9f9f9;
  font-family: Arial, sans-serif;
  color: #333;
}

.w-container2 {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.w-richtext h1 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #0078ff;
  text-align: center;
}

.w-richtext h4 {
  font-size: 20px;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #222;
}

.w-richtext p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #444;
}

.w-richtext ul {
  margin: 15px 0 20px 20px;
  padding-left: 20px;
}

.w-richtext ul li {
  font-size: 15px;
  margin-bottom: 10px;
  line-height: 1.6;
  position: relative;
}

.w-richtext ul li::before {
  content: "✔";
  color: #0078ff;
  font-weight: bold;
  margin-right: 8px;
}

.w-richtext a {
  color: #0078ff;
  text-decoration: none;
  font-weight: 600;
}

.w-richtext a:hover {
  text-decoration: underline;
}

.body-display {
  font-size: 15px;
  color: #444;
  margin-bottom: 15px;
}

/* Contact block at the end */
.w-richtext p strong {
  color: #000;
}

@media (max-width: 768px) {
  .w-container {
    padding: 25px;
  }

  .w-richtext h1 {
    font-size: 26px;
  }

  .w-richtext h4 {
    font-size: 18px;
  }

  .w-richtext p,
  .w-richtext ul li {
    font-size: 14px;
  }
}
