﻿/* ---------------GLOBAL TYPOGRAPHY------------------------ */
.separator {
    color: var(--ma-grey90) !important;
    font-size: var(--ma-metadata) !important;
}

.blue_pill,
.section_pill {
    display: inline-block;
    background-color: #EDF7FF;
    color: var(--ma-type-primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    width: fit-content;
}

/*----------------------------------------- SECTION 1: HERO SECTION ----------------------------------------- */
.top_banner_section {
    
    padding: 150px 0px 80px 0px;
    position: relative;
}

    /*.top_banner_section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(180deg, #034694 0%, #0346947d 100%);
        z-index: 1;
    }*/

.ind-hero {
    position: relative;
    background: var(--ind-navy);
    overflow: hidden;
}
.ind-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #034694 0%, #0346947d 100%);
}

.ind-hero-badge {
    display: inline-block;
    font-size: var(--ma-metadata);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #93c5fd;
    background: rgba(147, 197, 253, 0.15);
    border: 1px solid rgba(147, 197, 253, 0.35);
    border-radius: 4px;
    padding: 6px 14px;
    margin-bottom: 20px;
}

.top_banner_section>.container {
    position: relative;
    z-index: 2;
}

.top_banner_section h1 {
    color: var(--ma-white);
    text-align: left;
    margin: 0px;
    padding: 0px;
}
.top_banner_section p {
    color: var(--ma-white);
}




/* -----------------------------------------Breadcrumb nav----------------------------------------- */
.breadcrumb_nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
    font-size: var(--ma-body-text);
}

    .breadcrumb_nav a {
        color: var(--ma-grey90);
        text-decoration: none;
        transition: color 0.3s;
    }

        .breadcrumb_nav a:hover,
        .breadcrumb_nav a:focus,
        .breadcrumb_nav a:active{
            color: var(--ma-type-primary);
        }

    .breadcrumb_nav .separator {
        color: var(--ma-grey40);
    }

    .breadcrumb_nav .current {
        color: var(--ma-type-primary);
        font-weight:500;
    }


/* breadcrumb_nav_white_bg */

.breadcrumb_nav_white_bg a {
    color: var(--ma-grey30);
}

    .breadcrumb_nav_white_bg a:hover,
    .breadcrumb_nav_white_bg a:focus,
    .breadcrumb_nav_white_bg a:active {
        color: var(--ma-white);
    }

.breadcrumb_nav_white_bg .separator {
    color: var(--ma-grey40);
}

.breadcrumb_nav_white_bg .current {
    color: var(--ma-white);
}




/* -----------------------------------------Breadcrumb nav----------------------------------------- */
.section_label {
    display: inline-block;
    padding: 5px 15px;
    background: #CDDAEA;
    border-radius: 25px;
    color: var(--ma-type-primary);
    font-size: var(--ma-metadata);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.section_label_white_bg {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}



    @media screen and (max-width: 992px) {
        .top_banner_section {
        padding: 40px 0 60px 0;
    }

    .top_banner_section h1 {
        font-size: var(--ma-greeting-title);
    }
}

@media screen and (max-width: 768px) {
    .top_banner_section h1 {
        font-size: var(--ma-page-title);
    }
}

@media screen and (max-width: 576px) {
    .top_banner_section {
        padding: 30px 0 50px 0;
    }

    .top_banner_section_breadcrumb {
        padding-top: 10px;
        margin-bottom: 20px;
    }

    .top_banner_section h1 {
        font-size: var(--ma-pane-header);
        padding: 20px 0;
    }
}





/*----------------------------------------- hero_breadcrumb ----------------------------------------- */
.hero_content {
/*    display: flex;
    flex-direction: column;
    justify-content: center;*/
    height: 100%;
    padding-right: 30px;
}

.hero_breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.hero_breadcrumb a {
    color: var(--ma-grey130);
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero_breadcrumb a:hover {
    color: var(--ma-type-primary);
}

.hero_breadcrumb .separator {
    color: var(--ma-grey90);
    font-size: 12px;
}

.hero_breadcrumb .breadcrumb_link {
    font-size: var(--ma-body-text);
}

/* ------------------ CTA SECTION------------------------------ */

/* Outer wrapper with white background */
.cta-wrapper {
    background-color: var(--ma-white);
    padding: 80px 0;
}

/* Inner dark blue box with design */
.cta-box {
    background-color: #034694;
    padding: 60px 40px;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
}

.cta-box .cta-content {
    position: relative;
    z-index: 2;
}

.cta-box .cta-content h2 {
    color: var(--ma-white);
    margin-bottom: 15px;
}

    .cta-box .cta-content p {
        color: var(--ma-white);
        margin-bottom: 25px;
        max-width: 400px;
        opacity:0.85;
    }

.cta-box .cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-box .btn-contact {
    padding: 12px 25px;
    border: 1px solid var(--ma-white);
    border-radius: 25px;
    color: var(--ma-white);
    font-size: var(--ma-subject-title);
    text-decoration: none;
    background-color: transparent;
    transition: all 0.3s ease;
}

    .cta-box .btn-contact:hover {
        background-color: var(--ma-white);
        color: var(--ma-type-primary);
    }

    .cta-box .btn-schedule {
        padding: 12px 25px;
        border: 1px solid var(--ma-white);
        border-radius: 25px;
        background-color: var(--ma-white);
        color: var(--ma-type-primary);
        font-size: var(--ma-subject-title);
        text-decoration: none;
        transition: all 0.3s ease;
    }

.cta-box .btn-schedule:hover {
    background-color: transparent;
    color: var(--ma-white);
}

/* Concentric Circles Background - Semi-circles spanning half the section */
.cta-box .circles-bg {
    position: absolute;
    right: -350px;
    top: 50%;
    transform: translateY(-50%);
    width: 700px;
    height: 700px;
    z-index: 1;
}

.cta-box .circle {
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Ring 1 - Outermost */
    .cta-box .circle-1 {
        width: 700px;
        height: 700px;
        background-color: #1C599F;
    }

/* Ring 2 */
    .cta-box .circle-2 {
        width: 600px;
        height: 600px;
        background-color: #356BA9;
    }

/* Ring 3 */
    .cta-box .circle-3 {
        width: 500px;
        height: 500px;
        background-color: #4F7EB4;
    }

/* Ring 4 */
    .cta-box .circle-4 {
        width: 400px;
        height: 400px;
        background-color: #6890BF;
    }

/* Ring 5 */
    .cta-box .circle-5 {
        width: 300px;
        height: 300px;
        background-color: #81A3CA;
    }

/* Ring 6 */
    .cta-box .circle-6 {
        width: 200px;
        height: 200px;
        background-color: #9AB5D4;
    }

/* Ring 7 - Center (White) */
    .cta-box .circle-7 {
        width: 100px;
        height: 100px;
        background-color: white;
    }

@media screen and (max-width: 991px) {
    .ind-hero {
        padding-top: 64px;
    }
    .cta-wrapper {
        padding: 60px 0;
    }

    .cta-box .circles-bg {
        right: -330px;
        width: 560px;
        height: 560px;
    }

    .cta-box .circle-1 {
        width: 560px;
        height: 560px;
    }

    .cta-box .circle-2 {
        width: 480px;
        height: 480px;
    }

    .cta-box .circle-3 {
        width: 400px;
        height: 400px;
    }

    .cta-box .circle-4 {
        width: 320px;
        height: 320px;
    }

    .cta-box .circle-5 {
        width: 240px;
        height: 240px;
    }

    .cta-box .circle-6 {
        width: 160px;
        height: 160px;
    }

    .cta-box .circle-7 {
        width: 80px;
        height: 80px;
    }
}

@media screen and (max-width: 576px) {
    .cta-wrapper {
        padding: 40px 0;
    }

    .cta-box {
        padding: 40px 20px;
        border-radius: 20px;
    }

    .cta-box .circles-bg {
        display: none;
    }

    .cta-box .cta-content h2 {
        font-size: var(--ma-pane-header);
    }

    .cta-box .cta-buttons {
        flex-direction: column;
    }

    .cta-box .btn-contact,
    .cta-box .btn-schedule {
        width: 100%;
        text-align: center;
    }
}





/* ------------------ GLOBAL FAQ SECTION ------------------------------ */
.global_faq_section {
    padding: 80px 0;
    background-color: #E6EDF4;
}

.global_faq_accordion .accordion-item {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px !important;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.global_faq_accordion .accordion-button {
    font-family: var(--ma-font-semibold);
    font-size: var(--ma-subject-title);
    color: var(--ma-tag-black);
    background-color: var(--ma-white);
    padding: 20px 24px;
    box-shadow: none;
}

    .global_faq_accordion .accordion-button:not(.collapsed) {
        background-color: #f5f7ff;
        color: var(--ma-type-primary);
        box-shadow: none;
    }

    .global_faq_accordion .accordion-button::after {
        background-image: none;
        content: "\F285";
        font-family: "bootstrap-icons";
        font-size: 1.1rem;
        color: var(--ma-type-primary);
        transform: none;
        transition: transform 0.3s ease;
    }

    .global_faq_accordion .accordion-button:not(.collapsed)::after {
        content: "\F282";
    }

.global_faq_accordion .accordion-body {
    font-family: var(--ma-font-regular);
    font-size: var(--ma-body-text);
    color: var(--ma-body-color);
    padding: 20px;
    line-height: 1.7;
}

    .global_faq_accordion .accordion-body p {
        margin-bottom: 10px;
    }