@charset "UTF-8";
/* =======================================================================
   DOCLAND – SCSS (converted 1:1 from styles.css, organized & error-free)
   ======================================================================= */
/* -----------------------------------------------------------------------
   0) SASS MODULES
   ----------------------------------------------------------------------- */
/* -----------------------------------------------------------------------
   1) THEME TOKENS (Colors, Typography, Radii, Shadows, Layout)
   ----------------------------------------------------------------------- */
:root {
  --primary: #004AAD;
  --primary-light: rgba(0, 75, 173, 0.1);
  --primary-lighter:#cfe2ff;
  --primary-2: #003c8a;
  --primary-3: #0046c0;
  --primary-4:#0b69ff;
  --primary-5:#06b6d4;
  --secondary: rgb(248, 203, 0);
  --secondary-2:#e6b800;
  --secondary-3:rgb(255, 184, 77);
  --secondary-4:#e3ef31;
  --tertiary:#8000ff;
  --tertiary-2:#e062ff;
  --white: #ffffff;
  --white-light: rgba(255, 255, 255, 0.9);
  --dark:#000000;
  --dark-light:#171717;
  --bg:#F9F9F9;
  --bg-blue:#F3F8FF;
  --muted:#E0E0E0;
  --dash:#d6d6ff;
  --success:#06b24a;
  --success-2: #10b981;
  --success-3:#34d399;
  --success-light:#D7F0DA;
  --success-lighter:#E5FCE8;
  --warning:#ff8b00;
  --error:#ff0000;
  --error-light: #FFDBDB;
  --error-lighter:#FFE9E9;
  --gray:#3a3a3a;
  --gray-light:#808080;
  --gray-lighter:#F0F0F0;
  --gray-lighter1:#dddddd;
  --inactive-bg: #E5E5E5;
  --icon-call:#FFF9DD;
  --icon-mail:#DEEFFF;
  --icon-whatsapp:#E0FFD9;
  --line: #e4e8f3;
  --shadow: 0 6px 18px rgba(10,42,102,.08);
  --radius: 14px;
  --container: 1100px;
}

/* Colors */
/* Shadows & Radii */
/* Layout */
/* Typography */
/* Section headings (central control) */
/* Breakpoints */
/* Padding */
.pd-10 {
  padding: 10px;
}

/* Width */
.w-80 {
  width: 80%;
}

/* -----------------------------------------------------------------------
   2) MIXINS
   ----------------------------------------------------------------------- */
/* Card wrapper */
/* -----------------------------------------------------------------------
   4) GLOBAL / RESETS
   ----------------------------------------------------------------------- */
* {
  box-sizing: border-box;
}

html, body {
  font-size: clamp(12px, 0.5vw + 11px, 14px);
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  font-family: "poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--gray);
  background: var(--white);
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.mtop {
  margin-top: 28px;
}

.p-0 {
  padding: 0 !important;
}

.p-t110 {
  padding-top: 110px !important;
}

.p-t40 {
  padding-top: 40px;
}

.section-white {
  background-color: var(--white) !important;
}

.section-blue {
  background-color: var(--bg-blue) !important;
}

/* Logo grid */
/* -----------------------------------------------------------------------
   5) NAVIGATION (Topbar)
   ----------------------------------------------------------------------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 9;
  background: var(--white-light);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--primary-light);
}
.topbar .container {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 0;
}
.topbar .logo {
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.topbar .logo .dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #F8CB00;
  display: inline-block;
}
.topbar .nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.topbar .nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
}
.topbar .nav ul a {
  position: relative;
  color: var(--gray);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0.6rem;
  transition: color 0.3s ease;
}
.topbar .nav ul a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
  transition: width 0.3s ease;
}
.topbar .nav ul a:hover::after {
  width: 100%;
}
.topbar .nav ul a.active {
  color: var(--primary);
}
.topbar .nav ul a.active::after {
  width: 100%;
}
.topbar .actions {
  display: flex;
  gap: 0.5rem;
}
.topbar .hamburger {
  display: none;
  background: none;
  border: 0;
  padding: 0.4rem;
  flex-direction: column;
  gap: 4px;
}
.topbar .hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--primary);
}
@media (max-width: 1024px) {
  .topbar .nav ul {
    display: none;
  }
  .topbar .hamburger {
    display: flex;
  }
}
@media (max-width: 768px) {
  .topbar .logo img {
    height: 25px;
  }
  .topbar nav .btn {
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 5px;
  }
}

/* -----------------------------------------------------------------------
   6) BUTTONS (Primary / Secondary / Buy)
   ----------------------------------------------------------------------- */
.primary_btn {
  border: none;
  background: var(--primary);
  padding: 8px 16px;
  font-weight: 500;
  font-size: clamp(20px, 2.4vw, 28px);
  color: var(--white);
  transition: all 0.3s ease;
}
.primary_btn:hover, .primary_btn:focus {
  background: var(--primary-2);
  color: var(--white);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}
.primary_btn:active {
  background: var(--primary-2) !important;
  color: var(--white) !important;
}
.primary_btn {
  font-size: clamp(14px, 1.2vw, 16px);
}

.secondary_btn {
  border: none;
  background: var(--secondary);
  padding: 8px 16px;
  font-weight: 500;
  font-size: clamp(20px, 2.4vw, 28px);
  color: var(--primary);
  transition: all 0.3s ease;
}
.secondary_btn:hover, .secondary_btn:focus {
  background: var(--secondary-2);
  color: var(--primary);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}
.secondary_btn:active {
  background: var(--secondary-2) !important;
  color: var(--primary) !important;
}
.secondary_btn {
  font-size: clamp(14px, 1.2vw, 16px);
}

.buy_btn {
  border: none;
  background: var(--primary);
  padding: 8px 16px;
  font-weight: 500;
  font-size: clamp(20px, 2.4vw, 28px);
  color: var(--white);
  transition: all 0.3s ease;
}
.buy_btn:hover, .buy_btn:focus {
  background: var(--primary-2);
  color: var(--white);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}
.buy_btn:active {
  background: var(--primary-2) !important;
  color: var(--white) !important;
}
.buy_btn {
  font-weight: 600;
}

.paynow_btn {
  border: none;
  background: var(--primary);
  padding: 8px 16px;
  font-weight: 500;
  font-size: clamp(20px, 2.4vw, 28px);
  color: var(--white);
  transition: all 0.3s ease;
}
.paynow_btn:hover, .paynow_btn:focus {
  background: var(--primary-2);
  color: var(--white);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}
.paynow_btn:active {
  background: var(--primary-2) !important;
  color: var(--white) !important;
}
.paynow_btn {
  font-size: clamp(14px, 1.2vw, 16px);
}

.cancel_btn {
  border: none;
  background: var(--secondary);
  padding: 8px 16px;
  font-weight: 500;
  font-size: clamp(20px, 2.4vw, 28px);
  color: var(--primary);
  transition: all 0.3s ease;
}
.cancel_btn:hover, .cancel_btn:focus {
  background: var(--secondary-2);
  color: var(--primary);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}
.cancel_btn:active {
  background: var(--secondary-2) !important;
  color: var(--primary) !important;
}
.cancel_btn {
  font-size: clamp(14px, 1.2vw, 16px);
}

.download_btn {
  border: none;
  background: var(--inactive-bg);
  padding: 8px 16px;
  font-weight: 500;
  font-size: clamp(20px, 2.4vw, 28px);
  color: var(--primary);
  transition: all 0.3s ease;
}
.download_btn:hover, .download_btn:focus {
  background: var(--inactive-bg);
  color: var(--primary);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}
.download_btn:active {
  background: var(--inactive-bg) !important;
  color: var(--primary) !important;
}
.download_btn {
  font-size: clamp(14px, 1.2vw, 16px);
}

.get_btn {
  border: none;
  background: var(--primary);
  padding: 8px 16px;
  font-weight: 500;
  font-size: clamp(20px, 2.4vw, 28px);
  color: var(--white);
  transition: all 0.3s ease;
}
.get_btn:hover, .get_btn:focus {
  background: var(--primary-2);
  color: var(--white);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}
.get_btn:active {
  background: var(--primary-2) !important;
  color: var(--white) !important;
}
.get_btn {
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 400;
}

/* -----------------------------------------------------------------------
   7) SECTIONS & HEADINGS
   ----------------------------------------------------------------------- */
.section {
  padding: 60px 0;
  position: relative;
}
.section--band {
  background: var(--bg);
}
.section--stats {
  background: var(--primary);
  color: var(--white);
}
.section--logos {
  background: var(--white);
}

.center {
  text-align: center;
}

.sub {
  color: var(--gray);
}

.section-heading {
  margin-bottom: 32px;
}
.section-heading h1 {
  margin: 0;
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 700;
  color: var(--primary);
}
.section-heading h2 {
  margin: 0;
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 600;
  color: var(--primary);
}
.section-heading h3 {
  margin: 0;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 600;
  color: var(--primary);
}
.section-heading h4 {
  margin: 0;
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 600;
  color: var(--primary);
}
.section-heading h5 {
  margin: 0;
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 600;
  color: var(--primary);
}
.section-heading p {
  margin: 0;
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 400;
  color: var(--gray);
}

/* -----------------------------------------------------------------------
   8) BANNER / SLIDER
   ----------------------------------------------------------------------- */
.banner {
  height: 400px;
}

.slider {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.slide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 400px;
  transition: opacity 0.5s ease-in-out;
}
.slide-1 {
  background: var(--bg-blue);
}
.slide-2 {
  background: var(--bg-blue);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
}

.banner_left {
  width: 40%;
}

.center-box {
  width: 30%;
  text-align: center;
}
.center-box img {
  max-height: 400px;
  object-fit: contain;
}

/* Right side (images) */
.right-box {
  width: 50%;
  text-align: right;
}
.right-box img {
  max-height: 400px;
  object-fit: contain;
}

.banner_right-box {
  text-align: center;
  width: 30%;
}

.banner_left h1, .text-box h1 {
  font-size: clamp(30px, 4.2vw, 60px);
  font-weight: 700;
  margin-bottom: 15px;
}

.text-box p {
  font-size: clamp(15px, 1.6vw, 18px);
  margin: 10px 0;
}

.banner_left-box {
  display: none;
}
.banner_left-box p {
  font-size: 20px;
}

.banner_right-box {
  display: block;
}
.banner_right-box p {
  font-size: 30px;
  font-weight: 600;
}
.banner_right-box p span {
  font-weight: 400;
}
.banner_right-box .price {
  font-size: 24px;
}

.auto_text-box p {
  font-size: clamp(26px, 3.4vw, 40px);
}

.buy_box {
  margin-top: 20px;
}
.buy_box p {
  font-size: 25px;
  font-weight: 600;
  margin: 10px 0;
}

.dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gray-light);
  cursor: pointer;
}
.dots .dot.active {
  background: rgb(0, 95.8150289017, 224);
}

@media (max-width: 768px) {
  .banner, .slider, .slide {
    height: 220px;
  }
  .banner_left, .center-box {
    width: 50%;
  }
  .center-box img, .right-box img {
    height: 220px;
  }
  .banner_left h1 {
    font-size: clamp(16px, 1.8vw, 20px);
  }
  .text-box p {
    font-size: clamp(16px, 1.8vw, 20px);
  }
  .banner_right-box {
    display: none !important;
  }
  .banner_left-box {
    display: block !important;
  }
  .banner_left-box p {
    font-size: 14px;
    font-weight: 600;
  }
  .banner_left-box p span {
    font-weight: 500;
  }
  .buy_box {
    margin-top: 10px;
  }
  .buy_box p {
    font-size: 14px;
    margin: 5px 0;
  }
}
@media (max-width: 480px) {
  .banner_right-box {
    display: none !important;
  }
  .banner_left-box {
    display: block !important;
  }
  .buy_box {
    margin-top: 10px;
  }
  .buy_box p {
    font-size: 14px;
    margin: 5px 0;
  }
  .buy_box .buy_btn {
    padding: 4px 12px;
  }
}
/* -----------------------------------------------------------------------
   9) WHAT WE OFFER (cards)
   ----------------------------------------------------------------------- */
.we_offer-heading {
  font-size: clamp(18px, 2.6vw, 24px);
  font-weight: 600;
  text-align: center;
  color: var(--primary);
  margin-bottom: 20px;
}

.offer-card {
  padding: 10px;
  margin-bottom: 16px;
  transition: transform 0.3s ease;
  display: block;
  cursor: pointer;
  text-decoration: none;
  color: var(--primary);
}
.offer-card:hover {
  transform: translateY(-5px);
}

.offer-info {
  margin-top: 10px;
}
.offer-info h4, .offer-info p {
  font-size: clamp(12px, 0.5vw + 11px, 14px);
  margin: 0;
  color: var(--primary);
}

/* -----------------------------------------------------------------------
   10) 360° RISK COVER (cards grid)
   ----------------------------------------------------------------------- */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}
@media (max-width: 992px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

.risk-card {
  background: var(--white);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 15px;
  box-shadow: 1px 1px 5px var(--dark) 0d;
  transition: all 0.3s ease;
}
.risk-card--icon {
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px;
  margin-right: 10px;
  transition: transform 0.6s ease;
  transform-origin: center;
}
.risk-card--icon img {
  height: 32px;
}
.risk-card-info {
  display: flex;
  align-items: center;
  padding: 0;
  background: transparent;
  border-bottom: 0;
}
.risk-card-info h3 {
  margin: 0;
  font-weight: 600;
  font-size: clamp(14px, 0.5vw + 11px, 16px);
  color: var(--primary);
}
.risk-card-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 16px;
  font-size: clamp(12px, 0.5vw + 11px, 14px);
  color: var(--gray);
  line-height: 1.5;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.risk-card:hover, .risk-card.active {
  background: linear-gradient(135deg, var(--white), var(--bg-blue));
}
.risk-card:hover .risk-card--icon, .risk-card.active .risk-card--icon {
  transform: rotateY(360deg);
  background: var(--white);
}
.risk-card:hover .risk-card-content, .risk-card.active .risk-card-content {
  max-height: 150px;
  padding: 2px 0 0 0;
}

/* -----------------------------------------------------------------------
   11) NUMBERS DON’T LIE
   ----------------------------------------------------------------------- */
.numbers-section {
  display: flex;
  justify-content: center;
  padding: 60px 80px;
}
.numbers-section .numbers-counter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 20px;
}
.numbers-section .numbers-left {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  margin-bottom: 0 !important;
}
.numbers-section .numbers-right {
  flex: 2;
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
.numbers-section .numbers-right .column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.numbers-section .card {
  background: var(--bg);
  border-radius: 12px;
  width: 220px;
  height: 200px;
  padding: 20px 25px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
  text-align: left;
  transition: transform 0.3s ease;
  border: 0;
  display: flex;
  justify-content: space-around;
}
.numbers-section .card:hover {
  transform: translateY(-5px);
}
.numbers-section .card .card-info h3, .numbers-section .card .card-info h3 span {
  color: var(--primary);
  font-size: clamp(28px, 2.6vw, 32px);
  margin-bottom: 8px;
  font-weight: 600;
}
.numbers-section .card .card-info p {
  font-size: 14px;
  color: var(--gray);
}
.numbers-section .card .card-icon {
  text-align: right;
  font-size: 36px;
  margin-top: 8px;
}
@media (max-width: 992px) {
  .numbers-section {
    flex-direction: column;
    align-items: center;
  }
  .numbers-section .numbers-right {
    flex-direction: column;
    align-items: center;
  }
  .numbers-section .column {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .numbers-section .card {
    min-width: 140px;
    flex: 1;
  }
}
@media (max-width: 600px) {
  .numbers-section .card {
    min-width: 100%;
  }
}

/* -----------------------------------------------------------------------
   12) HOW DOCLAND WORKS (Timeline + Sticky Header)
   ----------------------------------------------------------------------- */
.spacer {
  height: 18vh;
}

.process {
  max-width: var(--container);
  margin: 30px auto;
  padding: 28px 20px 80px;
  position: relative;
}

.process__header {
  position: sticky;
  top: 57px;
  z-index: 30;
  background: var(--gray-lighter);
  padding: 14px 0;
  border-bottom: 1px solid rgba(10, 42, 102, 0.04);
}

.timeline {
  position: relative;
  margin-top: 24px;
  padding: 12px 0;
}
.timeline__line, .timeline__progress {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  border-radius: 999px;
  top: 0;
}
.timeline__line {
  background: var(--line);
  bottom: 0;
}
.timeline__progress {
  background: linear-gradient(180deg, var(--secondary), var(--secondary-3));
  height: 0;
  transition: height 0.12s linear;
}

.step {
  display: grid;
  grid-template-columns: 1fr 68px 1fr;
  gap: 20px;
  align-items: center;
  margin: 28px 0;
  min-height: 120px;
}
.step__content {
  background: var(--white);
  padding: 18px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: transform 0.28s ease, box-shadow 0.28s ease, opacity 0.28s ease;
  opacity: 0.7;
}
.step__title {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
}
.step__desc {
  margin: 0;
  color: var(--gray);
  font-size: 14px;
  line-height: 1.5;
}
.step__dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--line);
  border: 3px solid var(--white);
  margin: auto;
  box-shadow: 0 0 0 4px rgba(247, 181, 0, 0.12);
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}
.step.active .step__dot {
  background: var(--secondary);
  transform: scale(1.14);
  box-shadow: 0 0 0 8px rgba(247, 181, 0, 0.12);
}
.step.active .step__content {
  opacity: 1;
  transform: translateY(-4px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.step {
  /* odd/even visual alignment */
}
.step:nth-child(odd) .step__content:first-child {
  grid-column: 1/2;
  text-align: center;
  background: none;
  box-shadow: none;
}
.step:nth-child(odd) .step__dot {
  grid-column: 2/3;
}
.step:nth-child(odd) .step__content:last-child {
  grid-column: 3/4;
  text-align: center;
}
.step:nth-child(even) .step__content:first-child {
  grid-column: 1/2;
  text-align: center;
}
.step:nth-child(even) .step__dot {
  grid-column: 2/3;
}
.step:nth-child(even) .step__content:last-child {
  grid-column: 3/4;
  text-align: center;
  background: none;
  box-shadow: none;
}

@media (max-width: 820px) {
  .timeline__line, .timeline__progress {
    left: 28px;
    transform: none;
  }
  .step {
    grid-template-columns: 48px 1fr;
    gap: 12px;
    margin: 18px 0;
    align-items: flex-start;
  }
  .step .step__content {
    grid-column: 2/3;
    padding: 14px;
    text-align: left;
    min-height: auto;
  }
  .step:nth-child(odd) .step__content:first-child, .step:nth-child(odd) .step__content:last-child, .step:nth-child(even) .step__content:first-child, .step:nth-child(even) .step__content:last-child {
    grid-column: 2/3;
    text-align: left;
    width: 100%;
  }
  .step .step__content img {
    width: 100%;
  }
  .step .step__dot {
    position: absolute;
    left: 13px;
  }
  .process__header {
    top: 46px;
  }
}
/* -----------------------------------------------------------------------
   13) WHY WE ARE DIFFERENT (Compare)
   ----------------------------------------------------------------------- */
.compare-section {
  border-bottom: 1px solid var(--gray-lighter);
  padding: 30px 0;
}
.compare-section:last-child {
  border-bottom: 0;
}

.compare__header {
  position: sticky;
  top: 57px;
  z-index: 30;
  background: var(--gray-lighter);
  padding: 14px 0;
  border-bottom: 1px solid rgba(10, 42, 102, 0.04);
}
.compare__header .compare__title h5 {
  margin: 0;
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 600;
  color: var(--primary);
}
.compare__header .compare__title small {
  color: var(--gray);
  font-size: 14px;
}
.compare__header .compare__title img {
  height: 50px;
  width: 50px;
  margin-top: 8px;
}

.compare-wrapper {
  position: relative;
  overflow-y: auto;
  padding-top: 60px;
}

.compare-table {
  display: flex;
  gap: 10px;
  min-width: 900px;
}
.compare-table > .col-4 {
  flex: 1;
  max-width: calc((100% - 20px) / 3);
}
.compare-table .compare-left h6 {
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary);
}
.compare-table .compare-left p {
  font-size: 14px;
  color: var(--gray);
}
.compare-table .compare-middle,
.compare-table .compare-right {
  padding: 20px;
  border-radius: 12px;
  font-size: 14px;
}
.compare-table .compare-middle ul,
.compare-table .compare-right ul {
  padding-left: 0;
  margin-bottom: 0;
}
.compare-table .compare-middle li,
.compare-table .compare-right li {
  list-style: none;
  margin-bottom: 10px;
}
.compare-table .compare-middle {
  background: var(--success-lighter);
  border: 1px solid var(--success-light);
}
.compare-table .compare-right {
  background: var(--error-lighter);
  border: 1px solid var(--error-light);
}
.compare-table .check {
  color: var(--success);
  margin-right: 5px;
  font-weight: 700;
}
.compare-table .cross {
  color: var(--error);
  margin-right: 5px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .compare__header {
    top: 46px;
  }
}
.compare_note {
  background-color: var(--primary-lighter);
  text-align: center;
  padding: 15px;
  margin: 0px 0 15px 0;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}
.compare_note p {
  margin: 0;
}

/* -----------------------------------------------------------------------
   14) ASSOCIATIONS (Marquee)
   ----------------------------------------------------------------------- */
.associations-section {
  padding: 60px 0;
  text-align: center;
  overflow: hidden;
  position: relative;
  background: var(--white);
}
.associations-section .d-flex {
  overflow: hidden;
}
.associations-section .scroll-container {
  display: flex;
  width: max-content;
  animation: scroll 25s linear infinite;
}
.associations-section .scroll-container:hover {
  animation-play-state: paused;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.associations-section .association-logo {
  flex: 0 0 auto;
  width: 150px;
  text-align: center;
  margin: 0 25px;
}
.associations-section .association-logo img {
  max-height: 80px;
  margin-bottom: 10px;
}
.associations-section .association-logo h6 {
  font-size: 15px;
  color: var(--gray);
  margin-top: 5px;
}

/* -----------------------------------------------------------------------
   15) PRICING (Tabs + Forms + Gauge)
   ----------------------------------------------------------------------- */
.container-main {
  max-width: 1168px;
  margin: 28px auto;
  padding: 0 14px;
}

.nav-tabs {
  margin-top: 12px;
}

/* Tabs */
.nav-tabs.pricing_faq-tabs {
  padding-left: 0;
  border-bottom: 0;
  gap: 8px;
}
.nav-tabs.pricing_faq-tabs .nav-link {
  background-color: var(--muted) !important;
  color: var(--gray-light) !important;
  border: none !important;
  border-radius: 8px 8px 0 0 !important;
  padding: 8px 16px;
  font-weight: 600;
  font-size: clamp(12px, 1vw, 14px);
  box-shadow: 0 2px 6px rgba(3, 20, 54, 0.03);
  transition: background 0.4s ease, color 0.4s ease, box-shadow 0.3s ease;
}
.nav-tabs.pricing_faq-tabs .nav-link.active {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-2)) !important;
  color: var(--primary) !important;
  font-weight: 600;
  box-shadow: 0 3px 8px rgba(3, 20, 54, 0.08);
}
.nav-tabs.pricing_faq-tabs .nav-link:hover {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-3)) !important;
  color: var(--primary) !important;
  box-shadow: 0 4px 10px rgba(3, 20, 54, 0.1);
}
@media (max-width: 768px) {
  .nav-tabs.pricing_faq-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 5px;
    overflow-x: auto;
    overflow-y: hidden;
  }
  .nav-tabs.pricing_faq-tabs .nav-link {
    width: 100%;
    text-align: center;
    margin-right: 0;
    font-size: 12px;
    padding: 8px 10px;
  }
  .nav-tabs.pricing_faq-tabs .nav-link.active {
    font-size: 12px;
  }
}

.section-card {
  background: var(--white);
  border-radius: 0 12px 12px 12px;
  padding: 18px;
  border: 1px solid var(--line);
}
@media (max-width: 480px) {
  .section-card {
    border-radius: 0 0 12px 12px;
  }
}

.pricing_heading {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 6px;
  font-size: clamp(14px, 0.5vw + 11px, 16px);
}

.pricing_text {
  color: var(--gray);
  font-size: clamp(12px, 0.5vw + 11px, 14px);
}

/* Left form chunks */
.form-label {
  font-weight: 600;
  color: var(--dark-light);
  font-size: clamp(12px, 0.5vw + 11px, 14px);
}

.form-select, .form-control {
  height: 44px;
  border-radius: 6px;
  font-size: clamp(12px, 0.5vw + 11px, 14px);
}

.range-wrap {
  margin-top: 6px;
}

.ticks {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--gray-light);
  margin-top: 8px;
}

/* Range (new look) */
input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--secondary) 0%, var(--secondary) 0%) no-repeat var(--gray-lighter1);
  background-size: 0% 100%;
  outline: none;
  transition: background-size 0.3s ease;
}
input[type=range]::-webkit-slider-runnable-track {
  height: 8px;
  border-radius: 6px;
  background: transparent;
}
input[type=range]::-moz-range-track {
  height: 8px;
  border-radius: 6px;
  background: transparent;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 28px;
  border-radius: 5px;
  background: var(--secondary);
  border: 2px solid var(--secondary-2);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  margin-top: -10px;
  transition: 0.2s;
  cursor: pointer;
}
input[type=range]::-webkit-slider-thumb:hover {
  background: rgb(255, 214.8629032258, 33.8);
}
input[type=range]::-webkit-slider-thumb:active {
  transform: scale(1.05);
}
input[type=range]::-moz-range-thumb {
  width: 20px;
  height: 28px;
  border-radius: 5px;
  background: var(--secondary);
  border: 2px solid var(--secondary-2);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: 0.2s;
}

/* Right totals */
.pricing-totals .row-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 8px 0;
}
.pricing-totals .lbl {
  color: var(--primary);
  font-weight: 600;
}
.pricing-totals .note {
  color: var(--error);
  font-weight: 600;
  font-size: 12px;
  margin-left: 6px;
}
.pricing-totals .amt {
  color: var(--error);
  font-weight: 600;
}
.pricing-totals .icon-rupee {
  color: var(--success);
  font-weight: 600;
  margin-right: 6px;
}

/* Gauge tab */
.gauge_cont {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: relative;
  top: -30px;
}

.gauge-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.g-cover {
  font-weight: 700;
}

.btn-gold {
  background: var(--secondary);
  border: none;
  color: var(--dark);
  font-weight: 700;
  border-radius: 6px;
  padding: 8px 14px;
  width: 100%;
}

canvas {
  display: block;
  width: 100%;
}

.get_membership-cont {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 57%;
  margin-top: 0;
}

.get_membership-amount {
  display: flex;
  justify-content: space-between;
  margin: 15px auto;
}

.box {
  background: var(--white);
  border-radius: 12px;
  border: 1px dashed var(--dash);
  padding: 22px;
}

.cover-input input {
  height: 38px;
  border-radius: 6px;
  border: 1px solid #dfe6ef;
  padding: 6px 10px;
  font-size: 14px;
  background: #fff;
  text-align: right;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.03);
  width: 160px;
}

/* right overlay */
.price-totals-wrap {
  position: relative;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.right-overlay {
  background-image: url(../icons/index/pricing-calculator/pricing-3/data-report-animate.svg);
  background-repeat: no-repeat;
  inset: 0;
  z-index: 2;
  padding: 18px;
  height: 40vh;
  width: 60vh;
}

.overlay-illustration {
  width: 84px;
  height: 84px;
  display: block;
  margin: 0 auto;
}

.price-totals {
  display: none;
  transition: opacity 0.2s ease;
  pointer-events: none;
  width: 100%;
  padding: 6px;
}

.price-totals.visible {
  display: block;
  pointer-events: auto;
}

.btn-view {
  background: #0b4f78;
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
}

.verify-mobile, .price-totals {
  padding: 15px;
  color: #004aad;
  border: dashed 1px #004aad;
}
.verify-mobile p, .price-totals p {
  margin: 0;
  font-weight: 500;
}
.verify-mobile small, .price-totals small {
  color: red;
}

.price-totals-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  border-radius: 6px;
  z-index: 2;
  text-align: center;
}

.price-section {
  background-color: var(--bg-blue);
  border-radius: 10px;
}

.price-box {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  padding: 10px;
}

.view-price {
  color: #004AAD;
  font-weight: 500;
  text-align: center;
}
.view-price p {
  margin: 0 0 5px 0;
  font-weight: 400;
  font-size: 16px;
}
.view-price p span {
  color: red;
  font-size: 14px;
  font-weight: 500;
}

/* ====== PIXEL-LIKE OTP MODAL (Reference: PolicyBazaar popup) ====== */
/* make modal wider so two-column fits nicely */
.modal-dialog.modal-sm {
  max-width: 760px;
  margin: 1.25rem auto;
}

/* outer modal card */
#otpModal .modal-content {
  border-radius: 14px;
  overflow: visible; /* allow glow / offset behind */
  border: 0;
  background: transparent; /* we'll style inner panels */
  box-shadow: none;
  position: relative;
}

/* soft blue glow/offset behind the modal (like ref) */
#otpModal .modal-content::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 10px;
  right: -10px;
  bottom: -10px;
  background: rgba(10, 150, 220, 0.04);
  border-radius: 16px;
  z-index: 0;
  filter: blur(6px);
  pointer-events: none;
}

/* header: visually part of right white card */
#otpModal .modal-header {
  border: 0;
  background: transparent;
  padding: 0; /* header space will be inside content column */
}

/* modal-body becomes two columns */
#otpModal .modal-body {
  display: flex;
  gap: 0;
  padding: 0;
  min-height: 260px;
  align-items: stretch;
  position: relative;
  z-index: 2; /* above glow */
}

/* --- LEFT: Illustration panel --- */
#otpModal .image-section {
  order: 1; /* LEFT */
  width: 46%;
  min-width: 260px;
  background: linear-gradient(180deg, #e7f9ff 0%, #f6fbff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  box-sizing: border-box;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  /* subtle inner highlight */
  box-shadow: inset -8px 0 24px rgba(7, 86, 122, 0.03);
  border-right: 1px solid rgba(3, 45, 75, 0.03);
}

/* illustration sizing (nudge to match reference spacing) */
#otpModal .image-section img {
  max-width: 92%;
  height: auto;
  display: block;
  transform: translateY(-6px);
}

/* --- RIGHT: Content card (white) --- */
/* we select all siblings except .image-section to keep your HTML untouched */
#otpModal .modal-body > :not(.image-section) {
  order: 2; /* RIGHT */
  width: 54%;
  padding: 22px 26px;
  box-sizing: border-box;
  background: #fff;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  /* inner soft shadow and border to imitate floating white card */
  box-shadow: 0 6px 18px rgba(19, 38, 63, 0.06);
  border: 1px solid rgba(3, 45, 75, 0.04);
}

/* If your header element (.modal-header) is still above modal-body, tighten spacing */
#otpModal .modal-header + .modal-body > :not(.image-section) {
  padding-top: 12px;
}

/* TITLE style */
#otpModal .modal-title {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0b3850;
  margin: 6px 0 12px 0;
}

/* Close button circular like reference top-right */
#otpModal .btn-close {
  width: 24px;
  height: 24px;
  border: none;
  background: #000;
  border-radius: 50%;
  position: absolute;
  top: 12px;
  right: 12px;
  opacity: 1;
}

/* cross icon */
#otpModal .btn-close::before {
  content: "×";
  font-size: 22px;
  color: #fff;
  line-height: 22px;
  display: block;
  text-align: center;
  font-weight: 600;
  position: relative;
  top: -2px;
}

/* form labels & inputs */
#otpModal .form-label {
  font-weight: 600;
  color: #23404e;
  margin-bottom: 8px;
  display: block;
}

#otpModal .form-control {
  border-radius: 10px;
  border: 1px solid #e6eef6;
  padding: 10px 14px;
  height: 44px;
  box-shadow: none;
  font-size: 14px;
}

/* helper text */
#otpModal .text-muted {
  color: #6b7b86;
  font-size: 13px;
}

/* action buttons like reference (big blue) */
#otpModal .btn-primary {
  background: linear-gradient(180deg, #0b6bd1, #005bb0);
  border: 0;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 600;
  min-width: 200px;
  box-shadow: 0 6px 18px rgba(11, 95, 165, 0.14);
}

#otpModal .btn-success {
  background: linear-gradient(180deg, #34d399, #06b24a);
  border: 0;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 600;
  min-width: 200px;
  box-shadow: 0 6px 18px rgba(11, 95, 165, 0.14);
}

/* smaller secondary buttons */
#otpModal .btn-outline-secondary {
  border-radius: 8px;
}

/* OTP message area */
#otpModal #otpMsg {
  margin-top: 12px;
  font-size: 13px;
}

/* make sure inner spacing matches reference */
#otpModal .modal-body .d-flex.justify-content-end {
  margin-top: 12px;
}

/* Mobile: stack image on top and content below */
@media (max-width: 767px) {
  .modal-dialog.modal-sm {
    max-width: 92%;
    margin: 0.9rem auto;
  }
  #otpModal .modal-body {
    flex-direction: column;
    min-height: auto;
  }
  #otpModal .image-section {
    order: 1;
    width: 100%;
    min-width: 0;
    padding: 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(3, 45, 75, 0.03);
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  #otpModal .modal-body > :not(.image-section) {
    order: 2;
    width: 100%;
    padding: 18px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
  }
  #otpModal .btn-primary {
    width: 100%;
    min-width: 0;
  }
}
/* small polish: ensure inputs & buttons full width like reference */
#otpModal .form-control, #otpModal .btn-primary, #otpModal .btn-success {
  width: 100%;
  display: block;
}

.mobile-otp {
  display: flex;
  flex-direction: column;
}

.otp-success {
  color: green;
  text-align: center;
  font-size: clamp(12px, 1vw, 14px);
}

.otp-resend {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.otp-resend p {
  margin-bottom: 0;
  color: var(--gray-light);
}
.otp-resend a {
  color: var(--primary);
}

/* -----------------------------------------------------------------------
   16) TESTIMONIALS (Swiper cards)
   ----------------------------------------------------------------------- */
.testimonial-section {
  padding: 60px 0 100px;
  text-align: center;
}

.testimonial-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
  background: var(--white);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-5px);
}
.testimonial-card .testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}
.testimonial-card .testimonial-header .testimonial-user {
  display: flex;
  align-items: center;
}
.testimonial-card .testimonial-header .testimonial-user img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 12px;
}
.testimonial-card .testimonial-header .testimonial-user .testimonial-name {
  font-weight: 600;
  margin: 0;
  font-size: 15px;
}
.testimonial-card .testimonial-header .testimonial-user .testimonial-role {
  font-size: 13px;
  color: var(--gray);
  margin: 0;
}
.testimonial-card .testimonial-header .stars {
  color: var(--secondary);
  font-size: 30px;
}
.testimonial-card .testimonial-body {
  text-align: left;
  margin-top: 15px;
}
.testimonial-card .testimonial-body h6 {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 8px;
}
.testimonial-card .testimonial-body p {
  font-size: 14px;
  color: var(--gray);
  margin: 0;
}
.testimonial-card .testimonial-footer {
  border-top: 1px solid var(--line);
  margin-top: 15px;
  padding-top: 10px;
  text-align: right;
  font-size: 13px;
  color: var(--gray-light);
}

.custom-arrows {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 25px;
}
.custom-arrows .arrow-btn {
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 30px;
  position: relative;
}
.custom-arrows .arrow-btn .arrow-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
}
.custom-arrows .arrow-btn .arrow-line::before {
  content: "";
  position: absolute;
  border: solid var(--dark);
  border-width: 0 2px 2px 0;
  padding: 5px;
  top: -5px;
}
.custom-arrows .arrow-btn.prev .arrow-line::before {
  left: 0;
  transform: rotate(135deg);
}
.custom-arrows .arrow-btn.next .arrow-line::before {
  right: 0;
  transform: rotate(-45deg);
}

/* -----------------------------------------------------------------------
   17) CONNECT WITH US (Address + Cards)
   ----------------------------------------------------------------------- */
#address {
  padding-bottom: 90px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
  gap: 20px;
}
.actions .action-card {
  background: var(--white);
  border-radius: 10px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  font-size: 14px;
  min-width: 240px;
  flex: 1;
  transition: transform 0.3s ease;
}
.actions .action-card:hover {
  transform: translateY(-5px);
}
.actions .action-card p {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  margin: 0;
}
.actions .action-card .icon-call, .actions .action-card .icon-mail, .actions .action-card .icon-whatsapp {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.actions .action-card .icon-call {
  background: var(--icon-call);
}
.actions .action-card .icon-mail {
  background: var(--icon-mail);
}
.actions .action-card .icon-whatsapp {
  background: var(--icon-whatsapp);
}

/* Grid Layout */
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

/* Flip Card */
.flip-wrap {
  perspective: 1200px;
}
.flip-wrap:hover .flip-card {
  transform: rotateY(180deg);
}

.flip-card {
  position: relative;
  width: 100%;
  height: 150px;
  transform-style: preserve-3d;
  transition: transform 0.9s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.flip-card .flip-front, .flip-card .flip-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  background: var(--white);
  overflow: hidden;
  box-sizing: border-box;
}
.flip-card .flip-front {
  padding: 16px;
}
.flip-card .flip-front h6 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gray) !important;
}
.flip-card .flip-front p {
  font-size: 14px;
  color: var(--gray);
  margin: 0 0 4px;
  line-height: 1.4;
}
.flip-card .flip-front a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}
.flip-card .flip-back {
  transform: rotateY(180deg);
  padding: 10px;
}
.flip-card .flip-back iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
}
.flip-card:hover {
  transform: rotateY(180deg);
}

.view-more {
  margin-top: 30px;
  display: flex;
  justify-content: flex-end;
}
.view-more button {
  border: 1px solid var(--line);
  border-radius: 5px;
  background: transparent;
  font-size: 14px;
  padding: 6px;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 3px;
  background: var(--line);
  color: var(--primary);
}

/* Contact two-column split (illustration + form) */
.contact-section {
  display: flex;
  align-items: stretch;
  width: 100%;
}
.contact-section .image-box {
  flex: 1;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
}
.contact-section .image-box img {
  width: 100%;
  max-width: 450px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.contact-section .image-box img:hover {
  transform: scale(1.02);
}
.contact-section .form-box {
  flex: 1;
  padding: 0 45px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-section .form-box .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 22px;
}
.contact-section .form-box .form-row input {
  flex: 1;
}
.contact-section .form-box input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--gray-lighter1);
  border-radius: 10px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--gray);
  transition: all 0.25s ease;
  background: var(--white);
}
.contact-section .form-box input::placeholder {
  color: var(--gray-light);
}
.contact-section .form-box input:focus {
  outline: none;
  border-color: var(--primary-3);
  background: var(--line);
  box-shadow: 0 0 6px rgba(0, 70, 192, 0.25);
}
.contact-section .form-box .form-actions {
  display: flex;
  gap: 18px;
  margin-top: 30px;
}
.contact-section .form-box .form-actions .btn {
  flex: 1;
  justify-content: center;
  padding: 10px 15px;
  font-size: 16px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
}
.contact-section .form-box .form-actions .btn-outline {
  border: 2px solid var(--primary-3);
  color: var(--primary-3);
  background: var(--white);
}
.contact-section .form-box .form-actions .btn-outline:hover {
  background: var(--primary-3);
  color: var(--white);
  box-shadow: 0 5px 14px rgba(0, 70, 192, 0.25);
}
.contact-section .form-box .form-actions .btn-yellow {
  border: none;
  background: var(--secondary);
  color: var(--primary-3);
}
.contact-section .form-box .form-actions .btn-yellow:hover {
  background: var(--secondary-2);
  box-shadow: 0 5px 14px rgba(255, 204, 0, 0.35);
}
@media (max-width: 992px) {
  .contact-section {
    flex-direction: column;
  }
  .contact-section .image-box {
    order: -1;
    padding: 30px;
  }
  .contact-section .form-box {
    padding: 35px 25px;
  }
  .contact-section .form-box .form-row {
    flex-direction: column;
    gap: 16px;
  }
  .contact-section .form-box .form-actions {
    flex-direction: column;
  }
}

/* SVG entry fades (if used) */
svg:not(.animated) .animable {
  opacity: 0;
}

svg.animated .animable {
  opacity: 1;
  animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
/* -----------------------------------------------------------------------
   18) FAQ (Tabs + Accordion)
   ----------------------------------------------------------------------- */
.faq-section {
  margin: 0 auto;
  border-radius: 10px;
}
.faq-section .faq-content {
  background: var(--white);
  border: 1px solid var(--gray-lighter);
  padding: 30px;
  margin-top: 0 !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
  border-radius: 0 12px 12px 12px;
}
@media (max-width: 480px) {
  .faq-section .faq-content {
    border-radius: 0 0 12px 12px;
    padding: 15px;
  }
}

/* Tabs */
/* Accordion */
.accordion-item {
  border: 1px solid var(--line) !important;
  margin-bottom: 12px;
  border-radius: 12px !important;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}
.accordion-item .accordion-button {
  background: var(--white);
  padding: 14px 18px;
  font-weight: 600;
  border-radius: 0;
  box-shadow: none !important;
  border-bottom: 0px solid var(--line);
  transition: background 0.3s ease;
  font-size: clamp(12px, 0.5vw + 11px, 14px);
}
.accordion-item .accordion-button:focus {
  border-color: var(--line) !important;
  box-shadow: none !important;
}
.accordion-item .accordion-button:not(.collapsed) {
  background: var(--primary-lighter);
  color: var(--dark);
  border-color: var(--line) !important;
  box-shadow: none !important;
}
.accordion-item .accordion-body {
  background: var(--bg);
  color: var(--gray);
  padding: 16px 18px;
  line-height: 1.6;
  border-top: none;
  font-size: clamp(12px, 0.5vw + 11px, 14px);
}

/* -----------------------------------------------------------------------
   19) OUR INSURANCE PARTNERS (Marquee v2)
   ----------------------------------------------------------------------- */
.partners-section {
  padding: 60px 0;
  text-align: center;
  background: var(--white);
  overflow: hidden;
}
.partners-section .marquee-wrapper {
  display: flex;
  overflow: hidden;
  position: relative;
  padding: 10px 0;
}
.partners-section .marquee-wrapper .marquee {
  display: flex;
  gap: 20px;
  animation: scroll 20s linear infinite;
  width: max-content;
}
.partners-section .marquee-wrapper:hover .marquee {
  animation-play-state: paused;
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.partners-section .partner-logo {
  flex: 0 0 auto;
  background: var(--white);
  border: 1px solid var(--gray-lighter);
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
  height: 90px;
  width: 160px;
}
.partners-section .partner-logo img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
}
.partners-section .partner-logo:hover {
  transform: translateY(-5px);
}

/* -----------------------------------------------------------------------
   20) FOOTER
   ----------------------------------------------------------------------- */
footer {
  background: var(--bg);
  color: var(--gray);
  padding: 50px 0 0;
}
footer .footer_logo-section .footer-logo {
  margin-bottom: 14px;
}
footer .footer_logo-section .footer-logo img {
  max-width: 190px;
}
footer .footer_logo-section .logo-info {
  font-size: clamp(12px, 1vw, 14px);
  color: var(--gray);
}
footer .footer-title {
  font-weight: 600;
  margin-bottom: 18px;
  font-size: clamp(14px, 1.2vw, 16px);
  color: var(--primary);
}
footer .footer-links {
  padding: 0;
  margin: 0;
}
footer .footer-links li {
  list-style: none;
  margin-bottom: 10px;
}
footer .footer-links a {
  font-size: clamp(12px, 1vw, 14px);
  text-decoration: none;
  color: var(--gray);
}
footer .footer-links a:hover {
  color: rgb(0, 60.910982659, 142.4);
}
footer .newsletter-text {
  font-size: clamp(12px, 1vw, 14px);
  margin-bottom: 15px;
  line-height: 22px;
  color: var(--gray);
}
footer .newsletter .form-control {
  border-radius: 4px 0 0 4px;
  border: 1px solid var(--gray-lighter1);
  font-size: clamp(12px, 1vw, 14px);
  padding: 10px;
}
footer .newsletter button {
  border: none;
  background: var(--secondary);
  padding: 8px 16px;
  font-weight: 500;
  font-size: clamp(20px, 2.4vw, 28px);
  color: var(--primary);
  transition: all 0.3s ease;
}
footer .newsletter button:hover, footer .newsletter button:focus {
  background: #e6b800;
  color: var(--primary);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}
footer .newsletter button:active {
  background: #e6b800 !important;
  color: var(--primary) !important;
}
footer .newsletter button {
  border-radius: 0 4px 4px 0;
  font-size: clamp(12px, 1vw, 14px);
}
footer .footer-bottom {
  background: var(--inactive-bg);
  margin-top: 40px;
  padding: 10px 0;
  font-size: clamp(12px, 1vw, 14px);
}
footer .footer-bottom .copyright {
  margin: 0;
  color: var(--gray);
}
footer .social-icons {
  display: flex;
  gap: 12px;
}
footer .social-icons a {
  width: 34px;
  height: 34px;
  background: var(--white);
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
footer .social-icons a:hover {
  transform: translateY(-2px);
}
footer .social-icons a img {
  width: 16px;
  height: 16px;
}

/* -----------------------------------------------------------------------
   21) RESPONSIVE FALLBACKS (miscs)
   ----------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .icons {
    grid-template-columns: repeat(3, 1fr);
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials {
    grid-template-columns: 1fr;
  }
  .pricing__grid, .contact__grid, .hero__grid {
    grid-template-columns: 1fr;
  }
  .tiles.two {
    grid-template-columns: 1fr;
  }
}
/* -----------------------------------------------------------------------
   22) CSS VARIABLES MIRROR (for runtime use) – matches original CSS
   ----------------------------------------------------------------------- */
@media (min-width: 320px) and (max-width: 767px) {
  .nav-tabs.pricing-tab {
    padding-left: 0;
    border-bottom: 0;
  }
  .nav-tabs.pricing-tab .nav-link {
    background: var(--muted);
    margin-right: 8px;
    border: none;
    border-radius: 6px 6px 0 0;
    font-weight: 600;
    color: var(--gray-light);
  }
  .nav-tabs.pricing-tab .nav-link.active {
    background: var(--secondary);
    color: var(--primary);
  }
  .nav-tabs.faq-tabs {
    overflow-x: auto;
    overflow-y: hidden !important;
  }
}
/* -----------------------------------------------------------------------
   23) CSS Invoice Start (for runtime use) – matches original CSS
   ----------------------------------------------------------------------- */
.wrap {
  max-width: 1060px;
  margin: 10px auto;
}

.invoice-card {
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.06);
}

.grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 420px;
}
@media (max-width: 980px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border-bottom: 3px solid rgba(0, 74, 173, 0.06);
  padding-bottom: 14px;
}
.top .brand {
  display: flex;
  gap: 12px;
  align-items: center;
}
.top .brand img {
  height: 50px;
  border-radius: 8px;
}
.top .brand .title {
  color: #004AAD;
  font-weight: 700;
}
.top .meta {
  text-align: right;
  color: #707a86;
  font-size: 13px;
}
.top .meta .invo {
  color: #004AAD;
  font-weight: 700;
  font-size: 16px;
}

.controls {
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #eef3fb;
  background: linear-gradient(180deg, #fff, #fbfdff);
}
.controls h4 {
  margin: 4px 0 12px 0;
  color: #004AAD;
  font-size: 14px;
}
.controls .field {
  margin-bottom: 18px;
}
.controls .input,
.controls select {
  display: block;
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  border-radius: 10px;
  border: 1px solid #e6eef8;
  background: #fbfdff;
  color: #0f1724;
  outline: none;
  -webkit-appearance: none;
}
.controls .input[disabled],
.controls select[disabled] {
  background: #fbfdff;
  color: #0f1724;
  border: 1px solid #e6eef8;
  cursor: default;
  box-shadow: none;
  opacity: 1;
}
.controls .input-group {
  display: flex;
  gap: 8px;
  align-items: center;
}
.controls .input-group .input {
  flex: 1;
}
.controls .input-group .suffix {
  padding: 12px 14px;
  background: #fbfdff;
  border: 1px solid #e6eef8;
  border-radius: 10px;
  font-weight: 700;
  color: #0f1724;
  font-size: 15px;
  min-width: 72px;
  text-align: center;
}
.controls .small-help {
  color: #707a86;
  font-size: 13px;
  margin-top: 8px;
}

.invoice-box {
  padding: 18px;
  border-radius: 10px;
  border: 1px solid #eef3fb;
  background: linear-gradient(180deg, #fff, #fbfdff);
}
.invoice-box h3 {
  margin: 0 0 8px 0;
  color: #004AAD;
}
.invoice-box .summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed #f1f5f9;
}
.invoice-box .summary-row strong {
  color: #24303a;
}
.invoice-box .summary-row .amount {
  font-weight: 700;
}
.invoice-box .total {
  font-size: 18px;
  font-weight: 600;
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.invoice-box .total .amt {
  color: var(--success);
  font-weight: 700;
  font-size: 20px;
}
.invoice-box .items {
  margin-top: 12px;
  border-top: 1px solid #eef3fb;
  padding-top: 12px;
}
.invoice-box .muted {
  color: #707a86;
  font-size: 13px;
}
.invoice-box .actions {
  display: flex;
  gap: 10px;
  margin-top: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

/* -----------------------------------------------------------------------
   24) CSS Modal Start (for runtime use) – matches original CSS
   ----------------------------------------------------------------------- */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 60;
  background: rgba(2, 6, 23, 0.45);
}
.modal.show {
  display: flex;
}
.modal .modal-card {
  background: #fff;
  padding: 22px;
  border-radius: 12px;
  text-align: center;
  width: 460px;
  box-shadow: 0 20px 50px rgba(2, 6, 23, 0.2);
}
.modal .modal-card .tick {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-size: 44px;
  background: linear-gradient(180deg, #e6fff2, #bdf6d6);
  color: #00c853;
}
.modal .modal-card h3 {
  color: #004AAD;
  margin: 6px 0;
}
.modal .modal-card p {
  color: #707a86;
  margin: 0 0 14px 0;
}
.modal .modal-dialog {
  z-index: 9999 !important;
}
.modal .login-wrapper {
  background: none;
  box-shadow: none;
  padding: 20px;
}

.modal-backdrop {
  z-index: 9 !important;
}

.note {
  text-align: center;
  color: #707a86;
  margin-top: 10px;
  font-size: 13px;
}

@media print {
  body {
    background: white;
  }
  .actions,
  .btn-download {
    display: none;
  }
}
/* -----------------------------------------------------------------------
   25) CSS Login  Start (for runtime use) – matches original CSS
   ----------------------------------------------------------------------- */
.login-wrapper {
  max-width: 500px;
  width: 100%;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 40px;
}

.login-right h3 {
  font-weight: 600;
  margin-bottom: 10px;
  color: #004AAD;
}

.login-right p {
  color: #6b7280;
  margin-bottom: 25px;
}

.form-control:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 0.25rem rgba(99, 102, 241, 0.25);
}

.btn-animated {
  background: linear-gradient(270deg, #6366f1, #4f46e5, #06b6d4, #F8CB00);
  background-size: 600% 600%;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: 500;
  color: #fff !important;
  animation: gradientFlow 6s ease infinite;
  transition: 0.3s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.btn-animated:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.btn-link {
  color: #004AAD;
  text-decoration: none;
}

.hidden {
  display: none;
}

.timer {
  font-size: 0.9rem;
  color: #6b7280;
  margin-top: 8px;
}

.hint {
  color: #dc2626;
  font-size: 0.85rem;
  margin-top: 5px;
  display: none;
}

.register_now {
  margin-top: 10px;
  text-align: center;
}

.register_now a {
  text-decoration: none;
  color: red;
  font-size: 14px;
}

/* -----------------------------------------------------------------------
   26) CSS Car Insurance Start (for runtime use) – matches original CSS
   ----------------------------------------------------------------------- */
/* ================= CLEAN & REFINED STYLES ================= */
.section--clean {
  padding-top: 0;
}

/* Banner */
.banner {
  position: relative;
  background: #0a1425;
}

.banner--car {
  background-image: linear-gradient(180deg, rgba(10, 20, 37, 0.55), rgba(10, 20, 37, 0.65)), url("assets/banners/car-insurance.jpg");
  background-size: cover;
  background-position: center;
}

.banner__body {
  padding: 64px 0;
}

.banner__title {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  margin: 0;
}

.banner__sub {
  opacity: 0.9;
  margin: 0.25rem 0 1rem;
}

.banner__cta .btn {
  margin-right: 0.5rem;
}

.btn-ghost {
  background: #ffffff;
  border: 1px solid #cfe0ff;
}

/* Cards */
.card-clean {
  padding: 24px;
  margin-top: 16px;
}

.clean-card {
  background: var(--bg);
  border: 1px solid var(--gray-lighter);
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}
.clean-card:hover {
  transform: translateY(-5px);
}

/* Feature tiles */
.feature-tile {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--ui-line);
  border-radius: 14px;
  padding: 14px 16px;
}

.feature-tile__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--ui-soft);
  border: 1px solid #dce8f8;
  font-size: 20px;
}

.feature-tile__text h6 {
  margin: 0 0 4px;
}

.feature-tile__text p {
  margin: 0;
  color: var(--ui-muted);
}

/* Plan cards */
.plan-card {
  background: var(--bg);
  border: 1px solid var(--gray-lighter);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-5px);
}

.plan-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.plan-card__head h5 {
  color: var(--primary);
}

.card_head h4 {
  color: var(--primary);
}
.card_head p {
  font-size: clamp(12px, 1vw, 14px);
  color: var(--gray);
}

/* Form cards */
.form-card {
  background: var(--bg);
  border: 1px solid var(--gray-lighter);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}
.form-card:hover {
  transform: translateY(-5px);
}

.form-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.form-card__head h4 {
  color: var(--primary);
}

.chip {
  display: inline-block;
  border: 1px solid var(--ui-line);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 600;
  background: #004AAD;
  color: #ffffff;
}

.chip--secondary {
  background: #F8CB00;
  border-color: #ffb84d;
  color: #171717;
}

.list-ticks {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.list-ticks li {
  position: relative;
  padding-left: 22px;
  margin: 8px 0;
}

.list-ticks li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
}

.list-ticks ol li {
  padding-left: 0;
}

.list-ticks ol li::before {
  display: none;
  padding-left: 0 !important;
}

/* Tables */
.table-clean thead th {
  background: var(--ui-soft);
  border-bottom: 1px solid var(--ui-line);
}

.table-clean tbody tr:hover {
  background: #fbfdff;
}

/* Steps */
.quote-step {
  position: relative;
  padding-left: 42px;
  min-height: 32px;
}

.step__num {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 34px;
  height: 100%;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--secondary);
  border: 1px solid var(--secondary-3);
  font-weight: 700;
}

/* Minor spacing helpers */
.mtop-20 {
  margin-top: 20px;
}

.mtop-28 {
  margin-top: 28px;
}

.mtop-32 {
  margin-top: 32px;
}

.mtop-36 {
  margin-top: 36px;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
  --bs-table-bg-type: var(--bg-blue);
}

/* ================= Modern Add-ons & Coverage Grid ================= */
.addon-grid, .coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.addon-card, .coverage-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.addon-card:hover, .coverage-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-bottom: 2px solid var(--primary) !important;
}

.addon-title, .coverage-title {
  color: var(--primary);
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 10px;
}

.addon-protects p, .coverage-protects p {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 8px;
}
.addon-protects p span, .coverage-protects p span {
  font-weight: 500;
}

.addon-why p, .coverage-why p {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 8px;
}
.addon-why p span, .coverage-why p span {
  font-weight: 500;
}

/* ==== Car Insurance Hero Banner ==== */
.hero-banner-car, .hero-banner-health {
  position: relative;
  max-height: 400px;
  display: flex;
  align-items: center;
  background: var(--bg-blue);
  overflow: hidden;
}
.hero-banner-car .container, .hero-banner-health .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
}

.hero-text h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  line-height: 1.2;
  color: var(--dark-light);
}

.hero-text p {
  font-size: 1.1rem;
  max-width: 480px;
  margin-bottom: 1.5rem;
  color: var(--gray);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-banner-car .btn-get {
  background: var(--secondary);
  border: none;
  color: #0a1f44;
  font-weight: 700;
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
}

.hero-banner-car .btn-get:hover {
  background: var(--secondary-2);
}

.hero-banner-car .btn-outline-light {
  color: var(--primary);
  border: 2px solid var(--primary);
  font-weight: 600;
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
  transition: background 0.3s;
}
.hero-banner-car .btn-outline-light:hover {
  background: var(--primary-lighter);
}

.hero-image img {
  width: 100%;
  max-height: 380px;
  transform: translateY(10px);
  filter: drop-shadow(0 20px 40px rgba(183, 183, 183, 0.3));
  transition: transform 0.5s ease;
}

.hero-banner-car:hover .hero-image img {
  transform: translateY(0);
}

@media (max-width: 992px) {
  .hero-banner-car .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-image {
    order: -1;
  }
  .hero-image img {
    max-width: 340px;
    margin: 0 auto;
  }
}
.choose_options-section {
  display: flex;
  justify-content: center;
  padding: 60px 80px;
}
.choose_options-section .choose_options-counter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 20px;
  padding: 40px;
}
.choose_options-section .choose_options-left {
  flex: 1;
  min-width: 250px;
  max-width: 400px;
  margin-bottom: 0 !important;
}
.choose_options-section .choose_options-right {
  flex: 2;
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
.choose_options-section .choose_options-right .insurance-options {
  display: flex;
  gap: 20px;
}
.choose_options-section .choose_options-right .insurance-options .primary_btn {
  font-size: clamp(15px, 1.6vw, 18px);
  padding: 16px;
  font-weight: 400;
}
.choose_options-section .choose_options-right .insurance-options .secondary_btn {
  font-size: clamp(15px, 1.6vw, 18px);
  padding: 16px;
  font-weight: 400;
}
@media (max-width: 992px) {
  .choose_options-section {
    flex-direction: column;
    align-items: center;
  }
  .choose_options-section .choose_options-right {
    flex-direction: column;
    align-items: center;
  }
}

/* -----------------------------------------------------------------------
   27) CSS Home Insurance Start (for runtime use) – matches original CSS
   ----------------------------------------------------------------------- */
.cards.cards--home {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 991px) {
  .cards.cards--home {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .cards.cards--home {
    grid-template-columns: 1fr;
  }
}
.risk-card .risk-card-content p {
  margin: 0;
}

.plan-card ul {
  margin: 0;
}

.addon-grid.addon-grid--home {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 991px) {
  .addon-grid.addon-grid--home {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 575px) {
  .addon-grid.addon-grid--home {
    grid-template-columns: 1fr;
  }
}
/*----Health----*/
/* Premium V2: refined typography, spacing, micro-interactions */
#choose-coverage.premium-ui.v2 {
  --accent:#06b6d4;
  --glass: rgba(255,255,255,0.8);
}

#choose-coverage.premium-ui.v2 .container {
  position: relative;
  padding-top: 8px;
}

#choose-coverage.premium-ui.v2 .section-heading.center p {
  color: #475569;
  margin: 0 0 1rem 0;
  font-size: 1rem;
}

/* Segmented control with improved accessibility & keyboard focus */
.segmented {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.seg {
  padding: 0.55rem 0.95rem;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: #fff;
  box-shadow: 0 6px 16px rgba(2, 6, 23, 0.04);
  transition: transform 0.14s cubic-bezier(0.2, 0.9, 0.3, 1), box-shadow 0.14s ease;
}

.seg:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.06);
}

.seg.active {
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  box-shadow: 0 18px 48px rgba(11, 105, 255, 0.12);
}

/* Cards grid: 1 column mobile, 2 tablet, 3 desktop */
.cards-wrapper {
  margin-top: 0.8rem;
}

.cards--health {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.premium-card {
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  border-radius: 16px;
  padding: 1.15rem;
  border: 1px solid rgba(11, 25, 40, 0.04);
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.06);
  transition: transform 0.22s cubic-bezier(0.2, 0.9, 0.3, 1), box-shadow 0.22s ease, border-color 0.18s ease;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.premium-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(2, 6, 23, 0.12);
  border-color: rgba(11, 25, 40, 0.08);
}

.premium-head {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  margin-bottom: 0.5rem;
}

.premium-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 22px;
  color: #fff;
  flex: 0 0 50px;
  box-shadow: 0 14px 36px rgba(11, 25, 40, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.premium-icon img {
  height: 30px;
}

.premium-card:hover .premium-icon {
  transform: translateY(-6px) rotate(-6deg);
  box-shadow: 0 26px 60px rgba(11, 25, 40, 0.1);
}

.ic-a {
  background: linear-gradient(135deg, var(--primary-5), var(--primary-4));
}

.ic-b {
  background: linear-gradient(135deg, var(--secondary-4), var(--secondary));
}

.ic-c {
  background: linear-gradient(135deg, var(--success-3), var(--success));
}

.ic-d {
  background: linear-gradient(135deg, var(--tertiary-2), var(--tertiary));
}

.premium-card h5 {
  margin: 0;
  font-weight: 700;
  font-size: 1.02rem;
  color: #071023;
}

.premium-card p.lead {
  margin: 0 0 0.6rem 0;
  color: var(--gray);
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 400;
}

/* Preserve original list structure and typography exactly, but make it readable */
.orig-list {
  padding: 0;
  margin-left: 15px;
  display: block;
  font-size: clamp(12px, 1vw, 14px);
}

.orig-list li {
  padding: 5px 5px;
  border-bottom: 1px dashed rgba(11, 25, 40, 0.04);
}

.orig-list li strong {
  font-weight: 600;
  display: block;
  margin-bottom: 0.28rem;
  color: #071023;
}

.orig-list li ol {
  list-style-type: decimal !important;
  margin: 0 0 0 15px;
  padding: 0;
  color: var(--gray);
}

.orig-list li ol li {
  margin: 0.18rem 0;
  line-height: 1.38;
}

/* Fix the small 'o	' typo visually: keep original characters but make it not-break ugly */
.orig-list li p, .orig-list li ol li {
  white-space: pre-wrap;
}

/* CTA cluster with refined buttons */
.cta-row {
  display: flex;
  gap: 0.6rem;
  justify-content: flex-end;
  margin-top: 1rem;
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(11, 25, 40, 0.06);
  padding: 0.56rem 0.95rem;
  border-radius: 10px;
  font-weight: 800;
  color: #0b1220;
}

.btn-solid {
  background: linear-gradient(90deg, #0b69ff, #06b6d4);
  color: #fff;
  border: none;
  padding: 0.56rem 0.95rem;
  border-radius: 10px;
  font-weight: 900;
  box-shadow: 0 18px 48px rgba(11, 105, 255, 0.12);
}

/* small print */
.ref-mini {
  color: #94a3b8;
  font-size: 0.93rem;
  margin-top: 0.45rem;
}

/* details */
.premium-card details {
  margin-top: 0.5rem;
}

.premium-card summary {
  cursor: pointer;
  font-weight: 800;
  color: #0b69ff;
}

.premium-card summary .chev {
  display: inline-block;
  transition: transform 0.16s ease;
  margin-left: 0.4rem;
}

.premium-card details[open] summary .chev {
  transform: rotate(180deg);
}

/* Accessibility focus */
.premium-card:focus-within {
  outline: 0px;
  outline-offset: 6px;
}

/* Smooth entrance animation */
.premium-card {
  opacity: 0;
  transform: translateY(10px) scale(0.995);
  animation: enter 0.48s cubic-bezier(0.2, 0.9, 0.3, 1) forwards;
}

.premium-card:nth-child(1) {
  animation-delay: 0.06s;
}

.premium-card:nth-child(2) {
  animation-delay: 0.12s;
}

.premium-card:nth-child(3) {
  animation-delay: 0.18s;
}

.premium-card:nth-child(4) {
  animation-delay: 0.24s;
}

@keyframes enter {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
/* MAIN WRAPPER */
.cta-x {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 16px 26px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(18px) saturate(200%);
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.25), 0 12px 32px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* HOLOGRAPHIC BORDER */
.cta-x::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 26px;
  padding: 2px;
  background: linear-gradient(135deg, #4a80ff, #00c3ff, #7b35ff, #ff3db2, #ffc043);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  animation: holo 6s linear infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes holo {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(360deg);
  }
}
/* FLOATING GLOW PARTICLES */
.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.6;
  background-image: radial-gradient(circle, rgba(248, 203, 0, 0.7) 0 2px, transparent 3px), radial-gradient(circle, rgba(248, 203, 0, 0.7) 0 2px, transparent 3px);
  background-size: 80px 80px, 120px 120px;
  animation: float 10s infinite linear;
  z-index: 1;
}

@keyframes float {
  0% {
    background-position: 0 0, 50px 50px;
  }
  100% {
    background-position: 200px 200px, 250px 250px;
  }
}
/* OPTIONAL SHINE SWEEP */
.shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 80%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(74, 128, 255, 0.093), rgba(0, 195, 255, 0.137), rgba(124, 53, 255, 0.115), rgba(255, 61, 177, 0.104), rgba(255, 192, 67, 0.093), transparent 100%);
  transform: skewX(-15deg);
  animation: shineMove 6s infinite ease-in-out;
  pointer-events: none;
  z-index: 2;
}

@keyframes shineMove {
  0% {
    left: -100%;
  }
  60% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}
/* FLOATING ₹ BADGE */
.price-badge {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 22px;
  color: var(--white);
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-4), var(--primary-3));
  box-shadow: 0 2px 4px rgba(1, 104, 200, 0.8);
  animation: floatBadge 3s ease-in-out infinite;
  position: relative;
  z-index: 5;
}

@keyframes floatBadge {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}
/* TEXT */
.cta-text {
  font-size: 20px;
  font-weight: 500;
  color: var(--gray);
  position: relative;
  z-index: 5;
}

.cta-text strong {
  color: var(--primary);
  font-weight: 700;
}

/* CTA BUTTON AS LINK */
.cta-btn {
  position: relative;
  z-index: 5;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-3));
  border: none;
  padding: 12px 22px;
  font-size: 20px;
  font-weight: 600;
  color: var(--gray);
  border-radius: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(228, 173, 90, 0.9), inset 0 0 10px rgba(255, 255, 255, 0.4);
  transition: 0.22s ease;
  white-space: nowrap;
}

.cta-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 8px rgba(228, 173, 90, 0.9), inset 0 0 12px rgba(255, 255, 255, 0.6);
}

/* ARROW ICON */
.cta-btn svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.4;
}

/*# sourceMappingURL=style.css.map */
