:root {
  --purple: #4b2396 !important;
  --yellow: #ffd428;
  --white: #ffffff;
}

body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Roboto Condensed";
}

h1 {
  font-size: 3rem;
  line-height: 1.5;
}

/* ================= HEADER ================= */
.navbar {
  background: var(--purple);
  padding: 12px 0;
  border-bottom: 1px solid #707070;
}

.navbar-brand img {
  height: 42px;
}

.nav-link {
  color: #fff !important;
  font-weight: 500;
  margin: 0 6px;
}

.nav-link.active,
.nav-link:hover {
  color: var(--yellow) !important;
}

.btn-survey {
  background: var(--yellow);
  color: #000;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 30px;
}

.btn-survey:hover {
  background: #ffe76b;
}

/* ================= HERO ================= */
.hero {
  background: var(--purple);
  color: #fff;
  position: relative;
  padding: 60px 0 160px;
  overflow: hidden;
}

.hero ul li svg {
  margin-right: 10px;
}

.hero h1 {
  color: var(--yellow);
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero p {
  margin-bottom: 24px;
  font-size: 25px;
  font-weight: 600;
  line-height: 35px;
}

.bi-wifi {
  font-size: 24px;
}

.bi-wifi::before {
  transform: rotate(90deg);
}

.hero ul {
  list-style: none;
  padding: 0;
}

.hero ul li {
  margin-bottom: 12px;
  /* padding-left: 28px; */
  position: relative;
}

/* .hero ul li:before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-weight: 700;
} */
.hero-inner ul li:before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-weight: 700;
}

.btn-title {
  font-size: 29px;
  margin-top: 24px;
  margin-left: 80px;
  color: #ffd428;
}

.hero-btn {
  font-size: 1.5rem;
  background: var(--yellow);
  color: var(--purple);
  font-weight: 600;
  padding: 14px 34px;
  border-radius: 50px;
  display: inline-block;
  margin-top: 25px;
  text-decoration: none;
  animation: zoom 1.5s infinite;
  font-family: "Roboto Condensed";
}

@keyframes zoom {

  0%,
  to {
    transform: scale(1);
  }

  50% {
    transform: scale(1.02);
  }
}

/* ================= SWIPER ================= */
.heroSwiper {
  max-width: 500px;
}

.swiper-slide {
  display: flex !important;
  justify-content: center;
}

.slider-card {
  animation: slideIn 1s ease;
}

.slider-card img {
  width: 100%;
  border-radius: 20px;
  min-height: 600px;
  object-fit: cover;
}

@keyframes slideIn {
  from {
    transform: translateX(-60px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.hero .swiper-button-next,
.hero .swiper-button-prev {
  /* color: var(--yellow); */
  background: #ffd629;
  border-radius: 50%;
  height: 60px;
  width: 60px;
  font-size: 10px;
  opacity: 0.5;
}

.hero .swiper-button-next:hover,
.hero .swiper-button-prev:hover {
  opacity: 1;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 16px !important;
  color: #fff;
}

.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.4;
}

.swiper-pagination-bullet-active {
  background: var(--yellow);
  opacity: 1;
}

/* ================= CURVE ================= */
.hero-curve {
  position: absolute;
  bottom: -1px;
  width: 100%;
  height: 140px;
  background: #fff;
  border-top-left-radius: 100% 100px;
  border-top-right-radius: 100% 100px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .hero h1 {
    font-size: 32px;
    line-height: 40px;
  }

  .hero {
    text-align: center;
    padding: 40px 0 160px;
  }
  .signup-modal .modal-dialog{
        max-width: var(--bs-modal-width) !important;
  }
}

/* ================= CTA STRIP ================= */
.cta-strip {
  background: #ffffff;
  padding: 70px 0;
  position: relative;
  margin-top: -90px;
  /* pulls it into hero curve */
  z-index: 10;
}

.cta-box {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.cta-btn {
  background: #fff;
  border: 1.5px solid #d9d9d9;
  border-radius: 50px;
  padding: 18px 30px;
  min-width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  color: #4b2396;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.cta-icon {
  font-size: 18px;
  color: #4b2396;
}

.cta-arrow {
  /* margin-left: auto; */
  font-size: 18px;
  transition: transform 0.3s ease;
}

/* ===== HOVER EFFECT (ZOOM + SHADOW) ===== */
.cta-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 18px 40px rgba(75, 35, 150, 0.25);
  border-color: #4b2396;
  color: #4b2396;
}

.cta-btn:hover .cta-arrow {
  transform: translateX(6px);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .cta-strip {
    margin-top: -80px;
    padding: 0px 0 40px;
  }
}

/* ================= PLANS SECTION ================= */
.plans-section {
  background: var(--purple);
  padding: 80px 0;
}

.plans-wrapper {
  background: #fff8e6;
  border-radius: 32px;
  padding: 70px 50px;
}

/* HEADER */
.plans-header h2 {
  font-size: 3rem;
  line-height: 1.3;
  font-weight: 800;
  color: var(--purple);
  margin-bottom: 20px;
}

.plans-badge {
  display: inline-block;
  background: var(--purple);
  color: #fff;
  padding-block: 5px;
  line-height: 30px;
  border-radius: 30px;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 600;
  background: linear-gradient(45deg, #472193, #a6a6a6, #3f63c6);
  padding-left: 15px;
  padding-right: 15px;
  border-radius: 2rem;
  color: #fff !important;
  animation: marquee 0.5s linear infinite alternate;
  position: relative;
  /* overflow: hidden; */
}

.di-badge span {
  position: absolute;
  transform: translateX(8px) translateY(15px);
  color: var(--purple);
  font-weight: 600;
  font-size: 14px;
}

.di-badge {
  position: relative;
}

@keyframes marquee {
  from {
    transform: scale(0.95);
  }

  to {
    transform: scale(1.05);
  }
}

.slider-wrapper {
  position: relative;
  width: 100%;
}

.plans-badge span {
  font-size: 12px;
  margin-left: 6px;
}

.plans-subtitle {
  margin-top: 15px;
  font-size: 16px;
  font-weight: 500;
  color: #4b2396;
}

/* CARD */
.plan-card {
  background: #fff;
  border-radius: 24px;
  padding: 30px 28px 35px;
  height: 100%;
  text-align: center;
  border: 2px solid #1a0c34;
}

.plan-card h4 {
  font-weight: 700;
  margin-bottom: 6px;
}

.plan-small {
  font-size: 14px;
  margin-bottom: 18px;
}

/* PRICE */
.price-pill {
  display: inline-block;
  padding: 10px 26px;
  border-radius: 40px;
  font-size: 22px;
  font-weight: 800;
  width: 100%;
  margin-bottom: 20px;
}

.price-pill span {
  font-size: 14px;
  font-weight: 600;
}

.price-pill.blue {
  background: #4566c5;
  color: #fff;
}

.price-pill.yellow {
  background: #ffd629;
  color: #000;
}

.price-pill.purple {
  background: #4b2396;
  color: #fff;
}

/* SCROLLABLE FEATURES */
.plan-features-scroll {
  max-height: 230px;
  overflow-y: auto;
  margin: 18px 0 26px;
  padding-right: 6px;
}

.plan-features-scroll ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.plan-features-scroll li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.plan-features-scroll li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  color: #4b2396;
  font-size: 13px;
}

/* SCROLLBAR */
.plan-features-scroll::-webkit-scrollbar {
  width: 4px;
}

.plan-features-scroll::-webkit-scrollbar-thumb {
  background: #000;
  border-radius: 10px;
}

.plan-features-scroll {
  scrollbar-width: thin;
  scrollbar-color: #000 transparent;
}

/* BUTTON */
.plan-btn {
  display: inline-block;
  background: #ffd629;
  color: #000;
  padding: 12px 34px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.plan-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(255, 214, 41, 0.45);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .plans-wrapper {
    padding: 40px 20px;
  }

  .plans-header h2 {
    font-size: 26px;
    margin-bottom: 10px;
  }
}

/* ================= PLAN FEATURES SCROLL ================= */
.plan-features-scroll {
  max-height: 220px;
  /* controls visible area */
  overflow-y: auto;
  margin: 22px 0;
  padding-right: 6px;
}

/* List */
.plan-features-scroll ul {
  padding-left: 0;
  margin: 0;
  list-style: none;
}

.plan-features-scroll li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
  text-align: left;
}

/* Check icon */
.plan-features-scroll li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  color: #4b2396;
  font-size: 13px;
}

/* Custom scrollbar (Webkit) */
.plan-features-scroll::-webkit-scrollbar {
  width: 4px;
}

.plan-features-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.plan-features-scroll::-webkit-scrollbar-thumb {
  background: #000;
  border-radius: 10px;
}

/* Firefox */
.plan-features-scroll {
  scrollbar-width: thin;
  scrollbar-color: #000 transparent;
}

@media (min-width: 992px) {
  .plan-features-scroll {
    max-height: 260px;
  }
}

/* PRICE PILL */
.price-pill {
  border-radius: 50px;
  padding: 12px 20px;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 22px;
}

.price-pill span {
  font-size: 14px;
  font-weight: 500;
}

.price-pill.blue {
  background: #4266c4;
}

.price-pill.yellow {
  background: var(--yellow);
  color: #000;
}

.price-pill.purple {
  background: #4b2396;
}

/* FEATURES */
.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  text-align: left;
}

.plan-card ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 15px;
  font-family: 'Fustat',sans-serif;
}
.modal{
  font-family: 'Fustat',sans-serif;
}
.plan-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #4b2396;
  font-weight: 700;
}

/* BUTTONS */
.plan-btn {
  background: var(--yellow);
  color: #000;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.view-more-btn {
  background: var(--purple);
  color: #fff;
  padding: 14px 38px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .plans-wrapper {
    padding: 40px 15px;
  }

  .plans-header h2 {
    font-size: 28px;
  }
}

/* ================= KEY FEATURES VIDEO ONLY ================= */
.key-features-video-section {
  background: var(--purple);
}

/* Heading above video (same as SquareComm) */
.key-features-heading h2 {
  color: var(--yellow);
  font-size: 3rem;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 6px;
  position: relative;
}

.key-features-heading p {
  color: #fff;
  font-size: 15px;
  opacity: 0.9;
  margin-bottom: 40px;
}

/* Video wrapper */
.video-only-box {
  background: #000;
  border-radius: 0;
  overflow: hidden;
}

/* Video itself */
.video-only-box video {
  width: 100%;
  height: auto;
  display: block;
  background: #000;
}

/* Keep native controls (progress bar at bottom) */
.video-only-box video::-webkit-media-controls {
  opacity: 1;
}

/* Responsive spacing */
@media (max-width: 991px) {
  .key-features-heading h2 {
    font-size: 30px;
  }
}

/* ================= FEATURES STRIP ================= */
.features-strip {
  background: var(--purple);
  padding: 80px 0;
}

.feature-item {
  color: #fff;
  padding: 0 15px;
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.feature-icon img {
  width: 32px;
  height: auto;
}

.feature-item h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-item p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 12px;
}

.feature-item a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--yellow);
  padding-bottom: 2px;
  transition: all 0.3s ease;
}

.feature-item a:hover {
  color: var(--yellow);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .features-strip {
    padding: 40px 0;
  }
}

/* ================= DISCOVER OUR SERVICES ================= */
.services-section {
  background: var(--purple);
  padding: 0px 0 80px;
}

.services-wrapper {
  background: #fff8e6;
  border-radius: 36px;
  padding: 80px 70px;
}

/* TITLE */
.services-title {
  font-family: "Roboto Condensed";
  font-size: 3rem;
  line-height: 1.3;
  font-weight: 800;
  color: var(--purple);
  margin-bottom: 35px;
}

/* CARD */
.service-card {
  background: #fff;
  border-radius: 28px;
  padding: 55px 50px 60px;
  height: 100%;
  text-align: center;
}

/* PILL */
.service-pill {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  padding: 10px;
  border-radius: 50px;
  margin-bottom: 35px;
}

.service-pill.blue {
  background: #4266c4;
  color: #fff;
}

.service-pill.yellow {
  background: var(--yellow);
  color: var(--purple);
}

/* CONTENT */
.service-card h4 {
  font-family: "Cairo", sans-serif;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #000;
}

.service-card p {
  font-family: "Fustat", sans-serif;
  font-size: 18px;
  margin-top: 25px;
  line-height: 1.6;
  margin-bottom: 40px;
  font-weight: 700;
  color: #000;
}

/* BUTTON */
.service-btn {
  font-family: "Roboto", sans-serif;
  display: inline-block;
  background: var(--yellow);
  color: #000;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

/* HOVER — SAME AS REFERENCE */
.service-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 18px 40px rgba(255, 212, 40, 0.55);
  color: #000;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .services-wrapper {
    padding: 40px 15px;
  }

  .services-title {
    font-size: 30px;
    margin-bottom: 14px;
  }
}

/* ================= SEAMLESS SWITCH ================= */
.steps-section {
  background: var(--purple);
  padding: 0px;
  color: #fff;
}

/* HEADER */
.steps-header h2 {
  font-family: "Roboto Condensed";
  font-size: 3rem;
  line-height: 1.3;
  font-weight: 800;
  color: var(--yellow);
  margin-bottom: 12px;
}

.steps-header p {
  font-family: "Cairo", sans-serif;
  font-size: 16px;
  opacity: 0.9;
}

/* CARD */
.step-card {
  text-align: left;
  padding: 10px;
}

/* IMAGE */
.step-image {
  border: 2px solid var(--yellow);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 22px;
}

.step-c {
  position: relative;
  padding-left: 70px;
}

.step-c .step-icon {
  position: absolute;
  left: 0px;
}

.step-image img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

/* TITLE */
.step-card h4 {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.step-icon img {
  width: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* TEXT */
.step-card p {
  font-family: "Cairo", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #fff;
}

/* BUTTON */
.steps-btn {
  font-family: "Roboto", sans-serif;
  display: inline-block;
  background: var(--yellow);
  color: #000;
  padding: 16px 44px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.35s ease;
}

.steps-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 18px 40px rgba(255, 212, 40, 0.55);
  color: #000;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .steps-header h2 {
    font-size: 30px;
    margin-bottom: 6px;
  }

  .step-image img {
    height: 200px;
  }
}

/* ================= TESTIMONIALS ================= */
.testimonials-section {
  background: var(--purple);
  padding: 80px 0;
  color: #fff;
}

/* HEADER */
.testimonials-header .wifi-icon {
  font-size: 36px;
  color: var(--yellow);
}

.testimonials-header h2 {
  font-family: "Roboto Condensed";
  font-size: 3rem;
  line-height: 1.3;
  font-weight: 800;
  color: var(--yellow);
}

.rating-summary {
  font-size: 15px;
}

.rating-summary i {
  color: var(--yellow);
}

/* WRAPPER */
.testimonials-wrapper {
  position: relative;
  margin-top: 60px;
}

/* SLIDE HEIGHT FIX */
.swiper-slide {
  height: auto !important;
  display: flex !important;
}

.testimonial-card {
  background: #fff8e6;
  color: #000;
  border-radius: 28px;
  padding: 40px 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 100%;
}

/* TEXT */
.testimonial-card p {
  font-family: "Cairo", sans-serif;
  font-size: 15px;
  line-height: 1.7;
}

.testimonial-footer {
  margin-top: 25px;
  text-align: center;
}

.testimonial-footer h5 {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.stars i {
  color: var(--yellow);
}

/* ================= TESTIMONIALS ================= */
.testimonials-section {
  background: var(--purple);
  padding: 80px 0;
  color: #fff;
}

/* HEADER */
.testimonials-header .wifi-icon {
  font-size: 36px;
  color: var(--yellow);
  margin-bottom: 10px;
}

.testimonials-header h2 {
  font-family: "Roboto Condensed";
  font-size: 3rem;
  line-height: 1.3;
  font-weight: 800;
  color: var(--yellow);
  margin-bottom: 12px;
}

.rating-summary {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
}

.rating-summary i {
  color: var(--yellow);
}

.rating-summary span {
  margin-left: 8px;
}

/* CARD */
.testimonial-card {
  background: #fff8e6;
  color: #000;
  border-radius: 28px;
  padding: 40px 35px 45px;
  text-align: center;
  height: 100%;
}

.testimonial-card p {
  font-family: "Cairo", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.testimonial-card h5 {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.stars i {
  color: var(--yellow);
}

/* SWIPER ARROWS */
.swiper-nav {
  width: 52px;
  height: 52px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: 0.3s;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .testimonials-header h2 {
    font-size: 30px;
  }
}

/* ================= ARROWS (EXACT DESIGN) ================= */
.swiper-arrow {
  width: 52px !important;
  height: 52px !important;
  background: #fff !important;
  border-radius: 50% !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25) !important;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.swiper-arrow::after {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900;
  font-size: 18px !important;
  color: #000;
}

.swiper-arrow.swiper-button-prev {
  left: -35px;
}

.swiper-arrow.swiper-button-next {
  right: -35px;
}

.swiper-arrow.swiper-button-prev::after {
  content: "\f060";
}

.swiper-arrow.swiper-button-next::after {
  content: "\f061";
}

.swiper-arrow:hover {
  transform: translateY(-50%) scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .swiper-button-prev {
    left: 10px !important;
  }

  .swiper-button-next {
    right: 10px !important;
  }

  .testimonials-header h2 {
    font-size: 30px;
  }

  .testimonials-wrapper {
    position: relative;
    margin-top: 30px;
  }
}

/* ================= COVERAGE SECTION ================= */
.coverage-section {
  background: var(--purple);
  padding: 80px 0;
  color: #fff;
}

.cta-strip svg {
  fill: #472193;
  height: 20px;
  width: 20px;
}

/* HEADER */
.coverage-header h2 {
  font-family: "Roboto Condensed";
  font-size: 3rem;
  line-height: 1.3;
  font-weight: 800;
  color: var(--yellow);
  margin-bottom: 10px;
}

.coverage-header p {
  font-family: "Cairo", sans-serif;
  font-size: 16px;
  opacity: 0.9;
}

/* FORM */
.coverage-form {
  max-width: 900px;
  margin: 40px auto 30px;
  display: flex;
  border-radius: 6px;
  overflow: hidden;
}

.coverage-form input {
  flex: 1;
  padding: 14px 18px;
  font-size: 16px;
  border: none;
  outline: none;
}

.coverage-form button {
  background: var(--yellow);
  color: #000;
  border: none;
  padding: 0 26px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.coverage-form button:hover {
  background: #ffd52a;
}

/* MAP BOX */
.coverage-map-box {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
  position: relative;
}

/* MAP */
.coverage-map-box iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

/* LEGEND BAR */
.coverage-legend {
  background: var(--yellow);
  padding: 12px 20px;
  display: flex;
  gap: 30px;
  align-items: center;
}

.legend-item {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #000;
}

.legend-item.available i {
  color: #6cc24a;
}

.legend-item.unavailable i {
  color: #d93025;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .coverage-header h2 {
    font-size: 30px;
    margin-bottom: 0;
  }

  .coverage-form {
    flex-direction: column;
  }

  .coverage-form button {
    padding: 14px;
  }

  .coverage-map-box iframe {
    height: 300px;
  }
}

/* ================= FAQ SECTION ================= */
.faq-section {
  background: var(--purple);
  /* padding:80px 0; */
  padding-bottom: 30px;
}

.faq-title {
  font-family: "Roboto Condensed";
  font-size: 44px;
  font-weight: 800;
  color: var(--yellow);
  margin-bottom: 60px;
}

/* ACCORDION */
.faq-accordion {
  /* max-width: 1000px; */
  margin: 0 auto;
}

.accordion-item {
  background: #fff8e6;
  border-radius: 14px;
  margin-bottom: 22px;
  border: none;
  overflow: hidden;
}

/* HEADER BUTTON */
.accordion-button {
  background: #fff8e6;
  font-family: "Cairo", sans-serif;
  font-size: 20px;
  font-weight: 700;
  padding: 22px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background: #fff8e6;
}

/* REMOVE DEFAULT ICON */
.accordion-button::after {
  display: none;
}

/* CUSTOM ICON */
.faq-icon {
  width: 36px;
  height: 36px;
  background: var(--purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-icon i {
  color: var(--yellow);
  font-size: 14px;
}

/* BODY */
.accordion-body {
  font-family: "Cairo", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #000;
  padding: 0 0px 22px;
}

.accordion-body p {
  padding-bottom: 0;
  margin-bottom: 12px;
}

/* BUTTON */
.faq-btn {
  font-family: "Roboto", sans-serif;
  background: var(--yellow);
  color: #000;
  padding: 14px 38px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
}

/* ================= FOOTER ================= */
.site-footer {
  background: var(--purple);
  color: #fff;
  padding: 80px 0 25px;
  font-family: "Cairo", sans-serif;
  border-top: 1px solid #707070;
}

/* SUBSCRIBE BOX */
.footer-subscribe {
  background: var(--yellow);
  border-radius: 22px;
  padding: 30px;
  color: #000;
}

.footer-subscribe h4 {
  font-family: "Roboto Condensed";
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 10px;
}

.footer-subscribe p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 18px;
}

.subscribe-form {
  display: flex;
  background: #fff;
  border-radius: 50px;
  padding: 6px;
}

.subscribe-form input {
  border: none;
  flex: 1;
  padding: 10px 16px;
  border-radius: 50px;
  outline: none;
}

.subscribe-form button {
  background: var(--purple);
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
}

/* LINKS */
.site-footer h5 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 16px;
}

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

.site-footer ul li {
  margin-bottom: 10px;
}

.site-footer ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}

.site-footer ul li a:hover {
  text-decoration: underline;
}

/* DIVIDER */
.footer-divider {
  border-color: rgba(255, 255, 255, 0.3);
  margin: 20px 0;
}

/* APP */
.footer-app h5 {
  font-size: 24px;
  margin-bottom: 12px;
}

.app-buttons img {
  height: 44px;
  margin: 0 8px;
  cursor: pointer;
}

/* POLICIES */
.footer-policies {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 20px 0;
}

.footer-policies a {
  background: #fff;
  color: #000;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 16px;
  text-decoration: none;
  font-weight: 600;
}

/* SOCIAL */
.footer-social {
  text-align: center;
  margin: 20px 0;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--yellow);
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 6px;
  font-size: 16px;
}

/* COPYRIGHT */
.footer-bottom {
  margin-top: 25px;
  font-size: 14px;
}

.brand-pill {
  background: #fff;
  color: var(--purple);
  padding: 4px 14px;
  border-radius: 20px;
  font-weight: 700;
  margin-right: 6px;
}

a {
  text-decoration: none;
}

/* ================= PAGE TITLE BAR ================= */
.page-title-bar {
  background: #4b2497;
  /* SquareComm purple */
  padding: 60px 0;
  text-align: center;
}
.page-title-bar .page-title::before  {
        font-weight: 900;font-family:"Font Awesome 6 Free";    content: "\f1eb";
            font-size: 22px;
    transform: rotate(45deg);
    top: 5px;
    position: absolute;
    right: -23px;

}
.wifi-btn i{
    position: relative;
    transform: rotate(45deg);
}
.page-title {
  font-family: "Roboto Condensed";
  font-size: 60px;
  font-weight: 800;
  color: #ffd629;
  /* SquareComm yellow */
  margin: 0 auto;
  letter-spacing: 0.5px;
  display: inline-block !important;
  position: relative;
}

/* Responsive */
@media (max-width: 991px) {
  .page-title {
    font-size: 30px;
  }
}
.cart-item p{
    font-size: 12px !important;
}
.cart-item strong{
    font-family: 'Roboto',sans-serif;
    font-weight: 700 !important;
    font-size: 13px;
}
/* ================= INNER HERO COMMON ================= */
.inner-hero {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(180deg, #ffd629 0%, #472194 100%);
  overflow: hidden;
}
.section-padding{
      padding: 80px 0;
}

/* Decorative Icons */
.inner-hero::before {
  content: "\f1eb";
  /* WiFi icon */
  font-family: "FontAwesome";
  position: absolute;
  right: 60px;
  top: 60px;
  font-size: 160px;
  color: rgba(255, 255, 255, 0.25);
}

.inner-hero::after {
  content: "\e585";
  /* Tower icon */
  font-family: "FontAwesome";
  position: absolute;
  left: 40px;
  bottom: 40px;
  font-size: 160px;
  color: rgba(255, 255, 255, 0.25);
}

/* CONTENT */
.inner-title {
  font-family: "Roboto Condensed";
  font-size: 46px;
  font-weight: 800;
  line-height: 64px;
  color: #4b2497;
  margin-bottom: 20px;
  /* text-shadow: 2px 2px 0px #fff; */
}

.inner-subtitle {
  font-family: "Cairo", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #4b2497;
  margin-bottom: 20px;
}

.privacy-sec .inner-subtitle {
  margin-bottom: 10px;
  color: #fff;
  border-top: 1px solid #ffffff5c;
  padding-top: 10px;

  /* text-shadow: 2px 2px 0px #fff; */
}

.inner-text {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #fff;
  max-width: 620px;
  margin-bottom: 20px;
}

/* BUTTON */
.inner-btn {
  display: inline-block;
  background: #4b2497;
  color: #ffd629;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
}

.inner-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

/* IMAGE */
.inner-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.inner-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .inner-title {
    font-size: 30px;
    line-height: 38px;
  }

  .title-2 {
    font-size: 28px;
    line-height: 38px;
  }

  .inner-subtitle {
    font-size: 22px;
  }

  .inner-hero::before,
  .inner-hero::after {
    display: none;
  }

  .inner-btn {
    padding: 10px 24px;
  }
}

/* ================= CONTACT SECTION ================= */
.contact-section {
  background: linear-gradient(180deg, #ffd629, #472194);
  padding: 90px 0;
}

/* TITLE */
.contact-title {
  font-family: "Fustat", sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #4b2396;
  margin-bottom: 40px;
}

/* CONTACT CARDS */
.contact-card {
  background: #fff;
  border-radius: 14px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
  height: 100%;
}

.contact-card i {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #4b2396;
  color: #ffd629;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  padding: 20px;
}

/* FORM */
.form-title {
  font-size: 28px;
  font-weight: 800;
  color: #4b2396;
  margin-bottom: 30px;
}

.form-control {
  border: none;
  border-bottom: 2px solid #fffdfd;
  border-radius: 0;
  padding: 12px 8px;
  font-size: 15px;
  background: transparent;
}

.form-control:focus {
  box-shadow: none;
  border-color: #4b2396;
}

/* SERVICES */
.services-box {
  margin-top: 25px;
}

.services-box p {
  font-weight: 600;
  margin-bottom: 10px;
}

.services-box label {
  margin-right: 20px;
  font-size: 14px;
}

/* BUTTON */
.submit-btn {
  margin-top: 30px;
  background: #4b2396;
  color: #ffd629;
  border: none;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  transition: 0.3s;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

/* MAP */
.map-box {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
  max-height: 490px;
}

.map-box iframe {
  width: 100%;
  height: 520px;
  border: 0;
}

/* VALIDATION */
label.error {
  color: red;
  font-size: 12px;
  margin-top: 4px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .contact-title {
    font-size: 28px;
  }

  .map-box iframe {
    height: 380px;
  }
}

/* FORM WRAPPER */
.contact-form-wrap {
  background: #fff;
  padding: 40px 45px 50px;
  border-radius: 18px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

/* TITLE */
.form-title {
  font-family: "Fustat", sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: #4b2396;
  margin-bottom: 35px;
  text-shadow: 1px 2px 0 rgb(255, 255, 255);
}

/* INPUTS */
.form-input {
  width: 100%;
  height: 58px;
  padding: 14px 18px;
  border: none;
  border-radius: 12px;
  background: #fff;
  font-size: 15px;
  border: 1px solid #1e1e1e3d;
  transition: 0.25s;
}

.form-input::placeholder {
  color: #6f6f6f !important;
}
::placeholder{

  color: #6f6f6f !important;
}
.form-input:focus {
  outline: none;
  border: 1px solid #4b2396;
  /* box-shadow: 0 18px 40px rgba(75, 35, 150, 0.35); */
}

/* SERVICES */
.services-box {
  margin-top: 28px;
}

.services-box p {
  font-weight: 600;
  margin-bottom: 14px;
}

.services-box label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: 22px;
  font-size: 14px;
}

/* BUTTON */
.submit-btn {
  margin-top: 32px;
  background: #4b2396;
  color: #ffd629;
  padding: 15px 42px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  transition: 0.3s;
}

.submit-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 22px 50px rgba(75, 35, 150, 0.6);
}

/* ================= NAVBAR DROPDOWN ================= */

/* Parent */
.navbar .nav-item.dropdown {
  position: relative;
}

/* ================= DESKTOP (HOVER) ================= */
@media (min-width: 992px) {
  .navbar .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 230px;
    background: #fad02a;
    /* YOUR DESKTOP COLOR */
    border: none;
    border-radius: 14px;
    padding: 12px 0;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
  }

  .navbar .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }

  .navbar .dropdown-item {
    color: #000;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 22px;
    background: transparent;
    transition: all 0.3s ease;
  }

  .navbar .dropdown-item:hover {
    background: rgb(75 35 150);
    color: #fffbff;
    padding-left: 27px;
  }
}
  .nav-link{
        position: relative;
        font-weight: 300 !important;
        font-family: 'Roboto',sans-serif;
        font-size: 14px;
        letter-spacing: 0.6px;
    }
.nav-link::before {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: var(--yellow); /* underline color */
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::before, .nav-link.active::before {
    width: 100%;
    left: 50%;
}
.cart-link {
    position: relative;
    font-size: 22px;
    color: #fff;
    display: inline-block;
}
.cart-link:hover{
    transform: scale(1.1);
}
/* Badge container */
.cart-badge-wrapper {
    position: absolute;
    top: -10px;
    right: -10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Count badge */
.cart-count {
    position: relative;
    width: 18px;
    height: 18px;
    font-size: 11px;
    font-weight: bold;
    color: #000;
    text-align: center;
    line-height: 18px;
    background-color: rgb(255 214 41);
    border-radius: 9999px;
    z-index: 2;
}

/* Ping circle */
.cart-ping {
    position: absolute;
    width: 18px;
    height: 18px;
    background-color: rgb(255 214 41);
    border-radius: 9999px;
    z-index: 1;
}

/* Ping animation */
.animate-ping {
    animation: ping 1.5s cubic-bezier(0,0,.2,1) infinite;
}

@keyframes ping {
    75%, to {
        transform: scale(2);
        opacity: 0;
    }
}

.cus-nav {
    position: relative;
    width: 100%;
    transition: all 0.3s ease;
    z-index: 999;
}

/* When navbar becomes fixed */
.cus-nav.nav-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    /* box-shadow: 0 4px 12px rgba(0,0,0,0.1); */
    animation: slideDown 0.35s ease;
}

/* Smooth slide from top */
@keyframes slideDown {
    from {
        top: -80px;
        opacity: 0;
    }
    to {
        top: 0;
        opacity: 1;
    }
}
/* Parent must be relative */
.navbar .nav-item.dropdown {
    position: relative;
}

/* Base dropdown state */
.navbar .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    margin-top: 0;
    padding: 0 !important;
    border-radius: 20px !important;
    overflow: hidden;
    pointer-events: none; /* 🔥 KEY FIX */
}

/* Hover on parent */
.navbar .nav-item.dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto; /* 🔥 KEY FIX */
}

/* ================= MOBILE (CLICK) ================= */
@media (max-width: 991px) {
  .navbar .dropdown-menu {

    position: static;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding-left: 15px;
    margin-top: 8px;
    display: none;
    /* hidden by default */
  }

  /* 🔑 THIS IS REQUIRED */
  .navbar .dropdown-menu.show {
    display: block;
    background: #f6cc2d;
  }
.dropdown{
    display: block !important;
}
  .navbar .dropdown-item {
    color: #000;
          padding: 8px 10px;
        font-size: 16px;
  }
}

/* Dropdown arrow */
.navbar .dropdown-toggle::after {
  border-top-color: #ffffff;
}

/* ================
------manjunath css----------
============================ */

.accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: none;
  font-size: 24px;
}

.accordion-body {
  position: relative;
  padding-top: 16px;
  box-shadow: none;
}

.accordion-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #00000042;
}

.accordion-item {
  padding-inline: 26px;
  box-shadow: none;
}

.accordion-button:focus {
  border-color: transparent;
  outline: 0;
  box-shadow: none;
}

.accordion-button {
  position: relative;
}

.faq-icon {
  margin-left: auto;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
}

.accordion-button.collapsed .faq-icon {
  transform: rotate(-90deg);
}

.accordion-button:not(.collapsed) .faq-icon {
  transform: rotate(0deg);
}

.inner-image img {
  border-radius: 16px;
  border: 3px solid #472193;
}

.commitment-sec .inner-title {
  color: #fad02a;
}

.commitment-img {
  display: flex;
  justify-content: center;
}

.commitment-img img {
  margin-top: 20px;
}

.box-sec {
  background: #fff;
  padding: 20px 30px;
  border-radius: 10px;
  border: 4px solid #472193;
  margin-bottom: 2%;
  transition: all 0.3s linear;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  width: 67%;
}

/* Heading */
.box-sec h2 {
  padding-inline: 15px;
  color: #472193;
  font-size: 40px;
  line-height: 50px;
  padding-bottom: 6px;
  font-weight: bold;
  transition: color 0.3s linear;
}

/* Paragraph */
.box-sec p {
  padding-inline: 15px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #000;
  margin-bottom: 20px;
  transition: color 0.3s linear;
}

.box-sec:hover {
  background: #4b2396;
}

.box-sec:hover h2,
.box-sec:hover p {
  color: #fff;
}

.inner-text-two {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #fff;
  /* max-width: 620px; */
  margin-bottom: 12px;
}

.privacy-sec {
  padding-inline: 60px;
  text-align: left;
}

/* -------------------------------------------------- */
@media (max-width: 991px) {
  .privacy-sec {
    padding-inline: 18px;
    /* text-align: left; */
  }

  .di-badge span {
    position: absolute;
    /* top: 30px;
    right: 286px;
    margin-block: 6px; */
  }

  .plans-subtitle {
    margin-top: 40px;
  }

  .hero p {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .hero ul {
    text-align: initial;
  }

  .hero-btn {
    padding: 10px;
    font-size: 16px;
    margin-top: 10px;
    padding-inline: 26px;
  }

  .cta-btn {
    padding: 10px 20px;
    font-size: 16px;
    width: 100%;
  }

  .cta-box {
    gap: 15px;
    padding-inline: 30px;
  }

  .subscribe-form button {
    margin-left: -80px;
  }

  .plans-section {
    padding: 40px 0;
  }

  .plans-badge {
    font-size: 12px;
    line-height: 20px;
    padding-block: 10px;
  }

  .plan-card {
    padding: 30px 20px 30px;
  }

  .price-pill {
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 20px;
    margin-bottom: 0 !important;
  }

  .plan-btn {
    background: var(--yellow);
    color: #000;
    padding: 12px 42px;
    border-radius: 50px;
    font-weight: 400;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
  }

  .key-features-heading p {
    margin-bottom: 20px;
  }

  .service-card {
    padding: 40px 15px 40px;
  }

  .service-pill {
    font-size: 18px;
    font-weight: 500;
    padding: 10px;
    margin-bottom: 16px;
    padding-inline: 40px;
  }

  .service-card p {
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
  }

  .service-card h4 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .service-btn {
    padding: 10px 40px;
  }

  .services-section {
    padding: 0px 0 40px;
  }

  .testimonials-section {
    padding: 40px 0;
  }

  .swiper-arrow {
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    z-index: 10;
  }

  .coverage-section {
    padding: 0;
  }

  .coverage-form {
    max-width: 900px;
    margin: 22px auto 30px;
  }

  .coverage-form input {
    padding: 12px 18px;
    font-size: 14px;
  }

  .coverage-form button {
    padding: 12px;
  }

  .faq-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    padding-top: 40px;
  }

  .faq-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
  }

  .site-footer {
    padding: 10px 0 25px;
  }

  .footer-subscribe h4 {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 6px;
  }

  .footer-subscribe p {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 18px;
    text-align: center;
  }

  .subscribe-form input {
    border: none;
    padding: 0px 10px;
  }

  .site-footer ul li {
    margin-bottom: 6px;
  }

  .site-footer h5 {
    font-size: 20px;
  }

  .footer-app h5 {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .footer-policies a {
    font-size: 16px;
    text-align: center;
    display: inline-block;
    min-width: 280px;
  }

  .footer-bottom {
    margin-top: 25px;
    font-size: 14px;
    border-top: 1px solid #ffffff1c;
    padding-top: 30px;
  }

  .hero .swiper-button-next,
  .hero .swiper-button-prev {
    /* color: var(--yellow); */
    background: #ffd629;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    font-size: 10px;
    opacity: 0.5;
  }

  .plan-card h4 {
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 28px;
  }

  .step-card h4 {
    font-size: 26px;
  }

  .page-title-bar {
    background: #4b2497;
    padding: 40px 0;
    text-align: center;
  }

  .inner-hero {
    padding: 40px 0;
  }

  /* .inner-title {
    line-height: 44px;} */
  .box-sec {
    width: 100%;
  }

  .box-sec p {
    padding-inline: 0;
  }

  .box-sec {
    padding: 20px;
  }

  .box-sec h2 {
    font-size: 34px;
    line-height: 40px;
  }

  .contact-section {
    padding: 40px 0;
  }

  .form-title {
    font-size: 34px;
    margin-bottom: 10px;
    padding-top: 30px;
    text-align: center;
  }

  .accordion-button:not(.collapsed) {
    font-size: 20px;
  }

  .accordion-button {
    font-size: 17px;
  }

  .contact-form-wrap {
    padding: 40px 20px 40px;
  }

  .btn-title {
    font-size: 20px;
    margin-top: 16px;
    margin-left: 0px;
    color: #ffd428;
  }
}

/* media-end */
/* -------------------------------- */
@media (max-width: 576px) {
  .di-badge span {
    position: absolute;
    top: 30px;
    right: 146px;
    margin-block: 6px;
  }
}

@media (max-width: 375px) {
  .di-badge span {
    position: absolute;
    top: 30px;
    right: 120px;
    margin-block: 6px;
  }
}

@media (max-width: 320px) {
  .di-badge span {
    position: absolute;
    top: 50px;
    right: 96px;
    margin-block: 6px;
  }
}

/* ================= MOBILE SIDE NAV ================= */
@media (max-width: 991px) {
  .navbar-collapse {
    position: fixed;
    top: 0;
    right: -280px;
    /* hidden initially */
    width: 280px;
    height: 100vh;
    background: #1a1a1a;
    padding: 90px 25px 30px;
    transition: all 0.4s ease;
    z-index: 1050;
    overflow-y: auto;
  }

  /* When menu opens */
  .navbar-collapse.show {
    right: 0;
  }

  /* Menu items */
  .navbar-nav {
    align-items: flex-start !important;
  }

  .navbar-nav .nav-item {
    width: 100%;
  }

  .navbar-nav .nav-link {
    color: #fff !important;
    font-size: 17px;
    font-weight: 500;
    padding: 10px 0;
    transition: 0.3s;
  }

  .navbar-nav .nav-link:hover {
    color: #ffd629 !important;
    padding-left: 8px;
  }

  /* Survey Button */
  .btn-survey {
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }

  /* DARK OVERLAY */
  body::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 1040;
  }

  body.nav-open::after {
    opacity: 1;
    visibility: visible;
  }
}

@media (max-width: 991px) {
  .mobile-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    z-index: 1100;
    transition: 0.3s;
  }

  .mobile-close-btn:hover {
    transform: rotate(90deg) scale(1.1);
    color: #ffd629;
  }
}

.vc_custom_heading::after {
  transform: rotate(45deg);
}

/* ----------form---------- */
.form-wrapper {
  border: 4px solid #ffd428;
  border-radius: 20px;
  padding: 30px 25px;
  background: #fff;
}

.zip-input {
  border: 1px solid #5a2dbf;
  border-radius: 10px;
  padding-right: 40px;
}

.search-icon {
  position: absolute !important;
  right: 15px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  color: #5a2dbf;
  z-index: 3;
  cursor: pointer;
}

.option-card {
  border: 1px solid #ccc;
  color: #000;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  cursor: pointer;
  position: relative;
  transition: 0.3s;
}

.option-card.active {
  border-color: #5a2dbf;
}

/* Tick hidden by default */
.tick {
  position: absolute;
  top: -10px;
  right: -10px;
  background: green;
  color: #fff;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.option-card.active .tick {
  display: flex;
}

.price-box {
  background: #f4eee2;
  border-radius: 10px;
  padding: 15px;
  font-weight: 600;
}

.add-btn {
  background: #4b2396;
  border: none;
  color: #ffd428;
  padding: 12px;
  border-radius: 30px;
  font-size: 18px;
}

.add-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 6px 6px rgba(75, 35, 150, 0.6);
}

.add-btn a {
  color: #ffd428;
}

.form-wrapper p {
  color: #000;
}

.form-wrapper label {
  color: #000;
}

.price-box span {
  color: #4b2396;
}

.hero-inner h1 {
  font-size: 62px;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 69px;
}

.hero-inner ul li {
  margin-bottom: 18px;
  padding-left: 28px;
  position: relative;
}

/* .hero-inner{
   padding: 5% 10% !important;
} */
.hero-inner .container {
  max-width: 1040px;
}

.hero-inner {
  padding-block: 90px;
}

.hero-inner p {
  font-size: 18px;
  /* margin-bottom: 10px; */
}

.sim-mess {
  color: #000;
  margin-top: 16px;
  text-align: center;
}

@media (max-width: 991px) {
  .hero-inner h1 {
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 40px;
  }

  .hero-inner p {
    font-size: 18px;
    margin-bottom: 10px !important;
    line-height: 20px;
  }

  .sim-mess {
    margin-top: 10px;
    margin-bottom: 15px;
    text-align: center;
  }

  .form-wrapper .zip-text {
    text-align: left;
    font-size: 16px;
    padding-bottom: 10px;
  }

  .tick {
    position: absolute;
    top: 14px;
    right: 10px;
  }
}

/* ================= CART PAGE ================= */
.cart-page {
  background: #ffffff;
  border: 4px solid #ffd428;
  border-radius: 20px;
}

.cart-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--purple);
}

.cart-item {
  /* background: #ffffff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  border-left: 6px solid var(--purple); */
  border-bottom: 1px solid #ccc;
}

.cart-img img {
  width: 80px;
}

.cart-details p {
  margin: 0;
  font-size: 14px;
  line-height: 26px;
}

.cart-price h6 {
  font-size: 20px;
  font-weight: 700;
  color: var(--purple);
}

.cart-price span {
  font-size: 14px;
  font-weight: 500;
}

.remove-link {
  display: inline-block;
  margin-top: 6px;
  font-size: 14px;
  color: #6c757d;
  text-decoration: underline;
}

.remove-link:hover {
  color: #000;
}

.cart-summary {
  background: #fff8e6;
  border-radius: 22px;
  padding: 30px;
  /* box-shadow: 0 20px 45px rgba(75, 35, 150, 0.25); */
}

.cart-summary h5 {
  font-weight: 700;
  color: #000;
}

.checkout-btn1 {
  background: var(--purple);
  color: var(--yellow) !important;
  padding: 14px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  transition: 0.3s;
}

.checkout-btn1:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(75, 35, 150, 0.45);
  background: #ffd428 !important;
  color: #4b2396 !important;
}

.back-btn {
  background: var(--purple) !important;
  color: var(--yellow) !important;
  padding: 14px !important;
  border-radius: 50px;
  font-weight: 700 !important;
}

.back-btn:hover {
  background: #ffd428 !important;
  color: #4b2396 !important;
}

.cart-details {
  color: #000;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .cart-title {
    font-size: 30px;
  }

  .cart-item {
    flex-direction: column;
    text-align: center;
    background: #f7f7f7;

    padding: 15px;
    padding-top: 25px;
    margin-bottom: 0px !important;
  }


  .cart-price {
    margin-top: 12px;
  }
}

/* ================= CHECKOUT PAGE ================= */
/* .checkout-page {
  border: 4px solid #ffd629;
  border-radius: 20px;
  height: auto;
  overflow: visible;
  position: relative;
} */
.checkout-page {
    position: relative;
    background: transparent;
}

/* LEFT BACKGROUND */
.checkout-page::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: #fff;
    /* z-index: -1; */
}

/* RIGHT BACKGROUND */
.checkout-page::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: #f8f6f0;
    /* z-index: -1; */
}
.checkout-page>div{
    position: relative;
    z-index: 1;
}
/* .checkout-left {
  background: #ffffff;
  height: auto;
  overflow: visible;
  padding: 50px 60px;
} */

/* .checkout-form {
  max-width: 520px;
} */

.section-title {
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
}

.form-input {
  width: 100% !important;
  height: 52px !important;
  padding: 12px 16px !important;
  border: 1px solid #ddd !important;
  border-radius: 6px !important;
  font-size: 15px !important;
}

.form-input:focus {
  outline: none;
  border-color: var(--purple);
}

.checkout-right {
  /* background: #fffaf0; */
  top: 0;
  padding: 80px 50px;
  position: sticky;
}

/*
.order-summary {
   position: sticky;
    top: 100px;
} */

.summary-header img {
  width: 120px;
}

.summary-header h6 {
  font-size: 18px;
  font-weight: 700;
  color: #000;
}

.summary-item {
  background: #f3efe6;
  padding: 14px 18px;
  border-radius: 8px;
  margin: 20px 0;
  color: #000;
  border: 1px solid #c8c5c1;
}

.coupon-input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 6px;
  border: 2px solid var(--purple);
  font-size: 14px;
  margin-bottom: 25px;
}

.summary-price span {
  font-size: 15px;
  color: #000;
}

.summary-price .total {
  margin-top: 10px;
  font-size: 17px;
  color: #000;
}

.card-section {
  background: #f8f6f0;
  border: 1px solid #dcdcdc;
  padding: 24px 20px;
  border-radius: 12px;
  margin-bottom: 30px;
}

.cardimg-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.cardimg-wrap h2 {
  margin: 0;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 22px;
  font-weight: 600;
}

.cardimg-wrap .card-img {
  width: 190px;
  max-width: 100%;
}

.checkout-box label,
.card-section label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
  font-family: "Roboto Condensed", sans-serif;
  color: #333;
}

.card-section input {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 18px;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  font-size: 15px;
  font-family: "Roboto Condensed", sans-serif;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.card-section input::placeholder {
  color: #aaa;
}

.card-section input:focus {
  outline: none;
  border-color: #472193;
  /* box-shadow: 0 0 0 3px rgba(71, 33, 147, 0.15); */
}

.card-fieldwrap {
  display: flex;
  gap: 12px;
}

.card-fieldinner {
  flex: 1;
  position: relative;
}

.card-fieldinner i {
  color: #777;
  font-size: 14px;
}

.terms-wrap {
  margin-top: 15px;
}

.input-eye-wrap {
  position: relative;
}

.input-eye-wrap input {
  width: 100%;
  padding-right: 40px;
  /* space for eye */
}

.card-fieldinner i {
  position: absolute;
  right: 12px;
  top: 40%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #a5a1a1;
  font-size: 16px;
  z-index: 2;
}

.terms-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  /* font-family: "Roboto Condensed", sans-serif; */
  color: #333;
  cursor: pointer;
  line-height: 1.5;
}
.terms-text a{
    display: inline-block;
}
.terms-label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid #472193;
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
}

.terms-label input:checked+.checkmark::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 0px;
  width: 5px;
  height: 10px;
  border: solid #472193;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.cardimg-wrap h2 {
  margin-top: 20px;
  font-family: "Roboto Condensed";
  color: #000;
}
b, strong {
    font-weight: bolder;
    font-weight: 800;
    font-family: 'Roboto';
}
.terms-text a {
  color: #472193;
  font-weight: 600;
  text-decoration: none;
}

.terms-text a:hover {
  text-decoration: underline;
}

.terms-label input:focus+.checkmark {
  box-shadow: 0 0 0 3px rgba(71, 33, 147, 0.2);
}

.pay-btn {
  padding-top: 24px;
}

.checkout-page .row {
  display: flex;
  align-items: stretch;
}

.order-summary {
  position: sticky;
  top: 120px;
}

.checkout-left {
  background: #ffffff;
  padding: 80px 50px;
  border-top-left-radius: 14px;
  border-bottom-left-radius: 14px;
}

.checkout-right {
  top: 0;
  position: sticky;
  /* border-top-right-radius: 14px;
  border-bottom-right-radius: 14px; */
}

.checkout-page .row {
  display: flex;
  align-items: stretch;
}

.checkout-left,
.checkout-right {
  height: 100%;
}

.testimonials-section .fa-wifi {
  position: absolute;
  left: -235px;
  right: 0;
  top: -19px;
  rotate: 320deg;
}

/* Mobile */
@media (max-width: 576px) {
  .terms-label {
    font-size: 13px;
  }
}

/* Mobile Responsive */
@media (max-width: 576px) {
  .cardimg-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .cardimg-wrap .card-img {
    width: 265px;
  }

  .card-fieldwrap {
    flex-direction: column;
  }
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .checkout-page {
    height: auto;
    overflow: visible;
  }

  .checkout-left,
  .checkout-right {
    height: auto;
    position: relative;
    padding: 30px 20px;
  }

  .order-summary {
    max-width: 100%;
  }

  .checkout-left {
    /* border-top-left-radius: 14px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 14px; */
  }

  .checkout-right {
    /* border-bottom-left-radius: 14px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 14px; */
  }

  .checkout-left .section-title {
    text-align: left;
  }

  .card-section label {
    text-align: left;
  }
}

/* ----------modal-csss--------- */
.nav-item .bi-person-fill {
  font-size: 26px;
}

.signup-modal .modal-content {
  /* border: 4px solid #4b2396; */
}

.signup-modal-content {
  background: #ffd629;
  border-radius: 28px;
  padding: 28px 26px;
  position: relative;
  border: 7px solid #ffffff;
  box-shadow: 0px 18px 50px rgba(0, 0, 0, 0.35);
  overflow: hidden;
      border-left: 0px;
    border-right: 0px;
}

.signup-modal .modal-dialog {
  max-width: 680px;
}

.signup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #000;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease;
}

.signup-close i {
  transition: 0.25s ease;
}

.signup-close:hover {
  transform: scale(1.05);
  background: #4b2396;
}

.signup-close:hover i {
  animation: rotateOnce 0.5s linear 1;
}

@keyframes rotateOnce {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.signup-title {
  text-align: center;
  font-size: 44px;
  font-weight: 900;
  color: #4b2396;
  margin-bottom: 6px;
  line-height: 1.1;
  text-shadow: 2px 2px #fff;
}

/* subtitle */
.signup-subtitle {
  text-align: center;
  font-size: 16px;
  color: #000;
  margin-bottom: 14px;
  font-weight: 500;
}

.signup-input {
  width: 100%;
  height: 52px;
  padding: 12px 16px;
     border: 1px solid #00000091;
  border-radius: 6px;
  font-size: 16px;
  outline: none !important;
  box-shadow: none !important;
  transition: 0.2s ease;
  color: #000 !important;
}

.signup-input::placeholder {
  color: #000;
  opacity: 0.75;
  font-size: 15px;
  font-weight: 500;
}

.signup-input:focus {
  border: 2px solid #4b2396;
  box-shadow: none;
  outline: none !important;
  transition: 0.2s ease;
      background: #ffd629;
}

.signup-pin {
  max-width: 230px;
  /* text-align: center; */
}

.signup-btn {
  background: #4b2396;
  color: #fff;
  padding: 12px 74px;
  border-radius: 35px;
  font-size: 18px;
  font-weight: 800;
  border: none;
  transition: 0.3s ease;
  /* box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.25); */
}

.signup-btn:hover {
  background: #2b0278;
  color: #fff;
  transform: translateY(-2px);
}

.signup-login {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin-top: 10px;
}

.signup-login a {
  color: #000;
  font-weight: 800;
  text-decoration: underline;
  transition: 0.2s ease;
    font-family: 'Fustat',sans-serif;
}

.signup-login a:hover {
  color: #4b2396;
}

.signup-modal .row.g-3 {
  --bs-gutter-x: 18px;
  --bs-gutter-y: 18px;
}

.signup-modal-content {
  position: relative;
  z-index: 99999 !important;
}

.signup-close {
  z-index: 999999 !important;
  position: absolute;
}

/* mobile responsive */
@media (max-width: 576px) {
  .signup-modal-content {
    padding: 20px 18px;
    border-radius: 22px;
  }

  .signup-title {
    font-size: 32px;
  }

  .signup-input {
           height: 44px;
        font-size: 12px;
  }

  .signup-btn {
    width: 70%;
        padding: 10px 40px;
  }

  .signup-pin {
    max-width: 100%;
  }
}

/*===============login========= */


    .login-page {
      min-height: 100vh;
      background: #4b2396;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 50px 15px;
      position: relative;
      overflow: hidden;
    }

    /* Glow circles */
    .login-page::before {
      content: "";
      position: absolute;
      width: 400px;
      height: 400px;
      background: rgba(255, 214, 41, 0.35);
      top: -120px;
      left: -120px;
      border-radius: 50%;
      filter: blur(70px);
      z-index: 1;
    }

.login-page::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgb(255 214 41 / 32%);
    bottom: -160px;
    right: -160px;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
}

    .login-main {
      text-align: center;
      width: 100%;
      position: relative;
      z-index: 10;
    }

    .login-card {
      background: rgba(255, 255, 255, 0.96);
      max-width: 440px;
      margin: auto;
      padding: 34px 30px;
          border-radius:10px 10px 0 0;
      box-shadow: 0px 25px 70px rgba(0, 0, 0, 0.45);
      border: 1px solid rgba(255, 255, 255, 0.4);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      position: relative;
      overflow: hidden;
      transition: 0.3s ease;
    }

    .login-card::before {
     content: "";
    position: absolute;
    top: -60px;
    left: -60px;
    width: 130px;
    height: 130px;
    background: rgb(255 214 41);
    border-radius: 50%;
    filter: blur(40px);
    }


    .login-logo img {
      max-width: 165px;
      margin-bottom: 14px;

    }

    .login-title {
      font-size: 26px;
      font-weight: 900;
      color: #111;
      margin-bottom: 18px;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
    }

    .login-title i {
      width: 40px;
      height: 40px;
      /* background: #ffd629; */
      color: #000;
      /* border-radius: 12px; */
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 32px;
      /* box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.18); */
    }

    .login-input {
      height: 52px !important;
      border-radius: 14px !important;
      border: 1px solid #9c9c9c !important;
      font-size: 14px !important;
      padding: 12px 16px !important;
      box-shadow: none !important;
      transition: 0.25s ease;
    }

    .login-input:focus {
      border-color: #4b2396;
      box-shadow:none;
      outline: invert;
      transform: translateY(-1px);
    }

    .eye-btn {
      position: absolute;
      right: 12px;
      top: 7px;
      border: none;
         background: #f8f6fb;
      width: 38px;
      height: 38px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      color: #4b2396;
      cursor: pointer;

      transition: 0.25s ease;
    }

    .eye-btn:hover {

      color: #4b2396;
      transform: translateY(-50%) scale(1.06);
    }

    .login-btn {
      background: #ffd629;
      border: none !important;
      color: #000 !important;
      font-weight: 900 !important;
      padding: 12px 0px !important;
      border-radius: 16px !important;
      font-size: 15px !important;
      transition: 0.3s ease;
      box-shadow: 0px 14px 30px rgba(255, 214, 41, 0.35);
    }

    .login-btn:hover {
      background: #4b2396;
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0px 18px 45px rgba(0, 0, 0, 0.25);
    }

    .login-help {
      max-width: 440px;
      margin: 0 auto;
      background: rgba(255, 255, 255, 0.08);
      padding: 18px 12px;

     border-radius: 0 0 10px 10px;
      border: 1px solid rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }

    .login-help h4 {
      color: #ffd629;
      font-weight: 900;
      font-size: 18px;
      margin-bottom: 8px;
    }

    .help-links {
      display: flex;
      justify-content: center;
      gap: 14px;
      font-size: 14px;
      flex-wrap: wrap;
    }

    .help-links a {
      color: #fff;
      text-decoration: none;
      font-weight: 600;
      transition: 0.25s ease;
    }

    .help-links a:hover {
      color: #ffd629;
      text-decoration: underline;
    }

    .help-links span {
      color: rgba(255, 255, 255, 0.6);
    }

    .login-footer-text {
      margin-top: 25px;
      color: rgba(255, 255, 255, 0.9);
      font-size: 18px;
      /* max-width: 700px; */
      margin-left: auto;
      margin-right: auto;
      line-height: 1.6;
    }

    .login-social {
      margin-top: 16px;
      display: flex;
      justify-content: center;
      gap: 14px;
    }

    .login-social a {
      width: 44px;
      height: 44px;
      background: #ffd629;
      color: #000;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      transition: 0.3s ease;
      box-shadow: 0px 14px 25px rgba(0, 0, 0, 0.25);
    }

    .login-social a:hover {
      background: #000;
      color: #fff;
      transform: translateY(-3px) scale(1.05);
    }

    /* ===== MOBILE ===== */
    @media (max-width: 576px) {
      .login-card {
        padding: 28px 18px;

      }

      .login-title {
        font-size: 22px;
      }

      .login-title i {
        width: 36px;
        height: 36px;
        border-radius: 10px;
      }
      .login-footer-text {
    font-size: 16px;
    line-height: 1.4;
}
    }
/* -----------NEW------------- */

/* ===== START SURVEY BUTTON ===== */
.survey-btn-next.btn-disabled{
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}
.survey-btn-next:disabled{
  pointer-events: none;
}


/* ===== MODAL BACKDROP ===== */
.modal-backdrop.show{
  opacity: 0.65;
}

/* ===== MODAL CONTENT ===== */
.survey-modal .modal-dialog{
  max-width: 760px;
}

.survey-content{
  border: none;
  border-radius: 22px;
  overflow: hidden;
  background: #f9e4a7;
  /* box-shadow: 0px 30px 80px rgba(0,0,0,0.45); */
  position: relative;
  border: 4px solid #fad02a;
}

/* soft inner glow */
.survey-content::before{
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
      background: rgb(255 214 41 / 47%);
  top: -120px;
  left: -120px;
  border-radius: 50%;
  filter: blur(60px);
}
.survey-content::after{
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
      background: rgb(255 214 41 / 86%);
  bottom: -120px;
right: -120px;
  border-radius: 50%;
  filter: blur(60px);
}

/* ===== TOP PROGRESS AREA ===== */
.survey-progress-wrap{
  position: relative;
  padding: 23px 22px 10px;
  z-index: 5;
}

.survey-progress{
    width: 100%;
    max-width: 660px;
    height: 36px;
    background: rgb(255 195 5 / 48%);
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgb(193 162 223);
    box-shadow: inset 0px 2px 6px rgba(0, 0, 0, 0.08);

}

.survey-progress-bar{
  width: 0%;
  height: 100%;
  /* background: linear-gradient(90deg, #ffd629, #ffb700); */
     background: linear-gradient(90deg, #1a0c34, #c1a2e0);
  border-radius: 10px;
  transition: 0.45s ease;
  box-shadow: 0px 10px 25px rgba(255, 214, 41, 0.45);
}

.survey-progress-text{
  position: absolute;
  left: 50%;
  top: 31px;
  transform: translateX(-50%);
  text-align: center;
  font-weight: 600;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.2px;
  width: 100%;
}
.survey-modal .signup-close {
  position: absolute;
  top: 23px;}

/*
.survey-close{
  position: absolute;
  right: 16px;
  top: 12px;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #ffd629;
  border: 2px solid rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #000;
  font-weight: 900;
  cursor: pointer;
  transition: 0.3s ease;

}

.survey-close:hover{
  background: #000;
  color: #fff;
  transform: rotate(10deg) scale(1.05);
} */

/* ===== BODY ===== */
.survey-body{
  padding: 12px 28px 34px;
  text-align: center;
  position: relative;
  z-index: 5;
}

/* ===== STEPS ===== */
.survey-step{
  display: none;
  animation: fadeStep 0.35s ease;
}
.survey-step.active{
  display: inline-block;
}

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

/* ===== QUESTION TEXT ===== */
.survey-step-count {
    font-size: 18px;
    color: #000000;
    margin-bottom: 10px;
    font-weight: 600;
}

.survey-question{
 font-size: 30px;
    font-weight: 1000;
    color: #111;
    /* margin-bottom: 22px; */
    line-height: 1.25;
}

/* ===== OPTIONS LIST ===== */
.survey-options{
  max-width: 560px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* option card */
.survey-option{
  background: rgb(177 143 240 / 78%);
  border-radius: 16px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  border: 1px solid rgba(0,0,0,0.08);
  transition: 0.25s ease;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.survey-option::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(75,35,150,0.06), rgba(255,214,41,0.06));
  opacity: 0;
  transition: 0.25s ease;
}

.survey-option:hover{
  transform: translateY(-2px);
  border-color: rgba(75,35,150,0.35);
  /* box-shadow: 0px 16px 35px rgba(0,0,0,0.12); */
}

.survey-option:hover::before{
  opacity: 1;
}

/* radio */
.survey-option input{
  width: 18px;
  height: 18px;
  accent-color: #4b2396;
  position: relative;
  z-index: 2;
}

/* option text */
.survey-option span{
  font-size: 15px;
  font-weight: 800;
  color: #1c1c1c;
  position: relative;
  z-index: 2;
}

/* selected effect */
.survey-option input:checked + span{
  color: #4b2396;
}

.survey-option:has(input:checked){
  border: 2px solid #4b2396;
  box-shadow: 0px 18px 45px rgba(75,35,150,0.20);
}

/* ===== NEXT BUTTON ===== */
.survey-btn-next{
  margin-top: 26px;
  width: 100%;
  max-width: 560px;
  padding: 15px 22px;
  border-radius: 60px;
  border: none;
  background: #902fe7;
  color: #ffd629;
  font-weight: 900;
  font-size: 15px;
  transition: 0.3s ease;
  /* box-shadow: 0px 18px 45px rgba(154,135,196,0.35); */
}

.survey-btn-next span{
  margin-left: 6px;
  font-weight: 900;
}

.survey-btn-next:hover{
  background: #4b2396;
  transform: translateY(-2px);
  box-shadow: 0px 22px 55px rgba(0,0,0,0.22);
}

/* ===== BACK BUTTON ===== */
.survey-btn-back{
  margin-top: 14px;
  background: transparent;
  border: none;
  color: #000;
  /* text-decoration: underline; */
  font-weight: 700;
  font-size: 14px;
  transition: 0.25s ease;
}

.survey-btn-back:hover{
  color: #4b2396;
  text-decoration: underline;
}

/* ===== THANK YOU TEXT ===== */
.survey-done-text{
  color: #444;
  font-size: 15px;
  font-weight: 600;
  /* margin-top: 10px; */
}
.survey-modal .price-pill.blue {
    background: #4266c4;
    display: inline;
    padding: 10px 66px;
}
.survey-modal .plan-features-scroll {
   margin-bottom: 0;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 576px){
  .survey-modal .modal-dialog{
    margin: 12px;
  }

  .survey-body{
    padding: 18px 16px 26px;
  }

  .survey-question{
    font-size: 20px;
  }

  .survey-option{
    padding: 14px 14px;
    border-radius: 14px;
  }

  .survey-btn-next{
    padding: 14px 18px;
    font-size: 14px;
  }

  .survey-close{
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }
}
/* ============.loader============== */
.loader-sec{
  display: flex;
  justify-content: center;
}
.loader {
  border: 9px solid #f3f3f3;
  border-radius: 50%;
  border-top: 9px solid #3498db;
  width: 60px;
  height: 60px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/* ---------tq page============= */

    .pay-success-page{

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

    }

    /* CARD */
    /* .pay-card{
      width: 100%;
      max-width: 640px;
      background: #fff;
      border: 3px solid #ffd428;
      border-radius: 8px;
      box-shadow: 0px 20px 60px rgba(0,0,0,0.35);
      padding: 28px 26px;
    } */

    /* TITLE */
    .pay-title{
      font-size: 32px;
      font-weight: 900;
      color: #1f9d2a;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-bottom: 18px;
      text-align: center;
    }

    .pay-title i{
      font-size: 36px;
    }

    /* SECTION TITLE */
    .pay-subtitle{
      font-size: 18px;
      font-weight: 800;
      color: #000;
      margin-bottom: 12px;
    }

    /* ORDER SUMMARY TOP */
    .pay-summary-top{
      display: flex;
      align-items: center;
      gap: 60px;
      padding: 12px 0px 16px;
      border-bottom: 1px solid rgba(0,0,0,0.15);
      margin-bottom: 18px;
    }
.sim-card-icon img{
    max-width: 100px;
    margin-left: 40px;
}
    .sim-card-icon{
      width: 58px;
      height: 42px;
      border-radius: 8px;
      background: #f2f2f2;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      color: #4b2396;
      border: 1px solid rgba(0,0,0,0.12);
    }

    .pay-summary-top h6{
      margin: 0;
      font-weight: 800;
      font-size: 14px;
      color: #000;
    }

    .pay-summary-top p{
      margin: 2px 0 0;
      font-size: 13px;
      font-weight: 700;
      color: #333;
    }

    /* DETAILS TABLE */
    .pay-details{
      width: 100%;
      margin-top: 6px;
    }

    .pay-row{
      display: flex;
      /* justify-content: space-between; */
      gap: 16px;
      padding: 8px 0px;
      font-size: 14px;
      border-bottom: 1px dashed rgba(0,0,0,0.12);
    }

    .pay-row:last-child{
      border-bottom: none;
    }

    .pay-label{
      font-weight: 800;
      color: #000;
      min-width: 160px;
    }

    .pay-value{
      font-weight: 700;
      color: #000;
      text-align: right;
      word-break: break-all;
    }

    /* MESSAGE */
    .pay-message{
      margin-top: 18px;
      font-size: 14px;
      font-weight: 700;
      color: #000;
      text-align: center;
    }

    /* BUTTONS */
    .pay-actions{
      margin-top: 22px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
    }

    .btn-back-home{
      background: #000;
      color: #fff;
      font-weight: 800;
      border-radius: 6px;
      padding: 10px 18px;
      min-width: 180px;
      border: none;
      transition: 0.25s;
    }
    .btn-back-home a{
      color: #fff;
      transition: 0.25s;
    }

    .btn-back-home:hover{
      background: #4b2396;
      color: #fff;
      transform: translateY(-2px);
    }

    .btn-print{
      background: #4b2396;
      color: #fff;
      font-weight: 800;
      border-radius: 6px;
      padding: 10px 18px;
      min-width: 180px;
      border: none;
      transition: 0.25s;
    }

    .btn-print:hover{
      background: #000;
      transform: translateY(-2px);
    }

    /* MOBILE */
    @media(max-width: 576px){
      .pay-card{
        padding: 20px 16px;
      }
      .pay-title{
        font-size: 24px;
      }
      .pay-title i{
        font-size: 28px;
      }
      .pay-label{
        min-width: 130px;
      }
    }


.text-clamp {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 4;
}

.text-clamp.expanded {
    -webkit-line-clamp: unset;
}
.cart-remove-mobile {
    position: absolute;
    top: -10px;
    right: 10px;
    background: #ffc107; /* Bootstrap yellow */
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    text-decoration: none;
    z-index: 10;
}

.cart-remove-mobile i {
    font-size: 14px;
    font-weight: bold;
}

.cart-remove-mobile:hover {
    background: #e0a800;
    color: #000;
}

@media(max-width:767px){
    .cta-strip     .cta-btn {
        padding: 20px 14px;
        font-size: 20px;
        width: 100%;
    }
    .signup-pin{
        max-width: 100%;
    }
    .section-padding {
    padding: 60px 0;
}
.cus-nav{
    padding-inline: 15px !important;
}
}

.checkout-form .form-input.mb-3{
    margin-bottom: 0px !important;
}
.frm-group{
margin-bottom: 1rem !important;
}

.modal-content .modal-body {
    padding: 20px 25px;
    overflow-y: auto;
    max-height:none !important;
}
.modal-open .modal{
    overflow-y: auto !important;
}
.cus-menu i{
font-size: 28px !important;
color: #fff !important;
}
.cus-menu i.fa-cart-shopping{
font-size: 24px !important;
}

.signup-body ::placeholder{
    color: #000 !important;
}
