.vitavox-section {
    font-family: 'Poppins', sans-serif;
    background-color: #FFFFFF;
    color: #1E293B;
    /* color: #042181; */
  }

  .vitavox-primary {
    color: #0E7490;
  }

  .vitavox-secondary {
    color: #14B8A6;
  }

  .bg-teal-light {
    background-color: #F0FDFA;
  }

  .btn-primary-custom {
    background-color: #0E7490;
    border-color: #0E7490;
    color: #FFFFFF;
    border-radius: 12px;
    padding: 14px 28px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(14, 116, 144, 0.25);
  }

  .btn-primary-custom:hover {
    background-color: #0B5F77;
    border-color: #0B5F77;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 116, 144, 0.35);
    color: #FFFFFF;
  }

  .btn-outline-custom {
    color: #0E7490;
    border-color: #0E7490;
    background-color: transparent;
    border-radius: 12px;
    padding: 14px 28px;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .btn-outline-custom:hover {
    background-color: #F0FDFA;
    color: #0E7490;
    border-color: #0E7490;
    transform: translateY(-2px);
  }

  .feature-card {
    background: #FFFFFF;
    border-radius: 18px;
    padding: 18px 20px;
    box-shadow: 0 10px 30px rgba(14, 116, 144, 0.06);
    border: 1px solid rgba(20, 184, 166, 0.12);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(14, 116, 144, 0.12);
    border-color: #14B8A6;
  }

  .feature-icon-box {
    width: 42px;
    height: 42px;
    background: #F0FDFA;
    color: #0E7490;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
  }

  .feature-card:hover .feature-icon-box {
    background: #0E7490;
    color: #FFFFFF;
  }

  .notice-card {
    background: #FFFBEB;
    border-left: 4px solid #F59E0B;
    border-radius: 16px;
    padding: 20px;
    margin-top : 33px;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.08);
  }
.illustration-container {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 100%;
  min-height: 480px;
  box-shadow: 0 20px 40px rgba(15, 61, 145, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.healthcare-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/images/about-us/6.png'); /* Put your local image path here */
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.healthcare-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 61, 145, 0.05) 0%, rgba(20, 184, 166, 0.1) 100%);
  z-index: 2;
}
.illustration-img-wrapper {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  z-index: 1;
}
.svg-graphic-wrapper svg {
  width: 100%;
  height: auto;
  display: block;
}
.illustration-img-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  box-shadow: 0 15px 35px rgba(15, 61, 145, 0.1);
}


.floating-badge {
  position: absolute;
  background: #FFFFFF;
  padding: 14px 20px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(15, 61, 145, 0.15);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 5;
  border: 1px solid rgba(15, 61, 145, 0.06);
}


/* how it works */

.vitavox-how-it-works {
    font-family: 'Poppins', sans-serif;
    background-color: #FFFFFF;
    color: #1E293B;
    position: relative;
    overflow: hidden;
  }

  /* .vitavox-primary-text {
    color: #0E7490;
  } */

  .vitavox-primary-text{
    color: #4E9A36;
  }

  /* Timeline Styling */
  .timeline-container {
    position: relative;
    margin: 40px 0;
  }

  /* Connecting dotted line for desktop */
  /* @media (min-width: 992px) {
    .timeline-container::before {
      content: '';
      position: absolute;
      top: 45px;
      left: 10%;
      right: 10%;
      height: 2px;
      border-top: 3px dashed #14B8A6;
      opacity: 0.35;
      z-index: 1;
    }
  } */

 .timeline-step {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
  } 

  .timeline-step:hover {
    transform: translateY(-5px);
  }

  .timeline-icon-wrapper {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #F0FDFA 0%, #E0F2FE 100%);
    border: 2px solid rgba(20, 184, 166, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #0E7490;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(14, 116, 144, 0.08);
    transition: all 0.3s ease;
  }

  .timeline-step:hover .timeline-icon-wrapper {
    background: #0E7490;
    color: #FFFFFF;
    border-color: #0E7490;
    box-shadow: 0 15px 30px rgba(14, 116, 144, 0.2);
  }

  /* Info Box */
  .info-box {
    background: linear-gradient(135deg, #F0FDFA 0%, #F8FAFC 100%);
    border: 1px solid rgba(20, 184, 166, 0.2);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(14, 116, 144, 0.04);
  }

  .info-bullet-card {
    background: #FFFFFF;
    border-radius: 14px;
    padding: 18px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(20, 184, 166, 0.1);
    height: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.3s ease;
  }

  .info-bullet-card:hover {
    border-color: #14B8A6;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(14, 116, 144, 0.08);
  }

  .check-icon {
    width: 28px;
    height: 28px;
    background: #F0FDFA;
    color: #14B8A6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
    font-weight: bold;
  }

  /* CTA Button Style */
  .btn-cta-custom {
    background-color: #0E7490;
    border-color: #0E7490;
    color: #FFFFFF;
    border-radius: 14px;
    padding: 16px 36px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(14, 116, 144, 0.25);
  }

  .btn-cta-custom:hover {
    background-color: #0B5F77;
    border-color: #0B5F77;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 116, 144, 0.35);
    color: #FFFFFF;
  }

/* 
// Why chhose US */


.vitavox-homepage-sections {
    font-family: 'Poppins', sans-serif;
    background-color: #FFFFFF;
    color: #1E293B;
  }

  .text-mint-green {
    color: #36D7B7;
  }

  /* Custom Buttons */
  .btn-royal-custom {
    background-color: #0F3D91;
    border-color: #0F3D91;
    color: #FFFFFF;
    border-radius: 16px;
    padding: 16px 32px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 8px 20px rgba(15, 61, 145, 0.2);
  }

  .btn-royal-custom:hover {
    background-color: #0B2F70;
    border-color: #0B2F70;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(15, 61, 145, 0.3);
    color: #FFFFFF;
  }

  .btn-outline-royal-custom {
    color: #0F3D91;
    border-color: #0F3D91;
    background-color: transparent;
    border-radius: 16px;
    padding: 16px 32px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .btn-outline-royal-custom:hover {
    background-color: #F0FDF9;
    color: #0F3D91;
    border-color: #0F3D91;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(15, 61, 145, 0.1);
  }

  /* Section 1 Cards */
  .challenge-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 15px 35px rgba(15, 61, 145, 0.05);
    border: 1px solid rgba(54, 215, 183, 0.15);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .challenge-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 61, 145, 0.1);
    border-color: #00B894;
  }

  .icon-wrapper-lg {
    width: 70px;
    height: 70px;
    background: #F0FDF9;
    color: #0F3D91;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 24px;
    transition: all 0.3s ease;
  }

  .challenge-card:hover .icon-wrapper-lg {
    background: #0F3D91;
    color: #36D7B7;
    transform: scale(1.05) rotate(-3deg);
  }

  /* Section 2 Grid Cards */
  .feature-grid-card {
    background: #FFFFFF;
    border-radius: 18px;
    padding: 30px 24px;
    box-shadow: 0 10px 30px rgba(15, 61, 145, 0.04);
    border: 1px solid rgba(15, 61, 145, 0.06);
    height: 100%;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .feature-grid-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(15, 61, 145, 0.09);
    border-color: #36D7B7;
  }


  /* Optional smooth floating animation */
@keyframes floatBadge1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes floatBadge2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.floating-badge.badge-1 {
  top: 30px;
  left: 30px;
}

.floating-badge.badge-2 {
  bottom: 30px;
  right: 30px;
}
  .icon-wrapper-md {
    width: 54px;
    height: 54px;
    background: #F0FDF9;
    color: #00B894;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
  }

  .feature-grid-card:hover .icon-wrapper-md {
    background: #00B894;
    color: #FFFFFF;
    transform: scale(1.1);
  }

  /* Information Banner */
  .info-banner {
    background: linear-gradient(135deg, #F0FDF9 0%, #E6FFFA 100%);
    border-radius: 24px;
    padding: 50px 40px;
    border: 1px solid rgba(0, 184, 148, 0.2);
    box-shadow: 0 15px 40px rgba(0, 184, 148, 0.06);
  }

  .banner-shield-icon {
    width: 64px;
    height: 64px;
    background: #0F3D91;
    color: #36D7B7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 20px rgba(15, 61, 145, 0.15);
  }
/* 
  plan */

  .vitavox-plans-section {
    font-family: 'Poppins', sans-serif;
    background-color: #FFFFFF;
    color: #1E293B;
  }


  .bg-royal-blue {
    background-color: #0F3D91;
  }

  /* Pricing Card Styling */
  .pricing-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px 32px;
    box-shadow: 0 15px 35px rgba(15, 61, 145, 0.06);
    border: 1px solid rgba(54, 215, 183, 0.2);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .pricing-card.featured {
    background: linear-gradient(135deg, #FFFFFF 0%, #F0FDF9 100%);
    border: 2px solid #36D7B7;
    box-shadow: 0 20px 45px rgba(15, 61, 145, 0.1);
    transform: translateY(-5px);
  }

  .pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(15, 61, 145, 0.12);
  }

  /* Plan Badges */
  .plan-badge {
    position: absolute;
    top: 24px;
    right: 28px;
    background: #F0FDF9;
    color: #0F3D91;
    border: 1px solid #36D7B7;
    font-weight: 600;
    font-size: 0.75rem;
    padding: 6px 14px;
    border-radius: 50rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .pricing-card.featured .plan-badge {
    background: #0F3D91;
    color: #36D7B7;
    border-color: #0F3D91;
  }

  /* Price Area */
  .price-value-box {
    background: rgba(15, 61, 145, 0.03);
    border-radius: 14px;
    padding: 16px;
    margin: 20px 0 25px 0;
    border: 1px solid rgba(15, 61, 145, 0.05);
  }

  /* Feature Checklist */
  .plan-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1;
  }

  .plan-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.95rem;
    color: #475569;
  }

  .plan-features-list li i {
    width: 22px;
    height: 22px;
    background: #F0FDF9;
    color: #00B894;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
    font-weight: bold;
  }

  /* Buttons */
  .btn-plan-action {
    background-color: transparent;
    color: #0F3D91;
    border: 2px solid #0F3D91;
    border-radius: 14px;
    padding: 14px 28px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
  }

  .btn-plan-action:hover {
    background-color: #0F3D91;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 61, 145, 0.2);
  }

  .pricing-card.featured .btn-plan-action {
    background-color: #0F3D91;
    color: #FFFFFF;
  }

  .pricing-card.featured .btn-plan-action:hover {
    background-color: #0B2F70;
    border-color: #0B2F70;
  }

  /* Bottom Note Box */
  .bottom-note-box {
    background: #F8FAFC;
    border-radius: 16px;
    border: 1px dashed rgba(15, 61, 145, 0.2);
    padding: 20px 24px;
    max-width: 750px;
    margin: 0 auto;
  }
/* 
  new one */


  .vitavox-homepage-sections {
    font-family: 'Poppins', sans-serif;
    background-color: #FFFFFF;
    color: #1E293B;
  }

  .text-royal-blue {
    color: #4E9A36;
  }
  .text-blue{
    color: #042181;
  }

  .text-mint-green {
    color: #36D7B7;
  }

  /* Custom Buttons */
  .btn-royal-custom {
    background-color: #0F3D91;
    border-color: #0F3D91;
    color: #FFFFFF;
    border-radius: 16px;
    padding: 16px 32px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 8px 20px rgba(15, 61, 145, 0.2);
  }

  .btn-royal-custom:hover {
    background-color: #0B2F70;
    border-color: #0B2F70;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(15, 61, 145, 0.3);
    color: #FFFFFF;
  }

  .btn-outline-royal-custom {
    color: #0F3D91;
    border-color: #0F3D91;
    background-color: transparent;
    border-radius: 16px;
    padding: 16px 32px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .btn-outline-royal-custom:hover {
    background-color: #F0FDF9;
    color: #0F3D91;
    border-color: #0F3D91;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(15, 61, 145, 0.1);
  }

  /* Section 1 Cards */
  .challenge-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 15px 35px rgba(15, 61, 145, 0.05);
    border: 1px solid rgba(54, 215, 183, 0.15);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .challenge-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 61, 145, 0.1);
    border-color: #00B894;
  }

  .icon-wrapper-lg {
    width: 70px;
    height: 70px;
    background: #F0FDF9;
    color: #0F3D91;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 24px;
    transition: all 0.3s ease;
  }

  .challenge-card:hover .icon-wrapper-lg {
    background: #0F3D91;
    color: #36D7B7;
    transform: scale(1.05) rotate(-3deg);
  }

  /* Section 2 Grid Cards */
  .feature-grid-card {
    background: #FFFFFF;
    border-radius: 18px;
    padding: 30px 24px;
    box-shadow: 0 10px 30px rgba(15, 61, 145, 0.04);
    border: 1px solid rgba(15, 61, 145, 0.06);
    height: 100%;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .feature-grid-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(15, 61, 145, 0.09);
    border-color: #36D7B7;
  }

  .icon-wrapper-md {
    width: 54px;
    height: 54px;
    background: #F0FDF9;
    color: #00B894;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
  }

  .feature-grid-card:hover .icon-wrapper-md {
    background: #00B894;
    color: #FFFFFF;
    transform: scale(1.1);
  }

  /* Information Banner */
  .info-banner {
    background: linear-gradient(135deg, #F0FDF9 0%, #E6FFFA 100%);
    border-radius: 24px;
    padding: 50px 40px;
    border: 1px solid rgba(0, 184, 148, 0.2);
    box-shadow: 0 15px 40px rgba(0, 184, 148, 0.06);
  }

  .banner-shield-icon {
    width: 64px;
    height: 64px;
    background: #0F3D91;
    color: #36D7B7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 20px rgba(15, 61, 145, 0.15);
  }


.vitavox-comparison-section {
    font-family: 'Poppins', sans-serif;
    background-color: #FFFFFF;
    color: #1E293B;
  }

  /* Comparison Card Styling */
  .comparison-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 15px 35px rgba(15, 61, 145, 0.05);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .comparison-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 61, 145, 0.1);
  }

  /* Left Card: Eligible (Green Border) */
  .card-eligible {
    border: 2px solid #00B894;
    background: linear-gradient(180deg, #FFFFFF 0%, #F0FDF9 100%);
  }

  .card-eligible .header-icon {
    width: 50px;
    height: 50px;
    background: #00B894;
    color: #FFFFFF;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
  }

  .list-eligible li i {
    color: #00B894;
    background: #E6FFFA;
  }

  /* Right Card: Not Eligible (Red Border) */
  .card-not-eligible {
    border: 2px solid #EF4444;
    background: linear-gradient(180deg, #FFFFFF 0%, #FEF2F2 100%);
  }

  .card-not-eligible .header-icon {
    width: 50px;
    height: 50px;
    background: #EF4444;
    color: #FFFFFF;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
  }

  .list-not-eligible li i {
    color: #EF4444;
    background: #FEE2E2;
  }

  /* Lists Styling */
  .comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .comparison-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #334155;
  }

  .comparison-list li:last-child {
    margin-bottom: 0;
  }

  .comparison-list li i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
  }

  /* Bottom Information Box */
  .bottom-info-box {
    background: #F8FAFC;
    border: 1px solid rgba(15, 61, 145, 0.15);
    border-radius: 16px;
    padding: 22px 28px;
    box-shadow: 0 6px 20px rgba(15, 61, 145, 0.03);
    max-width: 850px;
    margin: 0 auto;
  }


  .vitavox-savings-section {
    font-family: 'Poppins', sans-serif;
    background-color: #FFFFFF;
    color: #1E293B;
  }


  /* Infographic Container */
  .savings-infographic-wrapper {
    background: linear-gradient(135deg, #F0FDF9 0%, #E6FFFA 100%);
    border-radius: 24px;
    padding: 50px 30px;
    border: 1px solid rgba(0, 184, 148, 0.25);
    box-shadow: 0 20px 45px rgba(0, 184, 148, 0.08);
  }

  /* Calculator Step Card */
  .savings-step-card {
    background: #FFFFFF;
    border-radius: 18px;
    padding: 28px 20px;
    box-shadow: 0 10px 30px rgba(15, 61, 145, 0.06);
    border: 1px solid rgba(15, 61, 145, 0.06);
    height: 100%;
    position: relative;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .savings-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(15, 61, 145, 0.1);
    border-color: #36D7B7;
  }

  .savings-step-card.highlight-card {
    background: #0F3D91;
    color: #FFFFFF;
    border-color: #0F3D91;
    box-shadow: 0 15px 35px rgba(15, 61, 145, 0.2);
  }

  .savings-step-card.highlight-card .step-title,
  .savings-step-card.highlight-card .step-value {
    color: #FFFFFF;
  }

  .savings-step-card.highlight-card .step-icon {
    background: rgba(54, 215, 183, 0.2);
    color: #36D7B7;
  }

  /* Step Icon */
  .step-icon {
    width: 54px;
    height: 54px;
    background: #F0FDF9;
    color: #00B894;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 16px auto;
    transition: all 0.3s ease;
  }

  .savings-step-card:hover .step-icon {
    transform: scale(1.1);
  }

  /* Connector Arrow for Desktop */
  .step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00B894;
    font-size: 1.5rem;
    font-weight: bold;
  }

  @media (max-width: 991.98px) {
    .step-connector {
      transform: rotate(90deg);
      margin: 10px 0;
    }
  }

  /* Typography helpers */
  .step-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: #64748B;
    margin-bottom: 8px;
  }

  .step-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0F3D91;
    margin-bottom: 0;
  }

  /* Disclaimer Box */
  .savings-disclaimer {
    background: #FFFFFF;
    border-radius: 14px;
    padding: 16px 24px;
    border: 1px dashed rgba(0, 184, 148, 0.3);
    max-width: 700px;
    margin: 30px auto 0 auto;
  }

/* /// */

.vitavox-hospitals-section {
    font-family: 'Poppins', sans-serif;
    background-color: #FFFFFF;
    color: #1E293B;
  }


  /* Hospital Showcase Slider / Grid Container */
  .hospital-card {
    border-radius: 20px;
    overflow: hidden;
    background: #FFFFFF;
    box-shadow: 0 15px 35px rgba(15, 61, 145, 0.06);
    border: 1px solid rgba(15, 61, 145, 0.08);
    height: 100%;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .hospital-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(15, 61, 145, 0.12);
  }

  /* Hospital Image & Hover Overlay */
  .hospital-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
  }

  .hospital-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .hospital-card:hover .hospital-img-wrapper img {
    transform: scale(1.08);
  }

  .hospital-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 61, 145, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
    padding: 20px;
  }

  .hospital-card:hover .hospital-overlay {
    opacity: 1;
  }

  .overlay-icon {
    width: 54px;
    height: 54px;
    background: rgba(54, 215, 183, 0.2);
    color: #36D7B7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 14px;
    transform: translateY(10px);
    transition: transform 0.35s ease;
  }

  .hospital-card:hover .overlay-icon {
    transform: translateY(0);
  }

  /* .btn-overlay-view {
    background-color: #36D7B7;
    color: #0F3D91;
    border: none;
    border-radius: 12px;
    padding: 10px 22px;
    font-weight: 600;
    font-size: 0.9rem;
    transform: translateY(10px);
    transition: all 0.35s ease;
  } */

  /* .btn-overlay-view:hover {
    background-color: #FFFFFF;
    color: #0F3D91;
  } */

  .hospital-card:hover .btn-overlay-view {
    transform: translateY(0);
  }

  /* Content Body */
  .hospital-body {
    padding: 24px;
  }

  .hospital-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: #64748B;
    margin-bottom: 8px;
  }

  .hospital-specialities {
    font-size: 0.9rem;
    color: #475569;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Card Action Button */
  .btn-hospital-details {
    background-color: transparent;
    color: #0F3D91;
    border: 2px solid #0F3D91;
    border-radius: 12px;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 0.9rem;
    width: 100%;
    transition: all 0.3s ease;
  }

  .btn-hospital-details:hover {
    background-color: #0F3D91;
    color: #FFFFFF;
    box-shadow: 0 6px 15px rgba(15, 61, 145, 0.2);
  }

/* /// */

.vitavox-specialists-section {
    font-family: 'Poppins', sans-serif;
    background-color: #FFFFFF;
    color: #1E293B;
  }


  /* Doctor Card Styling */
  .doctor-card {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(15, 61, 145, 0.06);
    border: 1px solid rgba(15, 61, 145, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .doctor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(15, 61, 145, 0.12);
    border-color: #36D7B7;
  }

  .doctor-img-wrapper {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: #F0FDF9;
  }

  .doctor-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease;
  }

  .doctor-card:hover .doctor-img-wrapper img {
    transform: scale(1.05);
  }

  .doctor-body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  .doctor-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: #64748B;
    margin-bottom: 8px;
  }

  .doctor-meta-item i {
    color: #00B894;
    font-size: 1rem;
  }

  .btn-doctor-know-more {
    background-color: transparent;
    color: #0F3D91;
    border: 2px solid #0F3D91;
    border-radius: 12px;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 0.9rem;
    width: 100%;
    margin-top: auto;
    transition: all 0.3s ease;
  }

  .btn-doctor-know-more:hover {
    background-color: #0F3D91;
    color: #FFFFFF;
    box-shadow: 0 6px 15px rgba(15, 61, 145, 0.2);
  }

  /* Medical Specialities Grid Styling */
  .speciality-icon-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 25px 15px;
    box-shadow: 0 8px 25px rgba(15, 61, 145, 0.04);
    border: 1px solid rgba(15, 61, 145, 0.06);
    text-align: center;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .speciality-icon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(15, 61, 145, 0.08);
    border-color: #36D7B7;
    background: #F0FDF9;
  }

  .speciality-icon-box {
    width: 60px;
    height: 60px;
    background: #F0FDF9;
    color: #0F3D91;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 16px auto;
    transition: all 0.3s ease;
  }

  .speciality-icon-card:hover .speciality-icon-box {
    background: #0F3D91;
    color: #36D7B7;
    transform: scale(1.1);
  }


  /* //Testimonial  */

  .vitavox-testimonials-section {
    font-family: 'Poppins', sans-serif;
    background-color: #FFFFFF;
    color: #1E293B;
  }

  /* Trust Score Bar */
  .trust-score-box {
    background: linear-gradient(135deg, #F0FDF9 0%, #E6FFFA 100%);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(0, 184, 148, 0.2);
    box-shadow: 0 10px 30px rgba(0, 184, 148, 0.05);
  }

  .trust-metric-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0F3D91;
    margin-bottom: 2px;
  }

  .trust-metric-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
  }

  /* Testimonial Card Styling */
  .testimonial-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 15px 35px rgba(15, 61, 145, 0.05);
    border: 1px solid rgba(15, 61, 145, 0.08);
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(15, 61, 145, 0.12);
    border-color: #36D7B7;
  }

  /* Quote Icon Badge */
  .quote-icon-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: #F0FDF9;
    color: #00B894;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
  }

  /* Member Info */
  .member-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #36D7B7;
  }

  .rating-stars {
    color: #F59E0B;
    font-size: 0.95rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
  }

  .testimonial-review {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #475569;
    font-style: italic;
    flex-grow: 1;
    margin-bottom: 25px;
  }