@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap");

html, body {
    overflow-x: hidden;
}
body {
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
}

:root {
    --blue: #322f78;
    --cyan: #60c0bb;
    --bright-blue: #38a1d7;
    --light-blue: #E8F4F8;
    --medium-blue: #3477b7;
    --panel-bg: #eeeeef; /* content background */
    --radius: 17px;
}


/******************Utilities*******************/
/******************Colorus*******************/

.blue {
    color: var(--blue);
}

.cayan {
    color: var(--cyan)
}

.light-blue {
    color: var(--light-blue);
}

.bright-blue {
    color: var(--bright-blue);
}

.bg-light-grey {
    background-color: #f2f2f2;
}


.bg-darkblue {
    background-color: #322f78;
    color: #fff
}


.bg-medium-blue {
    background-color: var(--medium-blue)
}

.bg-light-blue {
    background-color: var(--bright-blue)
}


/******************Utilities****************/
/******************Fonts*******************/

h1, h2, h3, h4, h5, h6 {
    font-family: "Open Sans", sans-serif;
}


h1 {
    font-weight: 800 !important;
    color: var(--blue);
    font-size: 3em
}

@media (max-width: 767.98px) {
    h1 {
        font-size: 2em
    }
}

small {
    font-size: 12px !important;
}


/******************Navbar*******************/

.navbar {
    padding-top: 20px;
    padding-bottom: 20px;
}


.logo {
    height: 100px;
}

@media (max-width: 767.98px) {
    .logo {
        height: 100px;
        margin: auto;
    }
}


/**********Inputs**********/
input.form-control {
    border-radius: 50px;
}

/* Input text */
input.form-control,
textarea.form-control {
    font-size: 18px;
}

    /* Placeholder text */
    input.form-control::placeholder,
    textarea.form-control::placeholder {
        font-size: 18px;
    }

/******Buttons******/

.btn {
    font-size: 20px;
}

@media (max-width: 575.98px) {

    .btn {
        font-size: 16px;
    }
}


.btn-oneplan {
    background-color: var(--bright-blue);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 800;
    border: 3px solid #fff;
    text-transform: uppercase;
    box-shadow: -1px 0px 38px -6px rgba(0,0,0,0.29);
    -webkit-box-shadow: -1px 0px 38px -6px rgba(0,0,0,0.29);
    -moz-box-shadow: -1px 0px 38px -6px rgba(0,0,0,0.29);
    display: inline-flex; /* make button a flex container */
    align-items: center; /* vertical center */
    justify-content: center; /* optional: center contents horizontally */
    gap: 10px; /* space between icon and text */
}

    .btn-oneplan img {
        width: 20px;
    }


    .btn-oneplan:hover {
        background-color: var(--cyan);
        border: 3px solid #fff;
        color: white;
    }

.btn-oneplan-dark {
    background-color: var(--blue);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 800;
    border: 3px solid #fff;
    text-transform: uppercase;
    box-shadow: -1px 0px 38px -6px rgba(0,0,0,0.29);
    -webkit-box-shadow: -1px 0px 38px -6px rgba(0,0,0,0.29);
    -moz-box-shadow: -1px 0px 38px -6px rgba(0,0,0,0.29);
    display: inline-flex; /* make it a flex container */
    align-items: center; /* vertical centering */
    justify-content: center; /* horizontal centering */
    gap: 10px; /* space between icon & text */
}

    .btn-oneplan-dark img {
        width: 30px;
    }

.btn img {
    width: 20px;
}

.btn-oneplan-dark:hover {
    background-color: var(--cyan);
    border: 3px solid #fff;
    color: white;
}

.btn-oneplan-light {
    background-color: #e2e2e2;
    color: var(--blue);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 800;
    border: 3px solid #fff;
    text-transform: uppercase;
    box-shadow: -1px 0px 38px -6px rgba(0,0,0,0.29);
    -webkit-box-shadow: -1px 0px 38px -6px rgba(0,0,0,0.29);
    -moz-box-shadow: -1px 0px 38px -6px rgba(0,0,0,0.29);
    display: inline-flex; /* flex container */
    align-items: center; /* vertical centering */
    justify-content: center; /* horizontal centering */
    gap: 10px; /* space between icon & text */
}

    .btn-oneplan-light img {
        width: 20px;
    }

    .btn-oneplan-light:hover {
        background-color: var(--cyan);
        border: 3px solid #fff;
        color: white;
    }


/****************Forms**********************/


.container-form {
    box-shadow: -1px 0px 38px -6px rgba(0,0,0,0.29);
    -webkit-box-shadow: -1px 0px 38px -6px rgba(0,0,0,0.29);
    -moz-box-shadow: -1px 0px 38px -6px rgba(0,0,0,0.29);
    background-color: transparent;
    border-radius: 17px;
}






.quote-form {
    background: white;
    border-radius: 17px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}





/********Hero**********/

.hero-section {
    background-image: url('../../img/background/hero-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: var(--blue);
}
/* <-- this was missing */

@media (max-width: 767.98px) {
    .hero-section {
        padding-top: 30px
    }
}

.hero-section form {
    background-color: var(--blue);
    border-radius: 0px 0px 17px 17px;
    padding: 20px;
}

    .hero-section form h4 {
        color: white;
        font-weight: 700;
    }

.hero-section .card {
    padding: 20px 20px 10px 20px!important;
    border-radius: 17px 17px 0px 0px;
    border: 0px
}

    .hero-section .card .card-title h4 {
        color: var(--blue);
        font-weight: 400;
        font-size: 18px
    }


/*****Hero section bottom ****/
.hero-section-bottom {
    background-image: url('../../img/background/hero-bg-fliped.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: var(--blue);
    padding: 10px 0 80px 0;
}
/* <-- this was missing */

@media (max-width: 767.98px) {
    .hero-section-bottom {
        padding-top: 30px
    }
}

.hero-section-bottom form {
    background-color: var(--blue);
    border-radius: 17px 17px 0px 0px;
    padding: 20px;
}

    .hero-section-bottom form h4 {
        color: white;
        font-weight: 700;
    }

.hero-section-bottom .card {
    padding: 10px;
    border-radius: 0px 0px 17px 17px;
    border: 0px
}

    .hero-section-bottom .card .card-title h4 {
        color: var(--blue);
        font-weight: 400;
        font-size: 18px
    }



/********card**********/



.benefits-section .card {
    height: 100%; /* fill the column height */
}

.benefits-section .card-body {
    display: flex;
    flex-direction: column;
}

.benefits-section .card .card-title {
    min-height: 3rem; /* adjust so it fits 2 lines consistently */
}

.benefits-section .card {
    border: 0px;
}

    .benefits-section .card img {
        width: 120px;
        margin: auto;
        margin-bottom: -60px;
        z-index: 1;
    }

.card-title {
    color: #322f78;
    font-weight: 700
}

.benefits-section .card .card-body {
    background-color: #f2f2f2;
    padding-top: 80px;
    color: #322f78;
    border-radius: 17px;
    padding-bottom: 40px
}

.plan-card {
    border-radius: 17px;
    border: 0px;
}

    .plan-card .card {
        border-radius: 17px;
        border: 0px;
    }


    .plan-card h1 {
        color: #ffff;
        font-size: 42px;
    }

@media (max-width: 767.98px) {
    .plan-card h1 {
        font-size: 2em
    }
}

.plan-card p {
    color: #ffff
}

.card-btn {
    display: flex;
    align-items: center; /* vertical alignment */
    height: 60px;
    justify-content: center;
}


    .card-btn h5 {
        margin-bottom: 0px;
        color: #fff;
        text-decoration: underline;
        font-weight: 600;
    }


    .card-btn h2 {
        margin-bottom: 0px;
        color: #fff;
        font-weight: 700;
    }


.solid-card-dark {
    border: 0;
    border-radius: 17px;
    background-color: #3477b7;
    text-align: center;
    margin: auto;
    font-weight: 600;
    color: #fff;
}

    .solid-card-dark p {
        color: #fff !important;
    }

.solid-card-dark-stroke {
    border-radius: 17px;
    border: 2px solid #3477b7;
    text-align: center;
    margin: auto;
    font-weight: 600;
    color: #3477b7;
}

.solid-card-bright {
    border: 0;
    border-radius: 17px;
    background-color: #38a1d7;
    text-align: center;
    margin: auto;
    font-weight: 600;
    color: #fff;
}

.solid-card-bright-stroke {
    border-radius: 17px;
    border: 2px solid #38a1d7;
    text-align: center;
    margin: auto;
    font-weight: 600;
    color: #38a1d7;
}








/********form**********/








.form-control {
    border-radius: 8px;
    border: 2px solid #e9ecef;
    padding: 12px 15px;
}

    .form-control:focus {
        border-color: var(--oneplan-cyan);
        box-shadow: 0 0 0 0.2rem rgba(78, 205, 196, 0.25);
    }



ul {
    margin: 5px; /* removes top/bottom/left/right margin */
    padding: 5px; /* removes left padding that indents the list */
    color: var(--blue);
}

li {
    margin-left: 5px; /* ensures no manual left margin */
    padding-left: 5px; /* ensures no extra indent */
}


.gap-cover-section img {
    margin-top: -100px; /* adjust the number until it overlaps as much as you want */
    z-index: 2;
    position: relative; /* ensures z-index takes effect */
}

@media (max-width: 767.98px) {
    .gap-cover-section img {
        margin-top: -40px; /* adjust the number until it overlaps as much as you want */
    }
}


/********************************Footer Elements******************************/

footer {
    background-color: #322f78;
}

    footer a {
        text-decoration: none;
        color: #fff;
    }

    footer p {
        color: #fff;
        font-size: 12px
    }


.footer-icon {
    width: 40px;
    height: auto;
    margin: 10px
}

.footer-strip {
    background-color: #26235a;
    padding: 30px;
}

    .footer-strip p {
        font-size: 12px !important
    }



/********************************Health cover section******************************/


.health-cover-section h4 {
    color: var(--blue);
    font-weight: bold;
}

.health-cover-section p {
    color: var(--blue);
}

ul.custom-bullets {
    list-style: none; /* remove default bullets */
    padding-left: 0;
    margin-left: -10px; /* optional reset */
}

    ul.custom-bullets li {
        position: relative;
        padding-left: 38px; /* space for your SVG */
        margin-bottom: 20px
    }

        ul.custom-bullets li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            width: 30px;
            height: 30px;
            transform: translateY(-50%);
            background: url('../../img/svg/check.svg') no-repeat center;
            background-size: contain; /* keeps SVG sharp */
        }



.curved-top-blue {
    background-image: url('../../img/background/blue-bg-curved.png');
    background-color: #f2f2f2;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: var(--blue);
    height: 180px !important;
    margin-bottom: -1px
}

@media (max-width: 991.98px) {

    .curved-top-blue {
        height: 100px !important
    }
}

@media (max-width: 767.98px) {
    .curved-top-blue {
        height: 75px !important
    }
}

@media (max-width: 575.98px) {
    .curved-top-blue {
        height: 100px !important
    }
}







.top-blue h1 {
    color: #fff
}

.top-blue h3 {
    color: #fff;
    font-size: 20px
}

.top-blue .card {
    background-color: transparent;
    border: 0px;
    color: white;
}

    .top-blue .card h5 {
        color: var(--bright-blue);
        margin-left:;
    }

    .top-blue .card img {
        width: 30px;
        height: 30px;
    }

/************Review card carousel*************/
/* Card carousel styles - FIXED VERSION */
/* Card carousel styles - WORKING VERSION */
.card-carousel {
    background: linear-gradient(to bottom, #322f78 0%, #322f78 50%, white 50%, white 100%);
    padding: 2rem 0;
    margin-top: -1px
}

    .card-carousel .container-fluid {
        margin-left: 0px;
        margin-right: 0px;
        padding-left: 0px;
        padding-right: 0px
    }

    .card-carousel .scroller {
        display: flex;
        gap: 1rem;
        overflow-x: hidden;
        scroll-behavior: smooth;
        padding: 0 1rem 1rem;
    }

    .card-carousel .scroller-item {
        flex: 0 0 300px;
        scroll-snap-align: start;
    }

    .card-carousel .card {
        overflow: hidden;
        height: 100%;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

    .card-carousel .card {
        padding: 20px;
        border-radius: 17px;
    }

    .card-carousel h5:first-child {
        font-size: 18px;
        color: var(--blue);
    }

    .card-carousel h5:nth-of-type(2) {
        font-size: 16px;
        color: var(--bright-blue);
        font-style: italic;
    }

    .card-carousel h5:nth-of-type(3) {
        font-size: 18px;
        color: var(--blue);
        font-style: italic;
        margin-top: 10px;
    }

    .card-carousel p {
        font-size: 16px;
        height: 150px;
        overflow: auto;
    }

    .card-carousel div i {
        color: #f5ba19;
    }


/***************Plan cards*********************/



.health-plan-cards h3 {
    font-size: 20px;
    color: var(--blue);
}

.health-plan-cards h5 {
    color: white;
}

    .health-plan-cards h5:first {
        margin-bottom: 15px;
    }

    .health-plan-cards h5:nth-of-type(2) {
        font-weight: 300;
        margin-bottom: 0px;
    }

    .health-plan-cards h5:nth-of-type(3) {
        font-weight: 300;
    }

.health-plan-cards .card h1 {
    color: white;
    font-weight: 700 !important;
    margin: 0px;
    line-height: 100%;
}

@media (max-width: 1435px) {

    .health-plan-cards .card h1 {
        font-size: 48px;
    }
}

@media (max-width: 1319px) {

    .health-plan-cards .card h1 {
        font-size: 38px;
    }
}


.health-plan-cards .card {
    padding: 0px;
    border-radius: 17px;
}

    .health-plan-cards .card .card-body {
        padding: 0px;
        color: white;
        border-radius: 17px 17px 0px 0px;
        padding: 20px !important;
        font-size: 18px
    }

.health-plan-cards .row > .col-12:first-child .card-body {
    background-color: var(--blue);
}

.health-plan-cards .row > .col-12:nth-of-type(2) .card-body {
    background-color: #808080
}

.health-plan-cards .row > .col-12:nth-of-type(3) .card-body {
    background-color: #808080
}

.health-plan-cards .row > .col-12:nth-of-type(4) .card-body {
    background-color: #3276b2
}

.health-plan-cards .row > .col-12:nth-of-type(5) .card-body {
    background-color: #40a9dc
}

.health-plan-cards .row > .col-12:nth-of-type(6) .card-body {
    background-color: #60c0bb
}




.health-plan-cards .card .btn-oneplan-dark {
    font-size: 16px;
    background-color: var(--cyan) !important;
}

.health-plan-cards .card .btn-oneplan-light {
    font-size: 16px;
    background-color: var(--blue) !important;
    color: white;
}

.health-plan-cards .card .btn-oneplan-dark {
    gap: 0; /* remove default gap */
}

    .health-plan-cards .card .btn-oneplan-dark img {
        margin-right: 10px;
    }

.health-plan-cards .card .btn-oneplan-light {
    gap: 0; /* remove default gap */
}

    .health-plan-cards .card .btn-oneplan-light img {
        margin-right: 10px;
    }

@media (max-width: 1619px) {


    .health-plan-cards .card .btn-oneplan-light {
        font-size: 15px !important;
    }



    .health-plan-cards .card .btn-oneplan-dark {
        font-size: 15px !important
    }
}

@media (max-width: 1579px) {


    .health-plan-cards .card .btn-oneplan-light {
        font-size: 14px !important;
    }



    .health-plan-cards .card .btn-oneplan-dark {
        font-size: 14px !important
    }
}

@media (max-width: 1539px) {


    .health-plan-cards .card .btn-oneplan-light {
        font-size: 13px !important;
    }



    .health-plan-cards .card .btn-oneplan-dark {
        font-size: 13px !important
    }
}

@media (max-width: 575px) {


    .health-plan-cards .card .btn-oneplan-light {
        font-size: 18px !important;
    }



    .health-plan-cards .card .btn-oneplan-dark {
        font-size: 18px !important
    }
}

.health-plan-cards .card .card-footer {
    padding-bottom: 20px;
}

.health-plan-cards .footer-download a {
    color: #26235a;
    text-decoration: none;
}

.health-plan-cards .card div {
    font-size: 14px;
}

.health-plan-cards .card .footer-download img {
    width: 20px;
    height: 20px;
}



.pearl {
    padding-bottom: 15px;
    padding-top: 15px;
    margin-bottom: 10px;
    border-radius: 10px;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}





/* First pearl */
#healthpage .col-2:nth-of-type(1) .pearl {
    background-color: #e6e6e6;
    border: 2px solid #808080
}

/* Second pearl */
#healthpage .col-2:nth-of-type(2) .pearl {
    background-color: #e6e6e6;
    border: 2px solid #808080
}

/* Third pearl */
#healthpage .col-2:nth-of-type(3) .pearl {
    background-color: #e6e6e6;
    border: 2px solid #808080
}

/* Fourth pearl */
#healthpage .col-2:nth-of-type(4) .pearl {
    background-color: #d6e4f0;
    border: 2px solid #3276b2
}

/* Fifth pearl */
#healthpage .col-2:nth-of-type(5) .pearl {
    background-color: #d9eef8;
    border: 2px solid #40a9dc
}

/* Sixth pearl */
#healthpage .col-2:nth-of-type(6) .pearl {
    background-color: #dff2f1;
    border: 2px solid #60c0bb
}

.scrollable-div {
    height: 120px;
    overflow-y: scroll; /* Always show vertical scrollbar */
}
.card-black {
    background: linear-gradient(0.25turn, #1d1c1d, #3d3d3f, #1b1b1b);
    color: #fff !important;
}

.card-white {
    background-color: #fff !important;
}