@import url('https://fonts.googleapis.com/css2?family=Funnel+Sans:ital,wght@0,300..800;1,300..800&display=swap');
:root {
  --primary-color: #0b396c;
  --header-color: #6c370b;
}
ht: 100%;
}
html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  scroll-behavior: smooth;
}
body {
    font-family: "Funnel Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 1.8;
  scroll-behavior: smooth;
  background: #f9f9f9;
  display: flex;
      flex-direction: column;
}
main {
      flex: 1; /* Push footer to bottom */
      display: flex;
      justify-content: center;
      align-items: center;
    }
.navbar-nav .nav-link {
    color: #00649C;
    font-weight: 500;
}

section {
    scroll-margin-top: 80px;
    /* Adjust based on navbar height */
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #F5A623;
}

.brand-blue {
    color: #13689A;
}

.brand-orange {
    color: #F4A21C;
}

.bg-orange {
    background-color: #F4A21C;
    color: white;
    border-radius:0.375rem 0.375rem 0 0;
    height: 62px;
    font-size: 20px;
    line-height: 2.1;
}
.bg-blue {
    background-color: #136998;
    color: white;
    border-radius:0.375rem 0.375rem 0 0;
    height: 62px;
    font-size: 20px;
    line-height: 2.1;
}
.section-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.hero {
    background: linear-gradient(rgba(20, 103, 151, 0.31), rgba(0, 0, 0, 0.15)), url(../imgs/public-health.svg);
    background-size: contain;
    padding: 60px 20px !important;
    text-align: center;
    height: 65vh;
    background-repeat: no-repeat;
    background-position: center;
}

.hero h1 {
    font-weight: bold;
    font-size: 2.5rem;
}

.plans .card {
    border: 1px solid #ddd;
}
.bg-light {
    background-image: repeating-linear-gradient(284deg, transparent 0px, transparent 1px, rgb(251, 251, 251) 1px, rgb(251, 251, 251) 3px), repeating-linear-gradient(14deg, transparent 0px, transparent 1px, rgb(251, 251, 251) 1px, rgb(251, 251, 251) 3px), linear-gradient(90deg, rgb(222, 222, 222), rgb(222, 222, 222));
}
.lead {
    font-size: 34px;
    color: #2d2b2b;
    background: rgb(249 156 5 / 70%);
    border-radius: 10px;
}
.heading{
    color: #136998;
}
.border-blue {
    border-color: #13689A !important;
}

.btn-orange {
    background: #F4A21C;
    color: #fff;
}

.btn-blue {
    background: #13689A;
    color: #fff;
}
.btn-orange:hover {
    color:#ffffff;
    background-color: #eb9200;
    border-color: #eb9200;
}
.chosen-container-single .chosen-single {
    height: 35px !important;
    background: none !important;
    box-shadow: none !important;
    line-height: 35px !important;
}
.form-label {
    margin-bottom: .5rem;
    font-weight: 600;
}
.required label:after {
    color: #F31C08;
    content: " *";
    display: inline;
    font-size: 1rem;
    font-weight: 500;
    position: absolute;
    margin-left: 4px;
}
.form-control{
    font-size: 14px !important;
}
.success-card {
      max-width: 600px;
      margin: 80px auto;
      padding: 40px;
      border-radius: 12px;
      box-shadow: 0 6px 18px rgba(0,0,0,0.1);
      background: #fff;
      text-align: center;
      animation: fadeIn 1s ease-in-out;
    }
    .success-icon {
      font-size: 80px;
      color: #28a745;
      margin-bottom: 20px;
      animation: pop 0.6s ease-out;
    }
    @keyframes pop {
      0% { transform: scale(0.5); opacity: 0; }
      100% { transform: scale(1); opacity: 1; }
    }
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .btn-home {
      margin-top: 25px;
    }