@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;
  --glow: #4b96f8;
  --secondary: #f8cb00;
  --secondary-2:#e6b800;
  --secondary-3:#ffb84d;
  --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;
  --error:#ff0000;
  --error-2:#ff4d6d;
  --error-light:#df4343;
  --error-lighter:#c36f6f;
  --soft:#fff7db;
  --warning:#ff8b00;
  --error-light: #FFDBDB;
  --error-lighter:#FFE9E9;
  --gray:#3a3a3a;
  --gray-light:#808080;
  --gray-lighter:#F0F0F0;
  --gray-lighter1:#dddddd;
  --inactive-bg: #E5E5E5;
  --border:#dee2e6;
  --icon-call:#FFF9DD;
  --icon-mail:#DEEFFF;
  --icon-whatsapp:#E0FFD9;
  --line: #e4e8f3;
  --shadow: 0 6px 18px rgba(10,42,102,.08);
  --radius: 14px;
  --container: 1100px;
  --ease: cubic-bezier(.4,0,.2,1);
}

/* Colors */
/* Shadows & Radii */
/* Layout */
/* Typography */
.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

/* Section headings (central control) */
/* Breakpoints */
/* Padding */
.pd-10 {
  padding: 10px;
}

.pd-15 {
  padding: 15px;
}

.pd-20 {
  padding: 20px;
}

.pd-b-10 {
  padding-bottom: 10px;
}

/* Gap */
.gap-18 {
  gap: 18px;
}

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

.w-50 {
  width: 50%;
}

.w-5 {
  width: 5% !important;
}

.h-100 {
  height: 100px;
}

/* flex */
.f-wrap {
  flex-wrap: wrap;
}

.just-content-center {
  justify-content: center;
}

/* -----------------------------------------------------------------------
   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;
}

.ml-50 {
  margin-left: 50px;
}

.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: 99;
  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;
}
@media (min-width: 1200px) {
  .topbar .container {
    max-width: 1200px;
    width: min(1200px, 97%);
  }
}
@media (min-width: 1024px) and (max-width: 1200px) {
  .topbar .container {
    max-width: 1100px;
    width: min(1200px, 99%);
    gap: 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;
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .topbar .nav {
    gap: 0;
  }
}
.topbar .nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
}
@media (min-width: 1201px) {
  .topbar .nav ul {
    gap: 0.5rem;
  }
}
@media (min-width: 1024px) and (max-width: 1200px) {
  .topbar .nav ul {
    gap: 0rem;
  }
}
.topbar .nav ul a {
  position: relative;
  color: var(--gray);
  text-decoration: none;
  font-weight: 500;
  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%;
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .topbar .nav ul a {
    font-size: clamp(13px, 1.2vw, 15px);
  }
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .topbar .nav .primary_btn, .topbar .nav .secondary_btn {
    font-size: clamp(13px, 1.2vw, 15px);
  }
}
.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-3);
  color: var(--white);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}
.primary_btn:active {
  background: var(--primary-3) !important;
  color: var(--white) !important;
}
.primary_btn {
  font-size: clamp(14px, 1.2vw, 16px);
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 70, 192, 0.277);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.primary_btn:hover {
  background: linear-gradient(240deg, var(--primary-3), var(--primary));
  box-shadow: 0 2px 4px rgba(0, 70, 192, 0.521);
  transform: translateY(-3px);
}

.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-3);
  color: var(--primary);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}
.secondary_btn:active {
  background: var(--secondary-3) !important;
  color: var(--primary) !important;
}
.secondary_btn {
  font-size: clamp(14px, 1.2vw, 16px);
  box-shadow: 0 2px 4px rgba(0, 70, 192, 0.277);
  font-weight: 600;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.secondary_btn:hover {
  background: linear-gradient(240deg, var(--secondary-3), var(--secondary));
  box-shadow: 0 2px 4px rgba(110, 92, 1, 0.362);
  transform: translateY(-3px);
}

.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-3);
  color: var(--white);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}
.buy_btn:active {
  background: var(--primary-3) !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-3);
  color: var(--white);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}
.paynow_btn:active {
  background: var(--primary-3) !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-3);
  color: var(--primary);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}
.cancel_btn:active {
  background: var(--secondary-3) !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-3);
  color: var(--white);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}
.get_btn:active {
  background: var(--primary-3) !important;
  color: var(--white) !important;
}
.get_btn {
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 400;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.get_btn:hover {
  background: linear-gradient(240deg, var(--primary-3), var(--primary));
  box-shadow: 0 2px 4px rgba(0, 70, 192, 0.521);
  transform: translateY(-3px);
}

.btn-outline-primary {
  border: 1px solid var(--primary-3);
  color: var(--primary-3);
  background: var(--white);
}
.btn-outline-primary:hover {
  background: var(--primary-3);
  color: var(--white);
  box-shadow: 0 2px 4px rgba(0, 70, 192, 0.277);
  border-radius: 5px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.btn-outline-primary:hover {
  box-shadow: 0 2px 4px rgba(0, 70, 192, 0.301);
  transform: translateY(-3px);
}

/* Slider Start */
.hero-slider {
  width: 100%;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(270deg, #AEAEAE 0%, #dddddd 50%, #B0B0B0 100%);
  position: relative;
  margin-top: 0;
}

.slider-content {
  max-width: 1400px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 0 20px;
}

/* LEFT TEXT */
.left-text {
  text-align: left;
  color: var(--dark);
  line-height: normal;
}
.left-text .slider-text {
  font-size: clamp(28px, 3.4vw, 55px);
  font-weight: 700;
  margin-bottom: 0;
}
.left-text .typing-text {
  font-size: clamp(28px, 3.4vw, 55px);
  font-weight: 700;
  min-height: 70px;
  /* animated word color like screenshot */
}
.left-text .typing-text #typed-word {
  color: var(--primary);
}

/* CENTER IMAGE */
.center-image img {
  max-height: 580px;
  width: auto;
}

/* RIGHT TEXT */
.slider-right-text {
  text-align: center;
}
.slider-right-text h2 {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}
.slider-right-text p {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 500;
  color: var(--dark);
  margin: 0;
}
.slider-right-text .price {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 700;
}
.slider-right-text .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;
}
.slider-right-text .buy_btn:hover, .slider-right-text .buy_btn:focus {
  background: var(--primary-2);
  color: var(--white);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}
.slider-right-text .buy_btn:active {
  background: var(--primary-2) !important;
  color: var(--white) !important;
}
.slider-right-text .buy_btn {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 600;
  padding: 4px 50px;
  margin: 10px 0;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.slider-right-text .buy_btn:hover {
  box-shadow: 0 2px 4px rgba(0, 70, 192, 0.521);
  transform: translateY(-3px);
}

/* RESPONSIVE */
.m_320-767 {
  display: none;
}

/* RESPONSIVE */
@media (min-width: 768px) and (max-width: 992px) {
  .hero-slider {
    min-height: 59vh;
  }
  .slider-content {
    grid-template-columns: 1fr auto 1fr;
    text-align: center;
  }
  .center-image img {
    max-height: 380px;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .hero-slider {
    min-height: 50vh;
  }
  .slider-content {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
    margin-top: 60px;
  }
  .left-text {
    text-align: center;
    color: var(--dark);
  }
  .left-text .typing-text {
    min-height: auto;
  }
  .center-image img {
    max-height: 220px;
    margin: 0 auto;
  }
  .m_320-767 {
    display: block;
  }
  .m_768-1400 {
    display: none;
  }
  .feature-bar {
    width: 98%;
  }
}
.feature-bar {
  margin: 0 auto;
  background: var(--white);
  border-radius: 16px;
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(50%);
}

.feature-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--primary);
  font-weight: 600;
  font-size: clamp(14px, 1.2vw, 16px);
  transition: 0.18s ease;
}

.feature-item:hover {
  background: var(--secondary);
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.fi-icon img {
  width: 28px;
}

/* Mobile */
@media screen and (min-width: 480px) and (max-width: 680px) {
  .feature-bar {
    grid-template-columns: repeat(3, 1fr);
    padding: 12px;
  }
}
/* Mobile */
@media (max-width: 479px) {
  .slider-content {
    margin-bottom: 70px;
  }
  .hero-slider {
    min-height: 50vh;
    margin-bottom: 60px;
  }
  .feature-bar {
    grid-template-columns: 1fr;
    padding: 12px;
    width: 50%;
  }
  .feature-item {
    justify-content: flex-start;
  }
}
/* Slider End */
/* -----------------------------------------------------------------------
   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: 10px 0 0 0;
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 400;
  color: var(--gray);
}

@media (min-width: 320px) and (max-width: 767px) {
  .section {
    padding: 10px 0;
  }
  .section-heading {
    margin-bottom: 12px;
  }
}
/* -----------------------------------------------------------------------
   8) BANNER / SLIDER
   ----------------------------------------------------------------------- */
/* -----------------------------------------------------------------------
   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 1px 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: 44px;
  }
}
/* -----------------------------------------------------------------------
   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: 44px;
  }
}
.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 {
  color: var(--dark-light);
  margin: 0;
}
.compare_note p a {
  text-decoration: none;
  color: var(--gray);
}

/* -----------------------------------------------------------------------
   14) ASSOCIATIONS (Marquee)
   ----------------------------------------------------------------------- */
/* ---------- MARQUEE ---------- */
.associations-section {
  padding: 60px 0;
  text-align: center;
  overflow: hidden;
  position: relative;
  background: var(--white);
}
.associations-section .marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.associations-section .marquee .scroll-container {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  will-change: transform;
  cursor: grab;
  user-select: none;
}
.associations-section .marquee .scroll-container .association-logo {
  flex: 0 0 auto;
  width: 150px;
  text-align: center;
}
.associations-section .marquee .scroll-container .association-logo img {
  height: 70px;
  object-fit: contain;
  margin-bottom: 10px;
  pointer-events: none;
}
.associations-section .marquee .scroll-container .association-logo h6 {
  font-size: 14px;
  color: var(--gray);
  margin: 0;
  white-space: normal;
}
.associations-section {
  /* ARROWS */
}
.associations-section .custom-arrows {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 50px;
}
.associations-section .custom-arrows button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: var(--secondary);
  color: var(--primary);
  font-size: clamp(15px, 1.6vw, 18px);
  cursor: pointer;
  transition: 0.25s;
}
.associations-section .custom-arrows buttondisabled {
  opacity: 0.35;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .association-logo {
    width: 130px;
  }
  .scroll-container {
    gap: 28px;
  }
}
/* -----------------------------------------------------------------------
   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;
  white-space: nowrap;
}
.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;
    padding: 8px 10px;
  }
}

.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 {
  min-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: clamp(11px, 0.8vw, 12px);
  color: var(--gray-light);
  margin-top: 8px;
}
@media (min-width: 320px) and (max-width: 480px) {
  .ticks {
    font-size: 9px;
  }
}

/* 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 {
  text-align: right;
}
.cover-input input {
  height: 38px;
  border-radius: 6px;
  border: 1px solid var(--border);
  padding: 6px 10px;
  font-size: 14px;
  background: var(--white);
  text-align: right;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.03);
  width: 160px;
}

.cover-words {
  margin-top: 6px;
  font-size: clamp(11px, 0.8vw, 12px);
  font-weight: 500;
  color: var(--gray);
}

/* 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-calc-.svg);
  background-size: cover;
  background-repeat: no-repeat;
  inset: 0;
  z-index: 2;
  padding: 18px;
  height: 40vh;
  width: 40vh;
}

.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: var(--white);
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
}

.verify-mobile, .price-totals {
  padding: 15px;
  color: var(--primary);
  border: dashed 1px var(--primary);
  border-radius: 5px;
}
.verify-mobile p, .price-totals p {
  margin: 0;
  font-weight: 500;
}
.verify-mobile small, .price-totals small {
  color: var(--error);
}

.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: var(--primary);
  font-weight: 500;
  text-align: center;
}
.view-price p {
  margin: 0 0 5px 0;
  font-weight: 500;
  font-size: 18px;
}
.view-price p span {
  color: var(--error);
  font-weight: 500;
}

/* ====== PIXEL-LIKE OTP MODAL (Reference: PolicyBazaar popup) ====== */
/* make modal wider so two-column fits nicely */
.modal_heading {
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--primary);
}

.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: var(--white);
  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: var(--dark);
  border-radius: 50%;
  position: absolute;
  top: 12px;
  right: 12px;
  opacity: 1;
}

/* cross icon */
#otpModal .btn-close::before {
  content: "×";
  font-size: 22px;
  color: var(--white);
  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: var(--muted);
  margin-bottom: 8px;
  display: block;
}

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

/* helper text */
#otpModal .text-muted {
  color: var(--muted);
  font-size: 13px;
}

/* action buttons like reference (big blue) */
#otpModal .primary_btn {
  background: linear-gradient(180deg, var(--primary), var(--primary-3));
  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 .primary_btn {
    width: 100%;
    min-width: 0;
  }
  .box {
    padding: 4px;
  }
}
/* small polish: ensure inputs & buttons full width like reference */
#otpModal .form-control, #otpModal .primary_btn, #otpModal .btn-success {
  width: 100%;
  display: block;
}

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

.otp-success {
  color: var(--success);
  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);
  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: 24px;
}
.testimonial-card .testimonial-body {
  text-align: left;
  margin-top: 5px;
}
.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-body .heading_stars {
  display: flex;
  justify-content: space-between;
}
.testimonial-card .testimonial-body .heading_stars .stars {
  color: var(--secondary);
  font-size: 24px;
}

/* 3 line Read more on click */
.testimonial-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.testimonial-card.is-open .testimonial-text {
  -webkit-line-clamp: unset;
  overflow: visible;
}

.testimonial-more {
  margin-top: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--primary);
  font-weight: 400;
  cursor: pointer;
  text-align: left;
}

.testimonial-more:hover {
  text-decoration: underline;
}

/* wrapper animates exact height -> smooth */
.testimonial-text-wrap {
  overflow: hidden;
  height: auto;
  transition: height 600ms ease; /* ✅ smooth + a bit slow */
}

/* open state: remove clamp */
.testimonial-card.is-open .testimonial-text {
  -webkit-line-clamp: unset;
  overflow: visible;
}

/* --- Arrow buttons (design only, position unchanged) --- */
.custom-arrows {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 0px;
  position: relative;
}

.custom-arrows .arrow-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: var(--secondary);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.custom-arrows .arrow-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.custom-arrows .arrow-btn:active:not(:disabled) {
  transform: translateY(0);
}

/* Line/arrow icon */
.custom-arrows .arrow-btn .arrow-line {
  width: 0;
  height: 0;
  background: none !important; /* remove old line */
  position: relative;
}

/* Arrow head (chevron) */
.custom-arrows .arrow-btn .arrow-line::before {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 3px solid #0b2a6b;
  border-top: 3px solid #0b2a6b;
  display: inline-block;
  transform: rotate(45deg);
  border-radius: 1px;
}

/* Prev arrow direction */
.custom-arrows .arrow-btn.prev .arrow-line::before {
  transform: rotate(-135deg);
}

/* Next arrow direction */
.custom-arrows .arrow-btn.next .arrow-line::before {
  transform: rotate(45deg);
}

/* Active Next (yellow) like screenshot */
.custom-arrows .arrow-btn.next:not(:disabled) {
  background: var(--secondary); /* #f8cb00 */
  border-color: rgba(0, 0, 0, 0.04);
}

/* Disabled state (grey circle) */
.custom-arrows .arrow-btn:disabled {
  background: #efefef;
  box-shadow: none;
  opacity: 1;
  cursor: not-allowed;
}

/* Disabled arrow color */
.custom-arrows .arrow-btn:disabled .arrow-line::before {
  border-right-color: #9aa0a6;
  border-top-color: #9aa0a6;
}

/* Keep arrow blue on active yellow */
.custom-arrows .arrow-btn.next:not(:disabled) .arrow-line::before,
.custom-arrows .arrow-btn.prev:not(:disabled) .arrow-line::before {
  border-right-color: var(--primary);
  border-top-color: var(--primary);
}

.next .arrow-line {
  top: -10px;
  right: 6px;
}

.prev .arrow-line {
  top: -10px;
  left: -4px;
}

/* -----------------------------------------------------------------------
   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: 1px 1px 6px rgba(0, 0, 0, 0.1);
  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);
}
.actions .action-card a {
  display: flex;
  align-items: center;
  justify-content: unset;
  gap: 16px;
  text-decoration: none;
}

/* 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: 1px 1px 6px rgba(0, 0, 0, 0.1);
  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;
  transition: 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.view-more button:hover {
  transform: translateY(-2px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.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(--border);
  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 2px 4px rgba(0, 70, 192, 0.277);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.contact-section .form-box .form-actions .btn-outline:hover {
  box-shadow: 0 2px 4px rgba(0, 70, 192, 0.521);
  transform: translateY(-3px);
}
@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-title a {
  text-decoration: none;
  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: var(--white);
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.06);
}
.invoice-card .grid {
  display: grid;
  gap: 18px;
}
@media (max-width: 980px) {
  .invoice-card .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 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 tbody tr {
  border: 0px !important;
}
.invoice-box tbody tr td {
  border: 0px !important;
  padding: 0;
}
.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: 99;
  background: rgba(0, 0, 0, 0);
}
.modal.show {
  display: flex;
}
.modal .modal-card {
  background: var(--white);
  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: var(--white);
  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 */
/* 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);
  color: var(--dark-light);
  transition: transform 0.3s ease;
}
.clean-card:hover {
  transform: translateY(-5px);
}

/* 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);
  color: var(--dark-light);
  border: 1px solid var(--secondary-3);
  font-weight: 700;
}

/* Feature tiles */
.feature-tile {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--white);
  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, .list-decimal ol li {
  padding-left: 0;
}

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

.list-decimal {
  list-style: decimal;
  margin: 0 0 0 15px;
  padding-left: 0;
}

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

.list-decimal li::before {
  position: absolute;
  left: 0;
  top: 0;
}

.list-decimal 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;
}

/* 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-card_active {
  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-protects ul {
  padding-left: 18px;
}

.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 {
  position: relative;
  max-height: 400px;
  display: flex;
  align-items: center;
  background: var(--bg-blue);
  overflow: hidden;
}
.hero-banner .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 .btn-get {
  background: var(--secondary);
  border: none;
  color: #0a1f44;
  font-weight: 700;
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(11, 95, 165, 0.14);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.hero-banner .btn-get:hover {
  background: var(--secondary-2);
  box-shadow: 0 2px 4px rgba(110, 92, 1, 0.362);
  transform: translateY(-3px);
}

.hero-banner .btn-outline-light {
  color: var(--primary);
  border: 2px solid var(--primary);
  font-weight: 600;
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(11, 95, 165, 0.14);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.hero-banner .btn-outline-light:hover {
  background: var(--primary-lighter);
  box-shadow: 0 2px 4px rgba(0, 70, 192, 0.521);
  transform: translateY(-3px);
}

.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:hover .hero-image img {
  transform: translateY(0);
}

@media (max-width: 992px) {
  .hero-banner .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-image {
    order: -1;
  }
  .hero-image img {
    max-width: 340px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .hero-banner .container {
    margin-top: 140px;
  }
}
.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
   ----------------------------------------------------------------------- */
.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;
  }
}
.cards.cards--home {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cards.cards--home .risk-card {
  width: 23%;
}
@media (max-width: 991px) {
  .cards.cards--home .risk-card {
    width: 31%;
  }
}
@media (max-width: 767px) {
  .cards.cards--home .risk-card {
    width: 48%;
  }
}
@media (max-width: 500px) {
  .cards.cards--home .risk-card {
    width: 100%;
  }
}

/*----Health----*/
/* Premium V2: refined typography, spacing, micro-interactions */
.premium-ui.v2 {
  --accent:#06b6d4;
  --glass: rgba(255,255,255,0.8);
}

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

.premium-ui.v2 .section-heading.center p {
  color: #475569;
  margin: 0 0 1rem 0;
  font-size: clamp(12px, 1vw, 14px);
}

/* 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: var(--white);
  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: var(--white);
  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: var(--white);
  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: var(--white);
  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: 16px;
  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;
}
.cta-x p {
  font-size: clamp(12px, 1vw, 14px);
}

/* HOLOGRAPHIC BORDER */
.cta-x::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  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: clamp(16px, 1.8vw, 20px);
  color: var(--white);
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), 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;
  padding: 10px;
}

@keyframes floatBadge {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}
/* TEXT */
.cta-text {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 500;
  color: var(--primary);
  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(--primary);
  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;
}

/* Review page Start*/
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px 40px;
}

.form-head {
  text-align: center;
  margin-bottom: 34px;
}

.form-head h2 {
  font-size: 34px;
  color: var(--primary);
  margin-bottom: 8px;
}

.form-head p {
  color: var(--muted);
  font-size: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full {
  grid-column: 1/-1;
}

/* ⭐ Star Rating */
.rating-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.stars {
  color: var(--secondary);
  display: flex;
  gap: 6px;
  font-size: 30px;
  cursor: pointer;
}

.stars span {
  color: #d1d5db;
  transition: 0.2s;
}

.stars span.hover,
.stars span.active {
  color: var(--secondary);
}

.rating-text {
  font-size: 14px;
  color: var(--muted);
}

.review-form .primary_btn {
  background: linear-gradient(300deg, var(--primary), var(--primary-3));
  border: 0;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(11, 95, 165, 0.14);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.review-form .primary_btn:hover {
  background: linear-gradient(240deg, var(--primary-3), var(--primary));
  box-shadow: 0 2px 4px rgba(0, 70, 192, 0.521);
  transform: translateY(-2px);
}
.review-form .btn-outline-cancel {
  border: 2px solid var(--warning);
  color: var(--warning);
  background: var(--white);
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(11, 95, 165, 0.14);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.review-form .btn-outline-cancel:hover {
  color: var(--warning);
  box-shadow: 0 2px 4px rgba(173, 69, 1, 0.378);
  transform: translateY(-2px);
}
.review-form .modal-title {
  color: var(--primary);
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 600;
}

#writeReviewModal {
  z-index: 10000;
}

.review-group {
  display: flex;
}

.review_status {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.right {
  text-align: right;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.reviews_card {
  padding: 40px;
  background-color: var(--soft);
  border-radius: 8px;
}
.reviews_card--rating span {
  font-size: 18px;
}
.reviews_card--rating .stars {
  font-size: 30px;
}

.sticky-top {
  z-index: 1;
}

.review-content {
  height: 100vh;
  overflow-y: auto;
  padding-right: 20px;
}
.review-content h2 {
  margin: 0;
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 600;
  color: var(--primary);
}
.review-content p {
  font-size: clamp(12px, 1vw, 14px);
  color: var(--gray);
  margin-top: 10px;
}
.review-content .primary_btn {
  background: linear-gradient(240deg, var(--primary), var(--primary-3));
  border: 0;
  padding: 12px 18px;
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(0, 70, 192, 0.277);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.review-content .primary_btn:hover {
  background: linear-gradient(240deg, var(--primary-3), var(--primary));
  box-shadow: 0 2px 4px rgba(0, 70, 192, 0.521);
  transform: translateY(-2px);
}

.sidebar {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
}

.sidebar .list-group {
  border-radius: 10px;
}

.sidebar .list-group-item {
  border: 0;
  font-size: 14px;
  padding: 12px 16px;
  cursor: pointer;
}

.sidebar .list-group-item:first-child {
  background: #f9fafb;
  color: var(--primary);
  cursor: default;
  text-align: center;
}

.sidebar .list-group-item.active {
  background: var(--bg-blue);
  color: var(--primary);
  font-weight: 600;
  border-left: 3px solid var(--primary);
}

.stat-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
  text-align: left;
}

.testimonial-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  background: var(--white);
  margin: 15px 0;
  min-height: 220px;
  display: flex;
  justify-content: flex-start;
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.testimonial-user {
  display: flex;
  gap: 12px;
  align-items: center;
}

.testimonial-user img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.testimonial-name {
  font-weight: 600;
  font-size: 14px;
  margin: 0;
}

.testimonial-role {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}

.testimonial-body h6 {
  font-weight: 600;
  margin: 10px 0 6px;
}

.testimonial-body p {
  font-size: 14px;
  margin: 0;
}

.testimonial-footer {
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
}

.pagination .page-link {
  color: var(--primary);
}

.pagination .active .page-link {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

@media (max-width: 991px) {
  body {
    overflow: auto;
  }
  .review-content {
    height: auto;
  }
}
.review-content {
  height: 100vh;
  overflow-y: auto;
  padding-right: 20px;
  /* Firefox */
  scrollbar-width: none;
  /* IE / Edge */
  -ms-overflow-style: none;
  /* Chrome / Safari / Edge */
}
.review-content::-webkit-scrollbar {
  display: none;
}

/* ===== GLASS STATS WRAPPER ===== */
.glass-stats-wrapper {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin: 24px 0 20px;
}
.glass-stats-wrapper .glass-stat-card {
  opacity: 1 !important;
  transform: none !important;
}

/* ===== GLASS CARD ===== */
.glass-stat-card {
  flex: 1;
  min-width: 240px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border-radius: 10px;
  background: linear-gradient(270deg, #f9fafb, #eef3fb, #fdf6e9);
  background-size: 400% 400%;
  animation: gradientFlow 12s ease infinite;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 1px 1px 4px rgba(13, 33, 60, 0.155);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.glass-stat-card .count-up {
  color: var(--primary);
  text-shadow: 0 1px 2px rgba(19, 43, 102, 0.262);
}
.glass-stat-card {
  /* Reflection sweep */
}
.glass-stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.45), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Hover */
.glass-stat-card:hover {
  transform: translateY(-6px) scale(1.015) !important;
  box-shadow: 0 2px 8px rgba(0, 74, 173, 0.161);
}
.glass-stat-card:hover::before {
  opacity: 1;
}

/* Icon */
.glass-stat-card img {
  transition: transform 0.3s ease;
  height: 35px;
}

.glass-stat-card:hover img {
  transform: scale(1.3) rotate(-10deg);
}

/* Text */
.glass-stat-card strong {
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 600;
  color: var(--primary);
}
.glass-stat-card p {
  margin: 2px 0 0;
  font-size: clamp(12px, 1vw, 14px);
  color: var(--gray);
}

/* Floating animation */
@keyframes floatSoft {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
  100% {
    transform: translateY(0);
  }
}
.glass-stat-card:nth-child(2) {
  animation-delay: 1.2s;
}

.glass-stat-card:nth-child(3) {
  animation-delay: 2.4s;
}

/* Scroll reveal */
.glass-stat-card {
  opacity: 0;
  transform: translateY(20px);
}

.glass-stat-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile */
@media (max-width: 768px) {
  .glass-stats-wrapper {
    gap: 14px;
  }
  .form-card {
    padding: 16px;
  }
}
/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .glass-stat-card {
    animation: none;
    transition: none;
  }
}
/* Review page End*/
/* Directly from experts Start*/
/* ===== CARD ===== */
.expert-card {
  position: relative;
  background: linear-gradient(120deg, #e3e9ff, #f0f4ff, #fff6cc, #fff2b3);
  background-size: 300% 300%;
  animation: expertGradient 8s ease-in-out infinite;
  border-radius: 18px;
  padding: 26px 32px 32px;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.149);
  transition: 0.3s;
}
.expert-card:hover {
  transform: translateY(-6px);
}

/* triangle pointer */
.expert-card::after {
  content: "";
  position: absolute;
  bottom: -17px;
  left: 120px;
  width: 36px;
  height: 18px;
  background: linear-gradient(120deg, #e3e9ff, #f0f4ff, #fff6cc, #fff2b3);
  background-size: 300% 300%;
  animation: expertGradient 8s ease-in-out infinite;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  z-index: 2;
}

.expert-card::before {
  content: "";
  position: absolute;
  bottom: -19px;
  left: 119px;
  width: 38px;
  height: 19px;
  background: rgba(0, 0, 0, 0.06); /* only used for shadow/border */
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  /* BORDER LOOK */
  outline: 1px solid rgba(0, 0, 0, 0.25);
  outline-offset: 0;
  /* SHADOW LOOK */
  filter: drop-shadow(0px 2px 6px rgba(0, 0, 0, 0.25));
  z-index: 1;
}

/* smooth premium animation */
@keyframes expertGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/* header */
.expert-header {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.expert-header .f-right {
  float: right;
}
.expert-header .primary_btn {
  font-size: clamp(12px, 1vw, 14px);
  padding: 5px 10px;
  box-shadow: 0 2px 4px rgba(0, 70, 192, 0.277);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.expert-header .primary_btn:hover {
  background: linear-gradient(240deg, var(--primary-3), var(--primary));
  box-shadow: 0 2px 4px rgba(0, 70, 192, 0.521);
  transform: translateY(-3px);
}

.expert-icon img {
  height: 40px;
}

.expert-title {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 600;
  color: var(--primary);
  margin-top: 5px;
}

/* description */
.expert-desc {
  margin-top: 10px;
  font-size: clamp(12px, 1vw, 14px);
  line-height: 1.7;
  color: #334155;
}
.expert-desc h4 {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 10px;
}
.expert-desc span {
  font-size: clamp(12px, 1vw, 14px);
  color: var(--gray);
}

.full-text {
  display: none;
}

/* read toggle */
.read-toggle {
  margin-top: 6px;
  color: var(--primary);
  font-weight: 600;
  cursor: pointer;
  user-select: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.author-name {
  font-size: clamp(14px, 1.2vw, 16px);
  color: var(--primary);
  font-weight: 600;
}

.author-role {
  font-size: clamp(12px, 1vw, 14px);
  color: var(--gray);
}

/* Directly from experts End*/
/* Blog Start*/
.page-header {
  max-width: 560px;
  margin-bottom: 40px;
}

.page-header h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
}

.page-header h2 span {
  color: var(--primary);
}

.page-header p {
  color: var(--gray);
  margin-top: 12px;
}

.filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 30px 0 60px;
}

.filter-btn {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 14px;
  cursor: pointer;
}

.filter-btn.active, .filter-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.section-header h3 {
  font-size: 22px;
  font-weight: 700;
}

.section-header a {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  text-decoration: none;
}

.blog-grid {
  display: grid;
  gap: 30px;
}
.blog-grid a {
  text-decoration: none;
}

.featured-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 80px;
}

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

.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: 0.3s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-body {
  padding: 20px;
}

.blog-body h3 {
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--primary);
}

.blog-body p {
  font-size: clamp(12px, 1vw, 14px);
  color: var(--gray);
  line-height: 1.6;
}

.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding: 14px 20px;
  font-size: 14px;
}
.blog-footer span {
  color: var(--gray);
}

.insurance-section {
  margin-top: 70px;
}

/* ✅ FIXED PART */
.extra-cards {
  display: none;
  grid-column: 1/-1;
}

.extra-cards.show {
  display: contents;
}

@media (max-width: 992px) {
  .featured-grid, .section-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .featured-grid, .section-grid {
    grid-template-columns: 1fr;
  }
}
/* Blog End*/
/* Blog-detail Start*/
/* ================= HERO ================= */
.hero-inner {
  margin: auto;
}

/* Breadcrumb */
.breadcrumb {
  font-size: clamp(12px, 1vw, 14px);
  color: var(--gray-light);
  margin-bottom: 18px;
}

.breadcrumb a {
  color: var(--primary);
  text-decoration: none;
}

/* Meta */
.blog-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 18px 0;
  font-size: clamp(12px, 1vw, 14px);
  color: var(--gray-light);
}

/* ================= IMAGE ================= */
.cover {
  margin: 0 auto;
  padding: 0;
}

.cover img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

/* ================= CONTENT ================= */
.blog-detail {
  margin: 0 auto;
}

/* Intro */
.intro {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--gray);
  margin-bottom: 36px;
}

/* Headings */
.blog-detail h3 {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 600;
  color: var(--primary);
}

/* Paragraphs */
.blog-detail p {
  font-size: clamp(14px, 1.2vw, 16px);
  margin-bottom: 22px;
}

/* Lists */
.blog-detail ul {
  padding-left: 20px;
  margin: 22px 0;
}

.blog-detail li {
  margin-bottom: 10px;
}

/* Highlight box */
.highlight {
  background: linear-gradient(180deg, #ffffff, #F9FAFB);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: 16px;
  padding: 26px;
  margin: 48px 0;
}

.highlight strong {
  color: #0F172A;
}

/* ================= AUTHOR ================= */
.author {
  display: flex;
  gap: 18px;
  align-items: center;
  padding-top: 20px;
}

.author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: solid 1px var(--border);
}

.author h4 {
  margin: 0;
  font-size: 16px;
}

.author span {
  font-size: clamp(12px, 1vw, 14px);
  color: var(--gray);
}

/* ================= CTA ================= */
.cta {
  max-width: 900px;
  margin: 100px auto 120px;
  padding: 0 20px;
}

.cta-box {
  margin: 0 auto;
  background: linear-gradient(135deg, #004AAD, #00307A);
  border-radius: 26px;
  padding: 40px;
  color: var(--white);
  text-align: center;
}

.cta-box h3 {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 800;
}

.cta-box p {
  max-width: 560px;
  margin: 18px auto 32px;
  opacity: 0.95;
}

.cta-box a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  background: var(--white);
  color: var(--primary);
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.cta-box a:hover {
  transform: translateY(-2px);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .hero h1 {
    font-size: clamp(26px, 3.4vw, 40px);
  }
  .cover img {
    height: 280px;
  }
  .cta-box h3 {
    font-size: h3;
  }
}
/* Blog-detail End*/
/*Terms and Condition Start*/
.terms-container {
  background: var(--white);
  padding: 30px 25px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  transition: transform 0.3s ease;
}
.terms-container h2 {
  font-size: clamp(22px, 2.6vw, 32px);
  margin-bottom: 25px;
  color: var(--primary);
}
.terms-container p {
  font-size: clamp(12px, 1vw, 14px);
  margin-bottom: 18px;
}
.terms-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.08);
}

/*Terms and Condition End*/
/*Privacy and Policy Start*/
.card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 28px;
  border: solid 0 var(--border);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.08);
}
.card h4 {
  color: var(--primary);
  font-size: clamp(16px, 1.8vw, 20px);
  margin-bottom: 10px;
  letter-spacing: 0.6px;
}
.card h5 {
  color: var(--primary);
  font-size: clamp(15px, 1.6vw, 18px);
  margin-bottom: 16px;
  letter-spacing: 0.6px;
}
.card h6 {
  color: var(--primary);
  font-size: clamp(14px, 1.2vw, 16px);
  margin-bottom: 16px;
  letter-spacing: 0.6px;
}
.card p {
  font-size: clamp(12px, 1vw, 14px);
  line-height: 1.9;
  color: var(--gray);
  margin-bottom: 14px;
}
.card ul {
  list-style: none;
  padding-left: 0;
}
.card ul li {
  position: relative;
  padding: 10px 12px 10px 18px;
  font-size: clamp(12px, 1vw, 14px);
  line-height: 1.8;
  margin-bottom: 10px;
  color: var(--gray);
}
.card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 3px;
  background: var(--primary);
  border-radius: 2px;
}
.card .card-chip {
  background: var(--gray-lighter);
  border-radius: 8px;
  padding: 16px;
}

.card-chip {
  background: var(--gray-lighter);
  border-radius: 8px;
  padding: 16px;
}

/*Privacy and Policy End*/
/*Grievance Start*/
.level-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 20px;
}

.level-card {
  background: var(--white);
  border: 0 solid var(--border);
  border-radius: 14px;
  padding: 28px 30px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden; /* ✅ IMPORTANT FIX */
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
}
.level-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 18px rgba(0, 75, 173, 0.166);
}
.level-card {
  /* Accent strip */
}
.level-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--primary);
  border-radius: 14px 0 0 14px;
}
.level-card .level-title {
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--primary);
}
.level-card {
  /* Info list */
}
.level-card .info {
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.level-card .info li {
  margin-bottom: 8px;
  font-size: clamp(12px, 1vw, 14px);
  color: var(--gray);
}
.level-card .info span {
  font-weight: 500;
  color: var(--gray);
}
.level-card .info a {
  text-decoration: none;
  color: var(--gray);
}

/* Mobile */
@media (max-width: 768px) {
  .level-card {
    padding: 22px;
  }
}
/*Grievance End*/
/*Career Start*/
/* ========== FORM CARD ========== */
.apply-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}
.apply-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.apply-card h4 {
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--primary);
  font-weight: 600;
}
.apply-card {
  /* ========== BUTTON ========== */
}
.apply-card .primary_btn {
  height: 45px;
  border-radius: 8px;
  font-weight: 600;
}

.form-control, .form-select {
  border-radius: 8px;
  border: 1px solid var(--border);
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(225, 6, 0, 0.15);
}

/* ========== JOBS ========== */
.jobs {
  padding: 80px 0;
}

.job-card {
  background: var(--white);
  border-radius: 18px;
  padding: 28px;
  height: 100%;
  border: 1px solid #eef0f4;
  transition: 0.3s;
}
.job-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.job-meta {
  font-size: 14px;
  color: #6b7280;
  display: flex;
  gap: 15px;
  margin: 10px 0;
}

.vacancy-pill {
  background: #eef2ff;
  color: #3730a3;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
}

.job-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }
  .hero {
    padding: 50px 15px;
  }
}
/*Career End*/
/* ✅ Fully scoped CSS (no global tags like h2/body) */
.ac-awards__carousel {
  position: relative;
  padding: 0 54px; /* space for nav */
}

.ac-awards__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 4);
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scroll-padding: 8px;
  scroll-behavior: smooth;
  padding: 8px;
  border-radius: 18px;
  scrollbar-width: none;
  cursor: grab;
}

.ac-awards__track::-webkit-scrollbar {
  display: none;
}

.ac-awards__card {
  scroll-snap-align: start;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(16, 24, 40, 0.1);
  min-height: 90px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.ac-awards__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(16, 24, 40, 0.14);
  border-color: rgba(0, 74, 173, 0.22);
}

.ac-awards__icon img {
  height: 60px;
}

.ac-awards__icon svg path:first-child {
  stroke: var(--secondary);
}

.ac-awards__txt {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ac-awards__t {
  font-weight: 600;
  font-size: 14.5px;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--dark-light);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ac-awards__m {
  color: var(--gray);
  font-size: clamp(12px, 1vw, 14px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ac-awards__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  border: 1px solid var(--btnBorder);
  background: var(--secondary);
  color: var(--btnText);
  display: grid;
  place-items: center;
  cursor: pointer;
  user-select: none;
  z-index: 2;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.12s ease;
}
.ac-awards__nav svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
}

.ac-awards__nav:hover {
  border-color: rgba(0, 74, 173, 0.3);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transform: translateY(-21px);
}

.ac-awards__nav:active {
  transform: translateY(-50%) scale(0.98);
}

.ac-awards__nav--prev {
  left: 0;
}

.ac-awards__nav--next {
  right: 0;
}

.ac-awards__nav:disabled {
  cursor: not-allowed;
  background: var(--gray-lighter);
  color: var(--btnDisabledText);
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: none;
}
.ac-awards__nav:disabled svg {
  color: var(--gray-light);
}

/* Responsive */
@media (max-width: 1100px) {
  .ac-awards__track {
    grid-auto-columns: calc((100% - 28px) / 3);
    gap: 14px;
  }
  .ac-awards__carousel {
    padding: 0 52px;
  }
}
@media (max-width: 840px) {
  .ac-awards__track {
    grid-auto-columns: calc((100% - 12px) / 2);
    gap: 12px;
  }
  .ac-awards__carousel {
    padding: 0 50px;
  }
}
@media (max-width: 520px) {
  .ac-awards__wrap {
    padding: 44px 16px;
  }
  .ac-awards__track {
    grid-auto-columns: 88%;
  }
  .ac-awards__carousel {
    padding: 0 48px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .ac-awards__card, .ac-awards__nav {
    transition: none;
  }
  .ac-awards__track {
    scroll-behavior: auto;
  }
}
/* Overlay */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.35s ease;
  z-index: 999;
  /* Popup box */
}
.overlay .popup {
  width: 92%;
  max-width: 940px;
  background: linear-gradient(120deg, #e3e9ff, #f0f4ff, #fff6cc, #fff2b3);
  background-size: 300% 300%;
  animation: expertGradient 8s ease-in-out infinite;
  border-radius: 14px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.25);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  position: relative;
  overflow: hidden;
  /* Close button */
}
.overlay .popup .close {
  position: absolute;
  right: 18px;
  top: 14px;
  font-size: 22px;
  font-weight: 600;
  cursor: pointer;
  color: #334155;
}
.overlay .popup {
  /* Left content */
}
.overlay .popup .left {
  padding: 25px 25px;
}
.overlay .popup .left h4 {
  margin: 0;
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 700;
  color: var(--primary);
}
.overlay .popup .left .sub {
  margin: 8px 0 18px;
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--gray);
}
.overlay .popup .left .small {
  font-size: clamp(14px, 1.2vw, 16px);
  color: var(--gray);
}
.overlay .popup .left .price {
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 700;
  margin: 18px 0 26px;
  color: var(--primary);
}
.overlay .popup .left {
  /* Form */
}
.overlay .popup .left .form-box {
  background: var(--white);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  gap: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}
.overlay .popup .left .form-box input {
  flex: 1;
  height: 48px;
  border-radius: 8px;
  border: 1px solid var(--border);
  padding: 0 14px;
  font-size: 15px;
}
.overlay .popup .left .form-box button {
  height: 48px;
  padding: 0 15px;
  border: none;
  border-radius: 8px;
  background: var(--primary);
  color: var(--white);
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 500;
  cursor: pointer;
}
.overlay .popup .left .form-box button img {
  height: 25px;
  margin-right: 10px;
}
.overlay .popup {
  /* Right illustration */
}
.overlay .popup .right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
.overlay .popup .right img {
  width: 100%;
  max-width: 270px;
}

.overlay.show {
  opacity: 1;
  pointer-events: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .popup {
    grid-template-columns: 1fr;
  }
  .right {
    padding-top: 0;
  }
}
/* Newsletter Start */
.newsletters {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}
.newsletters h1 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.4rem;
  font-weight: 800;
}
.newsletters {
  /* GRID */
}
.newsletters .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}
.newsletters .grid .card {
  background: #f4f6fa;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: 0.25s ease;
  padding: 0;
}
.newsletters .grid .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.newsletters .grid .card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.newsletters .grid .card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}
.newsletters .grid .card p {
  color: #555;
  line-height: 1.5;
}
.newsletters .grid .card {
  /* Hide cards after 6th by default */
}
.newsletters .grid .card:nth-child(n+7) {
  display: none;
}
@media (max-width: 600px) {
  .newsletters .grid .card .card img {
    height: 150px;
  }
}
.newsletters {
  /* BUTTON */
}
.newsletters .view-more {
  text-align: right;
  margin-top: 40px;
}
.newsletters .view-more .toggle-btn {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: transparent;
  font-size: 14px;
  padding: 6px;
  color: var(--primary);
  gap: 6px;
  cursor: pointer;
  transition: 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.newsletters .view-more .toggle-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.newsletters .view-more .toggle-btn .icon {
  font-size: 18px;
  font-weight: bold;
  background: var(--line);
  width: 26px;
  height: 26px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-content {
  padding: 20px;
}

.df-bottombar-branding {
  display: none;
}

/* Newsletter End */
/* Call button start */
.call-btn {
  position: relative;
}

/* Tooltip */
.call-tooltip {
  position: absolute;
  bottom: -48px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  pointer-events: none;
  z-index: 99;
  /* 🔻 Arrow */
}
.call-tooltip::after {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 8px solid var(--primary);
}

/* Desktop hover only */
@media (hover: hover) {
  .call-btn:hover .call-tooltip {
    opacity: 1;
    visibility: visible;
  }
}
/* Mobile par tooltip hide */
@media (max-width: 768px) {
  .call-tooltip {
    display: none;
  }
}
/* Call button end */
/* Health Insurance Form Start*/
/* Card */
.form-wrapper {
  max-width: 820px;
  margin: auto;
  background: var(--white);
  padding: 32px;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

/* Heading */
h2 {
  font-size: 22px;
  margin-bottom: 28px;
}

h2 span {
  color: var(--secondary);
}

/* Inputs */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.field label {
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 500;
  margin-bottom: 6px;
  display: block;
}

.field input {
  width: 100%;
  min-height: 44px;
  padding: 14px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: clamp(12px, 1vw, 14px);
}

.field input:focus {
  outline: none;
  border-color: var(--primary);
}

.full {
  margin-top: 16px;
}

/* Gender */
.gender {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}

.select-box {
  height: 50px;
  padding: 0 18px;
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.select-box.active {
  border-color: var(--primary);
  background: var(--soft);
}

.select-box i {
  opacity: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.select-box.active i {
  opacity: 1;
}

/* Members */
.section-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.members {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.member {
  min-height: 44px;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  background: var(--white);
}

.member.active {
  border-color: var(--primary);
  background: #eef4ff;
}

.child-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.member i {
  opacity: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.member.active i {
  opacity: 1;
}

/* Son / Daughter inline */
.child-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 12px;
}

.count.inline {
  display: flex;
  border: 1px solid var(--primary);
  border-radius: 6px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.child-row.active .count.inline {
  opacity: 1;
  pointer-events: auto;
}

.count.inline button {
  width: 28px;
  border: none;
  background: var(--primary);
  color: var(--white);
}

.count.inline span {
  width: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.more-member-btn {
  border: 1px dashed var(--primary);
  color: var(--primary);
  font-weight: 500;
}

/* Terms */
.terms-check {
  display: flex;
  gap: 10px;
  margin: 18px 0;
  font-size: 13px;
}

.terms-check input {
  accent-color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
  .members {
    grid-template-columns: 1fr;
  }
}
/* Health Insurance Form End*/
/* Mega Multilayer Menu Start */
.multilayer-menu {
  position: static; /* IMPORTANT */
}

/* Dropdown – viewport centered */
.multilayer-dropdown {
  position: fixed; /* 🔥 KEY CHANGE */
  top: 45px; /* header ke niche */
  left: 50vw; /* viewport center */
  transform: translateX(-50%);
  width: 100%;
  max-width: 1400px;
  background: var(--white);
  padding: 32px 48px;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 9999;
}

/* OPEN STATE */
.multilayer-dropdown.open {
  display: block;
}

/* Show on hover */
.multilayer-menu:hover .multilayer-dropdown {
  display: block;
}

/* Grid */
.multilayer-grid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

/* Column */
.multilayer-col a {
  display: block;
  font-size: 14px;
  color: var(--gray);
  padding: 6px 0;
  text-decoration: none;
  transition: all 0.5s ease;
}
.multilayer-col .heading {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}
.multilayer-col .heading img {
  height: 35px;
  margin-right: 10px;
}

/* Mobile */
@media (max-width: 1024px) {
  .multilayer-dropdown {
    position: static;
    transform: none;
    max-width: 100%;
    box-shadow: none;
    padding: 16px;
    display: none;
  }
  /* Open state */
  .multilayer-dropdown.open {
    display: block;
  }
  .multilayer-grid {
    gap: 24px;
    flex-direction: column;
  }
}
/* BODY SCROLL LOCK */
body.no-scroll {
  overflow: hidden;
  padding-right: var(--scrollbar-width);
}

.multilayer-link {
  display: flex;
  align-items: center;
  gap: 6px;
}

.multilayer-link .arrow {
  width: 8px;
  height: 8px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(45deg); /* default = down */
  transition: transform 0.3s ease;
}

/* Hover OR Active → arrow up */
.multilayer-menu:hover .multilayer-link .arrow,
.multilayer-link.active .arrow {
  transform: rotate(-135deg); /* up */
}

/* ================= DESKTOP ONLY ================= */
@media (min-width: 1025px) {
  .multilayer-menu:hover .multilayer-dropdown {
    display: block;
  }
  .multilayer-menu:hover .multilayer-link .arrow {
    transform: rotate(-135deg);
  }
}
/* multilayer MEGA MENU End */
/* NAVIGATION SWITCH Start */
/* Hide second nav initially */
.nav-two {
  display: none;
}

/* When switching */
.nav-two.show {
  display: flex;
}

.nav-one.hide {
  display: none;
}

/* ===============================
   ACTIVE LINK UNDERLINE
================================ */
.nav ul li a {
  position: relative;
  padding-bottom: 6px;
  text-decoration: none;
}

.nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 3px;
  background: #0d6efd;
  border-radius: 6px;
  transition: width 0.3s ease;
}

.nav ul li a.active::after {
  width: 100%;
}

.nav ul li a.active {
  color: #0d6efd;
  font-weight: 600;
}

/* =========================================
   RESPONSIVE NAV FIXED VERSION
========================================= */
@media screen and (max-width: 767px) {
  .container, .container-sm {
    max-width: 100%;
  }
  .topbar .nav ul {
    position: fixed;
    top: 50px !important; /* header height */
    left: 50%;
    transform: translateX(-50%);
    width: 98%;
    max-width: 100%;
    background: var(--white);
    padding: 15px 10px !important;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    display: none;
    flex-direction: column;
    gap: 18px;
    z-index: 99999;
    max-height: 60vh;
    overflow-x: scroll;
  }
  .topbar .nav.open ul {
    display: flex;
  }
  .hamburger {
    display: flex;
  }
}
/* =========================================
   TABLET (768px – 1024px)
   Right Aligned Dropdown
========================================= */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .topbar .nav ul {
    position: absolute;
    top: 50px !important;
    right: 12px;
    width: 92%;
    background: #ffffff;
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    gap: 14px;
    z-index: 9999;
    max-height: 60vh;
    overflow-x: scroll;
  }
  .topbar .nav.open ul {
    display: flex;
  }
  .hamburger {
    display: flex;
  }
}
/* =========================================
   DESKTOP (1025px and above)
========================================= */
@media screen and (min-width: 1025px) {
  .topbar .nav ul {
    position: static;
    display: flex;
    flex-direction: row;
    gap: 35px;
    width: auto;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
    margin-right: 16px;
  }
  .hamburger {
    display: none;
  }
}
/* NAVIGATION SWITCH End */
/* Home Loan EMI Calculator Start */
: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: #f8cb00;
  --secondary-2:#e6b800;
  --secondary-3:#ffb84d;
  --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;
  --error:#ff0000;
  --error-2:#ff4d6d;
  --error-light:#df4343;
  --error-lighter:#c36f6f;
  --soft:#fff7db;
  --warning:#ff8b00;
  --error-light: #FFDBDB;
  --error-lighter:#FFE9E9;
  --gray:#3a3a3a;
  --gray-light:#808080;
  --gray-lighter:#F0F0F0;
  --gray-lighter1:#dddddd;
  --inactive-bg: #E5E5E5;
  --border:#dee2e6;
  --icon-call:#FFF9DD;
  --icon-mail:#DEEFFF;
  --icon-whatsapp:#E0FFD9;
  --line: #e4e8f3;
  --shadow: 0 6px 18px rgba(10,42,102,.08);
  --radius: 14px;
  --container: 1100px;
  --ease: cubic-bezier(.4,0,.2,1);
}

.wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* LEFT */
.controls {
  flex: 1;
}

.form-group {
  margin-bottom: 30px;
}

label {
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.input_group {
  display: flex;
  flex-direction: column;
  align-items: end;
}
.input_group p {
  margin: 0;
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 600;
  color: var(--primary);
  text-transform: capitalize;
}

.input-box {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
  position: relative;
}
.input-box span {
  position: absolute;
}
.input-box .rupee {
  left: 10px;
}
.input-box .percentage, .input-box .year {
  right: 10px;
}

.input-box input {
  padding: 10px 10px 10px 20px;
  width: 140px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

input[type=range] {
  width: 100%;
}

.range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #777;
  margin-top: 5px;
}

/* RESULT */
.result-box {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-blue);
  border: 1px dashed var(--dash);
  padding: 20px;
  border-radius: 10px;
}
.result-box .emi_amount {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 400;
}
.result-box .emi_amount span {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  color: var(--primary);
}
.result-box .emi_amount p {
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 600;
  text-transform: capitalize;
  color: var(--primary);
}

.emi_condition {
  margin-top: 16px;
}
.emi_condition p {
  margin: 0;
  font: 14px;
  color: var(--gray);
}
.emi_condition p a {
  color: var(--primary);
  text-decoration: none;
}

/* RIGHT */
.chart-wrapper {
  position: relative;
  width: 260px;
  margin: auto;
}
.chart-wrapper p {
  font-family: clamp(12px, 1vw, 14px);
  font-weight: 600;
  text-transform: capitalize;
  color: var(--primary);
}

.chart-wrapper canvas {
  width: 260px !important;
  height: 260px !important;
}

.chart-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
}

.chart-center p {
  font-size: 14px;
  color: #666;
  margin-bottom: 4px;
}

.chart-center h2 {
  font-size: 22px;
  font-weight: 700;
}

.chart-box {
  width: 100%;
  background: var(--bg-blue);
  padding: 25px;
  border-radius: 12px;
  text-align: center;
}

.chart-content {
  margin-top: 10px;
}

.chart-content h2 {
  margin-top: 6px;
}

.legend {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
}

.legend-item {
  text-align: center;
  font-size: 14px;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 6px;
}

.principal {
  background: var(--primary);
}

.interest {
  background: var(--secondary);
}

/* Responsive */
@media (max-width: 900px) {
  .wrapper {
    flex-direction: column;
  }
  .chart-box {
    width: 100%;
  }
}
.loan-eligibility-scope .eligibility-chart {
  background: #f5f5f5;
  padding: 30px;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loan-eligibility-scope .loan-circle {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

.loan-eligibility-scope .circle-inner {
  text-align: center;
  font-size: clamp(15px, 1.6vw, 18px);
}

.loan-eligibility-scope .circle-inner h2 {
  font-size: 32px;
  font-weight: 700;
}

.loan-eligibility-scope .eligibility-controls .form-group {
  margin-bottom: 25px;
}

@media (min-width: 320px) and (max-width: 767px) {
  .chart-wrapper canvas {
    width: 210px !important;
    height: 210px !important;
  }
  .chart-box {
    padding: 8px;
  }
  .chart-center {
    top: 55%;
    left: 40%;
  }
}
/* Home Loan EMI Calculator End */
/* Docland Home Loans Start */
.loan-section {
  margin: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* HERO */
.attractive_hloan {
  width: 100%;
  background: var(--primary-lighter);
  border-radius: 22px;
  padding: 50px 60px;
  overflow: hidden;
  animation: fadeHero 1s ease;
}

@keyframes fadeHero {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.attractive_hloan-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* IMAGE */
.attractive_hloan-image img {
  width: 500px;
  max-width: 100%;
}

@keyframes floatImage {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0px);
  }
}
/* CONTENT */
.attractive_hloan-content {
  max-width: 520px;
}

.attractive_hloan-content h1 {
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

.attractive_hloan-content p {
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 28px;
  font-size: clamp(12px, 1vw, 14px);
}

/* HERO BUTTON CARDS */
.attractive_hloan-cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.loan-card {
  background: var(--secondary);
  color: var(--dark);
  padding: 18px 26px;
  border-radius: 14px;
  min-width: 210px;
  transition: all 0.35s ease;
}

.loan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.loan-card span {
  font-size: 13px;
  opacity: 0.9;
}

.loan-card h3 {
  font-size: clamp(18px, 2.2vw, 24px);
  margin-top: 5px;
  font-weight: 700;
}

/* FEATURE CARD */
.feature-card {
  width: 90%;
  background: white;
  margin-top: -75px;
  border-radius: 18px;
  padding: 30px 40px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  animation: cardFade 1.2s ease;
}

@keyframes cardFade {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* HEADER */
.feature-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

.feature-header h2 {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 600;
  color: var(--gray);
  margin: 0;
}

/* GRID */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* FEATURE ITEM */
.feature {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--gray);
  font-size: 15px;
  transition: all 0.3s ease;
}
.feature:hover {
  transform: translateY(-5px);
}
.feature p {
  margin: 0;
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 500;
  color: var(--primary);
}
.feature {
  /* ICON */
}
.feature .icon {
  width: 50px;
  height: 50px;
  background: var(--gray-lighter);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  padding: 10px;
  transition: all 0.3s ease;
}
.feature .icon img {
  width: 35px;
}
.feature .feature:hover .icon {
  transform: scale(1.15) rotate(5deg);
}

/* TABLET */
@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-cards {
    justify-content: center;
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* MOBILE */
@media (min-width: 320px) and (max-width: 767px) {
  .attractive_hloan-image {
    display: none;
  }
  .attractive_hloan-content p {
    margin-bottom: 8px;
  }
  .attractive_hloan-cards {
    gap: 10px;
  }
  .loan-card {
    padding: 10px;
  }
  .hero {
    padding: 35px 25px;
  }
  .hero-content h1 {
    font-size: 28px;
  }
  .feature-card {
    padding: 25px;
    margin-top: -15px;
  }
  .feature-header {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
  .feature-header h2 {
    margin-bottom: 0;
  }
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .attractive_hloan {
    padding: 20px;
  }
}
/* Docland Home Loans End */
/* Home Loan Eligibility & Documentation Start */
/* SIDEBAR */
.tab_cont {
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
  display: flex;
  overflow: hidden;
}

.sidebar_hloan {
  width: 260px;
  background: var(--bg);
  border-right: 1px solid var(--border);
  border: 0;
  position: relative;
}

/* SLIDING INDICATOR */
.indicator {
  position: absolute;
  left: 0;
  width: 4px;
  height: 60px;
  background: var(--primary);
  border-radius: 0 4px 4px 0;
  transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.tab-btn {
  width: 100%;
  padding: 22px 28px;
  border: none;
  background: var(--gray-lighter);
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  color: #6b7280;
  transition: 0.25s;
}

.tab-btn:hover {
  background: #f1f3f6;
}

.tab-btn.active {
  background: var(--primary-lighter);
  color: #111827;
  font-weight: 600;
}

/* CONTENT */
.hloan_content {
  flex: 1;
  padding: 24px;
  position: relative;
  /* TITLE */
}
.hloan_content h2 {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--primary);
}
.hloan_content h3 {
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--primary);
}

/* TAB CONTENT */
.side-tab-content {
  opacity: 0;
  transform: translateY(12px);
  transition: 0.35s ease;
  position: absolute;
  max-width: 100%;
}
.side-tab-content.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
}
.side-tab-content .icon {
  width: 24px;
  height: 24px;
  background: var(--success-3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.side-tab-content .icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--white);
  stroke-width: 2;
  fill: none;
}

/* FEATURE LIST */
.points {
  margin-bottom: 10px;
}
.points h4 {
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--primary);
}

.text h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.para-row {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  align-items: start;
}
.para-row p {
  color: var(--gray);
  font-size: clamp(12px, 1vw, 14px);
}

/* MOBILE */
@media (max-width: 900px) {
  .sidebar {
    display: flex;
    width: 100%;
  }
  .indicator {
    display: none;
  }
  .tab-btn {
    flex: 1;
    text-align: center;
  }
  .content {
    padding: 40px 24px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .tab_cont {
    flex-direction: column;
  }
  .sidebar_hloan {
    display: flex;
  }
}
/* Home Loan Eligibility & Documentation End */
/* How To Apply Home Loan Start*/
.outer {
  width: 100%;
  max-width: 1180px;
}

/* ── TOP ROW ── */
.top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}

.main-title {
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 600;
  color: var(--primary);
  letter-spacing: -0.4px;
}

/* ── TOGGLE ── */
.toggle-wrap {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 600;
  color: var(--gray);
  user-select: none;
}

.t-label {
  cursor: pointer;
  transition: color 0.2s;
}

.t-label.on {
  color: var(--primary);
}

.t-sw {
  position: relative;
  width: 52px;
  height: 26px;
  cursor: pointer;
  margin: 0;
}

.t-sw input {
  display: none;
}

.t-track {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: var(--primary);
}

.t-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.28);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.t-sw input:checked ~ .t-thumb {
  transform: translateX(27px);
}

/* ── CARD ── */
.h_apply-card {
  border-radius: 20px;
  background: linear-gradient(138deg, var(--primary-2) 0%, var(--primary) 52%, var(--primary-3) 100%);
  display: flex;
  justify-content: space-around;
  min-height: 500px;
  position: relative;
  overflow: hidden;
  padding: 24px;
}

/* ── LEFT: Person ── */
.h_apply-card-left {
  flex: 0 0 40%;
  position: relative;
  z-index: 1;
  display: flex;
  padding: 0 0 0 20px;
  overflow: hidden;
}
.h_apply-card-left img {
  width: 100%;
  height: auto;
  max-height: 500px;
  display: block;
}

/* ── RIGHT: Content ── */
.h_apply-card-right {
  flex: 1;
  position: relative;
  z-index: 1;
  display: flex;
  padding: 44px 32px 40px 24px;
  overflow: hidden;
}

.cr-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.c-heading {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.c-sub {
  font-size: clamp(12px, 1vw, 14px);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 26px;
  line-height: 1.55;
  max-width: 420px;
}

/* ── STEP GROUPS (online / offline) ── */
.step-group {
  display: none;
}

.step-group.active-group {
  display: block;
  margin: 15px;
}

/* ── STEPS TRACK ── */
.st {
  display: flex;
  flex-direction: column;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── STEP ROW ── */
.sr {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 0 2px;
  min-height: 90px;
  cursor: pointer;
  position: relative;
  opacity: 0.32;
  transition: opacity 0.35s;
}

.sr.done {
  opacity: 1;
}

.sr.active {
  opacity: 1;
}

/* ── Circle column + connector ── */
.sc {
  position: relative;
  flex-shrink: 0;
  width: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* dashed connector between steps */
.sr:not(:last-child) .sc::after {
  content: "";
  position: absolute;
  top: 54px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% - 54px + 36px);
  background: repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.28) 0, rgba(255, 255, 255, 0.28) 5px, transparent 5px, transparent 11px);
  transition: background 0.35s;
}

/* done → solid bright white dashes */
.sr.done:not(:last-child) .sc::after {
  background: repeating-linear-gradient(to bottom, #fff 0, #fff 5px, transparent 5px, transparent 11px);
}

/* active → bright dashes */
.sr.active:not(:last-child) .sc::after {
  background: repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.85) 0, rgba(255, 255, 255, 0.85) 5px, transparent 5px, transparent 11px);
}

/* ── Circle ── */
.circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.45);
}

.sr.done .circle {
  background: var(--white);
  border-color: var(--white);
  color: var(--primary);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.18);
}

.sr.active .circle {
  background: var(--secondary);
  border-color: var(--white);
  color: var(--primary);
  transform: scale(1.1);
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.16), 0 0 20px rgba(255, 255, 255, 0.2);
}

/* ── Step text ── */
.sb {
  padding-top: 10px;
  padding-bottom: 16px;
}

.s-title {
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 5px;
  line-height: 1.3;
  transition: color 0.35s, font-size 0.25s;
}

.sr.done .s-title {
  color: var(--white);
}

.sr.active .s-title {
  color: var(--white);
  font-size: clamp(15px, 1.6vw, 18px);
}

.s-desc {
  font-size: clamp(12px, 1vw, 14px);
  line-height: 1.65;
  color: var(--white);
  max-height: 0;
  transition: color 0.35s, max-height 0.4s;
  max-width: 380px;
}

.sr.active .s-desc {
  color: var(--white);
  max-height: 80px;
}

/* ── Apply button ── */
.apply-btn {
  display: inline-block;
  margin-top: 26px;
  background: var(--white);
  color: var(--primary);
  font-family: "Open Sans", sans-serif;
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 700;
  padding: 13px 40px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  align-self: flex-start;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.22);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.apply-btn:hover {
  background: #f3f3f3;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

/* ── VERTICAL PROGRESS BAR ── */
/* Wrapper sits BESIDE the .sv (steps viewport), aligned to it */
.sv-row {
  flex: 1;
  display: flex;
  gap: 16px;
  align-items: stretch;
  overflow: hidden;
  min-height: 0;
}

/* the steps viewport takes all flex space */
.sv {
  flex: 1;
  overflow: hidden;
  min-height: 0;
}

/* The bar column: same height as .sv, aligned right */
.vbar-col {
  width: 4px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  margin: 0 24px;
  /* top/bottom padding in JS to align with first/last circle centers */
}

.vbar {
  flex: 1;
  position: relative;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.15);
}

.vbar-fill {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0%;
  border-radius: 4px;
  background: var(--white);
  transition: height 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.vbar-dot {
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 10px 4px rgba(255, 255, 255, 0.55), 0 0 22px 6px rgba(255, 255, 255, 0.22);
  opacity: 0;
  transition: opacity 0.3s;
}

.vbar-fill.live .vbar-dot {
  opacity: 1;
}

/* ── Responsive ── */
@media (max-width: 820px) {
  .card {
    flex-direction: column;
  }
  .card-left {
    flex: none;
    height: 200px;
    padding: 0;
    justify-content: center;
  }
  .person-svg {
    max-height: 200px;
  }
  .card-right {
    padding: 28px 24px 32px 24px;
  }
}
@media (max-width: 540px) {
  .circle {
    width: 44px;
    height: 44px;
    font-size: 13px;
  }
  .sc {
    width: 44px;
  }
  .card-right {
    padding: 22px 16px 28px 16px;
  }
  .vbar-col {
    width: 3px;
  }
}
.w-150 {
  width: 150px;
  margin-top: 24px;
}

@media (min-width: 320px) and (max-width: 767px) {
  .h_apply-card-left {
    display: none;
  }
  .h_apply-card-right {
    padding: 8px;
  }
  .h_apply-card {
    padding: 8px;
  }
  .sb {
    padding-top: 0;
  }
}
/* How To Apply Home Loan End*/
/* Do's & Don'ts Start */
/* HEADER */
.header {
  text-align: center;
  margin-bottom: 48px;
  animation: fadeUp 0.6s ease both;
}

.header-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--success);
  background: var(--success-2);
  border: 1px solid var(--success-3);
  border-radius: 40px;
  padding: 6px 18px;
  margin-bottom: 18px;
}

/* GRID */
.do-dont-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  animation: fadeUp 0.8s ease 0.15s both;
}

@media (max-width: 680px) {
  .do-dont-grid {
    grid-template-columns: 1fr;
  }
}
/* CARDS */
.do-dont-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 32px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 520px;
}

.do-dont-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.05);
}

.do-dont-card.dos {
  border: 1.5px solid rgba(0, 201, 167, 0.15);
}

.do-dont-card.donts {
  border: 1.5px solid rgba(255, 77, 109, 0.15);
}

.do-dont-card.dos::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--success-2), var(--success-2));
  border-radius: 20px 20px 0 0;
}

.do-dont-card.donts::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--error-2), var(--error-2));
  border-radius: 20px 20px 0 0;
}

.do-dont-card::after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.06;
}

.do-dont-card.dos::after {
  background: var(--success-2);
}

.do-dont-card.donts::after {
  background: var(--error-2);
}

/* Card Header */
.do-dont-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}

.do-dont-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(16px, 1.8vw, 20px);
  flex-shrink: 0;
}

.dos .do-dont-card-icon {
  background: var(--success-lighter);
}

.donts .do-dont-card-icon {
  background: var(--error-lighter);
}

.do-dont-card-title {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  color: var(--dark-light);
  margin: 0;
}

/* Items */
.item-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: auto;
  flex: 1;
  padding-right: 6px;
  padding-left: 0;
  /* hide scroll until hover */
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
  transition: scrollbar-color 0.3s;
}

.item-list:hover {
  scrollbar-color: rgba(0, 0, 0, 0.15) transparent;
}

/* Webkit custom scrollbar */
.dos .item-list::-webkit-scrollbar {
  width: 5px;
}

.dos .item-list::-webkit-scrollbar-track {
  background: transparent;
}

.dos .item-list::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 10px;
  transition: background 0.3s;
}

.dos .item-list:hover::-webkit-scrollbar-thumb {
  background: var(--success-2);
}

.donts .item-list::-webkit-scrollbar {
  width: 5px;
}

.donts .item-list::-webkit-scrollbar-track {
  background: transparent;
}

.donts .item-list::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 10px;
}

.donts .item-list:hover::-webkit-scrollbar-thumb {
  background: var(--error-lighter);
}

/* Fade mask at bottom of scroll area */
.scroll-wrap {
  flex: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.scroll-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 48px;
  pointer-events: none;
  border-radius: 0 0 20px 20px;
}

.dos .scroll-wrap::after {
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.95));
}

.donts .scroll-wrap::after {
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.95));
}

/* Scroll hint indicator */
.scroll-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-top: 10px;
  opacity: 0.5;
  flex-shrink: 0;
}

.dos .scroll-hint {
  color: var(--success-2);
}

.donts .scroll-hint {
  color: var(--error-2);
}

.scroll-hint svg {
  animation: bounce 1.4s ease infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}
.item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: 16px;
  transition: background 0.2s ease;
}

.dos .item:hover {
  background: var(--success-lighter);
}

.donts .item:hover {
  background: var(--error-lighter);
}

.item-bullet {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 13px;
  font-weight: 700;
}

.dos .item-bullet {
  background: var(--success-2);
  color: white;
  box-shadow: 0 4px 12px rgba(0, 201, 167, 0.35);
}

.donts .item-bullet {
  background: var(--error-2);
  color: white;
  box-shadow: 0 4px 12px rgba(255, 77, 109, 0.35);
}

.item-text {
  font-size: clamp(12px, 1vw, 14px);
  line-height: 1.65;
  color: var(--gray);
  font-weight: 400;
}

.item-text strong {
  color: var(--dark-light);
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
  font-size: 15px;
}

.count-badge {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

.dos .count-badge {
  color: var(--success);
  background: var(--success-lighter);
}

.donts .count-badge {
  color: var(--error);
  background: var(--error-lighter);
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.item {
  animation: fadeUp 0.5s ease both;
}

.dos .item:nth-child(1) {
  animation-delay: 0.2s;
}

.dos .item:nth-child(2) {
  animation-delay: 0.3s;
}

.dos .item:nth-child(3) {
  animation-delay: 0.4s;
}

.dos .item:nth-child(4) {
  animation-delay: 0.5s;
}

.dos .item:nth-child(5) {
  animation-delay: 0.6s;
}

.donts .item:nth-child(1) {
  animation-delay: 0.25s;
}

.donts .item:nth-child(2) {
  animation-delay: 0.35s;
}

.donts .item:nth-child(3) {
  animation-delay: 0.45s;
}

.donts .item:nth-child(4) {
  animation-delay: 0.55s;
}

.donts .item:nth-child(5) {
  animation-delay: 0.65s;
}

@media (min-width: 320px) and (max-width: 767px) {
  .do-dont-card {
    padding: 16px;
  }
}
/* Do's & Don'ts End */
/* Tips to know about Home Loan start */
:root {
  --ease: cubic-bezier(.4,0,.2,1);
}

/* ── Header ── */
.arrow-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.6s ease both;
}

.arrow-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── Quick Tips badge ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--secondary);
  border-radius: 100px;
  padding: 6px 16px 6px 10px;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--dark-light);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  box-shadow: 0 4px 16px var(--secondary-3);
  flex-shrink: 0;
}

.badge-dot {
  width: 20px;
  height: 20px;
  background: rgba(0, 0, 0, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--dark-light);
}

/* ── Nav arrows ── */
.nav-arrows {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.nav-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all 0.25s var(--ease);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 74, 173, 0.08);
}

.nav-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--primary);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.3s var(--ease);
}

.nav-btn:hover:not(:disabled)::before {
  transform: scale(1);
}

.nav-btn:hover:not(:disabled) {
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 0 20px var(--primary-4);
}

.nav-btn svg {
  width: 18px;
  height: 18px;
  position: relative;
  z-index: 1;
}

.nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* ── Grid container ── */
.carousel-outer {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

/* Carousel always */
.tips_cards {
  display: flex;
  gap: 20px;
  transition: transform 0.5s var(--ease);
  will-change: transform;
}

.tips_card {
  flex: 0 0 calc((100% - 40px) / 3);
  min-width: 0;
}

/* ── Card ── */
.tips_card {
  flex: 0 0 calc((100% - 41px) / 3);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 24px 24px 0px 24px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  animation: fadeUp 0.55s ease both;
  box-shadow: 0 2px 16px rgba(0, 74, 173, 0.06);
}
.tips_card:hover {
  border-color: rgba(0, 74, 173, 0.3);
  box-shadow: 0 20px 48px rgba(0, 74, 173, 0.12), 0 0 0 1px rgba(0, 74, 173, 0.08);
  transform: translateY(-6px);
}
.tips_card:hover::before {
  opacity: 1;
}
.tips_card:hover::after {
  opacity: 1;
}
.tips_card {
  /* yellow top accent line */
}
.tips_card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--secondary), transparent);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.tips_card {
  /* blue inner glow */
}
.tips_card::after {
  content: "";
  position: absolute;
  top: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--primary-light), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.tips_card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.4;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.tips_card p {
  font-size: clamp(12px, 1vw, 14px);
  color: var(--gray);
  line-height: 1.75;
  font-weight: 400;
}

.tips_card:nth-child(1) {
  animation-delay: 0.05s;
}

.tips_card:nth-child(2) {
  animation-delay: 0.1s;
}

.tips_card:nth-child(3) {
  animation-delay: 0.15s;
}

.tips_card:nth-child(4) {
  animation-delay: 0.2s;
}

.tips_card:nth-child(5) {
  animation-delay: 0.25s;
}

.tips_card:nth-child(6) {
  animation-delay: 0.3s;
}

.tips_card:nth-child(7) {
  animation-delay: 0.35s;
}

.tips_card:nth-child(8) {
  animation-delay: 0.4s;
}

.tips_card:nth-child(9) {
  animation-delay: 0.45s;
}

/* ghost number */
.tips_card-num {
  font-family: "Syne", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(0, 74, 173, 0.05);
  line-height: 1;
  position: absolute;
  top: 18px;
  right: 22px;
  transition: color 0.3s;
  user-select: none;
  pointer-events: none;
}

.tips_card:hover .tips_card-num {
  color: rgba(248, 203, 0, 0.25);
}

/* icon box */
.tips_card-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(248, 203, 0, 0.2), rgba(248, 203, 0, 0.06));
  border: 1.5px solid rgba(248, 203, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: 0.22s ease;
}

.tips_card:hover .tips_card-icon {
  background: linear-gradient(135deg, rgba(248, 203, 0, 0.35), rgba(248, 203, 0, 0.12));
  border-color: rgba(248, 203, 0, 0.7);
  transform: translateY(-3px);
}

.tips_card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary);
  fill: none;
}

/* Learn more tag */
.tips_card-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
  font-size: 10px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.tips_card:hover .tips_card-tag {
  opacity: 1;
  transform: translateY(0);
}

.tips_card-tag::after {
  content: "";
  display: block;
  height: 2px;
  width: 0;
  background: var(--secondary);
  transition: width 0.3s var(--ease);
  border-radius: 2px;
  position: absolute;
  bottom: -2px;
  left: 0;
}

/* ── Disclaimer ── */
.disclaimer {
  margin-top: 10px;
  padding: 18px 22px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-size: clamp(12px, 1vw, 14px);
  color: var(--gray);
  line-height: 1.7;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.6s 0.5s ease both;
  box-shadow: 0 2px 12px rgba(0, 74, 173, 0.05);
}

.disclaimer::before {
  content: "⚠  ";
  opacity: 0.8;
  color: var(--error);
  font-size: clamp(14px, 1.2vw, 16px);
}

/* ── Animations ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ── Responsive ── */
@media (max-width: 900px) {
  .tips_card {
    flex: 0 0 calc((100% - 20px) / 2);
  }
}
@media (max-width: 580px) {
  .tips_card {
    flex: 0 0 100%;
  }
  .hl-title {
    font-size: 1.5rem;
  }
}
/* CTA BUTTON AS LINK */
.fees_charges-btn {
  position: relative;
  z-index: 5;
  background: linear-gradient(135deg, var(--secondary), var(--secondary));
  border: none;
  padding: 8px 16px;
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 500;
  color: var(--primary);
  border-radius: 8px;
  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;
}

.fees_charges-btn:hover {
  transform: translateY(2px) scale(1);
  box-shadow: 0 2px 4px rgba(228, 173, 90, 0.9), inset 0 0 10px rgba(255, 255, 255, 0.4);
}

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

/* Tips to know about Home Loan End */
.icon-check {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  font-size: clamp(12px, 1vw, 14px);
}
.icon-check p {
  margin: 0;
}

.icon-check li {
  padding: 8px 4px;
  line-height: 1.6;
  /* display: flex NAHI chahiye yahan */
}

.icon-check li::before {
  content: "✓";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex; /* inline rakho float ki jagah */
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: clamp(11px, 0.8vw, 12px);
  font-weight: 700;
  color: white;
  background: var(--success-2);
  box-shadow: 0 2px 8px rgba(0, 201, 167, 0.3);
  margin-right: 8px;
  margin-top: -4px;
  vertical-align: middle; /* text ke saath align */
}

.icon-check li b {
  font-weight: 600;
}

.table_card {
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  width: 100%;
}

/* ── TABLE ── */
table {
  width: 100%;
  border-collapse: collapse;
}

/* Header row */
thead tr th {
  background: var(--primary);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  padding: 18px 24px;
  text-align: left;
  vertical-align: middle;
}

thead tr th {
  width: auto;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

thead tr th:nth-child(2) {
  width: auto;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

thead tr th:nth-child(3) {
  width: auto;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

thead tr th:last-child {
  width: auto;
}

/* Body rows */
tbody tr {
  border-bottom: 1px solid var(--border);
}

tbody tr:last-child {
  border-bottom: none;
}

tbody td {
  padding: 20px 24px;
  font-size: 15px;
  color: #2d2d2d;
  vertical-align: middle;
  line-height: 1.5;
}

tbody td {
  font-weight: 400;
  color: #3a3a3a;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

tbody td:nth-child(2) {
  border-right: 1px solid var(--border);
  color: var(--gray);
}

tbody td:nth-child(3) {
  border-right: 1px solid var(--border);
  color: var(--gray);
}

tbody td:last-child {
  color: var(--gray);
}

/* ── FOOTER LINK ── */
.footer {
  margin-top: 28px;
  font-size: 14.5px;
  color: var(--gray-light);
  text-align: center;
  letter-spacing: 0.01em;
}

.footer a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

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

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .card {
    border-radius: 0;
    box-shadow: none;
  }
  table, thead, tbody, tr, th, td {
    display: block;
  }
  thead tr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  thead tr th:first-child {
    grid-column: 1/-1;
    border-right: none;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }
  thead tr th:nth-child(2) {
    border-right: 1px solid var(--border);
  }
  tbody tr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--border);
  }
  tbody td:first-child {
    grid-column: 1/-1;
    background: #faf8fa;
    font-weight: 600;
    color: var(--primary);
    padding: 12px 16px 8px;
    border-right: none;
    border-bottom: 1px solid var(--border);
    font-size: 13.5px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
  tbody td:nth-child(2),
  tbody td:last-child {
    padding: 12px 16px;
    font-size: 14px;
  }
  tbody td:nth-child(2) {
    border-right: 1px solid var(--border);
  }
  thead tr th,
  tbody td {
    padding: 14px 16px;
  }
}
/* Car loan Type Section Start */
.clf-section {
  padding: 2.5rem 0 2rem;
  font-family: "Segoe UI", system-ui, sans-serif;
  background: var(--white);
}

.clf-outer {
  display: flex;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 16px;
}

.nav-side {
  width: 46px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
}

.nav-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all 0.25s var(--ease);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 74, 173, 0.08);
}

.nav-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--primary);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.3s var(--ease);
}

.nav-btn:hover:not(:disabled)::before {
  transform: scale(1);
}

.nav-btn:hover:not(:disabled) {
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 0 20px var(--primary-4);
}

.nav-btn svg {
  width: 18px;
  height: 18px;
  position: relative;
  z-index: 1;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.nav-btn.invisible {
  visibility: hidden;
  pointer-events: none;
}

.clf-track-wrap {
  flex: 1;
  overflow: hidden;
  padding: 8px 12px;
}

.clf-track {
  display: flex;
  transition: transform 0.42s var(--ease);
  gap: 8px;
}

.clf-card {
  flex: 0 0 24%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 12px;
  border: dashed 1px var(--border);
  border-radius: 8px;
  transition: background 0.22s, transform 0.22s;
}
.clf-card:hover {
  transform: translateY(-3px);
}

.clf-icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 8px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  transition: background 0.22s, transform 0.22s;
  flex-shrink: 0;
}
.clf-icon-wrap img {
  height: 50px;
  width: 50px;
}

.clf-card:hover .clf-icon-wrap {
  background: var(--primary-lighter);
  transform: translateY(-3px) scale(1);
}

.clf-icon-wrap svg {
  width: 36px;
  height: 36px;
  fill: var(--primary);
  stroke: none;
  transition: fill 0.22s;
}

.clf-card:hover .clf-icon-wrap svg {
  fill: var(--text-dark);
}

.clf-label {
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 600;
  color: var(--gray);
  line-height: 1.45;
}

/* dots */
.clf-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
}

.clf-dots.hidden {
  display: none;
}

/* using div instead of button to avoid browser default border */
.clf-dot {
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background: #c0c0c0;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  padding: 0;
  cursor: pointer;
  display: block;
  transition: width 0.3s var(--ease), border-radius 0.3s var(--ease), background 0.3s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}

.clf-dot.active {
  width: 26px;
  border-radius: 999px;
  background: var(--primary);
}

.clf-dot:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* Car loan Type Section End */
/*** Personal Loan Start***/
.banking-center .top-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 74, 173, 0.08);
  border: 0.5px solid rgba(0, 74, 173, 0.25);
  border-radius: 999px;
  padding: 4px 14px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.banking-center .tiers {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.banking-center .tier-card {
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--white);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.banking-center .tier-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 24px rgba(0, 74, 173, 0.08);
}
.banking-center .tier-card .tier-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px 12px;
  border-bottom: 1px solid var(--border);
}
.banking-center .tier-card .tier-num {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 800;
  line-height: 1;
  color: var(--primary);
  min-width: 44px;
  position: relative;
}
.banking-center .tier-card .tier-info {
  flex: 1;
}
.banking-center .tier-card .tier-name {
  font-family: "Syne", sans-serif;
  font-size: clamp(11px, 0.8vw, 12px);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-light);
}
.banking-center .tier-card .tier-count {
  font-size: clamp(11px, 0.8vw, 12px);
  color: var(--gray-light);
  margin-top: 1px;
}
.banking-center .tier-card .tier-bar-wrap {
  height: 3px;
  background: var(--gray-lighter);
  margin: 0 22px;
}
.banking-center .tier-card .tier-bar {
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-4));
}
.banking-center .tier-card .tier-body {
  padding: 14px 22px 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.banking-center .tier-card .tier-body .city {
  font-size: clamp(11px, 0.8vw, 12px);
  font-weight: 500;
  color: var(--gray);
  background: var(--gray-lighter);
  border: 0.5px solid #e0e6f0;
  border-radius: 8px;
  padding: 5px 12px;
  transition: all 0.15s;
  cursor: default;
}
.banking-center .tier-card .tier-body .city:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

@media (max-width: 480px) {
  .wrap {
    padding: 28px 18px 36px;
  }
  .title {
    font-size: 1.8rem;
  }
  .city {
    font-size: 0.75rem;
    padding: 4px 10px;
  }
}
/*** Personal Loan End***/
.servs_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.servs_card {
  border-radius: 14px;
  padding: 18px 20px;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.34, 1.4, 0.64, 1), border-color 0.2s, box-shadow 0.2s;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.servs_card:hover {
  transform: translateY(-3px);
  border-color: #c7d2fe;
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.08);
}

.tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: var(--primary);
}

.servs_card-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-light);
  line-height: 1.4;
}

.servs_dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-left: 12px;
  background: var(--primary);
  transition: background 0.2s ease;
}

.servs_card:hover .servs_dot {
  background: var(--secondary);
}

@media (max-width: 720px) {
  .servs_grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .servs_grid {
    grid-template-columns: 1fr;
  }
  h1 {
    font-size: 22px;
  }
}
:root {
  --bg: #f6f9fa;
  --panel: #ffffff;
  --line: #e6ecef;
  --line-soft: #eef2f4;
  --pulse: #0fa778;
  --pulse-deep: #0b8563;
  --ink: #0e1620;
  --ink-soft: #647685;
  --ink-faint: #9aa8b3;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-2);
  background: #eefaf4;
  border: 1px solid #cdece0;
  padding: 6px 13px 6px 11px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 6px var(--glow);
  animation: blink 1.6s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.subhead {
  font-size: 0.98rem;
  color: var(--ink-soft);
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.62;
}

.progress-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 26px;
}

.progress-row .seg {
  width: 26px;
  height: 3px;
  border-radius: 3px;
  background: var(--line);
  overflow: hidden;
}

.progress-row .seg.on {
  background: var(--primary);
}

.progress-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
  margin-left: 4px;
}

/* Flow */
.flow {
  position: relative;
}

.rail {
  position: absolute;
  left: 27px;
  top: 30px;
  height: 0;
  width: 1px;
  background: var(--primary);
}

.rail-pulse {
  position: absolute;
  left: -3.5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 4px #ffffff, 0 0 14px 3px var(--glow);
  opacity: 0;
}

.stepbystep {
  position: relative;
  display: flex;
  gap: 22px;
  margin-bottom: 20px;
  opacity: 0;
  animation: rise 0.65s cubic-bezier(0.2, 0.7, 0.3, 1) forwards;
}

.stepbystep:nth-child(1) {
  animation-delay: 0.1s;
}

.stepbystep:nth-child(2) {
  animation-delay: 0.26s;
}

.stepbystep:nth-child(3) {
  animation-delay: 0.42s;
}

.stepbystep:nth-child(4) {
  animation-delay: 0.58s;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.node {
  flex-shrink: 0;
  width: 56px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.node-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--panel);
  border: 1.5px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "IBM Plex Mono", monospace;
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 600;
  color: var(--primary-2);
  box-shadow: 0 1px 2px rgba(14, 22, 32, 0.04);
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.stepbystep:hover .node-mark {
  box-shadow: 0 0 6px 1px var(--glow);
  border-color: var(--primary-4);
  transform: scale(1.05);
}

.stepbystep-card {
  flex: 1;
  background: var(--panel);
  border: 1px solid var(--primary);
  border-radius: 16px;
  padding: 22px 26px;
  box-shadow: 0 1px 2px rgba(14, 22, 32, 0.04);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 5px solid var(--primary);
}

.stepbystep:hover .stepbystep-card {
  border-color: var(--glow);
  transform: translateX(0px) translateY(-2px);
  box-shadow: 0 10px 20px -14px var(--glow);
}

.stepbystep-card-label {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: capitalize;
  color: var(--primary-2);
  margin-bottom: 8px;
}

.stepbystep-card h2 {
  font-size: 1.08rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.35;
}

.stepbystep-card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.58;
}

.ready-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 13px;
  padding: 5px 12px;
  border: 1px solid var(--line);
  background: #f7f9fa;
  border-radius: 20px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
}

.ready-tag .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ink-faint);
}

.stepbystep-card:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

@media (max-width: 480px) {
  .flow {
    margin-top: 44px;
  }
  .rail {
    left: 23px;
  }
  .node {
    width: 48px;
    height: 54px;
  }
  .node-mark {
    width: 36px;
    height: 36px;
    font-size: 0.65rem;
  }
  .stepbystep-card {
    padding: 18px 19px;
    border-radius: 14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .stepbystep {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .rail-pulse, .status-dot {
    animation: none !important;
    opacity: 1 !important;
  }
}
.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  color: var(--gray);
  margin-bottom: 60px;
}

.timeline-guid {
  position: relative;
  margin-top: 20px;
}

.timeline-guid:before {
  content: "";
  position: absolute;
  left: 19px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--primary-4);
  border-radius: 30px;
}

.guid {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 25px;
  margin-bottom: 35px;
}

.guid:last-child {
  margin-bottom: 0;
}

.guid-circle {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--primary-4);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: clamp(14px, 1.2vw, 16px);
  box-shadow: 0 4px 5px rgba(15, 110, 253, 0.25);
  position: relative;
  z-index: 2;
}

.guid-card {
  flex: 1;
  background: var(--white);
  padding: 22px 24px;
  border-radius: 16px;
  box-shadow: 1px 0px 4px rgba(0, 0, 0, 0.1);
  transition: 0.35s;
  border-left: 5px solid var(--primary-4);
}

.guid-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}

.guid-card p {
  font-size: clamp(12px, 1vw, 14px);
}

.guid-card p {
  color: var(--gray);
  line-height: 1.7;
  font-size: 15px;
}

.alert-box {
  background: #0f172a;
  color: var(--white);
  text-align: center;
  padding: 18px;
  border-radius: 14px;
  margin-bottom: 40px;
  font-size: 18px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.15);
}

@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }
  .timeline:before {
    left: 22px;
  }
  .circle {
    width: 46px;
    height: 46px;
    min-width: 46px;
    font-size: 15px;
  }
  .guid-card {
    padding: 18px;
  }
  .guid-card h3 {
    font-size: clamp(14px, 1.2vw, 16px);
  }
  .guid {
    gap: 18px;
  }
}
@media (max-width: 520px) {
  .section-title {
    font-size: 24px;
  }
  .guid-card p {
    font-size: 14px;
  }
}

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