  body { font-family: 'Nunito', sans-serif; }
  h1,h2,.font-heading { font-family: 'Poppins', sans-serif; }





  .floating-nav { box-shadow: 0 10px 30px rgba(20, 60, 110, 0.12); }

  /* Mobile dropdown panel */
  #mobileMenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }
  #mobileMenu.open { max-height: 320px; }

  /* Hamburger -> X animation */
  .bar { transition: transform .25s ease, opacity .25s ease; transform-origin: center; }
  #menuBtn.open .bar1 { transform: translateY(6px) rotate(45deg); }
  #menuBtn.open .bar2 { opacity: 0; }
  #menuBtn.open .bar3 { transform: translateY(-6px) rotate(-45deg); }













  .hero-bg {
    background: linear-gradient(180deg, #BFE0F7 0%, #E9F5FD 55%, #ffffff 100%);
  }

  .floating-nav {
    box-shadow: 0 10px 30px rgba(20, 60, 110, 0.12);
  }

  .toggle-pill {
    width: 46px; height: 24px; border-radius: 999px;
    background: #12294E;
    position: relative;
  }
  .toggle-pill::after {
    content: '';
    position: absolute;
    top: 3px; left: 3px;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: #fff;
  }

  .divider-track { height: 4px; border-radius: 999px; background: #d6dfe8; }
  .divider-fill { height: 4px; border-radius: 999px; background: #7CC142; width: 45%; }

  .social-fab {
    width: 34px; height: 34px; border-radius: 50%;
    background: #7CC142;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  }

  .baby-photo {
    background: radial-gradient(circle at 35% 30%, #ffd9b8 0%, #f3b98a 40%, #e8a878 100%);
  }

   .feature-card {
    width: 160px;
    height: 190px;
    border-radius: 55px;
    background: linear-gradient(180deg, #eaf5fd 0%, #ffffff 75%);
    box-shadow: 0 20px 35px -12px rgba(20, 60, 110, 0.28);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    transition: transform .2s ease;
  }
  .feature-card:hover { transform: translateY(-4px); }

  .icon-wrap {
    width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
  }

    /* Who We Are */


  .who-card {
    border-radius: 50px;
    box-shadow: 0 25px 40px -18px rgba(20, 60, 110, 0.35);
    border: 1px solid #eef2f6;
  }

  .mini-divider {
    height: 1px;
    width: 90px;
    background: linear-gradient(90deg, transparent, #b9c6d6, transparent);
  }

  /* Our Mission */

  .mother-baby-photo {
    background: radial-gradient(circle at 40% 25%, #6b4a3a 0%, #4a3226 35%, #2f2117 100%);
  }


 /* How You Benefit */


  .benefit-card {
    border-radius: 24px;
    background: linear-gradient(180deg, #bfe0f7 0%, #ffffff 70%);
    box-shadow: 0 18px 30px -14px rgba(20, 60, 110, 0.3);
    padding-top: 2.75rem;
  }

  .icon-badge {
    width: 56px; height: 56px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
  }

  .title-underline {
    height: 2px;
    width: 56px;
    background: #2E7D32;
  }


  .quote-card {
    border-radius: 80px;
    box-shadow: 0 20px 40px 20px rgba(20, 60, 110, 0.35);
  }



  /* service */
  .service-photo {
    width: 140px;
    height: 140px;
    border-radius: 40px;
    box-shadow: 0 15px 25px -10px rgba(20, 60, 110, 0.35);
    overflow: hidden;
  }


  /* Growth Milestones Tracking */

  .milestone-card {
    border-radius: 26px;
    box-shadow: 0 20px 35px -18px rgba(20, 60, 110, 0.4);
    padding-top: 3rem;
  }

  .milestone-icon {
    width: 70px; height: 70px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 20px rgba(20, 60, 110, 0.25);
  }

  .title-underline {
    height: 1.5px;
    width: 100%;
    background: #c7d0dc;
  }


  /* Testimonial */

  .speech-bubble {
    background: linear-gradient(180deg, #bfe0f7 0%, #ffffff 85%);
    border-radius: 34px;
    box-shadow: 0 20px 35px -16px rgba(20, 60, 110, 0.35);
    position: relative;
  }
  .speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -22px;
    left: 48px;
    width: 34px;
    height: 34px;
    background: #ffffff;
    clip-path: polygon(0 0, 100% 0, 0 100%);
    border-radius: 0 0 0 8px;
  }

  .nav-arrow {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(20,60,110,0.18);
    transition: transform .15s ease, background .15s ease;
  }
  .nav-arrow:hover { transform: scale(1.08); background: #eaf5fd; }
  .nav-arrow:active { transform: scale(0.96); }

  .slide-fade {
    animation: fadeIn .4s ease;
  }
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #cfe0ee;
    transition: background .2s ease, transform .2s ease;
  }
  .dot.active {
    background: #2E9BF0;
    transform: scale(1.3);
  }


/* create account */


  .cta-card {
    border-radius: 44px;
    box-shadow: 0 30px 50px 22px rgba(148, 189, 238, 0.4);
  }

  .baby-photo {
    background: transparent;
  }

  .title-underline {
    height: 2px;
    width: 320px;
    max-width: 80%;
    background: linear-gradient(90deg, transparent, #7CC142, transparent);
  }


  .social-icon {
    width: 30px; height: 30px; border-radius: 50%;
    background: #4CAF50;
    display: flex; align-items: center; justify-content: center;
  }

  .col-divider {
    border-left: 1px solid #d8dee6;
  }

