/*--------------------------------------
#logo section
-----------------------------------*/
section.logo {
    padding: 10px 0;

}

.logo img {
    width: 200px;
}

section.logo {
    padding: 10px 0;
    border-bottom: 1px solid #80808029;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

/*-----------------------------
#lead-form
---------------------------------------*/

.lead-form-wrapper {
    background-color: white;
    border-radius: 10px;
    border: 1px solid #ccc0c082;
    /* box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px; */
    margin-top: -120px;
}

.lead-content h5 {
    color: black;
    font-size: 15px;
    margin-bottom: 0;
}

.lead-content h5 span {
    font-weight: 600;
}

.lead-content h3 {
    font-size: 17px;
}

.lead-content h3 {
    font-size: 13px;
    font-weight: 600;
    color: #191717;
    background-color: #3d90bc0a;
    border-radius: 10px;
}

.lead-content h3 span {
    font-size: 20px;
}

.lead-content h4 {
    font-size: 17px;
    font-weight: 600;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0;
    line-height: 1.3;
    margin-bottom: 6px;
}

.lead-content h4 span {
    color: #006387;
    text-transform: capitalize;
    font-size: 16px;
}

.control-wrapper {
    position: relative;
}

.control-wrapper .form-control {
    line-height: 28px;
    font-size: 11px;
}

.control-wrapper i {
    position: absolute;
    top: calc(33%);
    left: 0.5rem;
    padding-left: 1.5rem;
    font-size: 16px;
    color: #00688e;
}

.control-wrapper .form-control {
    padding-left: 3.5rem;
}

.control-wrapper .labelfield {
    position: absolute;
    top: calc(-14%);
    left: 2%;
    background-color: white;
    padding: 0 4px;
    display: block;
    z-index: 1;
    font-size: 12px;
}

textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,

.uneditable-input:focus {
    border-color: #570f1ecc;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(255, 255, 255, 0.097);
    outline: 0 none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
}

.lead-content h5 {
    font-weight: 700;
    font-size: 15px;
    line-height: 1.3;
    color: transparent;
    background-image: linear-gradient(to right, #553c9a, #0b740b, #1361a2);
    -webkit-background-clip: text;
    background-clip: text;
    background-size: 200%;
    background-position: -200%;
    animation: animated-gradient 5s infinite alternate-reverse;
}

@keyframes animated-gradient {
    to {
        background-position: 200%;
    }
}

.border-center-1 {
    border-bottom: 1px solid #d8d8d8;
    margin: auto;
    width: 30%;
    margin-bottom: 4px;
}

.form-title img {
    width: 33px;

    animation: 0.9s bounce infinite alternate;

}

@keyframes bounce {
    to {
        opacity: 0.8;
        transform: translate3d(0, -5px, 0);
    }
}


h3.form-title.align-text {
    line-height: 1.3;
    /* text-align: center; */
}

p.badg-1.mb-2 {
    font-weight: 700;
    color: #0b4575;
}

.form-footer {
    font-size: 11px;
}

.bullet-main h6 {
    font-size: 13px;
    margin-bottom: 0;
    font-weight: 600;
}

/*---------------------------
#home banner
------------------------------------*/
section.home {
    padding: 20px 0;
}

/*--------------------------
#thank you page
------------------------------------*/
.thank-you-wrapper {
    width: 100%;
    height: 100vh;
    align-items: center;
    justify-content: center;
    /* background-color: #ffeeee9e; */
    background-image: linear-gradient(rgb(0 101 138), rgb(0 0 0));
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.thank-you-content {
    background-color: #fff;
    padding: 2rem;
    border-radius: 5px 30px;
    /* box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px; */
    box-shadow: rgb(132 132 132 / 31%) 20px 48px 100px 10px;
}

.thank-you-content h6 {
    color: #00688e;
    font-size: 14px;
    color: #3261b3;
}

.thank-you-content p {
    color: #00688e;
}

/*---------------------------
#footer
-------------------------------------*/
footer.footer {
    background-color: #00688e;
}

footer.footer p {
    color: white;
    text-align: center;
    padding: 10px;
    margin: 0;
    font-weight: 200;
}

.nav-link {
    text-transform: uppercase;
    color: black !important;
}

.nav-link:focus,
.nav-link:hover {
    color: #006185 !important;
}

/*------------------------------
  #back to top btn
  ---------------------------------*/
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #00688e;
    color: #ffffff;
    border: 1px solid #fff;
    border-radius: 5px 10px 5px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    display: none;
    z-index: 2000;
}

.back-to-top.show {
    display: flex;
}

.back-to-top:hover {
    background-color: #ffffff;
    color: #00688e;
    border-color: #00688e;
}

.back-to-top:hover i {
    transform: translateY(-5px);
    transition: 0.3s;
}


/************************************/
/***        Why Choose Us css	  ***/
/************************************/
.why-us {
    position: relative;
    background: #FFF;
    background-position: top center;
    background-size: auto;
}

.why-us .icon-tooth {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(10px, -50%);
}

.why-us-box-1 {
    position: relative;
    z-index: 1;
}

.why-us-box-1 .why-us-item {
    flex-direction: row-reverse;
}

.why-us-box-1 .why-us-item .icon-box {
    margin-left: 15px;
    margin-right: 0;
}

.why-us-box-1 .why-us-item .why-us-cont {
    /* text-align: center; */
}

.why-us-item {
    /* display: flex; */
    align-items: center;
    margin-bottom: 60px;
    background: #ffffff;
    padding: 15px;
    height: 220px;
    border-radius: 5px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;

}

.why-us-item:last-child {
    margin-bottom: 0;
}

.why-us-item .icon-box {
    margin-right: 15px;
    margin-left: 10px;
}

.why-us-item .icon-box img {
    width: 52px;
}

.why-us-cont {
    width: calc(100% -63px);
}

.why-us-cont h3 {
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    margin-top: 20px;
    line-height: 26px;
    /* padding: 10px; */
}

.why-us-cont p {
    margin: 0;
    font-size: 13px;
}

.why-us-image {
    position: relative;
    z-index: 1;
}

/* .section-title h3 span {
    color: #2086b8;
} */

.section-title {
    text-align: center;
    position: relative;
}

.section-title h3 {
    font-size: 28px;
    font-weight: bold;
    display: inline-block;
    position: relative;
    padding-bottom: 8px;
}

.section-title h3::after {
    content: "";
    display: block;
    width: 40%;
    height: 2px;
    margin: auto;
    margin-top: 5px;
    background: linear-gradient(90deg,
            #004e92,
            #00688e,
            #000428);
    background-size: 200% 100%;
    animation: moveGradient 2s linear infinite;
}

/* Keyframes for moving gradient */
@keyframes moveGradient {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}


.section-title {
    text-align: center;
    position: relative;
}

/* about section  */
.about-section-title h3 {
    font-size: 28px;
    font-weight: bold;
    display: inline-block;
    position: relative;
    padding-bottom: 8px;
}

.about-section-title h3::after {
    content: "";
    display: block;
    /* width: 20%; */
    height: 2px;
    margin: auto;
    margin-top: 5px;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(0.76turn, rgb(236, 0, 19), rgb(242, 88, 34), rgba(56, 2, 155, 0.83));
    border-image-slice: 1;
}

.about {
    display: flex;
    flex-wrap: wrap;
    /* Ensures responsiveness */
    justify-content: space-between;
    /* Distributes lists evenly */
    /* Adds space between lists */
}

.about ul {
    flex: 1;
    /* Ensures both lists take equal width */
    min-width: 250px;
    /* Prevents lists from getting too narrow */
}

.about ul li {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 8px;
    margin: 8px;
    font-size: 15px;
    font-weight: 500;
}

.about ul li i {
    color: #068479;
    font-size: 20px;
    margin-right: 5px;
}

.about p {
    text-align: justify;
}

.btn-primary {
    background-color: white;
    border: none;
    color: #068479;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 16px;
    margin-bottom: 20px;
}

.btn-primary:hover {
    background-color: #068479;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 16px;
    margin-bottom: 20px;
}

hr {
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 20px auto;
    width: 80%;
}

.stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.stat-item h3 {
    font-size: 22px;
    font-weight: bold;
}

.stat-item p {
    font-size: 14px;
}

.divider {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .appointment-section {
        padding: 30px;
    }

    .appointment-content h2 {
        font-size: 20px;
    }

    .btn-primary {
        font-size: 14px;
        padding: 8px 16px;
    }

    .stats {
        flex-direction: column;
        gap: 0px;
    }

    .stat-item {
        flex: 1 1 100%;
    }
}

/* accordion */

.accordion-button {
    font-size: 14px;
    line-height: 15px;
    font-weight: 500 !important;
}

.accordion h2:hover {
    color: #00688e !important;
}

.accordion-button:focus {
    box-shadow: none;
    color: #00688e !important;
}

.accordion-item {
    border: 1px solid rgb(0 104 142 / 44%);
}

.accordion-button:not(.collapsed) {
    color: #00688e;
    background-color: #589cb52b;
}

.accordion-button:not(.collapsed)::after {
    filter: invert(1);
}

.check-icon {
    color: #00688e;
    font-weight: bold;
    margin-right: 8px;
}

.disclaimer-section {
    background: #f8f9fa;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.disclaimer-section h3 {
    color: #d9534f;
    font-weight: bold;
}

.disclaimer-section p {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

.disclaimer-section a {
    color: #007bff;
    text-decoration: none;
}

.custom-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}

.custom-table th,
.custom-table td {
    border: 1px solid #00688e;
    padding: 12px;
    font-size: 16px;
}

.custom-table th {
    background: #ffd770;
    padding: 20px;
    color: #333;
    font-weight: bold;
}

.custom-table .red-bg {
    background: #d42a2a;
    color: #fff;
}

.custom-table .highlight-text {
    color: #800080;
    font-weight: bold;
}

.invest img {
    width: 50px;
    animation: 0.9s bounce infinite alternate;
}

.animate-charcter-2 {
    background-color: #f4ce5111;
    font-size: 13px;
    /* padding: 5px 0px; */
}

.animate-charcter-2 span {
    font-size: 13px;
    font-weight: bold;
}

/* faq accordion */
.accordion-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    background-color: #fff;
    border: none;
}

.faq-section .accordion-button::after {
    width: 0;
    margin-left: 0%;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-item ul {
    padding: 10px;
    font-size: 14px;
}

.accordion-button {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-button .arrow-icon {
    transition: transform 0.3s ease;
    font-size: 1.2rem;
    margin-left: auto;
}

.accordion-button:not(.collapsed) .arrow-icon {
    transform: rotate(90deg);
}

.accordion-button::after {
    display: none !important;
}

.toggle-icon {
    font-size: 20px;
    font-weight: bold;
    margin-left: auto;
}

.why-us-box {
    background-color: #114b89;
}

.why-us-cl {
    background-color: #114b8921;
    padding: 50px 10px;
}

.insurance-item {
    display: flex;
    height: 100px;
    align-items: center;
    justify-content: center;
    background: #dee4e910;
    border-radius: 10px;
    border: 1px solid #80808024;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
    /* transition: transform 0.3s ease-in-out; */
}

.insurance-item i {
    font-size: 30px;
    padding: 20px;
    color: #105498;
}

.insurance-item p {
    font-weight: 600;
}

.insurance-item:hover {
    /* transform: scale(1.1); */
}

/*------------------------------
#income tabs
---------------------------------------*/
.radio-group {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
}

label {
    user-select: none;
}

input[type="radio"] {
    display: none;
}

input[type="radio"]+label {
    z-index: 10;
    font-size: 12px;
    position: relative;
    color: black;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
    font-weight: 500;
    background-color: white;
    border: 1px solid #ced4da;
    cursor: pointer;
    transition: all 200ms ease;
}

input[type="radio"]:checked+label {
    color: #ffffff;
    background-color: #125a9e;
}

input[type="radio"]+label {
    padding: 9px 23px;
    border-radius: 2px;
}

input[type="radio"]+label:last-child {
    padding: 9px 18px;
    border-radius: 0px 10px 8px 0px;
}

label.main-label {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 3px;
}

/*----------------------
#key benefit
------------------------------*/
.featured-item {
    background-color: #ffffff;
    padding: 18px;
    min-height: 200px;
    border-radius: 10px;
    border: 1px solid #00648f;
    box-shadow: 0 6px 16px rgba(0, 100, 143, 0.15), 0 2px 4px rgba(0, 100, 143, 0.25);
    transition: all 0.3s ease;
}

.featured-icon img {
    width: 61px;
    text-align: center;
    margin-bottom: 20px;
}


.featured-title h5 {
    margin-bottom: 0;
    text-transform: capitalize;
}

.featured-desc p {
    margin-bottom: 0;
}

.key-title h4 {
    /* text-align: center; */
    font-size: 22px;
    color: #190f0f;
}

.banner-section {
    position: relative;
}

.banner-img {
    width: 100%;
    /* height: 100vh; */
    object-fit: cover;
}

.form-column {
    /* position: absolute; */
    top: 50%;
    right: 5%;
    /* transform: translateY(-50%); */
}

@media (max-width: 767px) {
    .banner-img {
        /* height: 300px; */
    }

    .form-column {
        position: static;
        transform: none;
        margin-top: -20px;
    }
}

.condition-card {
    background: #f8f9fa;
    border: 1px solid #e1e1e1;
}

.btn-check:checked+.btn {
    color: var(--bs-btn-active-color);
    background-color: #00638a;
    border-color: #00638a !important;
}

.btn-check+.btn:hover {
    color: #00638a;
    background-color: var(--bs-btn-bg);
    border-color: #00638a !important;
}

/* OTP Button */
.otp-btn {
    color: #fff !important;
    font-weight: 600;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    font-size: 13px;
    background: #991630 !important;
}

.otp-btn:hover {
    /* background: #c91f22;
    color: #fff !important; */
}

/* OTP Input */
.otp-input {
    /* height: 52px; */
    border-radius: 10px;
    border: 2px solid #00688e;
    font-size: 16px;
    padding-left: 20px !important;
}

.otp-input:hover {
    /* height: 52px;
    border-radius: 10px;
    border: 2px solid #00688e !important;
    font-size: 16px;
    padding-left: 20px !important; */
}

.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #00688e;
    outline: 0;
    box-shadow: none;
}

.form-control {
    font-size: 12px;
}

/* Wrapper */
.select-control {
    position: relative;
}

/* Select styling */
.select-control select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 45px;
    /* space for arrow */
    padding-left: 38px;
    /* space for ₹ icon */
    cursor: pointer;
}

/* Dropdown arrow */
.select-control::after {
    content: "\25BC";
    /* ▼ */
    position: absolute;
    right: 15px;
    top: 60%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #00688e;
    pointer-events: none;
}

/* Left icon positioning (IMPORTANT) */
.control-wrapper i {
    /* position: absolute;
    left: 12px;
    top: 60%;
    transform: translateY(-50%);
    z-index: 2;
    color: #00688e;
    pointer-events: none; */
}

.age-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    /* padding: 6px 14px; */
    background: #fff;
    color: #00688e;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    /* border: 1.5px solid #00688e; */
}

.age-pill i {
    font-size: 16px;
    background: #00688e;
    color: #fff;
    padding: 4px;
    border-radius: 50%;
}


.info-line {
    display: flex;
    gap: 6px;
    font-size: 13px;
}

/* .therapy {
    color: #29b573;
}

.disease {
    color: #00688e;
} */
.text-li {
    --bs-text-opacity: 1;
    color: #00688e !important;
}