/* ======================================================
GLOBAL STYLES
====================================================== */
body {
  font-family: 'Inter', sans-serif;
  background: #f8fbff;
  color: #000b33;
}
.main-h2, .main-h1, .main-h3
{
	color: #000b33 !important;
	font-weight: 700;
}
.body-text{
	color: #000b33 !important;
}
.section-padding {
  padding: 80px 0;
}

h1 span {
  color: #000b33;
}

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

/* ================= HEADER (NEW MENU ONLY) ================= */
.top-header {
  position: fixed;
  top: 0;
  z-index: 99999;
  padding: 20px 0px;
  width: 100%;
}

.header-pill {
  max-width: 100%;
  margin: auto;
  backdrop-filter: blur(10px); /* Frosted glass effect */
  background-color: rgba(255, 255, 255, 0.2); /* Semi-transparent */
  box-shadow: 0 4px 30px rgba(0,0,0,0.1);
  z-index: 1000;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
  border-radius: 60px;
  padding: 6px 8px 6px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  animation: headerDrop 1s ease forwards;
  border: 1px solid #dfe1eb;
}

/* Logo */
.brand {
  font-size: 26px;
  font-weight: 700;
  color: #000b33;
}
.brand span {
  background: #000b33;
  color: white;
  border-radius: 50%;
  font-size: 14px;
  padding: 2px 6px;
  margin-left: 4px;
  position: relative;
  top: -6px;
}

/* Menu */
.main-menu {
  display: flex;
  gap: 34px;
}

.main-menu a {
  text-decoration: none;
  color: rgb(0 0 0 / 59%);
  font-weight: 500;
  position: relative;
}

.main-menu a.active {
  color: #000b33;
}

.main-menu a.active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 6px;
    background: radial-gradient(circle at 20% 30%, #9eb0e5 0%, #4366B1 40%, #5b7cff 70%), linear-gradient(120deg, #4366B1, #5b7cff, #27407f);
    border-radius: 5px;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
}

ul.submenu li
{
	margin: 0;
}



/* CTA */
.header-cta {
  background: radial-gradient(circle at 20% 30%, #9eb0e5 0%, #4366B1 40%, #5b7cff 70%), linear-gradient(120deg, #4366B1, #5b7cff, #27407f);
  color: white;
  padding: 12px 22px;
  border-radius: 40px;
  display: flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(77,109,255,0.4);
}

/* ================= SUBMENU ================= */
.menu-item { position: relative; }
.menu-item .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  flex-direction: column;
  min-width: 180px;
  padding: 10px 0;
  z-index: 1000;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  width: max-content;
}
.menu-item:hover .submenu {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  flex-direction: column;
}
.menu-item .submenu a {
  display: block;
  padding: 10px 20px;
  color: #4a4a4a;
  font-weight: 500;
}
.menu-item .submenu a:hover {
  background: rgba(77,109,255,0.1);
  color: #4d6dff;
  border-radius: 8px;
}

/* ================= HERO ================= */
.hero {
  padding: 110px 80px 0px;
  position: relative;
}

.hero-text h1,
.hero-text p {
  opacity: 0;
}

.hero-text h1 {
  font-size: 48px;
  font-weight: 700; 
}

.hero-text p {
  margin-top: 20px;
  font-size: 18px; 
}
 

/* ================= VISUAL ================= */
.hero-visual {
  position: relative;
}

.doctor {
  max-width: 520px;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* ================= FLOATING IMAGES ================= */
.floating {
  position: absolute;
  pointer-events: none;
  animation: float 5s ease-in-out infinite;
}

.mouse-float { animation-duration: 3s; }
.slow-float { animation-duration: 6s; }
.fast-float { animation-duration: 2.6s; }

.bottom-float { bottom: 0; right: 40px; }
.left-float { top: 40px; left: -30px; }
.right-float { top: 60px; right: -20px; }

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-22px); }
  100% { transform: translateY(0); }
}

/* ================= DOODLES ================= */
.doodle {
  position: absolute;
  stroke: #7b9cff;
  fill: none;
  stroke-width: 1;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: drawLine 2s ease forwards;
}

.doodle-1 { top: 5%; right: 8%; }
.doodle-2 { bottom: 18%; right: 2%; animation-delay: .5s; }

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

/* ================= TEXT REVEAL ================= */
.reveal.active {
  animation: textUp 1s ease forwards;
}

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

/* ================= HEADER ANIMATION ================= */
@keyframes headerDrop {
  from { transform: translateY(-40px); opacity:0 }
  to { transform: translateY(0); opacity:1 }
}

 
/* ======================================================
FEATURE CARDS
====================================================== */
.feature-card {
  padding: 30px;
  border-radius: 20px;
  background: white;
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
  transition: all 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-card.active {
  border: 2px solid #4f7cff;
}

/* ======================================================
CTA
====================================================== */
.cta-banner {
  background: linear-gradient(135deg,#4f7cff,#6fa1ff);
  color: white;
  padding: 80px 0;
  border-radius: 40px;
  margin: 60px;
}

/* Pulse animation */
.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(79,124,255,0.5); }
  70% { box-shadow: 0 0 0 20px rgba(79,124,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(79,124,255,0); }
}

/* ======================================================
REVEAL ANIMATIONS
====================================================== */

.reveal {
  opacity: 0;
  transform: var(--transform, translateY(40px));
  transition: opacity 1s ease, transform 1s ease;
}

.reveal.active {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* Direction modifiers */
.fade-left {
  --transform: translateX(-40px);
}

.fade-right {
  --transform: translateX(40px);
}

.slide-up {
  --transform: translateY(60px);
}

.zoom-in {
  --transform: scale(0.8);
}

.scale-in {
  --transform: scale(0.9);
}


/* ======================================================
FOOTER
====================================================== */

.glass-footer {
  position: relative;
  background: linear-gradient(135deg, #5b7cfa 0%, #1c2b6f 100%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: #fff;
  padding-top: 120px;
  overflow: hidden;
}








.power-bg {
  position: relative;
  width: 100%;
  background: radial-gradient(
      circle at 20% 30%,
      #050c20 0%,
      #4366B1 40%,
      #2b4588 70%
    ),
    linear-gradient(
      120deg,
      #4366B1,
      #050c20,
      #27407f
    );
  overflow: hidden;
  padding-bottom: 20px;
}

/* ENERGY BLOBS */
.energy {
  position: absolute;
  width: 140%;
  height: 140%;
  top: -20%;
  left: -20%;
  filter: blur(20px);
  mix-blend-mode: screen;
  opacity: 0.65;
  animation: drift 8s linear infinite;
}

.e1 {
  background: conic-gradient(
    from 0deg,
    #7fa1ff,
    transparent,
    #5f7fe0,
    transparent
  );
}

.e2 {
  background: conic-gradient(
    from 180deg,
    #9bb4ff,
    transparent,
    #4366B1,
    transparent
  );
  animation-duration: 10s;
}

.e3 {
  background: conic-gradient(
    from 90deg,
    #6c8eff,
    transparent,
    #2f4f8f,
    transparent
  );
  animation-duration: 12s;
}

/* CENTRAL PULSE */
.pulse {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(255,255,255,0.25),
    transparent 55%
  );
  animation: pulse 2s ease-in-out infinite;
}

/* ANIMATIONS */
@keyframes drift {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%,100% {
    opacity: 0.15;
  }
  50% {
    opacity: 0.35;
  }
}












/* Wave */
.footer-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 160px;
  z-index: 1;
}

.footer-wave path {
  fill: #f6f9ff;
}

/* Content */
.footer-content {
  position: relative;
  z-index: 2;
}

h5, h6 {
  font-weight: 600;
  margin-bottom: 12px;
}

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

ul li {
  opacity: 0.85;
  margin-bottom: 8px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

ul li:hover {
  transform: translateX(6px);
  opacity: 1;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 14px;
  opacity: 0.8;
}
.social-icons {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}

.social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 18px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  transition: all 0.35s ease;
}

.social-icons a:hover {
  transform: translateY(-4px) scale(1.05);
  background: linear-gradient(135deg,#7b9cff,#4d6dff);
  box-shadow: 0 10px 25px rgba(77,109,255,0.45);
}

 
 
/* ================= FOOTER ================= */






/* ================= STATS BAR ================= */
.stats-bar {
  max-width: 100%;
  margin: auto;
  background: linear-gradient(90deg, #5b7cff, #6f8dff);
  border-radius: 18px;
  padding: 35px 20px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: center;
  box-shadow: 0 25px 60px rgba(91,124,255,0.35);
}

/* Stat block */
.stat {
  grid-column: span 1;
  color: #fff;
}
 

/* Vertical dividers */
.divider {
  width: 1px;
  height: 55px;
  background: rgba(255,255,255,0.35);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .stats-bar {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .divider {
    display: none;
  }
}



/* ================= LOGO MARQUEE ================= */

.logo-marquee {
  width: 100%;
  overflow: hidden;
  margin-bottom: 55px;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 70px;
  width: max-content;
  animation: scroll-logos 30s linear infinite;
}

.logo-track img {
  height: 38px;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.logo-track img:hover {
  opacity: 1;
}

/* Pause on hover */
.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}

@keyframes scroll-logos {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}



/* ================= COVERAGE SECTION ================= */

.coverage-card {
  background: #fff;
  border-radius: 26px;
  padding: 40px 32px;
  height: 100%;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
  transition: box-shadow 0.4s ease;
  transform-style: preserve-3d;
  will-change: transform;
  border: 2px solid;
}

.coverage-card:hover {
  box-shadow: 0 35px 90px rgba(0,0,0,0.12);
}

/* Card Colors */
.coverage-card.purple { background: #f7f2ff; border-color: #ddd9e5;}
.coverage-card.green  { background: #f3ffe9; border-color: #bdeccf;}
.coverage-card.blue   { background: #f1f7ff; border-color: #dae2ff;}

/* Icons */
.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    background: conic-gradient(from 0deg, #d9e3ffd1, #ffffff, #ffffff, #d5dff9d1);
    animation: spin 6s linear infinite, pulse 1.6s ease-in-out infinite;
    border: 1px solid #ffffff;
}

/* CTA Buttons */
.purple-btn { background: radial-gradient(circle at 20% 30%, #d29ee5 0%, #b487d8 40%, #6e2777 70%), linear-gradient(120deg, #4366B1, #ec5bff, #5d0d7a) !important; border-color: #ddd9e5;}
.green-btn  { background: radial-gradient(circle at 20% 30%, #59b8ab 0%, #87d8c0 40%, #27774e 70%), linear-gradient(120deg, #43b16c, #3cfea1, #0d7a52) !important; border-color: #bdeccf;}
.blue-btn  { background: radial-gradient(circle at 20% 30%, #5980b8 0%, #87cfd8 40%, #274d77 70%), linear-gradient(120deg, #0d6efd, #3c9afe, #0d5a7a) !important; border-color: #dae2ff;}
 

/* ================= SCROLL LOAD ANIMATION ================= */

.scroll-card {
  opacity: 0;
  filter: blur(8px);

  /* SAFE transform variables */
  --y: 90px;
  --scale: 0.94;
  --rx: 0deg;
  --ry: 0deg;

  transform:
    translateY(var(--y))
    scale(var(--scale))
    rotateX(var(--rx))
    rotateY(var(--ry));

  transition:
    opacity 0.9s ease,
    filter 1s ease,
    transform 1.2s cubic-bezier(.22,1,.36,1);
}

.scroll-card.active {
  opacity: 1;
  filter: blur(0);
  --y: 0px;
  --scale: 1;
}

/* Stagger delay */
.scroll-card.active[data-index="1"] { transition-delay: 0.1s; }
.scroll-card.active[data-index="2"] { transition-delay: 0.3s; }
.scroll-card.active[data-index="3"] { transition-delay: 0.5s; }






/* ================= EXPERIENCE SECTION ================= */

.experience-section {
  background: #fff;
  overflow: hidden;
}

/* Circle */
.doctor-bg-circle {
  position: absolute;
  width: 420px;
  height: 420px;
  background: #d6e6ff;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}





.image-wrap {
  position: relative;
  width: 320px; /* adjust to image */
  height: 320px;
  margin: auto;
}

.image-wrap img {
  position: relative;
  z-index: 3;
  width: 100%;
  height: auto;
}

/* MAIN ENERGY CIRCLE */
/* CORE CONTAINER */
.energy-circle {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;

  background:
    conic-gradient(
      from 0deg,
      #d9e3ffd1,
      #ffffff,
      #b8c9ff,
      #d9e3ffd1
    );

  animation:
    spin 6s linear infinite,
    pulse 2.6s ease-in-out infinite;
}

/* LAYER 1 — INNER RADIANT CORE */
.energy-circle::before {
  content: "";
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgb(241 242 246 / 20%),
      #d9e3ffd1 70%
    );
  filter: blur(6px);
  animation: corePulse 2.2s ease-in-out infinite;
}

/* LAYER 2 — ELECTRIC HALO */
.energy-circle::after {
  content: "";
  position: absolute;
  inset: -18%;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(255,255,255,0.65),
      transparent 72%
    );
  filter: blur(42px);
  animation: haloPulse 3.4s ease-in-out infinite;
}

/* EXTRA LAYERS */
.energy-circle .ring,
.energy-circle .ring-2 {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.65);
  animation: ripple 1.9s ease-out infinite;
}

.energy-circle .ring-2 {
  inset: 22%;
  animation-delay: 0.9s;
}

/* ANIMATIONS */
@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

@keyframes corePulse {
  0%,100% { transform: scale(0.95); }
  50% { transform: scale(1.08); }
}

@keyframes haloPulse {
  0%,100% { opacity: 0.4; }
  50% { opacity: 0.85; }
}

@keyframes ripple {
  0% {
    transform: scale(0.8);
    opacity: 0.9;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}




/* Wrapper */
.doctor-wrapper {
  position: relative;
  max-width: 480px;
  margin: auto;
}

/* Doctor */
.doctor-img {
  position: relative;
  z-index: 1;
  max-width: 100%;
}

/* Review Card */
.review-card {
  position: absolute;
  right: -30px;
  bottom: 90px;
  background: #fff;
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  gap: 10px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  z-index: 2;
}

/* Content */
 


/* ================= SCROLL LOAD ================= */

/* ================= INTENSE SCROLL LOAD ================= */

.scroll-reveal {
  opacity: 0;
  filter: blur(12px);

  --y: 120px;
  --r: -3deg;

  transform:
    translateY(var(--y))
    rotate(var(--r))
    scale(0.92);

  transition:
    opacity 1.2s ease,
    filter 1.2s ease,
    transform 1.4s cubic-bezier(.16,1,.3,1);
}

.scroll-reveal.active {
  opacity: 1;
  filter: blur(0);

  --y: 0px;
  --r: 0deg;

  transform:
    translateY(0)
    rotate(0deg)
    scale(1);
}



/* ================= insurance-section ================= */
.insurance-section {
  padding: 120px 0;
  min-height: 100vh;
  background: #fff;
  overflow: hidden;
}

.title {
  font-size: 42px;
  font-weight: 700;
  color: #0a1f44;
}

.desc {
  color: #6b7a99;
  margin: 20px 0 30px;
}

/* SOLAR SYSTEM */
.solar-system {
  position: relative;
  width: 500px;
  height: 500px;
  margin: auto;
}

/* SUN */
.sun {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgb(109 143 232 / 82%), #00000000 70%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.sun img {
  width: 70px;
  z-index: 2;
}

.sun .glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(109,143,232,.7), transparent 70%);
  animation: glow 3s infinite;
  border-radius: 50%;
}

/* ORBITS */
.orbit {
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 50%;
  border: 2px dashed rgba(109,143,232,0.4);
  opacity: 0;
}

/* ORBIT SIZES */
.orbit-1 { width: 260px; height: 260px; }
.orbit-2 { width: 360px; height: 360px; }
.orbit-3 { width: 460px; height: 460px; }

/* PLANET */
.planet {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}

.planet img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

/* ACTIVE STATE */
.orbit.active {
  opacity: 1;
  animation: spin 20s linear infinite;
}

.orbit-2.active { animation-duration: 30s; }
.orbit-3.active { animation-duration: 40s; }

/* ANIMATIONS */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes glow {
  0%,100% { transform: scale(1); opacity: .6; }
  50% { transform: scale(1.15); opacity: 1; }
}
/* INITIAL HIDDEN STATE */
.reveal {
  opacity: 0;
  transform: translateY(40px);
}

/* ACTIVE STATE */
.reveal.active {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.9s cubic-bezier(.19,1,.22,1);
}

/* STAGGERING */
.title-reveal.active {
  transition-delay: 0.1s;
}

.desc-reveal.active {
  transition-delay: 0.25s;
}

.cta-reveal.active {
  transition-delay: 0.4s;
}



/* Shimmer effect */
.cta-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.5),
    transparent
  );
  transition: left 0.8s ease;
}

.cta-btn:hover::after {
  left: 120%;
}

/* Subtle pulse */
.cta-btn.active {
  animation: ctaPulse 2.5s infinite;
}

@keyframes ctaPulse {
  0% { box-shadow: 0 0 0 0 rgba(13,110,253,.4); }
  70% { box-shadow: 0 0 0 14px rgba(13,110,253,0); }
  100% { box-shadow: 0 0 0 0 rgba(13,110,253,0); }
}




/* ================= FAQ-section ================= */

.faq-section {
  padding: 20px 0;
  background: #f6f9ff;
  border-radius: 40px;
}

/* Title */
.faq-title {
  text-align: center;
  font-size: 44px;
  font-weight: 700;
  color: #0a1f44;
}

/* Cards */
.faq-card {
  background: #fbfcff;
  padding: 40px;
  border-radius: 24px;
  position: relative;
  height: 100%;
  transition: all 0.45s cubic-bezier(.19,1,.22,1);
  border: 2px solid #ffffff;
}

/* Text */
.faq-card h4 {
  font-weight: 700; 
  margin-bottom: 14px;
}

.faq-card p { 
  line-height: 1.6;
}

/* Number badge */
.faq-number {
    position: absolute;
    left: -10px;
    top: -10px;
    width: 54px;
    height: 54px;
    background: radial-gradient(circle at 20% 30%, #9eb0e5 0%, #4366B1 40%, #5b7cff 70%), linear-gradient(120deg, #4366B1, #5b7cff, #27407f);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 15px 40px rgba(36, 91, 255, 0.35);
    transform: scale(0);
    transition: transform 0.4s ease;
}

/* Hover interactions */
.faq-card:hover {
  transform: translateY(-12px);
  background: #ffffff;
  box-shadow: 0 30px 80px rgba(0,0,0,0.08);
}

.faq-card:hover .faq-number {
  transform: scale(1.05) rotate(8deg);
}

.faq-card:hover h4 {
  transform: translateX(4px);
  transition: transform 0.3s ease;
}

/* Scroll reveal base */
.reveal {
  opacity: 0;
  transform: translateY(40px);
}

/* When visible */
.reveal.active {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.9s cubic-bezier(.19,1,.22,1);
}

/* Stagger delays */
.delay-1.active { transition-delay: 0.15s; }
.delay-2.active { transition-delay: 0.3s; }
.delay-3.active { transition-delay: 0.45s; }
.delay-4.active { transition-delay: 0.6s; }

/* Number pop */
.reveal.active .faq-number {
  animation: pop 0.6s cubic-bezier(.19,1,.22,1) forwards;
  animation-delay: 0.45s;
  animation: spin 6s linear infinite, pulse 1.6s ease-in-out infinite;
}

@keyframes pop {
  0% { transform: scale(0); }
  80% { transform: scale(1.1); }
  100% { transform: scale(1); }
}









/* ================= FAst apply-section ================= */


.fast-apply-section {
  position: relative;
  margin: 120px auto;
  padding: 100px 40px;
  max-width: 100%;
  border-radius: 48px;
  background: linear-gradient(180deg, #263f78 0%, #778cb9 70%, #ffffff 100%);
  overflow: hidden;
  text-align: center;
}

/* TEXT */
.fast-apply-section h2 {
  font-size: 42px;
  color: #fff;
}

.fast-apply-section p {
    max-width: 700px;
    margin: 20px auto 0;
    color: #ffffff;
    font-size: 20px;
    font-weight: 900;
}

/* CTA */
.cta-btn {
  margin-top: 40px;
  padding: 16px 42px;
  border-radius: 50px;
  background:radial-gradient(circle at 20% 30%, #9eb0e5 0%, #4366B1 40%, #5b7cff 70%), linear-gradient(120deg, #4366B1, #5b7cff, #27407f);
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 15px 40px rgba(0,0,0,.25);
  transition: all .4s ease;
   position: relative;
  overflow: hidden;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.cta-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 25px 60px rgba(0,0,0,.35);
}

/* FLOATING WORDS */
.floating-words span {
  position: absolute;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    pointer-events: none;
    animation: floatUp linear infinite;
    will-change: transform;
    background: rgb(255 255 255 / 10%);
    padding: 2px 8px;
    border: 1px solid rgb(255 255 255 / 20%);
    border-radius: 34px;
}

/* RANDOM POSITIONS + SPEEDS */
.floating-words span:nth-child(1)  { left: 8%;  top: 80%; animation-duration: 10s; }
.floating-words span:nth-child(2)  { left: 18%; top: 60%; animation-duration: 12s; }
.floating-words span:nth-child(3)  { left: 28%; top: 75%; animation-duration: 9s; }
.floating-words span:nth-child(4)  { left: 38%; top: 65%; animation-duration: 11s; }
.floating-words span:nth-child(5)  { left: 48%; top: 85%; animation-duration: 13s; }
.floating-words span:nth-child(6)  { left: 58%; top: 70%; animation-duration: 10s; }
.floating-words span:nth-child(7)  { left: 68%; top: 90%; animation-duration: 14s; }
.floating-words span:nth-child(8)  { left: 78%; top: 60%; animation-duration: 9s; }
.floating-words span:nth-child(9)  { left: 88%; top: 75%; animation-duration: 12s; }
.floating-words span:nth-child(10) { left: 22%; top: 88%; animation-duration: 11s; }
.floating-words span:nth-child(11) { left: 52%; top: 92%; animation-duration: 10s; }
.floating-words span:nth-child(12) { left: 72%; top: 85%; animation-duration: 13s; }

@keyframes floatUp {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  10% { opacity: 1; }
  100% {
    transform: translateY(-160px);
    opacity: 0;
  }
}





 /********************************Why Docshield*****************************/
 
 /* =========================
DOCSHIELD SECTION STYLES
========================= */

.docshield-section {
  background: radial-gradient(circle at top, #1a2340, #0b1020);
  color: #e8edff;
}

/* HERO MEDIA */
.hero-media {
  position: relative;
  max-width: 900px;
  margin: auto;
}

.hero-media img {
  border-radius: 24px;
}

.play-btn {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.play-btn span {
  width: 70px;
  height: 70px;
  background: white;
  border-radius: 50%;
  position: relative;
}

.play-btn span::after {
  content: "";
  position: absolute;
  left: 28px;
  top: 22px;
  border-left: 16px solid #1a2340;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

/* HERO TEXT */
.hero-title {
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
}

.hero-title span {
  color: #9bb4ff;
}

.hero-description {
  max-width: 900px;
  margin: 20px auto 0;
  opacity: 0.85;
}

/* BENEFITS */
.section-title {
  font-weight: 600;
}
 

/* SCROLL REVEAL */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s ease;
}

.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
FLATLAY HERO MEDIA
========================= */

.hero-media-flat {
  position: relative;
  max-width: 980px;
  width: 100%;
  margin: 100px auto;
  border-radius: 28px;
  overflow: hidden;
  background: #f5f6f8;

  /* Height control */
  aspect-ratio: 16 / 9;

  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

/* VIDEO — FULL COVER */
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 🔥 THIS IS THE KEY */
  display: block;
  border-radius: 28px;
}


/* =========================
PLAY BUTTON (CENTERED)
========================= */

.flat-play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;

  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.25),
    inset 0 0 0 1px rgba(0, 0, 0, 0.04);

  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.flat-play-btn:hover {
  transform: scale(1.06);
  box-shadow:
    0 28px 55px rgba(0, 0, 0, 0.3),
    inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.flat-play-btn .triangle {
  width: 0;
  height: 0;
  border-left: 18px solid #e53935;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 4px;
}

/* =========================
SCROLL REVEAL (matches image elegance)
========================= */

.reveal-up {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.docshield-section .coverage-card {
    background-color: rgb(255 255 255 / 10%);
    border-color: rgb(255 255 255 / 10%);
	padding: 24px
}
.docshield-section .coverage-card .icon-circle {
    background: conic-gradient(from 258deg, #5779f4, #8098d4, #cdd9fe, #5a7bf1);
    border-color: rgb(255 255 255 / 41%);
}
.docshield-section .coverage-card .icon-circle i {
    color: #131a30;
}



/* =========================
WHY DOCSHIELD SECTION
========================= */

.why-docshield-section {
   
}

/* Title */
.why-title {
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  font-weight: 700;
  color: #0f172a;
}

/* Bullet points */
.why-point {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

/* Green check icon */
.check-icon {
  min-width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #84cc16;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  display: grid;
  place-items: center;
  margin-top: 4px;
}

/* Image */
.why-image-wrapper { 
  overflow: hidden; 
  transition: transform 0.6s ease;
}

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

/* Subtle hover lift */
.why-image-wrapper:hover {
  transform: translateY(-6px);
}

 
 
 /* STAGE */
.shield-stage {
  position: relative;
  width: 440px;
  height: 440px;
  margin: 20px auto;
  display: grid;
  place-items: center;
}

/* SHIELD */
.shield-core {
  width: 200px;
  z-index: 4;
  filter:
    drop-shadow(0 0 40px rgba(0, 200, 255, 0.6))
    drop-shadow(0 0 90px rgba(0, 160, 255, 0.35));
  animation: shieldBreath 4.5s ease-in-out infinite;
}

/* GLOW HALO */
.shield-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(0,220,255,0.25), transparent 65%);
  filter: blur(22px);
  z-index: 1;
}

/* ENERGY ARCS */
.orbits {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.arc {
    border: 2px solid transparent;
    border-top-color: rgb(3 107 138 / 64%);
    border-right-color: rgb(0 15 24 / 55%);
    filter: drop-shadow(0 0 14px rgba(0, 220, 255, 0.7));
    border-left-color: rgb(3 107 138 / 64%);
    border-bottom-color: rgb(0 15 24 / 55%);
}

/* DIFFERENT DEPTHS */
.arc-1 {
  width: 380px;
  height: 380px;
  transform: rotateX(65deg);
  animation: spin 6s linear infinite;
}

.arc-2 {
  width: 330px;
  height: 330px;
  transform: rotateX(75deg);
  animation: spinReverse 8s linear infinite;
}

.arc-3 {
  width: 280px;
  height: 280px;
  transform: rotateX(60deg);
  animation: spin 12s linear infinite;
}

/* CANVAS */
#sparkCanvas {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

/* MOTION */
@keyframes spin {
  from { transform: rotateX(65deg) rotateZ(0deg); }
  to   { transform: rotateX(65deg) rotateZ(360deg); }
}

@keyframes spinReverse {
  from { transform: rotateX(75deg) rotateZ(360deg); }
  to   { transform: rotateX(75deg) rotateZ(0deg); }
}

@keyframes shieldBreath {
  0%,100% {
    filter: drop-shadow(0 0 35px rgba(0,200,255,.5));
  }
  50% {
    filter: drop-shadow(0 0 70px rgba(0,220,255,.9));
  }
}
 

 
 
 
/* ================= CONTACT SECTION STYLES ================= */

.contact-section {
  background: radial-gradient(circle at top, #0c1022, #02030a);
}

/* Wrapper animation */
.contact-wrapper {
  background: #fff;
  border-radius: 18px;
  transform: translateY(60px);
  opacity: 0;
  transition: all 0.9s ease;
}

.contact-wrapper.visible {
  transform: translateY(0);
  opacity: 1;
}

/* LEFT PANEL */
.contact-info {
  background: linear-gradient(145deg, #4568b8, #24336d, #0a3bff, #6f8cff);
  color: #fff;
  position: relative;
}

.contact-info h2 {
  font-weight: 700;
}

.contact-list {
  list-style: none;
  padding: 0;
}

.contact-list li {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  font-size: 15px;
}

.contact-list i {
  font-size: 20px;
  opacity: 0.9;
}

/* Social icons */
.social-icons i {
  font-size: 22px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.social-icons i:hover {
  transform: translateY(-4px) scale(1.1);
}

/* FORM */
 
.form-control {
    border-radius: 5px;
    padding: 6px 10px;
}
label.form-label {
    font-weight: 600;
}



/* ================= SOCIAL CIRCLE ICONS ================= */
.social-circle-icons {
  display: inline-flex;
  gap: 18px;
}


.social-circle-icons a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b2b66;
  font-size: 18px;
  transition: all 0.35s ease;
  backdrop-filter: blur(6px);
}

.social-circle-icons a:hover {
  background: #fff;
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}



/* ================= LEFT PANEL EFFECTS ================= */

.contact-info {
  position: relative;
  overflow: hidden;
}

/* Animated shimmer */
.contact-info::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255,255,255,0.18) 45%,
    transparent 60%
  );
  animation: shimmer 8s linear infinite;
}

/* Orbs container */
.contact-bg-effects {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Glow orbs */
.orb {
  position: absolute;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255,255,255,0.35), transparent 70%);
  filter: blur(30px);
  opacity: 0.7;
  animation: floatOrb 12s ease-in-out infinite;
}

.orb-1 {
  top: -60px;
  left: -60px;
}

.orb-2 {
  bottom: 10%;
  right: -80px;
  animation-delay: 3s;
}

.orb-3 {
  top: 40%;
  left: 30%;
  width: 160px;
  height: 160px;
  animation-delay: 6s;
}

/* Hover depth */
.contact-info:hover {
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.2);
}

/* Keyframes */
@keyframes shimmer {
  from { transform: translateX(-50%) rotate(25deg); }
  to { transform: translateX(50%) rotate(25deg); }
}

@keyframes floatOrb {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.1); }
}

.contact-info > *:not(.contact-bg-effects) {
  position: relative;
  z-index: 2;
}


 
@keyframes spin {
  to { transform: rotate(360deg); }
}



/**************timeline********************/


/* Parent behaves like sibling sections */
.timeline-wrapper {
  width: 100%;
  height: 100%;
}

/* Takes height from sibling layout */
.timeline-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 500px; /* safety fallback */
  display: flex;
  justify-content: center;
}

/* SVG scales with container */
.timeline-svg {
  width: 100%;
  max-width: 360px;
  height: 100%;
  overflow: visible;
}
 
.professional-container,
.why-image-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Image must fill wrapper */
.why-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

/* Image glow + premium feel */
.timeline-svg image {
  filter:
  drop-shadow(0 0 12px rgba(67, 102, 177, 0.90))  
  drop-shadow(0 0 36px rgba(39, 64, 127, 0.70))  
  drop-shadow(0 0 72px rgba(91, 124, 255, 0.70))
}

/* 📱 Mobile optimization */
@media (max-width: 768px) {
  .timeline-svg {
    max-width: 260px;
  }

  .timeline-svg image {
    width: 64px;
    height: 64px;
  }
}


@media (max-width: 991px) {
  .why-image-wrapper {
    margin-top: 32px;
    height: auto;
  }
}

/* SNAKE PATH */
#snakePath {
  fill: none;
  stroke: url(#snakeFlow);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 6 14;
  stroke-dashoffset: 0;

  filter:
    drop-shadow(0 0 6px rgba(79,124,255,.6))
    drop-shadow(0 0 18px rgba(91,124,255,.45));

  animation: snakeIdle 18s linear infinite;
  will-change: stroke-dashoffset;
}

/* CONTINUOUS MOTION */
@keyframes snakeIdle {
  from { stroke-dashoffset: 0; }
  to   { stroke-dashoffset: -1000; }
}

/* NODE */
.node {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity .8s ease;
}

/* REVEAL */
.node.active {
  opacity: 1;
}

/* IMAGE */
.node-image {
  width: 96px;
  height: 96px;
  object-fit: contain;
  border-radius: 20px;
  transition: transform .5s ease;
}

/* ALIVE ANIMATION */
@keyframes breathe {
  0%,100% { transform: scale(1) translateY(0); }
  50% { transform: scale(1.06) translateY(-6px); }
}

@keyframes glowPulse {
  0%,100% { box-shadow: 0 0 18px rgba(91,124,255,.35); }
  50% { box-shadow: 0 0 36px rgba(91,124,255,.75); }
}


.planet img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
}






/* ================= WHO ITS FOR ================= */

.who-its-for {
  background: linear-gradient(135deg, #2f3b54, #26324a);
  padding: 120px 20px;
  color: #ffffff;
}

.typing-title {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
  min-height: 52px;
}

.typing-text {
  font-size: 26px;
  font-weight: 400;
  line-height: 1.6;
  max-width: 1000px;
  margin: 0 auto;
  opacity: 0.95;
  min-height: 80px;
}

/* Blinking cursor */
.typing-title::after,
.typing-text::after {
  content: "|";
  margin-left: 6px;
  animation: blink 1s infinite;
  opacity: 0.7;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}

/* Responsive */
@media (max-width: 768px) {
  .typing-title {
    font-size: 30px;
  }
  .typing-text {
    font-size: 18px;
  }
}




.coverage-section {
  padding: 30px 0px;
  background: #ffffff;
  font-family: system-ui, -apple-system, sans-serif;
}

.coverage-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.coverage-left h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 32px;
  color: #111;
}

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

.coverage-list li {
  display: flex;
  gap: 16px;
  margin-bottom: 10px;
}

.tick {
  width: 28px;
  height: 28px;
  background: #4f75ff;
  color: #fff;
  border-radius: 50%;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.coverage-list strong {
  font-size: 18px;
  color: #111;
}

.coverage-list p {
  margin: 0spx 0 0;
  color: #555;
  font-size: 16px;
  line-height: 1.5;
}

/* RIGHT */
.coverage-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.coverage-right img {
  position: relative;
  z-index: 2;
  max-width: 100%;
}

/* Blue abstract shape */
.blob {
  position: absolute;
  width: 420px;
  height: 420px;
  background: #4f75ff;
  border-radius: 60% 40% 50% 50%;
  z-index: 1;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .coverage-container {
    grid-template-columns: 1fr;
  }

  .coverage-right {
    margin-top: 60px;
  }

  .blob {
    width: 320px;
    height: 320px;
  }
}




/**************who we serve********************/


.who-we-serve {
  background: linear-gradient(180deg, #2e3b55, #27344b);
}

.section-title {
  color: #d4e4ff;
  font-size: 42px;
  font-weight: 700;
}
.section-title2 {
  color: #d4e4ff;
  font-size: 30px;
  font-weight: 700;
}
.serve-card {
  background: #394761;
  border-radius: 14px;
  padding: 40px 30px;
  height: 100%;
  text-align: left;
  border-top: 4px solid #4f6bff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.serve-card h3 {
  font-size: 28px;
  font-weight: 700;
  color: #d4e4ff;
  margin-bottom: 12px;
}

.serve-card p {
  font-size: 16px;
  color: #d4e4ff;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }

  .serve-card h3 {
    font-size: 22px;
  }
}





/**************team********************/

/* ==========================
SECTION BASE
========================== */
.leadership-wrap {
  position: relative;
  padding: 100px 0 0px;
  overflow: hidden;
  background: #0a1022;
  color: #e4ebff;
}

/* ==========================
TOP WAVE (NO CUTTING)
========================== */
.top-wave {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 4;
}

.top-wave svg {
  width: 100%;
  height: 100%;
}

.top-wave path {
  fill: #f8fbff; /* matches previous section bg */
}

/* ==========================
BACKGROUND MOTION LAYERS
========================== */
.bg-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Gradient drift */
.gradient-flow {
  background: radial-gradient(circle at 20% 30%, #2b3a7c, #0a1022 70%);
  animation: gradientMove 18s ease-in-out infinite alternate;
}

/* Floating light blobs */
.blob {
    border-radius: 4%;
    filter: blur(20px);
    opacity: 0.5;
    animation: blobFloat 4s ease-in-out infinite;
    border: 70px solid #3354a1;
}

.blob-1 {
  width: 420px;
  height: 420px;
  background: #5b7cff;
  top: 20%;
  left: -10%;
}

.blob-2 {
  width: 520px;
  height: 520px;
  background: #4366b1;
  bottom: 10%;
  right: -15%;
  animation-delay: -6s;
}

.blob-3 {
  width: 300px;
  height: 300px;
  background: #9eb0e5;
  top: 55%;
  left: 60%;
  animation-delay: -12s;
}

/* ==========================
CONTENT
========================== */
.container {
  position: relative;
  z-index: 3;
}

.section-head h2 {
  font-size: 2.6rem;
  font-weight: 700;
}

.section-head p {
  max-width: 760px;
  margin: 16px auto 0;
  opacity: 0.85;
}

.expertise {
  max-width: 820px;
  margin: 60px auto 0;
  line-height: 1.8;
  opacity: 0.9;
}

/* ==========================
ANIMATIONS
========================== */
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

@keyframes blobFloat {
  0%,100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-80px) translateX(60px); }
}

/* ==========================
TOP WAVE (ANIMATED)
========================== */
.top-wave2 {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 120px;
  overflow: hidden;
  z-index: 4;
}

.top-wave2 svg {
  width: 200%;
  height: 100%;
}

/* Base wave style */
.wave2 {
  fill: #f7fafe;
}

/* Front wave – slower */
.wave2-1 {
  animation: waveSlide 8s linear infinite;
  opacity: 1;
}

/* Back wave – faster & softer */
.wave2-2 {
  animation: waveSlideReverse 4s linear infinite;
  opacity: 0.6;
}

/* ==========================
KEYFRAMES
========================== */
@keyframes waveSlide {
  from { transform: translateX(0); }
  to { transform: translateX(-25%); }
}

@keyframes waveSlideReverse {
  from { transform: translateX(-25%); }
  to { transform: translateX(0); }
}


/* =========================
ADVISOR SECTION
========================= */
.advisor-section {
  padding: 80px 0;
  background: #0b0f14;
}

/* =========================
ADVISOR CARD
========================= */
.advisor-card {
    display: flex;
    gap: 28px;
    background: radial-gradient(circle at 20% 30%, #2b3a7c, #0a1022 70%);
    border-radius: 16px;
    padding: 26px;
    margin-bottom: 28px;
    box-shadow: 0 10px 30px rgb(0 0 0 / 15%);
    border: 2px solid rgb(255 255 255 / 10%);
}

/* Image */
.advisor-img img {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  object-fit: cover;
}

/* Content */
.advisor-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ebfffe;
  margin-bottom: 8px;
}

.advisor-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #ebfffe;
  margin: 0;
}

/* =========================
RESPONSIVE
========================= */
@media (max-width: 768px) {
  .advisor-card {
    flex-direction: column;
    text-align: left;
  }

  .advisor-img img {
    width: 100px;
    height: 100px;
  }
}
li.bigger {
    font-size: 20px;
    font-weight: bold;
	font-style: italic;
}


.expertise li {
    margin-bottom: 0;
}







/****************************************Medical practionioner liablity ******************************/

/* List Reset */
.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* List Item */
.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 2px;
}

/* Check Icon */
.check-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: #4c78ff;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 0 20px rgba(76,120,255,0.45);
}
 
 
 
 .who-for-section {
  min-height: 60vh;
  background: linear-gradient(135deg, #2f3b55, #27324a);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  text-align: center;
  color: #fff;
}

.who-for-section h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.who-for-section p {
  font-size: 22px;
  max-width: 900px;
  line-height: 1.6;
  opacity: 0.9;
}

.cursor::after {
  content: "|";
  margin-left: 4px;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}


 /* ===== Section Wrapper ===== */
.premium-section {
  position: relative;
  padding: 20px;
  border-radius: 28px;
  overflow: hidden;
  color: #fff;
}

/* ===== Background Base ===== */
.water-bg {
  background:
    radial-gradient(circle at 20% 30%, #1b2a4a 0%, #0b1220 60%),
    linear-gradient(120deg, #0b1220, #132042, #0b1220);
}

/* ===== Moving Water Light ===== */
.water-overlay {
  position: absolute;
  inset: -50%;
  background:
    repeating-radial-gradient(
      circle,
      rgba(140,170,255,0.06) 0px,
      rgba(140,170,255,0.02) 2px,
      transparent 4px
    );
  animation: waterFlow 32s linear infinite;
  filter: blur(1px);
  opacity: 0.7;
}

/* ===== Sparkles ===== */
.sparkles {
  position: absolute;
  inset: 0;
  background-image:radial-gradient(circle, rgba(255, 255, 255, 0.7) 1px, transparent 3px), radial-gradient(circle, rgba(120, 160, 255, 0.6) 3px, transparent 8px);
  background-size: 160px 160px, 260px 260px;
  animation: sparkleFloat 20s linear infinite;
  opacity: 0.25;
  pointer-events: none;
}

/* ===== Animations ===== */
@keyframes waterFlow {
  0% { transform: translate(-10%, -10%) rotate(0deg); }
  50% { transform: translate(6%, 6%) rotate(180deg); }
  100% { transform: translate(-10%, -10%) rotate(360deg); }
}

@keyframes sparkleFloat {
  0% { background-position: 0 0, 0 0; opacity: 0.15; }
  50% { background-position: 300px 400px, -400px 300px; opacity: 0.35; }
  100% { background-position: 600px 800px, -800px 600px; opacity: 0.15; }
}

/* ===== Content ===== */
.content {
  position: relative;
  z-index: 2;
}



/* ===== Timeline ===== */
.timeline {
  position: relative;
  max-width: 900px;
}

.timeline-item {
  position: relative;
  display: flex;
  gap: 14px;
  padding-bottom: 2px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

/* dots */
.dot {
  min-width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #6d5cff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 0 25px rgba(109,92,255,.6);
}

.dot.light {
  background: #ffffff;
  color: #0b1220;
  box-shadow: 0 0 20px rgba(255,255,255,.5);
}

/* lines */
.line {
  position: absolute;
  left: 17px;
  top: 30px;
  width: 2px;
  height: 100%;
  background: linear-gradient(#6d5cff, transparent);
}

.line.dashed {
  background: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,.4),
    rgba(255,255,255,.4) 6px,
    transparent 6px,
    transparent 12px
  );
}

/* content */
.timeline-content h4 {
  font-size: 26px;
  margin-bottom: 10px;
}

.timeline-content p {
  font-size: 15px;
  line-height: 1.2;
  color: #cbd5f5;
}





/*************legal service*******************/

.legal-services-section { 
  padding: 100px 0; 
}

 
/* IMAGE GRID */
.image-stack {
  position: relative;
  height: 520px;
}

.image-stack .card {
  position: absolute;
  width: 230px;
  height: 280px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 40px 90px rgba(0,0,0,.55);
  will-change: transform;
}

/* Placement (matches screenshot asymmetry) */
.c1 { top: 0; left: 40px; animation: drift1 32s ease-in-out infinite; }
.c2 { top: 110px; left: 260px; animation: drift2 38s ease-in-out infinite; }
.c3 { top: 270px; left: 10px; animation: drift3 34s ease-in-out infinite; }
.c4 { top: 350px; left: 240px; animation: drift4 42s ease-in-out infinite; }

/* REAL premium motion — barely noticeable */
@keyframes drift1 {
  0%,100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-6px) scale(1.01); }
}

@keyframes drift2 {
  0%,100% { transform: translateX(0) scale(1); }
  50% { transform: translateX(6px) scale(1.015); }
}

@keyframes drift3 {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

@keyframes drift4 {
  0%,100% { transform: translateX(0); }
  50% { transform: translateX(-5px); }
}


/* FLOATING ANIMATION */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-16px); }
  100% { transform: translateY(0px); }
}
.image-stack .card {
  opacity: 0;
  transform: translateY(40px) scale(.96);
  transition: all 1.4s cubic-bezier(.2,.8,.2,1);
}

.image-stack.reveal .card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

 
 

/* SERVICE ITEMS */
.service-item {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(40px);
  transition: all .8s ease;
}

.service-item.show {
  opacity: 1;
  transform: translateY(0);
}

/* ICON BOX */
.icon-box {
    min-width: 54px;
    height: 54px;
    border-radius: 51px;
    background: radial-gradient(circle at 20% 30%, #9eb0e5 0%, #4366B1 40%, #5b7cff 70%), linear-gradient(120deg, #4366B1, #5b7cff, #27407f);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    box-shadow: 0 0 20px rgba(91, 124, 255, .6), inset 0 0 10px rgba(255, 255, 255, .2);
}
 



/* SECTION BACKGROUND */
/* SECTION */
.why-section {
  background: linear-gradient(180deg, #2f3b52, #2a354a);
  padding: 100px 80px;
  font-family: system-ui, -apple-system, Segoe UI, sans-serif;
  color: #fff;
}

.content-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* LEFT CARD */
.cover-card {
  position: relative;
  padding: 48px;
  border-radius: 22px;
  background: #192030;
  border: 1px solid rgba(91,124,255,.35);
  box-shadow: 0 40px 100px rgba(0,0,0,.55);
  overflow: hidden;
}

/* TEXT */
.cover-card h3,
.cover-card p {
  position: relative;
  z-index: 5;
}

.cover-card h3 {
  font-size: 36px;
  margin-bottom: 20px;
}

.cover-card p {
  font-size: 22px;
  line-height: 1.5;
  color: #e5ebff;
}

/* RIGHT */
.why-content h2 {
  font-size: 48px;
  margin-bottom: 20px;
}

.why-content p {
  font-size: 20px;
  line-height: 1.6;
  color: #d6dcff;
}

/* ============================= */
/* WATER LAYERS                  */
/* ============================= */

/* Deep water base */
.water-base {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(120,150,255,.25), transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(90,130,255,.2), transparent 45%);
  z-index: 1;
}

/* Moving waves */
.water-waves {
  position: absolute;
  inset: -40%;
  background:
    repeating-linear-gradient(
      120deg,
      rgba(255,255,255,.05) 0px,
      rgba(255,255,255,.03) 20px,
      rgba(255,255,255,0) 60px
    );
  opacity: .35;
  filter: blur(30px);
  animation: waveMove 35s linear infinite;
  z-index: 2;
}

@keyframes waveMove {
  from { transform: translateX(-10%) translateY(-5%); }
  to   { transform: translateX(10%) translateY(5%); }
}

/* Sparkling caustics */
.water-sparkles {
  position: absolute;
  inset: -50%;
  background:
    radial-gradient(circle, rgba(255,255,255,.5) 2%, transparent 6%);
  background-size: 120px 120px;
  mix-blend-mode: overlay;
  animation: sparkleDrift 5s ease-in-out infinite;
  z-index: 3;
}

@keyframes sparkleDrift {
  0%   { transform: translate(0,0); opacity:.4; }
  50%  { transform: translate(-6%,4%); opacity:.7; }
  100% { transform: translate(0,0); opacity:.4; }
}

/* Falling droplets */
.water-drops {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.9) 0%, transparent 60%);
  background-size: 4px 4px;
  animation: dropsFall 6s linear infinite;
  opacity: .25;
  z-index: 4;
}

@keyframes dropsFall {
  from { background-position: 0 -200px; }
  to   { background-position: 0 600px; }
}
/*-------------------------------------------------- pricing--------------------------------------------- */

.pricing-section {
  padding: 80px 20px;
  background: #fff;
  font-family: system-ui, sans-serif;
}

.pricing-title {
  text-align: center;
  font-size: 40px;
  margin-bottom: 50px;
  color: #0f172a;
}

.pricing-table {
  max-width: 1200px;
  margin: auto;
  border: 1px solid #e5ecff;
  border-radius: 14px;
  overflow: hidden;
}

.row-tab {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
}

.row-tab.header {
  background: #f8faff;
}

.cell-tab {
  padding: 10px;
  border-right: 1px solid #e5ecff;
  border-bottom: 1px solid #e5ecff;
  font-size: 14px;
  color: #0f172a;
}

.cell-tab:last-child {
  border-right: none;
}

.feature {
  font-weight: 600;
}

.plan h4 {
  margin-bottom: 14px;
}

.plan button {
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
}

/* CTA */
.pricing-cta {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.pricing-cta button {
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  border: none;
  cursor: pointer;
}

.primary {
  background: #7ea2f2;
  color: #fff;
}

.secondary {
  background: #e8eeff;
  color: #355adf;
}

/* ========================= */
/* MOBILE RESPONSIVE MODE    */
/* ========================= */
@media (max-width: 991px) {
  .pricing-table {
    border: none;
  }

  .row-tab {
    grid-template-columns: 1fr;
    border-bottom: 1px solid #e5ecff;
  }

  .row-tab.header {
    display: none;
  }

  .cell-tab {
    border: none;
    padding: 12px 16px;
  }

  .cell-tab::before {
    content: attr(data-label);
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
    color: #475569;
  }
}




/* ================================ */
/*  COLUMN HOVER — CSS :has()  */
/* ================================ */

@media (min-width: 992px) {

  .pricing-table {
    --col-bg: transparent;
  }

  /* COLUMN 2 */
  .pricing-table:has(.row-tab .cell-tab:nth-child(2):hover) {
    --col-bg: radial-gradient(circle at 20% 30%, #ecf1ff 0%, #edf3ff 40%, #e0e6ff 70%), linear-gradient(120deg, #d9e5ff, #fdfdff, #dce6ff);
  }

  /* COLUMN 3 */
  .pricing-table:has(.row-tab .cell-tab:nth-child(3):hover) {
    --col-bg: radial-gradient(circle at 20% 30%, #ecf1ff 0%, #edf3ff 40%, #e0e6ff 70%), linear-gradient(120deg, #d9e5ff, #fdfdff, #dce6ff);
  }

  /* COLUMN 4 */
  .pricing-table:has(.row-tab .cell-tab:nth-child(4):hover) {
    --col-bg: radial-gradient(circle at 20% 30%, #ecf1ff 0%, #edf3ff 40%, #e0e6ff 70%), linear-gradient(120deg, #d9e5ff, #fdfdff, #dce6ff);
  }

  /* Apply background to the entire hovered column */
  .pricing-table:has(.cell-tab:nth-child(2):hover) .row-tab .cell-tab:nth-child(2),
  .pricing-table:has(.cell-tab:nth-child(3):hover) .row-tab .cell-tab:nth-child(3),
  .pricing-table:has(.cell-tab:nth-child(4):hover) .row-tab .cell-tab:nth-child(4) {
    background: var(--col-bg);
    transform: translateY(-2px);
	font-weight: bold;
  }

  .cell-tab {
    transition: background 0.35s ease, transform 0.35s ease;
  }
}


.leadership-wrap .coverage-card {
    background-color: rgb(255 255 255 / 10%);
    border-color: rgb(255 255 255 / 10%);
    padding: 24px;
}
.leadership-wrap .coverage-card .icon-circle {
    background: conic-gradient(from 248deg, #232839, #0a1022, #4b6dcc, #17213dd1);
    border-color: #3c4255;
}



/*--------------top heading styling -------------------*/

.sparkle-heading {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  position: relative;
  display: inline-block;

  /* Gradient setup */
  background:
    radial-gradient(circle at 20% 30%, #7c93d9 0%, #110d4d 40%, #5b7cff 70%), linear-gradient(120deg, #ffffff, #6278ce, #3858aa);

  background-size: 200% 200%;
  background-position: 0% 50%;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: gradientFlow 3s ease-in-out infinite;
}

/* Sparkle shimmer layer */
.sparkle-heading::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 20%,
    rgba(255, 255, 255, 0.6) 35%,
    transparent 50%
  );
  background-size: 200% 100%;
  animation: sparkleShine 3s linear infinite;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(#fff, #fff);
}

/* Gradient movement */
@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 60%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Sparkle animation */
@keyframes sparkleShine {
  0% {
    background-position: -150% 0;
  }
  100% {
    background-position: 150% 0;
  }
}




/***********************dummmy dashbord image*******************/
 

.dsdash-shell {
  max-width: 1100px;
  height: 560px;
  margin: auto;
  display: flex;
  border-radius: 24px;
  overflow: hidden;

  background: linear-gradient(145deg, #0e2a52, #071b35);
  box-shadow: 0 40px 80px rgba(0,0,0,.45);

  filter: blur(6px);
  opacity: 0.88;
}

/* SIDEBAR */
.dsdash-sidebar {
  width: 84px;
  background: linear-gradient(180deg, #0a2346, #06172f);
  padding: 26px 14px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.dsdash-brand {
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(90deg, #2b6cff, #6ab8ff);
}

.dsdash-nav {
  height: 28px;
  border-radius: 8px;
  background: rgba(255,255,255,.16);
}

/* BODY */
.dsdash-body {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.dsdash-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dsdash-search {
  width: 240px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255,255,255,.15);
}

.dsdash-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5b9dff, #90d4ff);
}

/* KPI */
.dsdash-kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.dsdash-kpi-card {
  height: 92px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(91,157,255,.35), rgba(25,80,160,.4));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}

/* MAIN */
.dsdash-main-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 18px;
  flex: 1;
}

.dsdash-chart-panel {
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(120,180,255,.25), rgba(20,60,120,.4));
}

.dsdash-table-panel {
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dsdash-table-line {
  height: 16px;
  border-radius: 6px;
  background: rgba(255,255,255,.18);
}

 
/* hidden state */
.dsdash-step {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(4px);
}

/* revealed */
.dsdash-step.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(.2,.8,.2,1),
    filter 0.9s ease;
}


/***************************responsive menu*********************************/
/* =========================
   MOBILE HAMBURGER
========================= */
.ds-mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: none;
  background: rgba(91,124,255,0.12);
  cursor: pointer;
  position: relative;
}

.ds-mobile-toggle span,
.ds-mobile-toggle span::before,
.ds-mobile-toggle span::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  background: #5b7cff;
  transform: translateX(-50%);
  transition: 0.3s ease;
}

.ds-mobile-toggle span {
  top: 50%;
}

.ds-mobile-toggle span::before {
  top: -7px;
}

.ds-mobile-toggle span::after {
  top: 7px;
}

/* =========================
   MOBILE MENU
========================= */
@media (max-width: 768px) {

  .top-header {
    position: relative;
    z-index: 9999;
  }

  .header-pill {
    position: relative;
    z-index: 10;
  }

	.ds-mobile-toggle {
        display: block;
        z-index: 20;
        position: fixed;
        right: 0px;
        top: 76px;
    }

  .main-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;

    background: rgba(8,14,34,0.98);
    backdrop-filter: blur(18px);

    border-radius: 20px;
    padding: 20px;

    display: flex;
    flex-direction: column;
    gap: 8px;

    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;

    transition: 0.35s ease;
    z-index: 15;
  }

  .top-header.ds-menu-open .main-menu {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .main-menu a {
    color: rgb(255 255 255 / 100%);
  }
  .main-menu a.active {
    color: #ffffff;
	}
	.main-menu a.active::after {
    width: 6px;
    height: 100%;bottom: 0;
    left: -17px;
	}
	.menu-item .submenu {
        display: block;
        position: unset;
        opacity: 1;
        background: none;
		padding: 0;
    }
	.menu-item .submenu a {
        color: #ffffff;
        opacity: 1;
        position: unset;
        padding: 3px 5px;
        font-size: 14px;
    }
}


.btn-dropdown {
    border: 1px solid #dee2e6;
    width: 100%;
    text-align: left;
}
.login-container {
    max-width: 768px;
}
.initilly-hidden
{
display:none;
}

    .step {
      display: none;
    }
    .step.active {
      display: block;
    }
	
	
	
	
	
/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  h1.main-h1 {
    font-size: 22px;
}

   .hero {
    padding: 20px;
    position: relative;
}


.cta-btn {
    margin-top: 10px;
    padding: 10px;
}
    .stats-bar {
        gap: 6px;
    }
	.coverage-header.py-5 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}
.coverage-card {
    padding: 15px;
}
.section-title2 {
    font-size: 24px;
}
	.orbit-3 {
    width: 300px;
    height: 300px;
}
.orbit-2 {
    width: 250px;
    height: 250px;
}
.orbit-1 {
    width: 200px;
    height: 200px;
}
.insurance-section {
    padding: 20px 0;
    min-height: unset;
}
.solar-system {
    width: 100%;
    height: 400px;
}
.coverage-cards {
    gap: 10px;
}
.fast-apply-section h2 {
    font-size: 25px;
}
.fast-apply-section {
    margin: 30px auto;
    padding: 30px;
}

.fast-apply-section p {
    font-size: 18px;
    font-weight: 400;
}
.faq-title {
    font-size: 25px;
}
section#faq-section .row.g-4.mt-5 {
    margin-top: 12px !important;
}
.faq-card {
    padding: 40px 30px 10px 30px;
}
.contact-info.p-5 {
    padding: 24px !important;
}
.contact-form.p-5 {
    padding: 24px !important;
}
 .logo-track img {
    height: 15px;
 }
 .logo-track {
    gap: 20px;
 }
 .legal-services-section {
    padding: 10px 0;
}
.image-stack .card {
    width: 160px;
    height: 160px;
}
.image-stack .card.c1
{
	left:30px;
	}
.image-stack .card.c2
{
	right:30px;
	left: auto;
	}
.image-stack .card.c3
{
	left:30px;
	}
.image-stack .card.c4
{
	right:30px;
	left: auto;
	}
	.why-section {
    padding: 30px;
}

.content-wrap {
    display: block;
}
.why-content h2 {
    font-size: 25px;
}
.coverage-left h2 {
    font-size: 25px;
    text-align: center;
}
.coverage-left {
    padding: 24px;
}
.pricing-section {
    padding: 20px 20px;
}

}
.pricing-title {
    font-size: 25px;
    margin-bottom: 20px;
}
h1.hero-title {
    font-size: 26px;
}
.leadership-wrap .col-lg-3 {
    margin-bottom: 16px;
}
.icon-box {
    min-width: 40px;
    height: 40px;
	
}
.section-head h2 {
    font-size: 1.6rem;
}
button.cta-btn.active.mx-4 {
    margin: 10px 0px !important;
}
h2.why-title {
    font-size: 25px;
}
}


