:root {
    --blue: #126bc4;
    --green: #61ae56;
    --white: #fff;
}

body {
    font-family:
        "Roboto",
        ui-sans-serif,
        system-ui,
        sans-serif,
        "Apple Color Emoji",
        "Segoe UI Emoji",
        "Segoe UI Symbol",
        "Noto Color Emoji";
}

/* heading */
.heading {
    font-size: 55px;
    font-weight: 700;
    color: var(white);
}

.xs_heading {
    font-size: 24px;
}

.sm_heading {
    font-size: 30px;
}

.md_heading {}

a {
    text-decoration: none;
}

/* banner sec */

.banner_sec {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 420px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.banner_sec .container {
    position: relative;
    text-align: center;
}

.banner_sec::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-image: linear-gradient(rgba(0, 20, 50, 0.7), rgba(0, 20, 50, 0.8));
    z-index: 0;
}

.banner_sec .heading {
    color: var(--white);
    z-index: 2;
}

.banner_sec .heading_ai {
    color: var(--green);
}

.banner_sec p {
    color: var(--white);
    font-size: 26px;
}


/* why_join_us  */
.why_join_us {
    padding: 40px 0 60px;
}

.why_join_us .heading {
    color: var(--blue);
}

.badge-custom {
    background-color: #e7f1ff;
    color: var(--blue);
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    padding: 5px 15px;
}

.benefit-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.card.benefit-card {
    text-align: left;
}

.icon-circle img {
    width: 32px;
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #e7f1ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

/* form sec */

.signup-section {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0px 16px rgba(0, 0, 0, 0.1);
    margin: 50px auto;
    max-width: 1100px;
}

.signup-left {
    background: #0c3b7e;
    color: #fff;
    padding: 40px;
}

.signup-left ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.signup-left ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 7px;
}

.signup-left ul li .check_wrap {
    background-color: #fff3;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.signup-left ul li i {
    font-size: 14px;
}
.insurance_business{
    border-top: 1px solid #ccc;
    padding-top: 20px;
    margin-top: 20px;
}
.insurance_business p{
    font-size: 14px;
}
.Profile_img{
    width: 40px;
    height: 40px;
    margin-right: 15px;
    background-color: #fff3;
    border-radius: 50%;
    padding: 4px;
}
.Profile_img_wrap h6{
    font-size: 14px;
    margin-bottom: -3px;
}
.Profile_img_wrap small, .stat-box small{
    font-size: 12px;
    color: #ccc;
}
.signup-right {
    background: #fff;
    padding: 40px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    margin: 10px 0;
}
.signup-right .form-label{
    font-weight: 700;
    font-size: 14px;
}
.insurance_types{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    font-size: 14px;
}
.form-control{
    font-size: 14px;
}
.service_area span{
    font-size: 12px;
    padding-top: 5px;
}
.stat-box h5 {
    font-weight: bold;
    margin: 0;
}
.form-select{
    font-size: 14px;
}
.btn_custom{
    background-color: var(--blue);
    border: 0;
    height: 42px;
    color: var(--white);
    font-size: 14px;
    border-radius: 5px;
    font-weight: 600;
    transition: transform 0.3s ease,;
}
.btn_custom:hover{
    opacity: 0.9;
}
.signup_inner .heading{
    color: var(--blue);
}
/* footer */
footer {
    background-color: var(--blue);
    padding: 20px 0;
}

footer p {
    color: var(--white);
    margin-bottom: 0;
}

footer a {
    color: var(--white);
}

footer a:hover {
    color: #ccc;
}

footer .terms_wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* responsive */

@media(max-width: 1536px) {}

@media(max-width: 1366px) {
    .heading{
        font-size: 48px;
    }
    .xs_heading {
        font-size: 22px;
    }
    .sm_heading {
        font-size: 26px;
    }
}

@media(max-width: 1199px) {
    .heading{
        font-size: 36px;
    }
    .xs_heading {
        font-size: 22px;
    }
    .sm_heading {
        font-size: 24px;
    }
    .banner_sec p {
        font-size: 24px;
    }
}

@media(max-width: 991px) {
    .heading{
        font-size: 30px;
    }
    .xs_heading {
        font-size: 20px;
    }
    .sm_heading {
        font-size: 22px;
    }
    .banner_sec p {
        font-size: 22px;
    }
}

@media(max-width: 767px) {
    footer .container {
        flex-direction: column;
    }
    .heading{
        font-size: 24px;
    }
    .xs_heading {
        font-size: 18px;
    }
    .sm_heading {
        font-size: 20px;
    }
    .banner_sec p {
        font-size: 20px;
    }
}

@media(max-width: 575px) {
    .signup-left {
        padding: 40px 20px;
    }
    .signup-right {
        padding: 10px;
        padding-top: 40px;
    }
}

@media(max-width: 480px) {}

@media(max-width: 400px) {
    footer .terms_wrap {
        flex-direction: column;
        margin-top: 15px;
        gap: 5px;
    }
}