* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #fff;
  color: #1a1d2b;
  line-height: 1.6;
}

:root {
  /* Lead form in hero — overridden by seo-routing applyLeadFormCssVars (top edge, not center) */
  --lp-form-top: clamp(140px, 30vh, 280px);
  --lp-form-top-md: clamp(130px, 32vh, 300px);
  --lp-form-top-sm: clamp(120px, 34vh, 320px);
  --clr-primary: #1b63ff;
  --clr-primary-dark: #0046d7;
  --clr-accent: #dd4632;
  --clr-muted: #667085;
  --clr-light: #f5f7fb;
  --clr-border: #e4e8f3;
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-soft: 0 25px 60px rgba(15, 26, 67, 0.08);
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

a {
  color: inherit;
}

a:focus,
a:hover {
  color: var(--clr-primary-dark);
}

/* ------------------------------------------
   HEADER BASE
------------------------------------------ */
/* ====================================================
   HEADER WRAPPER (New Dark + Glass Feel)
==================================================== */
#masthead {
  width: 100%;
  background: linear-gradient(180deg, #070b14 0%, #0f1628 48%, #121c30 100%);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
  padding: 14px 0;
  position: sticky;
  top: 0px;
  z-index: 9000;
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease;
}

/* Container Inside */
.elementor-12 > header {
  max-width: 1250px;
  margin: auto;
  padding: 0 28px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

/* ====================================================
   LOGO (New Minimal Look)
==================================================== */
.elementor-widget-image img {
  width: 220px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
  transition: 0.3s ease;
}

.elementor-widget-image img:hover {
  opacity: 1;
  transform: translateY(-1px);
}

/* ====================================================
   MENU (New Neon Accent)
==================================================== */
.nav-wrapper {
  padding: 10px 0;
}

/* Navbar */
.custom-mobile-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Hide toggle button on desktop */
.mobile-menu-toggle {
  display: none;
}
.mobile-menu-toggle .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px;
  background: white;
  transition: 0.3s;
}

/* Navigation Menu */
.hfe-nav-menu {
  list-style: none;
  display: flex;
  gap: 25px; /* Space between menu items */
  margin: 0;
  padding: 0;
}

/* Menu items — solid high-contrast (same on every slug) */
.hfe-nav-menu li a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}

.hfe-nav-menu li a:hover {
  color: #7dd3fc;
  -webkit-text-fill-color: #7dd3fc;
}

.current-menu-item a {
  color: #fff;
  -webkit-text-fill-color: #fff;
  box-shadow: inset 0 -2px 0 #38bdf8;
  padding-bottom: 2px;
}

/* Mobile Responsive */

@media (max-width: 768px) {
  .custom-mobile-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .hfe-nav-menu {
    width: 100%;
    display: none; /* hidden by default */
    flex-direction: column;
    background: #000;
    padding: 15px;
    margin-top: 10px;
  }

  .hfe-nav-menu.show {
    display: flex !important; /* show on toggle */
  }
}

/* modal css */

/* Overlay */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(5px);

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;

  z-index: 9999;
}

/* Show */
.modal.show {
  opacity: 1;
  visibility: visible;
}

/* Modal Box */
.modal-content {
  width: 90%;
  max-width: 420px;
  padding: 30px 25px;
  border-radius: 16px;

  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, 0.2);

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);

  text-align: center;
  color: #fff;

  transform: scale(0.9);
  transition: 0.3s ease;
}

/* Animation */
.modal.show .modal-content {
  transform: scale(1);
}

/* Heading */
.modal-content h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

/* Text */
.modal-content p {
  font-size: 15px;
  color: #d1d5db;
  line-height: 1.5;
}

/* Phone highlight */
.modal-content strong {
  color: #38bdf8;
}
/* 🔥 MODAL BUTTONS - Transparent + Same Size + Side by Side */

.modal-buttons {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Common style for both buttons */
.call-btn,
#closeModal {
  padding: 13px 26px;
  font-size: 15.5px;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.6); /* Transparent border */
  cursor: pointer;
  min-width: 148px; /* Same size ke liye */
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(255, 255, 255, 0.1); /* Light Transparent BG */
  color: #fff;
  backdrop-filter: blur(10px); /* Glass effect */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Green Call Now Button */
.call-btn {
  background: rgba(34, 197, 94, 0.25); /* Light Green Transparent */
  border-color: #22c55e;
}

.call-btn:hover {
  background: rgba(34, 197, 94, 0.45);
  border-color: #16a34a;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

/* Blue Close Button */
#closeModal {
  background: rgba(59, 130, 246, 0.25); /* Light Blue Transparent */
  border-color: #3b82f6;
}

#closeModal:hover {
  background: rgba(59, 130, 246, 0.45);
  border-color: #2563eb;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

/* Mobile pe full width */
@media (max-width: 420px) {
  .call-btn,
  #closeModal {
    min-width: 100%;
    padding: 14px 20px;
  }
}

/* ====================================================
   CALL BUTTON (New Round + Glow)
==================================================== */
#phone {
  /* Updated to use CSS variable for primary color */
  background: linear-gradient(135deg, #1b63ff, #0d4ed1);
  color: #fff;
  padding: 10px 15px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  box-shadow: 0 0 12px rgb(16, 252, 67);
  transition: 0.3s ease;

  animation: callBlink 2s infinite ease-in-out; /* slower blink */
}

#phone:hover {
  background: linear-gradient(135deg, #2a86ff, #1467b5);
  transform: translateY(-2px);
  box-shadow: 0 0 18px rgba(53, 71, 236, 0.55);
}

/* Icon */
#phone svg {
  width: 18px;
  height: 18px;
  fill: #fff;
  transition: 0.3s ease;
}

#phone:hover svg {
  transform: rotate(12deg) scale(1.15);
}
@keyframes callBlink {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  10% {
    transform: scale(1.15);
    opacity: 1;
  } /* first pulse */
  20% {
    transform: scale(1);
    opacity: 0.85;
  } /* fade */
  30% {
    transform: scale(1.12);
    opacity: 1;
  } /* second pulse */
  40% {
    transform: scale(1);
    opacity: 0.9;
  } /* fade */
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* ====================================================
   RESPONSIVE
==================================================== */
@media (max-width: 768px) {
  .elementor-12 > header {
    padding: 0 18px;
  }

  .elementor-widget-image img {
    width: 180px;
  }

  .hfe-nav-menu__layout-horizontal ul {
    gap: 22px;
  }

  #phone {
    padding: 10px 20px;
    position: relative;
    right: 20px;
  }
}

/* =====================================
   FULL SCREEN BANNER (SUPER CLEAR)
===================================== */

.elementor-element-2b51bea {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

#call-to-action .e-con-inner {
  position: relative;
  z-index: 2;
}

/* Background Image */
.elementor-element-999a746 {
  position: absolute;
  inset: 0;
  margin: 0; /* remove any top/bottom margin */
  padding: 0;
  z-index: 0;
}

/* Hero visible on all breakpoints (slug banner below nav) */
.elementor-element-999a746.elementor-hidden-desktop {
  display: block !important;
}

.elementor-element-999a746 img {
  width: 100%;
  top: auto; /* Full width of container */
  height: auto; /* Let height scale proportionally */
  max-height: 100vh; /* Never taller than viewport */
  object-fit: cover; /* Cover container while maintaining aspect ratio */
  object-position: center; /* Center the image */
  display: block; /* Remove inline gaps below image */
  filter: brightness(95%) contrast(105%); /* Optional filter */
}

/* Readability scrim over hero (slug-driven image stays visible) */
.elementor-element-2b51bea::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    rgba(8, 12, 22, 0.72) 0%,
    rgba(8, 12, 22, 0.35) 42%,
    rgba(8, 12, 22, 0.5) 100%
  );
}

@media (max-width: 1024px) {
  .elementor-element-999a746 img {
    max-height: 70vh; /* Reduce height for smaller screens */
    position: relative;
    bottom: 2px;
  }
}

/* Mobile devices */
@media (max-width: 768px) {
  .elementor-element-999a746 img {
    max-height: 50vh; /* Smaller height on mobile */
    position: relative;
    bottom: 2px;
  }
}

/* Extra small mobile screens */
@media (max-width: 480px) {
  .elementor-element-999a746 img {
    max-height: 40vh; /* Even smaller for very small phones */
    position: relative;
    bottom: 1px;
  }
}
@media (max-width: 375px) {
  .elementor-element-999a746 img {
    max-height: 100vh; /* Even smaller for very small phones */
    position: relative;
    bottom: 1px;
  }
}

/* =====================================
   FORM – CLEAN, CENTERED ALWAYS
===================================== */

/* ---------- FORM WRAPPER (Floating on Banner) — same for root + every slug ---------- */
#formSection {
  position: relative;
  min-height: 1px;
}

.form-wrapper {
  width: 100%;
  max-width: 420px;
  margin: 0;

  background: #47464660;
  padding: 25px;
  border-radius: 15px;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.048);
  font-family: Arial, sans-serif;

  position: absolute;
  /* Top edge below navbar; only center horizontally (-50% Y was pulling the card up under #masthead) */
  top: var(--lp-form-top, clamp(140px, 30vh, 280px));
  left: 26%;
  transform: translateX(-50%);

  /* Above #masthead (9000) so the card is not visually clipped by the sticky header */
  z-index: 10050;
}

/* ---------- TITLE ---------- */
.form-wrapper h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #ffffff;
  font-size: 22px;
}

/* ---------- LABELS ---------- */
label {
  font-weight: bold;
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
}

/* ---------- INPUTS ---------- */
input,
textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: #1b63ff;
  box-shadow: 0 0 5px rgba(27, 99, 255, 0.4);
}

/* ---------- BUTTON ---------- */
button {
  width: 100%;
  padding: 12px;
  background: #394a6dd2;
  color: #fff;
  border: none;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #1f64ee;
}
/* Success message styling */
.success-message {
  display: inline-block; /* Works with padding/margin */
  width: 100%; /* Full width container */
  padding: 18px 20px; /* Top/Bottom 18px, Left/Right 20px */
  background: linear-gradient(
    135deg,
    #4caf50,
    #66bb6a
  ); /* Nice green gradient */
  color: #fff; /* Text color */
  font-size: 16px; /* Text size */
  font-weight: bold; /* Bold text */
  border-radius: 8px; /* Rounded corners */
  border: none; /* Remove border */
  cursor: default; /* Pointer cursor can be removed */
  text-align: center; /* Center text */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* Subtle shadow */
  transition: all 0.3s ease; /* Smooth hover/animation effect */
  margin-top: 15px; /* Space above the message */
}

/* Optional hover effect */
.success-message:hover {
  transform: translateY(-2px); /* Slight lift effect */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25); /* Stronger shadow */
}
.loader {
  border: 3px solid #f3f3f3;
  border-top: 3px solid #3498db;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  animation: spin 1s linear infinite;
  display: inline-block;
  margin-left: 8px;
}
.error {
  color: red;
  font-size: 13px;
  margin-top: 3px;
  display: block;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 768px) {
  .form-wrapper {
    max-width: 90%;
    padding: 20px;
    top: var(--lp-form-top-md, clamp(130px, 32vh, 300px));
    left: 50%;
  }

  .form-wrapper h2 {
    font-size: 18px;
  }
}

@media (max-width: 375px) {
  .form-wrapper {
    max-width: 90%;
    padding: 20px;
    top: var(--lp-form-top-sm, clamp(120px, 34vh, 320px));
    left: 50%;
  }

  input,
  textarea {
    font-size: 14px;
    padding: 10px;
  }

  button {
    font-size: 15px;
    padding: 10px;
  }
}

/* Root Variables for Dark/Light Theme */
:root {
  --bg-light: #f7f9fc;
  --bg-dark: rgba(20, 25, 35, 0.85);
  --card-bg-light: #ffffff;
  --card-bg-dark: rgba(40, 45, 55, 0.85);
  --text-light: #333;
  --text-dark: #e0e0e0;
  --price-bg-light: #e0f0ff;
  --price-bg-dark: rgba(50, 120, 200, 0.2);
  --amount-gradient: linear-gradient(135deg, #1e3c72, #2a5298);
  --amount-gradient-dark: linear-gradient(135deg, #5dadee, #2a3d72);
}

/* Body Theme Example */
body.light-theme {
  background-color: var(--bg-light);
  color: var(--text-light);
}

body.dark-theme {
  background-color: var(--bg-dark);
  color: var(--text-dark);
}

/* Card Container */
.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* Card Styles */
.premium-card {
  flex: 0 0 30%;
  box-sizing: border-box;
  margin-bottom: 20px;
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    background-color 0.3s;
  border-radius: 15px;
  overflow: hidden;
  background-color: var(--card-bg-light);
}

body.dark-theme .premium-card {
  background-color: var(--card-bg-dark);
}

.premium-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Card Header */
.card-header {
  text-align: center;
  padding: 15px;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: white;
}

.title-plan {
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
}

.speed {
  margin-top: 5px;
  font-weight: 500;
  color: #e0e0e0;
  display: flex;
  justify-content: center; /* center horizontally */
  align-items: center; /* keep icon & text aligned */
  gap: 6px; /* space between icon and text */
  text-align: center;
}

/* Card Body */
.card-body {
  padding: 15px;
  background-color: var(--card-bg-light);
}

body.dark-theme .card-body {
  background-color: transparent;
}

/* Price & Amount Container */
.price-amount-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

/* Price */
.price {
  font-weight: 700;
  font-size: 0.95rem;
  padding: 5px 12px;
  border-radius: 20px;
  background-color: var(--price-bg-light);
  color: #0d3b66;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

body.dark-theme .price {
  background-color: var(--price-bg-dark);
  color: #cce0ff;
}

.price:hover {
  transform: translateY(-2px);
  background-color: #c2e0ff;
  color: #0a2a4f;
}

/* Amount */
.amount {
  font-size: 2rem;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 25px;
  background: var(--amount-gradient);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

body.dark-theme .amount {
  background: var(--amount-gradient-dark);
}

.amount:hover {
  transform: translateY(-2px) scale(1.03);
}

/* Features */
.features {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
}

.features li {
  display: flex;
  align-items: center;
  padding: 8px;
  margin-bottom: 8px;
  border-radius: 10px;
  font-weight: 500;
}

.features li:nth-child(1) {
  background-color: #e6e6ff;
}
.features li:nth-child(2) {
  background-color: #d8f0ff;
}
.features li:nth-child(3) {
  background-color: #ffe0f0;
}
.features li:nth-child(4) {
  background-color: #e0fff0;
}
.features li:nth-child(5) {
  background-color: #ffffcc;
}

.features li .icon {
  margin-right: 8px;
}

/* Button */
.btn-get {
  padding: 10px 20px;
  border: none;
  border-radius: 40px;
  font-weight: bold;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  /* Use primary color variable for background */
  background: var(--clr-primary);
  color: white;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.btn-get:hover {
  transform: scale(1.04);
  /* Slightly darken on hover using a CSS filter */
  filter: brightness(0.9);
}

/* Responsive */
@media (max-width: 1024px) {
  .premium-card {
    flex: 0 0 45%;
  }
}

@media (max-width: 750px) {
  .premium-card {
    flex: 0 0 100%;
  }
}

/* bannerimage section */

/* Full Screen Banner Container */
.banner-container {
  position: relative; /* overlay image ke liye relative */
  width: 100vw; /* viewport width */
  height: 70vh; /* viewport height */
  overflow: hidden;
}

/* Main Banner Image - full cover */
.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* image stretch but maintain aspect ratio */
  display: block;
}

/* Overlay Image */
.overlay-image {
  position: absolute;
  top: 10%; /* banner ke top se distance */
  left: 10%; /* banner ke left se distance */
  width: 650px; /* chhoti image size */
  height: 400px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

.overlay-image:hover {
  transform: scale(1.1); /* hover effect */
}
/* ===============================
   📱 Mobile: max 480px
================================ */
@media (max-width: 480px) {
  .banner-container {
    height: 40vh; /* smaller height */
  }

  .overlay-image {
    width: 70%; /* auto adjust */
    height: auto;
    top: 50%; /* center vertically */
    left: 50%; /* center horizontally */
    transform: translate(-50%, -50%);
    border-radius: 8px;
  }

  .overlay-image:hover {
    transform: translate(-50%, -50%) scale(1.05);
  }
}

/* ===============================
   📱 Tablets: max 768px
================================ */
@media (max-width: 768px) {
  .banner-container {
    height: 50vh;
  }

  .overlay-image {
    width: 55%;
    height: auto;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
  }

  .overlay-image:hover {
    transform: translateX(-50%) scale(1.08);
  }
}

/* ===============================
   💻 Laptops: max 1200px
================================ */
@media (max-width: 1200px) {
  .banner-container {
    height: 60vh;
  }

  .overlay-image {
    width: 450px;
    height: auto;
  }
}

/* samll card section */
/* Container for all cards */
/* Section Title */
.top-reasons-section {
  padding: 50px 20px;
  background-color: #f9f9f9;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #333;
}

.card-containers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  /* bottom: 0px; */
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: white;
  padding: 8px;
  width: 92%;
  max-width: 1750px;
  margin: 5px auto;
  border-radius: 8px;
}

#page-description {
  margin-top: 8px;
  font-size: 16px;
  text-align: center;
  color: #d7e6ff;
}

.dynamic-content {
  width: 92%;
  max-width: 1750px;
  margin: 8px auto 20px;
  padding: 14px;
  border: 1px solid #e4e8f3;
  border-radius: 8px;
  background: #f5f7fb;
  color: #1a1d2b;
}

.dynamic-content .lp-intro-p,
.dynamic-content .lp-content-p {
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 12px;
  text-align: left;
  color: var(--lp-text, #1a1d2b);
}

.dynamic-content .lp-intro-p:last-child,
.dynamic-content .lp-content-p:last-child {
  margin-bottom: 0;
}

.dynamic-content .lp-content-section {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid #dde3ef;
}

.dynamic-content .lp-content-section:first-of-type {
  margin-top: 16px;
}

.dynamic-content .lp-content-section-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--lp-text, #111827);
  text-align: left;
}

/* --- Per-page content layouts (#dynamic-content + contentSections) --- */
.lp-content-intro {
  margin-bottom: 4px;
}

.dynamic-content.lp-content-layout-grid,
.dynamic-content.lp-content-layout-timeline,
.dynamic-content.lp-content-layout-columns,
.dynamic-content.lp-content-layout-cards,
.dynamic-content.lp-content-layout-rail,
.dynamic-content.lp-content-layout-bands,
.dynamic-content.lp-content-layout-split,
.dynamic-content.lp-content-layout-zigzag,
.dynamic-content.lp-content-layout-compact {
  padding-bottom: 20px;
}

.lp-content-sections--grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 12px;
}

.dynamic-content .lp-content-sections--grid .lp-content-section {
  margin-top: 0;
  padding: 16px 16px 14px;
  border-top: none;
  border-radius: var(--lp-radius, 12px);
  background: var(--lp-card, #ffffff);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.lp-content-sections--timeline {
  position: relative;
  margin-top: 16px;
  padding-left: 22px;
  border-left: 3px solid
    color-mix(in srgb, var(--lp-primary, #1b63ff) 40%, transparent);
}

.dynamic-content .lp-content-sections--timeline .lp-content-section {
  position: relative;
  margin-top: 22px;
  padding-top: 0;
  border-top: none;
}

.dynamic-content
  .lp-content-sections--timeline
  .lp-content-section:first-child {
  margin-top: 4px;
}

.dynamic-content .lp-content-sections--timeline .lp-content-section::before {
  content: '';
  position: absolute;
  left: -33px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--lp-primary, #1b63ff);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--lp-primary) 22%, transparent);
}

.lp-content-sections--columns {
  margin-top: 14px;
  column-count: 2;
  column-gap: 28px;
}

@media (max-width: 720px) {
  .lp-content-sections--columns {
    column-count: 1;
  }
}

.dynamic-content .lp-content-sections--columns .lp-content-section {
  break-inside: avoid;
  margin-top: 0;
  margin-bottom: 18px;
  padding: 14px 16px;
  border-top: none;
  border-radius: var(--lp-radius, 10px);
  border: 1px solid rgba(15, 23, 42, 0.07);
  background: color-mix(
    in srgb,
    var(--lp-card, #fff) 96%,
    var(--lp-surface, #f8fafc)
  );
}

.lp-content-sections--cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 12px;
}

.dynamic-content .lp-content-sections--cards .lp-content-section {
  margin-top: 0;
  padding: 18px 20px;
  border: none;
  border-top: none;
  border-radius: var(--lp-radius, 14px);
  background: var(--lp-card, #ffffff);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.1);
}

.lp-content-sections--rail {
  margin-top: 12px;
}

.dynamic-content .lp-content-sections--rail .lp-content-section--rail {
  margin-top: 18px;
  padding-top: 0;
  padding-left: 18px;
  border-top: none;
  border-left: 5px solid var(--lp-primary, #00e5a8);
}

.lp-content-sections--bands {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dynamic-content
  .lp-content-sections--bands
  .lp-content-section:nth-child(odd) {
  margin-top: 0;
  padding: 16px 18px;
  border-top: none;
  border-radius: var(--lp-radius, 12px);
  background: color-mix(in srgb, var(--lp-primary) 9%, var(--lp-card, #fff));
}

.dynamic-content
  .lp-content-sections--bands
  .lp-content-section:nth-child(even) {
  margin-top: 0;
  padding: 16px 18px;
  border-top: none;
  border-radius: var(--lp-radius, 12px);
  background: color-mix(
    in srgb,
    var(--lp-accent, var(--lp-primary)) 7%,
    var(--lp-card, #fff)
  );
}

.lp-content-intro--split {
  padding: 16px 18px;
  border-radius: var(--lp-radius, 12px);
  background: linear-gradient(
    120deg,
    color-mix(in srgb, var(--lp-primary) 14%, transparent) 0%,
    transparent 65%
  );
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.lp-content-sections--split {
  margin-top: 12px;
  display: grid;
  gap: 12px;
}

.dynamic-content .lp-content-sections--split .lp-content-section {
  margin-top: 0;
  padding: 14px 16px;
  border-top: none;
  border-radius: var(--lp-radius, 10px);
  border: 1px dashed rgba(15, 23, 42, 0.12);
}

.lp-content-sections--zigzag {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dynamic-content
  .lp-content-sections--zigzag
  .lp-content-section:nth-child(odd) {
  margin-top: 0;
  margin-right: auto;
  max-width: min(100%, 640px);
  padding: 14px 16px 14px 18px;
  border-top: none;
  border-left: 4px solid var(--lp-primary, #1b63ff);
  border-radius: 0 var(--lp-radius, 10px) var(--lp-radius, 10px) 0;
  background: color-mix(in srgb, var(--lp-surface, #f5f7fb) 88%, #fff);
}

.dynamic-content
  .lp-content-sections--zigzag
  .lp-content-section:nth-child(even) {
  margin-top: 0;
  margin-left: auto;
  max-width: min(100%, 640px);
  padding: 14px 18px 14px 16px;
  border-top: none;
  border-right: 4px solid var(--lp-accent, var(--lp-primary));
  border-radius: var(--lp-radius, 10px) 0 0 var(--lp-radius, 10px);
  text-align: right;
  background: color-mix(in srgb, var(--lp-surface, #f5f7fb) 88%, #fff);
}

.dynamic-content
  .lp-content-sections--zigzag
  .lp-content-section:nth-child(even)
  .lp-content-section-title,
.dynamic-content
  .lp-content-sections--zigzag
  .lp-content-section:nth-child(even)
  .lp-content-p {
  text-align: right;
}

.lp-content-sections--compact {
  margin-top: 10px;
}

.dynamic-content .lp-content-sections--compact .lp-content-section--dense {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
}

.dynamic-content
  .lp-content-sections--compact
  .lp-content-section--dense:first-child {
  margin-top: 0;
  border-top: none;
  padding-top: 0;
}

.dynamic-content.lp-content-layout-compact .lp-content-section-title {
  font-size: 1.05rem;
}

.dynamic-content.lp-content-layout-compact .lp-intro-p,
.dynamic-content.lp-content-layout-compact .lp-content-p {
  font-size: 15px;
  line-height: 1.58;
}

/* Medium screens (tablets) */
@media (max-width: 1024px) {
  .card-containers {
    width: 85%; /* slightly narrower */
    padding: 8px;
  }
}

/* Small screens (mobiles) */
@media (max-width: 768px) {
  .card-containers {
    width: 95%; /* almost full width, but small margins */
    padding: 6px;
    bottom: 60px; /* adjust bottom spacing for smaller screens */
  }
}

/* Extra small screens (phones) */
@media (max-width: 480px) {
  .card-containers {
    width: 98%; /* nearly full width */
    padding: 5px;
    bottom: 40px;
  }
}

/* Individual Card */
.feature-card {
  background-color: #fff;
  width: 300px;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Icon */
.feature-card .icon {
  font-size: 2rem;
  color: #ff6f61;
  margin-bottom: 15px;
}

/* Card Title */
.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #333;
}

/* Card Description */
.feature-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
  .feature-card {
    width: 45%;
  }
}

@media (max-width: 750px) {
  .feature-card {
    width: 90%;
  }
}

/* Small Banner */
.business-banner {
  background: linear-gradient(
    155deg,
    #0f2027,
    #203a43,
    #2c5364
  ); /* Red to Blue gradient */
  color: white;
  text-align: center;
  padding: 30px 20px;
  border-radius: 15px;
  margin: 40px auto;
  max-width: 800px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Banner Heading */
.business-banner h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Call Button */
.call-btn {
  display: inline-block;
  background-color: #fff;
  color: #013e85;
  font-weight: bold;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1rem;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.call-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  background-color: #f0f0f0;
}

/* FAQs — modern slab (all slugs; static + dynamic layouts) */
.faq-section {
  max-width: 920px;
  margin: 56px auto 64px;
  padding: 40px 28px 44px;
  border-radius: 24px;
  background: linear-gradient(165deg, #0b1220 0%, #111b2e 55%, #0f172a 100%);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-section.lp-faq {
  scroll-margin-top: 96px;
}

.faq-title {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  color: #f8fafc;
}

.faq-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 12px;
  overflow: hidden;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.faq-card:hover {
  transform: translateY(-2px);
  border-color: rgba(56, 189, 248, 0.35);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.faq-question-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
}

.faq-question {
  font-size: 1.05rem;
  font-weight: 650;
  color: #e2e8f0;
  margin: 0;
  line-height: 1.45;
}

.faq-icon {
  font-size: 1rem;
  color: #38bdf8;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.faq-answer {
  padding: 0 22px 18px 22px;
  font-size: 0.98rem;
  color: #cbd5e1;
  line-height: 1.75;
  display: none;
}

.faq-card.active .faq-answer {
  display: block;
}

.faq-card.active .faq-icon {
  transform: rotate(180deg);
}

/* =====================================================
   FOOTER MAIN WRAPPER
===================================================== */
/* Footer Section */
.footer-section {
  background: linear-gradient(180deg, #001d9c 0%, rgba(15, 26, 67, 0.08) 100%);
  color: white;
  padding: 30px 20px; /* Reduced padding for smaller footer */
  font-family: Arial, sans-serif;
}

/* Footer Top: Logo + Vision */
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.footer-logo img {
  max-width: 120px; /* Smaller logo */
  height: auto;
  border-radius: 6px;
}

.footer-vision {
  flex: 1;
}

.footer-vision p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 10px;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: white;
  background-color: #3b5998;
  border-radius: 50%;
  font-size: 16px;
  transition:
    transform 0.3s,
    background-color 0.3s;
}

.social-links a:hover {
  background-color: #ffcc00;
  transform: scale(1.2);
}

/* Footer Styling - Optimized Layout */
.footer {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #fff;
  padding: 60px 20px 30px;
  position: relative;
  overflow: hidden;
}

/* Container for proper alignment */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Top Section - Logo, Quick Links, Broadband, Contact Us */
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

/* Logo and Brand */
.footer-brand {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
}

.footer-logo img {
  max-width: 280px;
  height: auto;
  filter: brightness(0) invert(1);
  transition: transform 0.4s ease;
}

.footer-logo img:hover {
  transform: scale(1.05);
}

.footer-text {
  font-size: 22px;
  color: #ddd;
  line-height: 1.6;
  text-align: left;
  max-width: 500px;
  margin: 0;
}

/* Footer Links Section - Three columns layout */
.footer-links {
  display: flex;
  gap: 40px;
  flex: 2 1 500px;
  justify-content: flex-start;
}

.footer-column {
  flex: 1;
  text-align: left;
}

.footer-column h4 {
  font-size: 20px;
  margin-bottom: 25px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45px;
  height: 3px;
  background: #3479fa;
  border-radius: 2px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 14px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #ccc;
  font-size: 16px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: inline-block;
  padding: 2px 0;
}

.footer-column ul li a:hover {
  color: #3479fa;
  transform: translateX(8px);
}

/* Contact Info Styling */
.contact-item {
  display: inline-block;
  align-items: flex-start; /* icon top align */
  gap: 10px;
  margin-bottom: 15px;
  color: #ccc;
  font-size: 17px;
  line-height: 1.4;
}

.contact-text {
  display: flex;
  flex-direction: column; /* text ek ke niche ek */
}

.contact-item strong {
  color: #fff;
  min-width: 60px;
}

.contact-item a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #3479fa;
}

/* Social Media Links */
.footer-social {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: #3479fa;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 111, 97, 0.3);
}

/* Footer Bottom - Centered */
.footer-bottom {
  text-align: center;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 15px;
  color: #aaa;
}

.footer-bottom p {
  margin: 8px 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-top {
    flex-direction: column;
    gap: 30px;
  }

  .footer-links {
    flex-direction: column;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 15px 20px;
  }

  .footer-top {
    flex-direction: column;
    gap: 30px;
  }

  .footer-logo img {
    max-width: 220px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 30px 12px 15px;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-social a {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .footer-text {
    font-size: 16px;
  }
}

/* Container (bottom-right floating) */
.whatsapp-fab {
  position: fixed;
  right: 100px;
  bottom: 50px;
  z-index: 9999;
  display: inline-block;
  text-decoration: none;
  outline: none;
}

/* Circle + shadow */
.whatsapp-btn {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(180deg, #25d366 0%, #128c7e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(18, 140, 126, 0.25);
  transform: translateZ(0);
  /* make it feel stable, with a very subtle blink/pulse */
  animation: subtleBlink 3s ease-in-out infinite;
  will-change: opacity, transform;
  cursor: pointer;
}

/* Slight hover pop (no heavy movement) */
.whatsapp-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 12px 30px rgba(18, 140, 126, 0.3);
}

/* The SVG icon itself */
.whatsapp-svg {
  width: 34px;
  height: 34px;
  display: block;
  pointer-events: none; /* svg doesn't steal click */
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.05));
}

/* Subtle blink: mostly stable, tiny dip in opacity + micro-scale */
@keyframes subtleBlink {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  20% {
    opacity: 1.6;
    transform: scale(0.95);
  } /* darker + faster */
  40% {
    opacity: 1;
    transform: scale(1.06);
  } /* sharp zoom */
  60% {
    opacity: 0.7;
    transform: scale(0.97);
  } /* dark fade */
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* Tablets / small laptops */
@media (max-width: 1024px) {
  .whatsapp-fab {
    right: 40px;
    bottom: 25px;
  }

  .whatsapp-btn {
    width: 56px;
    height: 56px;
  }

  .whatsapp-svg {
    width: 30px;
    height: 30px;
  }
}

/* Mobile phones */
@media (max-width: 768px) {
  .whatsapp-fab {
    right: 30px;
    bottom: 20px;
  }

  .whatsapp-btn {
    width: 50px;
    height: 50px;
  }

  .whatsapp-svg {
    width: 26px;
    height: 26px;
  }
}

/* Extra small phones (e.g., 320px) */
@media (max-width: 480px) {
  .whatsapp-fab {
    right: 20px;
    bottom: 20px;
  }

  .whatsapp-btn {
    width: 44px;
    height: 44px;
  }

  .whatsapp-svg {
    width: 22px;
    height: 22px;
  }
}
@media (max-width: 375px) {
  .whatsapp-fab {
    right: 20px;
    bottom: 20px;
  }

  .whatsapp-btn {
    width: 50px;
    height: 50px;
  }

  .whatsapp-svg {
    width: 30px;
    height: 30px;
  }
}

/* optional accessible label hidden visually but available for screen readers */
.sr-only {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap; /* added line */
}

/* ------------------------------------------
   MOBILE RESPONSIVE MENU
------------------------------------------ */
.hfe-nav-menu__toggle {
  display: none;
}

/* Mobile Design */
@media (max-width: 768px) {
  /* Layout stacks */
  .elementor-12 > header {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  /* Logo full width */
  .elementor-widget-image {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
  }

  /* Show menu toggle */
  .hfe-nav-menu__toggle {
    display: block !important;
    cursor: pointer;
    margin-bottom: 10px;
  }

  .hfe-nav-menu__toggle svg {
    width: 32px;
    height: 32px;
    fill: #000;
  }

  /* Hide desktop nav */
  .hfe-nav-menu__layout-horizontal {
    display: none !important;
  }

  /* When Elementor adds "active" class, show mobile menu */
  .hfe-nav-menu__layout-horizontal.active {
    display: block !important;
    width: 100%;
    background: #fff;
    padding: 20px 0;
    border-top: 1px solid #ddd;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .hfe-nav-menu__layout-horizontal ul {
    flex-direction: column;
    gap: 20px;
  }

  .hfe-nav-menu__layout-horizontal ul li a {
    font-size: 18px;
  }

  /* Call button full width */
  #phone {
    width: 100%;
    justify-content: center;
    padding: 12px;
    margin-top: 10px;
    font-size: 18px;
  }
}

/*Privacy-policy css*/
/* Global Theme */
.privacy-policy-wrapper {
  display: flex;
  gap: 24px;
  padding: 24px;
  color: #fff;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  animation: fadeIn 1.2s ease;
}

/* Main Body */
.privacy-policy-container {
  flex: 1;
  padding: 20px;
  background: rgba(30, 30, 30, 0.55);
  border-radius: 12px;
  animation: slideUp 0.9s ease;
}

/* Sidebar */
.privacy-policy-side {
  width: 320px;
}

/* Card Style */
.privacy-policy-card {
  background: rgba(20, 20, 20, 0.6);
  padding: 18px;
  border-radius: 12px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  animation: fadeIn 0.9s ease;
}

.privacy-policy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Buttons */
.privacy-policy-btn {
  display: inline-block;
  padding: 8px 14px;
  background: rgb(16 111 213 / 88%);
  color: #fff;
  border-radius: 8px;
  padding: 10px;
  text-decoration: none;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.privacy-policy-btn:hover {
  background: rgba(116, 161, 209, 0.7);
  color: #fff;
  transform: translateY(-4px);
}

/* Section Fade */
.privacy-policy-section {
  margin-top: 16px;
  animation: fadeIn 0.8s ease;
}

/* Divider */
.privacy-policy-divider {
  opacity: 0.15;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin: 20px 0;
}

/* Sidebar TOC */
.privacy-policy-toc a {
  color: #a8d8ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.privacy-policy-toc a:hover {
  color: #fff;
}

/* Muted Text */
.privacy-policy-muted {
  color: rgba(255, 255, 255, 0.55);
}

/* Last Updated Box */
.privacy-policy-updated {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.65);
}

/* --- Animations --- */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glow {
  0% {
    box-shadow: 0 0 0 rgba(0, 150, 255, 0.4);
  }
  100% {
    box-shadow: 0 0 20px rgba(0, 150, 255, 0.7);
  }
}

/* ============================================================
   Dynamic landing engine (slug layouts + CSS variables)
   Approach 1: body.slug-* overrides
   Approach 2: --lp-* tokens set from JS per slug
   Approach 3: optional css/slugs/<slug>.css via loadSlugStylesheet()
   ============================================================ */

:root {
  --lp-primary: var(--clr-primary);
  --lp-accent: var(--clr-accent);
  --lp-surface: #f5f7fb;
  --lp-text: #1a1d2b;
  --lp-muted: #667085;
  --lp-card: #ffffff;
  --lp-radius: 12px;
  --lp-page-bg-image: none;
}

.dynamic-layout {
  width: 100%;
}

.btn-get {
  background: var(--lp-primary, var(--clr-primary)) !important;
}

body.lp-has-page-bg {
  background-image: var(--lp-page-bg-image);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

body.lp-fallback .lp-fallback-note {
  margin-top: 10px;
  font-size: 14px;
  color: var(--lp-muted, #777);
}

/* --- Approach 1 examples (works with or without variables) --- */
body.slug-hathway-new-connection {
  background: var(--lp-surface, #fafafa);
  color: var(--lp-text, #1f2933);
}

body.slug-unlimited-hathway-internet-plans {
  background: var(--lp-surface, #fff8fb);
  color: var(--lp-text, #2d1b3d);
}

body.slug-hathway-high-speed-internet {
  background: var(--lp-surface, #070b12);
  color: var(--lp-text, #e8ecf7);
}

body.slug-affordable-hathway-plans {
  background: var(--lp-surface, #f8fafc);
  color: var(--lp-text, #0f172a);
}

body.slug-hathway-high-speed-internet .card-containers,
body.slug-hathway-high-speed-internet .top-reasons-section {
  background: transparent;
}

body.slug-hathway-high-speed-internet .section-title,
body.slug-hathway-high-speed-internet #page-heading {
  color: var(--lp-text, #e8ecf7);
}

body.slug-hathway-high-speed-internet .dynamic-content {
  background: rgba(15, 22, 36, 0.85);
  color: var(--lp-text, #e8ecf7);
  border-color: rgba(255, 255, 255, 0.08);
}

body.slug-hathway-high-speed-internet .dynamic-content .lp-content-section {
  border-top-color: rgba(255, 255, 255, 0.12);
}

body.slug-hathway-high-speed-internet .lp-content-sections--timeline {
  border-left-color: color-mix(in srgb, var(--lp-primary) 55%, transparent);
}

body.slug-hathway-high-speed-internet
  .dynamic-content
  .lp-content-sections--grid
  .lp-content-section {
  background: var(--lp-card, #0f1624);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

body.slug-hathway-high-speed-internet
  .dynamic-content
  .lp-content-sections--zigzag
  .lp-content-section:nth-child(odd),
body.slug-hathway-high-speed-internet
  .dynamic-content
  .lp-content-sections--zigzag
  .lp-content-section:nth-child(even) {
  background: rgba(15, 22, 36, 0.65);
}

body.slug-hathway-high-speed-internet
  .dynamic-content
  .lp-content-sections--bands
  .lp-content-section:nth-child(odd),
body.slug-hathway-high-speed-internet
  .dynamic-content
  .lp-content-sections--bands
  .lp-content-section:nth-child(even) {
  background: rgba(255, 255, 255, 0.06);
}

body.slug-hathway-high-speed-internet .premium-card {
  background: var(--lp-card, #0f1624);
  color: var(--lp-text, #e8ecf7);
}

/* --- Layout A (minimal hero + cards + CTA) --- */
.lp-layout-a {
  padding-bottom: 40px;
}

.lp-layout-a .lp-a-intro {
  margin-top: 18px;
}

.lp-layout-a .lp-a-pill-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: 92%;
  max-width: 1100px;
  margin: 18px auto;
}

.lp-a-pill {
  background: var(--lp-card, #fff);
  border-radius: var(--lp-radius, 16px);
  padding: 18px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-soft);
}

.lp-a-pill h3 {
  margin: 8px 0 6px;
  color: var(--lp-text, #1a1d2b);
}

.lp-a-pill p {
  color: var(--lp-muted, #5f6b7a);
  font-size: 14px;
}

.lp-a-pill-ic {
  font-size: 22px;
}

.lp-a-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: 92%;
  max-width: 1100px;
  margin: 22px auto;
}

.lp-a-card {
  background: var(--lp-card, #fff);
  border-radius: var(--lp-radius, 16px);
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.lp-a-card--accent {
  outline: 2px solid
    color-mix(in srgb, var(--lp-primary, #ff5722) 35%, transparent);
}

.lp-a-price {
  font-size: 28px;
  font-weight: 800;
  margin: 10px 0;
  color: var(--lp-text, #1a1d2b);
}

.lp-a-price span {
  font-size: 14px;
  font-weight: 600;
  color: var(--lp-muted, #667085);
}

.lp-a-card ul {
  list-style: disc;
  padding-left: 18px;
  margin: 12px 0 16px;
  color: var(--lp-muted, #555);
}

.lp-a-cta {
  width: 92%;
  max-width: 1100px;
  margin: 26px auto;
}

.lp-a-cta-inner {
  border-radius: var(--lp-radius, 16px);
  padding: 22px;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--lp-primary, #ff5722) 85%, #000),
    #111
  );
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.lp-a-banner {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

@media (max-width: 900px) {
  .lp-a-cards,
  .lp-layout-a .lp-a-pill-row {
    grid-template-columns: 1fr;
  }
}

/* --- Layout B (split + features + banner) --- */
.lp-layout-b {
  padding-bottom: 40px;
}

.lp-b-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  width: 92%;
  max-width: 1150px;
  margin: 22px auto;
  align-items: center;
}

.lp-b-split__copy h1 {
  color: var(--lp-text, #1a1d2b);
}

.lp-b-split__copy p {
  color: var(--lp-muted, #555);
  margin-top: 10px;
}

.lp-b-checks {
  margin: 16px 0 18px;
  padding-left: 18px;
  color: var(--lp-text, #1a1d2b);
}

.lp-b-checks li {
  margin: 8px 0;
}

.lp-b-section-img {
  width: 100%;
  border-radius: var(--lp-radius, 22px);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
  min-height: 260px;
}

.lp-b-features {
  width: 92%;
  max-width: 1150px;
  margin: 26px auto;
}

.lp-b-features-title {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 18px;
  color: var(--lp-text, #1a1d2b);
}

.lp-b-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.lp-b-feature {
  background: var(--lp-card, #fff);
  border-radius: var(--lp-radius, 22px);
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.lp-b-feature i {
  color: var(--lp-accent, #00cec9);
  font-size: 22px;
  margin-bottom: 8px;
}

.lp-b-wide-banner {
  width: 92%;
  max-width: 1150px;
  margin: 26px auto;
}

.lp-b-wide-inner {
  border-radius: calc(var(--lp-radius, 22px) + 6px);
  padding: 22px;
  background:
    radial-gradient(
      circle at 10% 20%,
      color-mix(in srgb, var(--lp-accent, #00cec9) 55%, transparent),
      transparent 55%
    ),
    radial-gradient(
      circle at 90% 30%,
      color-mix(in srgb, var(--lp-primary, #6c5ce7) 45%, transparent),
      transparent 50%
    ),
    #0f2027;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.lp-b-banner {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

@media (max-width: 900px) {
  .lp-b-split {
    grid-template-columns: 1fr;
  }

  .lp-b-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .lp-b-feature-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Layout C (full hero + pricing + testimonials) --- */
.lp-layout-c {
  padding-bottom: 40px;
}

.lp-c-hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background:
    radial-gradient(
      circle at 20% 20%,
      color-mix(in srgb, var(--lp-accent, #7c4dff) 35%, transparent),
      transparent 45%
    ),
    radial-gradient(
      circle at 80% 10%,
      color-mix(in srgb, var(--lp-primary, #00e5a8) 35%, transparent),
      transparent 40%
    ),
    #050816;
  color: var(--lp-text, #e8ecf7);
  padding: 48px 20px 40px;
}

.lp-c-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.lp-c-kicker {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  color: color-mix(in srgb, var(--lp-text, #e8ecf7) 70%, transparent);
}

.lp-c-hero-actions {
  margin-top: 16px;
}

.lp-c-section-title {
  text-align: center;
  font-size: 1.8rem;
  margin: 26px 0 16px;
  color: var(--lp-text, #e8ecf7);
}

.lp-c-pricing {
  width: 92%;
  max-width: 1100px;
  margin: 0 auto;
}

.lp-c-price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.lp-c-price {
  background: var(--lp-card, #0f1624);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--lp-radius, 14px);
  padding: 18px;
  color: var(--lp-text, #e8ecf7);
}

.lp-c-price--hot {
  outline: 2px solid
    color-mix(in srgb, var(--lp-primary, #00e5a8) 45%, transparent);
}

.lp-c-amount {
  font-size: 30px;
  font-weight: 900;
  margin: 10px 0;
}

.lp-c-amount span {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.75;
}

.lp-c-sub {
  color: var(--lp-muted, #9aa4bf);
  margin-bottom: 12px;
}

.lp-c-testimonials {
  width: 92%;
  max-width: 1100px;
  margin: 26px auto 10px;
}

.lp-c-tgrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.lp-c-quote {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--lp-radius, 14px);
  padding: 18px;
  color: var(--lp-text, #e8ecf7);
}

.lp-c-quote footer {
  margin-top: 10px;
  color: var(--lp-muted, #9aa4bf);
  font-size: 14px;
}

.lp-c-banner {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

@media (max-width: 900px) {
  .lp-c-price-grid,
  .lp-c-tgrid {
    grid-template-columns: 1fr;
  }
}

/* --- Layout D (media-left split) --- */
.lp-layout-d {
  padding-bottom: 40px;
}

.lp-d-split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
  width: 92%;
  max-width: 1150px;
  margin: 22px auto;
  align-items: center;
}

.lp-d-section-img {
  width: 100%;
  border-radius: var(--lp-radius, 16px);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
  min-height: 260px;
}

.lp-d-split__copy h1 {
  color: var(--lp-text, #1a1d2b);
}

.lp-d-split__copy p {
  color: var(--lp-muted, #555);
  margin-top: 10px;
}

.lp-d-bar {
  width: 92%;
  max-width: 1150px;
  margin: 18px auto;
  padding: 14px 18px;
  border-radius: var(--lp-radius, 14px);
  background: color-mix(in srgb, var(--lp-primary, #1b63ff) 12%, #fff);
  text-align: center;
  font-weight: 600;
  color: var(--lp-text, #1a1d2b);
}

.lp-d-banner {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

@media (max-width: 900px) {
  .lp-d-split {
    grid-template-columns: 1fr;
  }
}

/* --- Layout E (ribbon + panel) --- */
.lp-layout-e {
  padding-bottom: 40px;
}

.lp-e-ribbon {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: linear-gradient(
    120deg,
    color-mix(in srgb, var(--lp-primary, #1d4ed8) 88%, #000),
    color-mix(in srgb, var(--lp-accent, #22c55e) 55%, #0f172a)
  );
  color: #fff;
  padding: 36px 20px 32px;
}

.lp-e-ribbon-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.lp-e-ribbon #page-heading {
  color: #fff;
}

.lp-e-ribbon #page-description {
  color: rgba(255, 255, 255, 0.9);
  margin-top: 10px;
}

.lp-e-body {
  width: 92%;
  max-width: 900px;
  margin: 24px auto;
}

.lp-e-panel {
  border-radius: var(--lp-radius, 18px);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.lp-e-panel-img {
  width: 100%;
  display: block;
  min-height: 220px;
  object-fit: cover;
}

.lp-e-banner {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

/* --- Layout F (steps + media) --- */
.lp-layout-f {
  padding-bottom: 40px;
}

.lp-f-head {
  width: 92%;
  max-width: 900px;
  margin: 22px auto 12px;
  text-align: center;
}

.lp-f-head h1 {
  color: var(--lp-text, #1a1d2b);
}

.lp-f-head #page-description {
  color: var(--lp-muted, #555);
  margin-top: 8px;
}

.lp-f-steps {
  list-style: none;
  width: 92%;
  max-width: 800px;
  margin: 0 auto 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  counter-reset: lpstep;
}

.lp-f-steps li {
  background: var(--lp-card, #fff);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--lp-radius, 14px);
  padding: 16px;
  box-shadow: var(--shadow-soft);
}

.lp-f-steps li strong {
  display: block;
  color: var(--lp-primary, #b45309);
  margin-bottom: 4px;
}

.lp-f-steps li span {
  font-size: 14px;
  color: var(--lp-muted, #666);
}

.lp-f-media {
  width: 92%;
  max-width: 960px;
  margin: 0 auto 18px;
}

.lp-f-section-img {
  width: 100%;
  border-radius: var(--lp-radius, 14px);
  object-fit: cover;
  min-height: 200px;
  box-shadow: var(--shadow-soft);
}

.lp-f-banner {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

@media (max-width: 720px) {
  .lp-f-steps {
    grid-template-columns: 1fr;
  }
}

/* --- Layout G (office / B2B) --- */
.lp-layout-g {
  padding-bottom: 40px;
}

.lp-g-hero {
  width: 92%;
  max-width: 960px;
  margin: 22px auto 8px;
  text-align: center;
}

.lp-g-kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--lp-muted, #64748b);
  margin-bottom: 8px;
}

.lp-g-hero-inner #page-heading {
  color: var(--lp-text, #1a1a1a);
}

.lp-g-hero-inner #page-description {
  color: var(--lp-muted, #5a5a5a);
  margin-top: 8px;
}

.lp-g-metrics {
  width: 92%;
  max-width: 900px;
  margin: 0 auto 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.lp-g-metric {
  background: var(--lp-card, #ffffff);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--lp-radius, 12px);
  padding: 14px 12px;
  text-align: center;
  box-shadow: var(--shadow-soft, 0 6px 20px rgba(0, 0, 0, 0.06));
}

.lp-g-metric-val {
  display: block;
  font-size: 1.28rem;
  font-weight: 800;
  color: var(--lp-primary, #1e3a5f);
  line-height: 1.2;
}

.lp-g-metric-lbl {
  display: block;
  font-size: 12px;
  color: var(--lp-muted, #64748b);
  margin-top: 4px;
}

.lp-g-split {
  width: 92%;
  max-width: 1100px;
  margin: 24px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.lp-g-section-img {
  width: 100%;
  border-radius: var(--lp-radius, 12px);
  object-fit: cover;
  min-height: 220px;
  display: block;
  box-shadow: var(--shadow-soft, 0 10px 28px rgba(0, 0, 0, 0.08));
}

.lp-g-aside-title {
  font-size: 1.22rem;
  margin: 0 0 12px;
  color: var(--lp-text, #1a1a1a);
}

.lp-g-aside-list {
  margin: 0 0 16px;
  padding-left: 1.2rem;
  color: var(--lp-muted, #555);
  line-height: 1.65;
  font-size: 15px;
}

.lp-g-banner {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

@media (max-width: 768px) {
  .lp-g-metrics {
    grid-template-columns: 1fr;
  }

  .lp-g-split {
    grid-template-columns: 1fr;
  }
}

body.lp-root-home .dynamic-content.lp-content-layout-zigzag {
  border-color: rgba(27, 99, 255, 0.18);
  box-shadow: 0 12px 40px rgba(27, 99, 255, 0.06);
}

/* Root home: satellite banner clearer; form lower so full form visible */
body.lp-root-home .elementor-element-2b51bea::before {
  background: linear-gradient(
    105deg,
    rgba(8, 12, 22, 0.45) 0%,
    rgba(8, 12, 22, 0.22) 50%,
    rgba(8, 12, 22, 0.35) 100%
  );
}

/* Form position: single rule for all pages/slugs (.form-wrapper above + responsive below) */

/* Slug landing pages — readable body copy (skip dark high-speed slug; it has its own rules) */
body[class*='slug-']:not(.slug-hathway-high-speed-internet) #page-heading,
body[class*='slug-']:not(.slug-hathway-high-speed-internet)
  .lp-layout
  .card-containers
  h1 {
  text-wrap: balance;
}

body[class*='slug-']:not(.slug-hathway-high-speed-internet) #page-description,
body[class*='slug-']:not(.slug-hathway-high-speed-internet)
  .lp-layout
  .card-containers
  p {
  color: var(--lp-muted, #475569);
  font-size: 1.05rem;
  line-height: 1.65;
}

body[class*='slug-']:not(.slug-hathway-high-speed-internet) .dynamic-content p {
  color: var(--lp-text, #1a1d2b);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 72ch;
  margin-left: auto;
  margin-right: auto;
}

body[class*='slug-']:not(.slug-hathway-high-speed-internet) .dynamic-content {
  background: color-mix(in srgb, var(--lp-surface, #f8fafc) 92%, #fff);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--lp-radius, 14px);
}

/* Tablet: max-width 1024px */
@media (max-width: 1024px) {
  .privacy-policy-wrapper {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }

  .privacy-policy-side {
    width: 100%;
    order: -1; /* Sidebar on top if needed */
  }

  .privacy-policy-container {
    width: 100%;
  }
}

/* Mobile: max-width 750px */
@media (max-width: 750px) {
  .privacy-policy-wrapper {
    flex-direction: column;
    gap: 16px;
    padding: 16px;
  }

  .privacy-policy-container {
    padding: 16px;
    font-size: 0.95rem;
  }

  .privacy-policy-side {
    width: 100%;
    margin-bottom: 16px;
  }

  .privacy-policy-card {
    padding: 14px;
    margin-bottom: 14px;
  }

  .privacy-policy-btn {
    padding: 8px 12px;
    font-size: 0.9rem;
  }

  .privacy-policy-section {
    margin-top: 12px;
  }

  .privacy-policy-divider {
    margin: 16px 0;
  }

  .privacy-policy-toc a {
    font-size: 0.95rem;
  }

  .privacy-policy-updated {
    font-size: 0.85rem;
  }
}

/* Extra small screens: max-width 480px */
@media (max-width: 480px) {
  .privacy-policy-wrapper {
    padding: 12px;
    gap: 12px;
  }

  .privacy-policy-container {
    padding: 12px;
  }

  .privacy-policy-card {
    padding: 12px;
  }

  .privacy-policy-btn {
    padding: 6px 10px;
    font-size: 0.85rem;
  }

  .privacy-policy-section h3 {
    font-size: 1rem;
  }

  .privacy-policy-toc a {
    font-size: 0.9rem;
  }
}
