@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

.roboto {
  font-family: "Roboto", sans-serif;
}

.lato {
  font-family: "Lato", sans-serif;
}

.color-000000 {
  color: #000000;
}


body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #fff;
  margin: 0;
  padding: 0;
}

.header-nav {
  background-color: white;
  border-bottom: 1px solid #e0e0e0;
  padding: 10px 0;
}

.logo-section img {
  max-height: 40px;
}

.center-text {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #333333;
}

.right-text {
  font-size: 16px;
  color: #000000;
  font-weight: 500;
}

/* --- Desktop Header --- */
.header-desktop {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 120px;
}

/* --- Mobile Header --- */
.header-mobile {
  display: none;
}

.header-mobile .row-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.header-mobile .center-text {
  justify-content: center;
  width: 100%;
  margin-top: 6px;
}

/* 📱 Mobile (<768px) */
@media (max-width: 768px) {
  .header-desktop {
    display: none;
  }

  .header-mobile {
    display: block;
  }
}

/* main content */
.main-content {
  background-color: #F1F2F6;
  min-height: calc(100vh - 60px);
  padding: 10px 0;
}

.content-container {
  max-width: 900px;
  margin: 0 auto;
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
}

.main-heading {
  font-size: 40px;
  font-weight: 700;
  color: #000000;
  text-align: center;
  padding: 40px 60px 30px;
  line-height: 1.3;
  margin: 0;
  text-transform: capitalize;
}

.hero-image {
  width: 100%;
  padding: 0px 30px;
  /* height: 280px; */
  object-fit: cover;
  display: block;
  padding-left: 50px;
  padding-right: 50px;
}

.content-body {
  padding: 30px;
  padding-left: 50px;
  padding-right: 50px;            
}

.intro-text {
  font-size: 20px;
  margin-bottom: 20px;
}

.description-text {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 30px;
}

.section-heading {
  font-size: 22px;
  font-weight: 700;
  color: #000000;
  margin: 30px 0 15px;
}

.section-text {
  font-size: 20px;
  color: #000000;
  line-height: 1.5;
  margin-bottom: 15px;
}

.highlight-link {
  color: #0066cc;
  text-decoration: none;
}

.highlight-link:hover {
  text-decoration: underline;
}

.criteria-list {
  margin: 20px 0;
}

.criteria-item {
  font-size: 20px;
  color: #333;
  margin: 8px 0;
  position: relative;
  padding-left: 20px;
}

.criteria-item::before {
  content: '●';
  position: absolute;
  left: 0;
  color: #333;
}

.quote-section {
  margin: 25px 0;
}

.process-heading {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  margin: 35px 0 20px;
}

.process-step {
  font-size: 20px;
  color: #333;
  margin: 12px 0;
}

.step-number {
  font-weight: 700;
}

.age-selector {
  margin: 25px 0;
}

.age-options {
  display: flex;
  justify-content: space-between;
}

.age-option {
  text-align: center;
  flex: 1;
  margin: 0 5px;
  cursor: pointer;
}

.age-label {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.cta-button {
  background-color: #3d85c6;
  color: white;
  border: none;
  border-radius: 25px;
  padding: 7px 30px;
  font-size: 24px;
  font-weight: 600;
  width: 100%;
  margin: 15px 0;
  cursor: pointer;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #65a1da;
}

.disclaimer-text {
  font-size: 14px;
  color: #000000;
  text-align: center;
  text-decoration: underline;
}

.footer-info {
  background-color: #F1F2F6;
  padding: 20px 5px;
  border-top: 1px solid #e0e0e0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-text {
  font-size: 12px;
  color: #000000;
  line-height: 1.4;
  margin-bottom: 10px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 6px;
  font-size: 14px;
  align-self: flex-end;
}

.footer-links a {
  color: #0066cc;
}

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

.nav-items {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.modal-content .modal-title {
    background-color: #000;
    width: 100%;
    text-align: center;
    padding: 30px;
    z-index: 0;
}
.modal-content .btn-close {
    position: absolute;
    right: 0;
    top: 0;
    opacity: 1;
    background-image: url('/astro_assets/common/images/modal-close.png');
    background-repeat: no-repeat;
    background-size: cover;
    height: 35px;
    width: 35px;
    z-index: 1;
}

@media (max-width: 768px) {
  .main-heading {
    font-size: 24px;
    padding: 0px 20px 20px;
  }

  .content-body {
    padding: 20px;
  }

  .age-options {
    flex-direction: column;
    gap: 20px;
  }

  .age-option {
    margin: 0;
  }
  .nav-items {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* align Life Insurance to left */
  }

  .nav-items span:first-child {
    display: block;
    /* Life Insurance on its own line */
    width: 100%;
    margin-bottom: 2px;
  }

  .nav-items span:nth-child(2),
  .nav-items span:nth-child(3) {
    display: inline;
    /* keep - August 2025 inline */
  }

  .nav-items span:last-child {
    margin-left: auto;
    /* keep Advertorial aligned right */
  }
  .logo-section img {
    width: 90%;
}
.right-text {
    font-size: 14px;
}
.main-content {
    padding: 0px 0;
}
.header-nav {
    border-bottom: 0px;
}
.hero-image {
    padding: 0px 20px;
}
.age-icon img {
  width: 350px;
}
.age-selector {
    margin: 0px 0;
}
.footer-links {
    font-size: 12px;
}
}










/* second page style */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

.body_style{
    /* font-family: sans-serif; */
    color: #000000;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

.color-f28820 {
    color: #f28820;
}
.color-f08519{
    color: #f08519;
}


/* steps slide effect */
.bg_style_box{
    transition: transform 0.4s ease, opacity 0.3s ease;
    transform: translateX(100%);
    opacity: 0;
    position: absolute;
    width: 0;
    top: 0;
    left: 0;
    overflow: hidden;
}
.bg_style_box_show{
    transform: translateX(0);
    opacity: 1;
    position: relative;
    z-index: 1;
    width: 100%;
    overflow: visible;
}

.top_content {
    margin-top: 0px;
}

.per_month_price {
    margin: 0 auto;
}
.header .navbar-brand{
    text-align: center;
}
.header .navbar-brand img{
    width: 80%;
    margin: 10px auto 15px;
}

.main_title {
    color: #fff;
    font-size: 29px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 4px;
}
.main_subtitle{
    color: #fff;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 0px;
}

.per_month_price .price_subtext {
    color: rgb(24, 84, 121);
    font-size: 22px;
    line-height: 31px;
    font-weight: 400;
    margin-bottom: 0px;
}

.form_step_sec {
    margin: 60px auto 0;
}

.progressBar {
    margin-bottom: 70px;
}

.span_1 {
    margin-right: 10px;
}

.span_2 {
    margin-left: 10px;
}

.progress_bar {
    margin-bottom: 32px;
}
.progress_bar span{
    font-size: 12px;
    color: #585858;
    font-weight: bold;
}

.progress_line {
    background-color: #e9ecef;
    border-radius: 6px;
    height: 20px;
    width: 100%;
}
.progress_line_highlighted{
    background-color: #F28820;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    height: 20px;
    color: white;
    line-height: 20px;
    width: 10%;
    text-shadow: 1px 1px #303030;
    text-align: center;
    font-size: 14px;
}
.email_step_subtext{
    font-size: 14px;
    color: #444;
    font-weight: 500;
    text-align: center;
    margin-bottom: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.email_step_subtext img{
    margin: 0 2px;
    width: 14px;
}
.email_hading{
    margin-bottom: 10px !important;
}

.bg_style_box {
    padding: 30px 0px 0px;
}

.form_step_sec .step_que {
    text-align: center;
    color: #444;
    font-weight: 400;
    font-size: 24px;
    line-height: 38px;
    margin-bottom: 24px;
}

.radio_option{
    display: flex;
    justify-content: center;
    align-items: center;
}

.radio_filed_style {
    color: #fff;
    width: 50%;
    margin: 0 15px 16px;
    padding: 8px;
    box-shadow: inset 0px 0px 0px 1px #cccccc;
    line-height: unset;
    background-color: #fdfdfd;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 65px;
    position: relative;
    border-radius: 4px;
    text-transform: none;
    letter-spacing: .02em;
    border: none;
}

.filed_label {
    color: #fff;
    font-weight: 400;
    font-size: 20px;
    line-height: normal;
    margin-bottom: 0px;
    width: 100%;
    text-align: center;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.filed_label img{
    margin-right: 20px;
    width: 22px;
}
.step_1_gender .filed_label img{
    width: auto;
}

.radio_option .form-check-input {
    height: 100%;
    width: 100%;
    border: none;
    border-bottom: 3px solid #0b5394;
    flex-shrink: 0;
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 4px;
    background-color: #3d85c6;
    background-size: 0 0 !important;
    transition: background-color 0.5s ease-out;
    margin-top: 0;
}


.radio_option .form-check-input:checked{
    border-color: #86b7fe;     
    border: 1px solid #86b7fe;
    border-bottom: 3px solid #0b5394;
    box-shadow: 0 0 0 .25rem rgba(13,110,253,.25);
}
.radio_option .form-check-input:checked+label {
    color: #fff;
    font-weight: 600;
}

.radio_option .form-check-input:checked[type=radio] {
    background-size: 16px 16px;
}


.radio_filed_style:hover .filed_label{
    opacity: 0.7;
}

.input_filed_style {
    font-size: 20px;
    color: #495057;
    line-height: 22px;
    background-color: #fff;
    border-radius: 4px;
    width: 100%;
    padding: 17px 12px;
    border: 1px solid transparent;
    margin: auto;
    border-radius: 3px 3px 0 0;
    border: 1px solid #ced4da;
}

.input_filed_style::placeholder {
    color: #6c757d;
    opacity: 1;
    font-size: 20px;
}

.pb-20 {
    padding-bottom: 12px;
}

.w-42 {
    width: 42%;
}

.btn_div {
    text-align: center;
}
.fname_step_div{
    display: flex;
}
.fname_step_div .name_filed, .fname_step_div .surname_filed{
    width: 50%;
    margin: 0 0;
}
.fname_step_div .name_filed{
    margin-right: 30px;
}

.btn_style {
    padding: 16px 15px;
    background: #3d85c6;
    border: 1px solid transparent;
    border-bottom: 3px solid #0b5394;
    font-size: 20px;
    letter-spacing: .02em;
    text-transform: capitalize;
    color: #fff;
    line-height: 24px;
    border-radius: 4px;
    font-weight: 400;
    text-align: center;
    width: 100%;
    transition: all .2s;
    display: flex;
    justify-content: center;
    align-items: center;
}
.btn_style img {
    width: 20px;
    margin-left: 6px;
}
.btn_style:hover {
    color: #ffffffb3;
}
.btn_style:hover .next_img{
    opacity: 0.7;
}


.required_sign {
    color: #ff0000;
    font-weight: 400;
    font-size: 18px;
    padding-left: 6px;
}

.step_7_number .thankyou_text {
    color: #444;
    font-weight: 400;
    font-size: 16px;
    line-height: normal;
    margin-bottom: 0px;
}

.step_7_number .input-group {
    width: 42%;
    margin: 0 auto;
}

.number_filed {
    margin: 22px 0px;
}

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input,
.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=text],
.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=tel] {
    padding-left: 60px !important;
}

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 .selected-flag,
.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 .selected-flag {
    width: 48px !important;
}

.input-group>.intl-tel-input.allow-dropdown {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
}

.selected-dial-code {
    display: none !important;
}

.iti-flag {
    background-image: url("../images/flags.png");
}

/*
@media only screen and (-webkit-min-device-pixel-ratio: 2),
  only screen and (min--moz-device-pixel-ratio: 2),
  only screen and (-o-min-device-pixel-ratio: 2 / 1),
  only screen and (min-device-pixel-ratio: 2),
  only screen and (min-resolution: 192dpi),
  only screen and (min-resolution: 2dppx) {
  .iti-flag {
    background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/12.1.6/img/flags@2x.png");
  }
}*/
.check_box {
    margin-bottom: 22px;
    justify-content: center;
    display: flex;
}

.check_box .form-check-input {
    border: 1px solid #999;
    background-color: #fff;
    width: 14px;
    height: 14px;
    margin: 5px 5px 0px 0px;
    border-radius: 3px;
}

.check_box .form-check-label {
    color: #000;
    cursor: pointer;
}

.form-check-input:focus {
    box-shadow: none;
}

.check_box .form-check-input:checked {
    background-color: rgb(24, 84, 121);;
    border-color: rgb(24, 84, 121);;
}

/* New Circle */
.progress-circle {
    position: relative;
    height: 124px;
    width: 124px;
    border-radius: 50%;
    position: relative;
    display: block;
    margin: -117px auto 0px;
}
.progress-circle .percent {
  position: relative;
}

.progress-circle svg {
    position: absolute;
    height: 124px;
    width: 124px;
    padding: 2px;
    background: #fff;
    border-radius: 50%;
    transform: rotate(-90deg);
}

.progress-circle svg circle {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #f0f0f0;
  stroke-width: 6;
  transition: 0.4s ease;
}

.progress-circle svg circle:last-of-type {
  stroke-dasharray: 625px;
  stroke-dashoffset: calc(625px - (625px * var(--percent)) / 100);
  stroke: #6aa84f; 
}

.progress-circle .number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.progress-circle .number h3 {
  font-size: 18px;
  color: #27ae60;
}

.progress-circle .number h3 span {
  font-size: 12px;
  color: #27ae60;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0;
}
.progress-circle .percent_span{
    font-size: 26px !important;
    
}


/* insurance content style */

.insurance_content{
    background-image: url('../images/flag.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 20px 0 66px;
    position: relative;
}
.insurance_content::after{
    content: '';
    background: linear-gradient(0deg, rgba(56, 118, 29, 0.425) 0%, rgba(0, 0, 0, 0.865) 100%);
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
}
.insurance_content  .container{
    position: relative;
    z-index: 1;
}

.footer-margin {
    background: rgb(239, 239, 239);
    padding: 20px 0px 20px;
    margin-top: 400px;
}

.footer .navbar-nav li a {
    color: #0b3d65;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.92px;
    text-transform: uppercase;
    padding: 0px 14px;
}

.footer .navbar-nav li a:hover {
    color: #10823f;
}

.error {
    color: #990000;
    text-align: center;
}

.opacity_40 {
    opacity: 40%;
    transition: 2s all;
}

.radio_filed_style label {
    cursor: pointer;
}
.privacy-checkbox {
    display: inline-block;
}
.privacy-checkbox input {
    border: 2px solid #000;
    border-radius: 3px;
    padding-left: 15px;
    padding-bottom: 15px;
}
.privacy-checkbox input:focus {
    border-color: #000;
}
.privacy-checkbox label, .privacy-checkbox input {
    cursor: pointer;
}

/* modal */
.modal-content .modal-title{
    background-color: #000 !important;
    padding: 1px !important;
}
.modal-header {
    border-bottom: none;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 15px;
    height: 15px;
    border: 1px solid #999;
    margin: 0 6px 0 0;
    border-radius: 3px;
}
.modal-content .modal-title {
    background-color: #000;
    width: 100%;
    text-align: center;
    padding: 30px !important;
    z-index: 0;
}
.modal-content .btn-close {
    position: absolute;
    right: 0;
    top: 0;
    opacity: 1;
    background-image: url('/astro_assets/common/images/modal-close.png');
    background-repeat: no-repeat;
    background-size: cover;
    height: 35px;
    width: 35px;
    z-index: 1;
}

/* Footer Divider */
.flexi-comp-footer-divider {
  border: none;
  border-top: 2px solid #000;
  margin: 20px 0;
  width: 100%;
}

/* Footer Bottom Section */
.flexi-comp-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 20px;
}
.flexi-comp-footer-copyright {
  color: #000000;
  font-size: 13px;
  margin: 0;
  flex: 1;
}
.flexi-comp-footer-disclosure {
  color: #000000;
  font-size: 13px;
  margin: 0;
  text-align: right;
  flex: 1;
}
.step_dob select {
    width: 33%;
    height: 50px;
    text-align: center;
    font-size: 20px;
    color: #495057;
    line-height: 22px;
    background-color: #fff;
    width: 100%;
    border: 1px solid transparent;
    margin: auto;
    margin-left: 10px;
    border-radius: 3px 3px 0 0;
    border: 1px solid #ced4da;
}


@media (max-width: 1090.98px) {
    .main_title{
        font-size: 24px;
        line-height: 32px;
    }
    .main_subtitle{
        font-size: 20px;
    }
    .header .navbar-brand img{
        width: 70%;
    }
    .per_month_price .price_subtext{
        font-size: 20px;
        line-height: 28px;
    }
    .form_step_sec .step_que{
        font-size: 24px;
        margin-bottom: 12px;
    }
}

@media (max-width: 991.98px) {
    .header .navbar-brand img {
       width: 70%;
    }
    .insurance_content{
        padding: 20px 0 86px;
    }
    .main_title {
        font-size: 24px;
        line-height: 26px;
        margin-bottom: 12px;
    }
    .per_month_price .price_subtext {
        font-size: 18px;
        line-height: 28px;
    }
    .form_step_sec{
        margin: 40px auto 0;
    }
    .filed_label{
        font-size: 22px;
    }
    .form_step_sec .step_que {
      font-size: 22px;
    }
    .radio_filed_style{
        margin-top: 15px;
    }
}

@media (max-width: 768.98px) {
    .header .navbar-brand img {
        width: 80%;
        margin: 5px auto 10px;
    }
    .insurance_content{
        padding: 15px 0 40px;
    }
    .main_title {
       font-size: 22px;
    }
    .main_subtitle {
        font-size: 18px;
    }
    .per_month_price .price_subtext {
        font-size: 14px;
        line-height: 21px;
    }
    .progress_line{
        height: 18px;
    }
    .radio_filed_style{
        margin: 0 0 8px;
        margin-top: 0;
    }
    .bg_style_box{
        margin-bottom: 200px;
    }
    .progress_line_highlighted{
        font-size: 12px;
        line-height: 18px;
        height: 18px;
    }
    .form_step_sec .step_que {
        font-size: 20px;
        line-height: 30px;
    }
    .email_step_subtext{
        display: block;
    }
    .radio_option{
        flex-direction: column;
    }
    .radio_filed_style{
        margin-left: 0;
        width: 100%;
        min-height: 60px;
    }
    .filed_label {
        font-size: 18px;
    }
    .btn_style {
       padding: 14px 15px;
    }
    .fname_step_div {
        flex-direction: column;
    }
    .fname_step_div .name_filed {
        margin-right: 0;
    }
    .fname_step_div .name_filed, .fname_step_div .surname_filed {
       width: 100%;
    }
    .step_7_number .thankyou_text{
        font-size: 14px;
    }
    .progress-circle{
        margin: -92px auto 0px;
    }
    .bg_style_box {
        padding: 10px 0px 0px;
    }
    .checkbox-label input[type="checkbox"] {
        width: 30px;
        height: 30px;
        margin: 0 0px 0 0;
        margin-top: -15px;
    }
    .flexi-comp-footer-copyright, .flexi-comp-footer-disclosure {
      text-align: left;
      flex: none;
  }
  .flexi-comp-footer-bottom {
    gap: 12px;
}
.flexi-comp-footer-bottom {
    flex-direction: column;
}
}