    .container {
        max-width: 94%;
        /* or remove this line entirely if you want no max-width cap */
        margin: 0 auto;
        /* you can even remove this if you don’t need centering */
        padding-left: 0;
        padding-right: 0;
    }

    /* -------------------------------------------------
   Apply the exact same “pill” style in all states
   ------------------------------------------------- */
    .language-dropdown .dropdown-toggle,
    .language-dropdown .dropdown-toggle:hover,
    .language-dropdown .dropdown-toggle:focus,
    .language-dropdown .dropdown-toggle:active,
    .language-dropdown .dropdown-toggle:focus:active,
    .language-dropdown .dropdown-toggle[aria-expanded="true"],
    .language-dropdown.show .dropdown-toggle {
        /* 1) Force the white background and light-gray border */
        background-color: #ffffff !important;
        border: 0.5px solid #00568C !important;

        /* 2) Force all four corners to be 25px, even on :active/focus */
        border-top-left-radius: 25px !important;
        border-top-right-radius: 25px !important;
        border-bottom-left-radius: 25px !important;
        border-bottom-right-radius: 25px !important;

        /* 3) Force the same text & caret color */
        color: #00568C !important;

        /* 4) Remove any Bootstrap-added box-shadow on focus/active */
        box-shadow: none !important;

        /* 5) Make sure transitions don’t animate border-radius from 0 → 25px */
        transition: background-color 0.2s ease,
            border-color 0.2s ease,
    }

    .dropdown-toggle i {
        display: inline-block;
        transition: transform 0.3s ease;
    }

    /* If you know your toggle’s ID is “langDropdown”, this is the most specific: */
    #langDropdown[aria-expanded="true"] i {
        transform: rotate(180deg);
    }

    /* Or, if you prefer to target by the “.dropdown” parent state: */
    .language-dropdown.show .dropdown-toggle i {
        transform: rotate(180deg);
    }





    /* If you have a FontAwesome caret inside <i class="fas">…</i>, force it dark in all states: */
    .language-dropdown .dropdown-toggle .fas,
    .language-dropdown .dropdown-toggle:hover .fas,
    .language-dropdown .dropdown-toggle:focus .fas,
    .language-dropdown .dropdown-toggle:active .fas,
    .language-dropdown .dropdown-toggle[aria-expanded="true"] .fas,
    .language-dropdown.show .dropdown-toggle .fas {
        color: #00568C !important;
        transform: none;
        /* or you can still rotate if you like: rotate(180deg) on open */
    }

    /* -------------------------------------------------
   Restyle the dropdown menu and its items (optional)
   ------------------------------------------------- */
    .language-dropdown .dropdown-menu {

        margin-top: 0.25rem;
        margin-left: -25%;
        min-width: 8rem;
        z-index: 1000;

        width: 171px;
        padding: 19px 23px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border-radius: 16px;
        border: 0.5px solid #C8E8FF;
        background: var(--Neutral-White, #FFF);

        /* Sass/Shadow */
        box-shadow: 0px 2px 8px 0px rgba(196, 202, 212, 0.24);
    }

    .language-dropdown .dropdown-menu .dropdown-item {

        color: #00568C;
        font-family: Inter;
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 120%;
        /* 19.2px */

        display: flex;
        width: 125px;
        padding: 16px;
        justify-content: center;
        align-items: center;
        gap: 16px;
    }

    .language-dropdown .dropdown-menu .dropdown-item:hover,
    .language-dropdown .dropdown-menu .dropdown-item:focus {
        border-radius: 20px;
        background: #EEF8FF;

        display: flex;
        width: 125px;
        padding: 16px;
        justify-content: center;
        align-items: center;
        gap: 16px;
    }

    .language-dropdown .dropdown-menu .dropdown-item.active,
    .language-dropdown .dropdown-menu .dropdown-item:active {
        background-color: #003f6b;
        color: #ffffff;
    }



    .nav-link {
        color: #00568C !important;
        font-family: Inter;
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: 120%;
        /* 21.6px */
    }

    .navbar .nav-item.language-dropdown .dropdown-toggle::after {
        margin-left: 8px;
        /* space before caret */
    }

    .navbar .nav-item.language-dropdown .dropdown-menu {
        border-radius: 8px;
        /* soften menu corners */
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    /* 2. Circular slider items */
    /* If you’re using a carousel where each “.slide” wraps your img/content: */
    .slider .slide {
        overflow: hidden;
        border-radius: 50%;
        /* makes the container circular */
    }

    /* And if it’s just images inside, you can target those too: */
    .slider .slide img {
        display: block;
        width: 95%;
        height: 100%;
        border-radius: 50%;
    }

    /* 3. Example—Bootstrap carousel */
    .carousel-item img {
        border-radius: 50%;
        overflow: hidden;
    }

    .banner-slider .banner-item {
        border-radius: 20px;
        /* or 50% for circles, but be aware of your slide dimensions */
        overflow: hidden;
        margin: 20,
    }

    .banner-slider-area .banner-item .d-table {
        display: block;
        height: 100%;
    }

    .banner-slider-area,
    .banner-slider-area .banner-item {
        /* height: 650px !important; */
        height: 80vh;
        /*for full-screen */
    }

    .banner-slider-area .banner-item .d-table-cell {
        vertical-align: middle;
    }

    .banner-slider-area {
        width: 95% !important;
        /* or any percent / px you like */
        max-width: 95% !important;
        /* optional cap */
        margin: 0 auto 100px auto !important;
        /* center it */
    }

    .banner-slider-area .banner-item {
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08) !important;
    }



    .custom-highlight {
        text-align: center;
    }

    /* your new 95%-wide, 400px-high, rounded box */
    .custom-box {
        width: 95%;
        height: 400px;

        /* optional cap so it doesn’t stretch too far on huge screens */
        margin: 0 auto 300px auto;
        /* center it */
        border-radius: 20px;
        /* match your slider’s curve */
        overflow: visible;
        background: url("{{ url($api->getSectionItem(25, 'background')->secv) }}") center center / cover no-repeat;
        position: relative;
    }

    .custom-box {
        /* keep the 95% width, 400px height & background you already have */
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 3%;
        /* left/right padding inside the box */
        box-sizing: border-box;
    }

    .custom-box .text-content {
        flex: 1 1 50%;
        color: #fff !important;
        text-align: left !important;
        /* or whatever text color works on your BG */
    }

    .custom-box .text-content h2 {
        text-align: left !important;
        color: #fff !important;

        text-shadow: 0px 1px 4px rgba(255, 255, 255, 0.00);
        font-family: "NeuMontreal";
        font-size: 61px;
        font-style: normal;
        font-weight: 700;
        line-height: 120%;
        /* 73.2px */
    }

    .custom-box .text-content p {
        margin-bottom: 80px;
        text-align: left !important;
        color: #fff !important;

        font-family: "Inter";
        font-size: 21px;
        font-style: normal;
        font-weight: 400;
        line-height: 120%;
        /* 30px */

        width: 610px;
    }

    .custom-box .image-content {
        flex: 1 1 45%;
        text-align: right;
    }

    .custom-box .image-content img {
        max-height: 500px;
        /* keeps it smaller than the 400px box */
        width: auto;
        z-index: 1000;
    }



    /* hero section */

    .custom-hero {
        width: 100%;
        height: 600px;
        background: url("{{ url($api->getSectionItem(25, 'herosection_background')->secv) }}") center/cover no-repeat;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        padding-top: 100px;
        margin-bottom: 150px;
    }

    /* Optional overlay to darken bg for better contrast */
    .custom-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: transparent;
        z-index: 1;
    }

    .custom-hero .hero-content {
        position: relative;
        z-index: 2;
        width: 95%;
        max-width: 1200px;
        margin: 0 auto;
        color: #fff;
        text-align: center;
    }

    /* Top info boxes */
    .custom-hero .info-boxes {
        display: flex;
        gap: 50px;
        justify-content: center;
        margin-bottom: 2rem;
    }

    .custom-hero .info-box {
        border-radius: 30px;
        border: 1px solid #C8E8FF;
        background: #FFF;
        padding: 1rem;
        max-width: 870px;
        max-height: 177px;
        text-align: left;
        width: 870px;
    }

    /* .custom-hero .info-box i {
            font-size: 2rem;
            margin-bottom: 0.5rem;
            color: #007bff;
        } */

    .custom-hero .info-box h4 {
        margin: 0.5rem 0;

        color: #00568C;
        font-family: "NeuMontreal";
        font-size: 25px;
        font-style: normal;
        font-weight: 500;
        line-height: 36px;
        /* 116.129% */
        letter-spacing: -0.62px;
    }

    .custom-hero .info-box p {
        margin-bottom: 0.75rem;

        color: #828282;
        font-feature-settings: 'liga' off, 'calt' off;
        font-family: "Inter";
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 30px;
        /* 142.857% */
        letter-spacing: -0.126px;


    }

    .custom-hero .btn-box {
        border-radius: 30px;
        border: 1px solid #FFF;
        background: #107CBF !important;
        background-color: #107CBF !important;

        display: inline-flex;
        padding: 15px;
        justify-content: center;
        align-items: center;
        gap: 5px;

        color: #fff !important;
        margin: 0px !important;
    }

    .custom-hero .info-box .btn-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background: #007bff;
        color: #fff;
        border-radius: 50%;
        font-size: 1rem;

        /* new: push it to the right */
        align-self: flex-end;
        margin-top: 1rem;
        /* some breathing room above */
    }




    /* Development Section */
    .development-section {
        padding: 3rem 0;

    }

    .carousel-item {
        height: 100% !important;
    }

    .carousel-inner {
        height: 100% !important;
    }



    .development-section .navbar {
        display: flex;
        width: 760px;
        padding: 10px 30px 10px 10px;
        align-items: center;
        gap: 10px;
        border-radius: 30px;
        background: #FFF;
        margin-top: 25px;
        text-align: left;
        margin-bottom: 50px;
    }

    .development-section .content .title {
        color: #00568C;
        font-family: "NeuMontreal";
        font-size: 39px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;

        margin-top: 25px;
    }

    .development-section .content .content-text p {
        width: 637px !important;
        color: #00568C !important;
        font-feature-settings: 'liga' off, 'calt' off;
        font-family: "Inter";
        font-size: 21px;
        font-style: normal;
        font-weight: 400;
        line-height: 30px;
        /* 142.857% */
        letter-spacing: -0.126px;

        margin-top: 15px;
        height: 100%;
    }

    .development-section .content .readmore {
        display: inline-flex;
        padding: 8px 16px 8px 16px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        border-radius: 30px;
        background: transparent;

        border: 1px solid #107CBF;


        color: #107CBF;
        text-align: center;

        font-family: "Inter";
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: 120%;
        /* 24px */

        margin-top: 20px;
    }

    .development-section .content .dots {
        width: 108.914px;
        height: 12.229px;
        flex-shrink: 0;

        position: absolute;
        /* remove it from normal flow */
        bottom: 30px;
    }

    .development-section .content .dots .active {
        color: #00568C !important;
        font-size: 20px;
        /* control size */
        margin: 0 5px;

        /* inactive */
        cursor: pointer;
    }



    .development-section .content .dots .inactivedot {
        color: #B0DEFB !important;
        font-size: 20px;
        /* control size */
        margin: 0 5px;

        /* inactive */
        cursor: pointer;
    }

    .development-section .inactive {

        color: #00568C;

        font-family: "Inter";
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: 120%;
        /* 21.6px */

        padding: 10px 20px 10px 20px;
        cursor: pointer;
    }

    .development-section .section-title {
        color: #828282;
        text-align: center;
        font-family: "Inter";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 120%;
        /* 21.6px */

        text-align: left !important;
    }


    .development-container {
        width: 95%;
        max-width: 1840px;
        /* keep your max if you want */
        margin: 0 auto 150px auto;
        /* center */
        border-radius: 20px;
        /* match your other boxes */
        overflow: hidden;
        /* clip children to the curve */
        background: #EEF8FF;
        /* or your bg-image if you’re using one */

        /* optional */
        position: relative;

        padding: 0 0 0 50px;
        /* if you need vertical space */
        z-index: 1;
    }

    .readmoreseeall {
        display: inline-flex;
        padding: 12px 25px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        border-radius: 30px;
        background: #FFF;
        color: #00568C;
        font-family: Inter;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 120%;
        /* 19.2px */

        margin: auto 0 30px 0 !important;
    }

    .development-section .content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-top: 3%;
        height: 70% !important;
        /* max-height: 300px !important; */
    }

    .development-container::before {
        display: none !important;
    }

    /* faq section */
    /* === FAQ SECTION === */
    .faq-section {
        padding: 3rem 0;
        margin-bottom: 150px;
    }

    .faq-section .section-name {
        font: 400 16px/1.2 Inter;
        color: #828282;
        text-align: center;
    }

    .faq-section .section-title {
        font: 700 49px/1.2 NeuMontreal, sans-serif;
        color: #00568C;
        text-align: center;
        margin-top: 0.75rem;
    }

    /* Accordion container */
    .faq-list {
        margin: 2rem auto 0;
        width: 100%;
        max-width: 800px;
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
    }

    /* Each FAQ “card” */
    .faq-item {
        border: 1px solid #C8E8FF;
        border-radius: 30px;
        overflow: hidden;
        background: #fff;
    }

    /* Hide native marker */
    .faq-item summary::-webkit-details-marker,
    .faq-item summary::marker {
        display: none;
    }

    /* Question header */
    .faq-question {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1rem 2rem 1rem 2rem;
        cursor: pointer;
        font: 500 21px/1.2 NeuMontreal;
        color: #00568C;
        background: #fff;

        list-style: none;
        position: relative;
    }

    /* Chevron icon */
    .faq-icon {

        flex-shrink: 0;
        color: #00568C;
        transition: transform 0.3s;
    }

    .faq-item[open] .faq-icon {
        transform: rotate(180deg);
    }

    /* Answer panel */
    .faq-answer {
        background: #F1FAFF;
        border-top: none;
        padding: 0 2rem;
        font: 400 16px/1.5 Inter;
        color: #00568C;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition:
            max-height 0.4s ease,
            opacity 0.3s ease 0.1s,
            padding 0.3s ease;
    }

    /* Closed state */
    .faq-item:not([open]) .faq-answer {
        padding-top: 0;
        padding-bottom: 0;
    }

    /* Open state */
    .faq-item[open] .faq-answer {
        padding: 1rem 2rem 1.5rem;
        max-height: 500px;
        /* sufficient for most content */
        opacity: 1;

        color: #4B5563;
        font-family: Inter;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 32px;
        /* 160% */


    }

    .faq-item[open] .faq-question {
        background: #F1FAFF;
        /* same as answer bg */
    }



    /* faq section */


    /* text styles */
    .slide-title {
        font-size: 2rem;
        color: #004a8f;
        margin-bottom: 1rem;
    }

    .slide-desc {
        font-size: 1rem;
        color: #333;
        margin-bottom: 1.5rem;
    }

    .slide-link {
        font-weight: 500;
        color: #0056b3;
        text-decoration: none;
    }

    .slide-link i {
        vertical-align: middle;
        margin-left: 0.25rem;
    }

    /* image */
    .development-img {
        object-fit: cover;
        height: 100%;
        width: 100%;
    }

    /* make sure Owl dots appear below */
    .development-container .owl-nav {
        display: none;
    }

    /* Override all .btn-primary styles */
    .btn-primary {
        border-radius: 30px !important;
        background-color: #107CBF !important;
        border-color: #107CBF !important;



        display: inline-flex;
        padding: 8px 8px 8px 16px;
        justify-content: center;
        align-items: center;
        gap: 10px;

        padding: 10px 20px 10px 20px;

        background: #107CBF;


        color: #ffffff;
        text-align: center;

        font-family: "Inter";
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: 120%;
        /* 24px */
    }

    .btn-light {
        border-radius: 30px !important;
        background-color: #fff !important;
        color: #107CBF !important;
        border-color: #107CBF !important;
    }

    /* Optional: tweak hover/focus states */
    .btn-primary:hover,
    .btn-primary:focus {
        background-color: #0e6aa0 !important;
        /* slightly darker */
        border-color: #0e6aa0 !important;
    }



    body {
        font-family: 'NeuMontreal', sans-serif;
    }

    h1,
    h2,
    h3 {
        font-family: 'NeuMontreal', serif;
    }

    .section-title h2 {
        font-size: 49px;
        font-style: normal;
        font-weight: 700;
        margin-top: 0;
        line-height: 120%;
        /* 58.8px */
        color: #00568C;
        margin-bottom: 0;
        font-family: "NeuMontreal";
    }

    .case-study-area .section-title h2 {
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .section-title span {
        margin-bottom: 16px;
        display: block;
        color: #828282;
        text-align: center;
        font-family: "Inter";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 120%;
        /* 21.6px */
    }

    .section-title p {
        padding-top: 10px;
        margin-bottom: 0;
        max-width: 530px;
        color: #00568C;
        margin: 0 auto;
        text-align: center !important;
        font-family: "Inter";
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 120%;
        /* 30px */


    }

    .continuous-logos {
        overflow: hidden;
        width: 100%;
        position: relative;
    }

    .continuous-logos .track {
        display: flex;
        align-items: center;
        /* animate using our custom variable */
        animation: scroll-left 20s linear infinite;
        animation-play-state: running;
        /* set this so JS can override */
        --scroll-distance: 50%;
    }

    .continuous-logos .logo {
        flex: 0 0 auto;
        margin-right: 30px;
    }

    .continuous-logos .logo img {
        display: block;
        max-height: 80px;
        width: auto;
    }

    @keyframes scroll-left {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(calc(var(--scroll-distance) * -1));
        }
    }

    /* pause on hover (optional) */
    .continuous-logos:hover .track {
        animation-play-state: paused;
    }

    /* Override all buttons that default to white text */


    .btn-text-color {
        color: #00568C !important;
        font-family: Inter;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 120%;
        /* 19.2px */
    }

    .banner-item-content {
        margin: auto auto 30px auto !important;
    }

    .banner-item-content h1 {
        margin-top: 25px;
        max-width: 980px;
        margin-bottom: 20px;
        color: #fff;
        text-align: center;
        font-family: "NeuMontreal";
        font-size: 76px;
        font-style: normal;
        font-weight: 700;
        line-height: 120%;
        /* 91.2px */
        margin-bottom: -5px;
        padding-bottom: 5px;
    }



    .banner-item-content span {
        margin-top: 25px;
        max-width: 780px;
        margin-bottom: 20px;
        color: #3FBC9B !important;
        text-align: center;
        font-family: "NeuMontreal";
        font-size: 76px;
        font-style: normal;
        font-weight: 700;
        line-height: 120%;
        /* 91.2px */

        padding: inherit;
        background-color: inherit;
        border-radius: inherit;
        display: inline-block;

        margin-bottom: -5px;
    }

    .banner-item-content p {



        max-width: 100%;
        margin-bottom: 50px;
        margin-top: 0px;

        color: #FFF;
        text-align: center;
        font-family: "Inter";
        font-size: 25px;
        font-style: normal;
        font-weight: 400;
        line-height: 120%;
        /* 30px */
    }

    .banner-item-content .banner-btn {
        display: inline-flex;
        padding: 8px 16px 8px 16px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        border-radius: 30px;
        background: #FFF;


        color: #107CBF;
        text-align: center;

        font-family: "Inter";
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: 120%;
        /* 24px */

    }

    .banner-btn {
        display: inline-flex;
        padding: 8px 16px 8px 16px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        border-radius: 30px;
        background: #FFF;


        color: #107CBF;
        text-align: center;

        font-family: "Inter";
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: 120%;
        /* 24px */
    }






    .partnership-highlight {
        text-align: center;
    }

    /* your new 95%-wide, 400px-high, rounded box */
    .partnership-box {
        width: 95%;
        height: 400px;

        /* optional cap so it doesn’t stretch too far on huge screens */
        margin: 0 auto;
        /* center it */
        border-radius: 20px;
        /* match your slider’s curve */
        overflow: visible;
        background: url("{{ url($api->getSectionItem(28, 'image')->secv) }}") center center / cover no-repeat;
        position: relative;
    }

    .partnership-box {
        /* keep the 95% width, 400px height & background you already have */
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 3%;
        /* left/right padding inside the box */
        box-sizing: border-box;

        margin-bottom: 150px;
    }

    .partnership-box .text-content {
        flex: 1 1 50%;
        color: #fff !important;
        text-align: left !important;
        /* or whatever text color works on your BG */
    }

    .partnership-box .text-content h2 {
        color: #FFF;

        font-family: "NeuMontreal";
        font-size: 61px;
        font-style: normal;
        font-weight: 700;
        line-height: 120%;
        /* 73.2px */
    }

    .partnership-box .text-content p {
        color: #FFF;
        font-family: "Inter";
        font-size: 21px;
        font-style: normal;
        font-weight: 400;
        line-height: 120%;
        /* 25.2px */

        margin-bottom: 80px;
    }

    .footer-logo-img {
        width: 224px;
        flex-shrink: 0;
    }

    .footer-links h5 {
        color: #00568C;
        font-family: "NeuMontreal";
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: 32px;
        /* 177.778% */
    }

    .footer-links ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-links .social-links a {
        color: #828282;
        font-family: Inter;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 32px;
        /* 177.778% */
        text-decoration-line: underline;
        text-decoration-style: solid;
        text-decoration-skip-ink: none;
        text-decoration-thickness: auto;
        text-underline-offset: auto;
        text-underline-position: from-font;
    }

    /* 1) Stack the list items vertically */
    .social-links {
        list-style: none;
        margin: 0;
        padding: 0;

        /* use block layout for vertical stacking */
        display: block;
    }

    /* 2) Give each list item 10px bottom margin */
    .social-links li {
        margin-bottom: 10px;
    }

    /* 3) Remove margin on the very last item */
    .social-links li:last-child {
        margin-bottom: 0;
    }

    /* 4) Make the <a> a flex container so icon + text align horizontally */
    .social-links a {
        display: inline-flex;
        align-items: center;
        text-decoration: none;
        color: inherit;
    }

    /* 5) The circular wrapper around each icon */
    .social-links .icon-wrapper {
        display: inline-flex;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #EEF8FF;
        justify-content: center;
        align-items: center;
        margin-right: 8px;
        /* space between icon and text */
    }

    /* 6) Size the SVG inside the wrapper */
    .social-links .icon-wrapper svg {
        width: 20px;
        height: 20px;
        /* if you want the stroke/fill to match text color: */
        stroke: currentColor;
        fill: none;
    }

    /* 7) (Optional) Style link text */
    .social-links .link-text {
        font-size: 16px;
        line-height: 1;
    }




    .footer-links a {
        color: #828282;
        font-family: Inter;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 32px;
        /* 177.778% */
    }

    .footer-links a:hover {
        color: #00568C;

    }

    .footer-links ul li {
        margin-bottom: 10px;
        /* space between items */
    }

    .line {
        stroke-width: 1px;
        stroke: #C8E8FF !important;
        color: #00568C !important;
    }

    .copyright {
        color: var(--Text-Tertiary, #6D6D6D);
        font-family: Inter;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 16px;
        /* 100% */

        margin-bottom: 50px;
        margin-top: 30px;
    }

    .privacy-links li {
        color: #00568C;
        font-family: Inter;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 16px;
        /* 100% */
        text-decoration-line: underline !important;
        text-decoration-style: solid;
        text-decoration-skip-ink: none;
        text-decoration-thickness: auto;
        text-underline-offset: auto;
        text-underline-position: from-font;
    }

    .privacy-links {
        list-style: none;
        margin: 0 100px 0 0;
        padding: 0;
        display: flex;
        /* lay items out in a row */
        gap: 1rem;
        /* space between links */
        justify-content: right;
        /* optional centering */
    }

    .privacy-links li {
        margin: 30px 20px 0 0;
        /* reset default */
    }

    .privacy-links a {
        text-decoration: underline !important;

        color: inherit;
    }


    /* marquee */
    /* ──────────────────────────────────────────────────────────────────────────────
   1) OUTER “VIEWPORT” – clips anything outside
   ────────────────────────────────────────────────────────────────────────────── */
    .logos-marquee_wrap {
        position: relative;
        width: 100%;
        overflow: hidden;
        /* hide the duplicate list until it scrolls in */
        padding: 1rem 0;
        /* optional vertical spacing around the row */
    }

    /* ──────────────────────────────────────────────────────────────────────────────
   2) TRACK – flex container holding exactly two .logos-marquee_list elements.
      We animate translateX from 0 → −50% of this track’s width.
   ────────────────────────────────────────────────────────────────────────────── */
    .logos-marquee_track {
        display: flex;
        animation: marquee-scroll 20s linear infinite;
        /* “20s” means one pass (0 → −50%) takes 20 seconds. Adjust for speed */
    }

    /* ──────────────────────────────────────────────────────────────────────────────
   3) EACH LIST – force it to occupy 100% of the wrap’s width. Within that
      100%, space all logos so that:
      • the gap between each logo = S
      • the gap between the end of List 1 and start of List 2 = S
      Achieved by using space-around: each item gets ½·S on its left and right.
   ────────────────────────────────────────────────────────────────────────────── */
    .logos-marquee_list {
        display: flex;
        flex: 0 0 100%;
        /* exact width = 100% of .logos-marquee_wrap */
        justify-content: space-around;
        /* ½·S at edges, full-S between items */
        align-items: center;
        /* vertically center logos if they vary in height */

        padding: 0;
        margin: 0;
        list-style: none;
    }

    /* ──────────────────────────────────────────────────────────────────────────────
   4) EACH LOGO ITEM – no additional margins needed; space-around handles spacing.
   ────────────────────────────────────────────────────────────────────────────── */
    .logos-marquee_item {
        flex: none;
        /* size exactly to the <img> inside */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* ──────────────────────────────────────────────────────────────────────────────
   5) LOGO <img> – bump up max-height to a visible size. Adjust as needed:
      e.g. 4rem, 5rem, etc., so they don’t look tiny or oversized.
   ────────────────────────────────────────────────────────────────────────────── */
    .logos-marquee_img {
        display: block;
        /* adjust this so your logos look appropriately large */
        width: 150px;
        height: auto;
        object-fit: contain;
    }

    /* ──────────────────────────────────────────────────────────────────────────────
   6) KEYFRAMES – move the track from 0% → −50%. Because each
      .logos-marquee_list is exactly 100% of the viewport,
      −50% means “exactly one list’s width,” so the second copy
      scrolls in seamlessly.
   ────────────────────────────────────────────────────────────────────────────── */
    @keyframes marquee-scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }


    /* 1) Hide Bootstrap’s default dropdown-toggle caret */
    .language-dropdown .dropdown-toggle::after {
        display: none;
    }

    /* 2) Ensure the new Font Awesome icon aligns middle-vertically */
    .language-dropdown .dropdown-toggle .fa-chevron-down {
        vertical-align: middle;
        font-size: 0.85em;
        /* tweak if you want the icon a bit larger/smaller */
    }

    .footer-section {
        padding: 50px 0;

    }

    /* ============================
       1) NAVBAR CONTAINER
       ============================ */
    .custom-nav {
        background-color: #ffffff;




        position: inherit;
        left: 0;
        padding: 0 0 0 100px;
        width: 100%;
        height: auto;

        text-align: center;
    }

    .custom-nav .menu {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: 2rem;

        /* add this: */
        justify-content: center;
    }

    .custom-nav .menu-item {
        position: relative;
        padding: 10px 15px;
    }

    /* ============================
       2) MENU TOGGLE BUTTON
       ============================ */
    .custom-nav .menu-toggle {
        background: none;
        border: none;


        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 0.25rem;
        padding: 0.25rem;

        color: #00568C;
        font-family: Inter;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 120%;
        /* 21.6px */
    }



    .custom-nav .menu-toggle:focus {
        outline: none;
    }

    /* ============================
       3) CHEVRON ICON
       ============================ */
    .custom-nav .menu-toggle .fas {
        transition: transform 0.2s ease;
        color: #00568C;
    }

    /* Rotate when active */
    .custom-nav .menu-item.active .menu-toggle .fas {
        transform: rotate(180deg);
    }

    .custom-nav .menu-item.active {
        background-color: #F1FAFF;
        border-radius: 30px;
        background: #F1FAFF;
        padding: 10px 15px;
    }

    /* ============================
       4) DROPDOWN CONTENT (HIDDEN BY DEFAULT)
       ============================ */
    .custom-nav .dropdown-content {
        display: none;
        position: absolute;
        top: calc(100%);
        left: -100%;
        background-color: #ffffff;
        border: 1px solid #e0e0e0;
        border-radius: 16px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        padding: 16px;
        gap: 16px;
        z-index: 1000;

        width: 380px;
        /* change this from 240px to 400px */
        text-align: left;
        /* ensure all text is left-aligned */
    }

    .has-sub {
        cursor: pointer;
        color: #00568C;
        font-family: Inter;
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 120%;
        /* 19.2px */
    }

    .custom-nav .dropdown-content-has-submenu {
        display: none;
        position: absolute;
        top: calc(100% + 0.25rem);
        left: -200%;
        background-color: #ffffff;
        border: 1px solid #e0e0e0;
        border-radius: 16px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        padding: 16px;
        gap: 16px;
        z-index: 1000;

        width: 710px;
        /* change this from 240px to 400px */
        text-align: left;
        /* ensure all text is left-aligned */
    }

    .custom-nav .menu-item.active .dropdown-content-has-submenu {
        display: block;
    }

    /* Show when parent has .active */
    .custom-nav .menu-item.active .dropdown-content {
        display: block;
    }

    /* ============================
       5) DROPDOWN HEADER / TITLE
           ============================ */
    .custom-nav .dropdown-content-has-submenu h3,
    .custom-nav .dropdown-content h3 {
        margin: 0 0 0.5rem 0;



        letter-spacing: 0.05em;

        color: #00568C;
        font-family: Inter;
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: 120%;
        /* 14.4px */

        margin: 16px;

        text-transform: uppercase;
    }

    /* ============================
       6) DROPDOWN LINKS
       ============================ */
    .custom-nav .dropdown-content-has-submenu ul,
    .custom-nav .dropdown-content ul {
        list-style: none;
        margin: 0 0 0.75rem 0;
        padding: 0;
    }

    .custom-nav .dropdown-content-has-submenu ul li,
    .custom-nav .dropdown-content ul li {
        margin-bottom: 0.5rem;

    }

    .mouseover {

        width: 340px;
        padding: 16px;
        align-items: center;
        gap: 16px;
        border-radius: 16px;
        margin-bottom: 0.5rem;
    }




    /* 1) Make the container a positioning context */
    .mouseover {
        position: relative;
    }

    /* 2) Define the icon as a ::after pseudo-element */
    .mouseover::after {
        content: "";
        position: absolute;
        display: flex;
        width: 32px;
        height: 32px;
        padding: 8px;
        justify-content: center;
        align-items: center;
        flex-shrink: 0;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);

        /* solid circle behind the icon */
        background-color: #FFF;
        border-radius: 99px;

        /* your SVG on top */
        background-image: url("{{ $api->getSectionItem(32, 'arrow_right')->secv }}");
        background-repeat: no-repeat;
        background-position: center center;

        background-size: 16px 16px;

        opacity: 0;
        transition: opacity .2s ease;
    }


    /* 3) Your existing hover styles plus fade-in of the icon */
    .mouseover:hover {
        margin-bottom: 0.5rem;
        background-color: #EEF8FF !important;
        width: 340px;
        padding: 16px;
        align-items: center;
        gap: 16px;
        border-radius: 16px;
    }

    /* 4) Fade the icon in on hover */
    .mouseover:hover::after {
        opacity: 1;
    }


    /* after add icon */

    .custom-nav .dropdown-content-has-submenu ul li:last-child,
    .custom-nav .dropdown-content ul li:last-child {
        margin-bottom: 0;
    }

    .custom-nav .dropdown-content-has-submenu a,
    .custom-nav .dropdown-content a {
        color: #00568C;
        text-decoration: none;
        transition: color 0.2s ease;
        font-family: Inter;
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 120%;
        /* 19.2px */

    }


    /* ============================
       7) DROPDOWN DESCRIPTION
       ============================ */
    .custom-nav .dropdown-content-has-submenu p,
    .custom-nav .dropdown-content p {
        margin: 10px 0 0 0;

        color: #828282;
        font-family: Inter;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 120%;
        /* 16.8px */
    }


    /*=================================
Go Top Area
====================================*/
    .go-top {
        position: fixed;
        top: 60%;
        right: 3%;
        opacity: 0;
        cursor: pointer;
        text-decoration: none;
        color: #ffffff;
        font-size: 24px;
        font-weight: bold;
        text-align: center;
        background: #107CBF;
        border-radius: 50%;
        width: 45px;
        height: 45px;
        line-height: 48px;
        z-index: 100;
        transition: 0.5s;
    }

    .go-top i {
        transition: 0.5s;
    }

    .go-top:hover {
        background-color: #3FBC9B;
    }

    .go-top.active {
        top: 95%;
        transform: translateY(-95%);
        opacity: 1;
        visibility: visible;
    }

    /*=================================
Go Top Area End
====================================*/

    .sticky-nav .main-nav {
        top: 0;
        border: none;
        position: fixed;
        z-index: 999;
        box-shadow: 0 0 0 0 !important;
        transition: top 0.8s ease-in-out !important;
    }

    .sticky-nav {
        top: 0;
        position: fixed;
        width: 100% !important;
        z-index: 999;
    }







    /* forms */

    /* Label */
    .form-label {
        display: block;
        font-weight: bold;
        color: #00568C;
        margin-bottom: 4px;
    }

    .required {
        color: red;
    }

    /* Dropdown wrapper */
    .custom-dropdown {
        position: relative;
        width: 100%;
        max-width: 500px;
        font-family: Inter, sans-serif;

        border-radius: 30px;
        border: #E6E6E6;
        background: #FFF;
    }

    /* Header (always visible) */
    .custom-dropdown .dropdown-header {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        min-height: 44px;
        padding: 6px 40px 6px 12px;
        border: 1px solid #E6E6E6;
        border-radius: 24px;
        background-color: #fff;
        cursor: pointer;
        box-sizing: border-box;
    }

    .custom-dropdown .dropdown-header.active {
        border-color: #6AB5E4;
        border: 1px solid #6AB5E4;

    }

    .custom-dropdown .dropdown-header.active i {
        rotate: 180deg;
    }

    /* Tags container */
    .custom-dropdown .tags-container {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }

    /* Individual tag */
    .custom-dropdown .tag {
        display: flex;
        align-items: center;
        padding: 4px 8px;
        background-color: #E0F2FF;
        border-radius: 12px;
        font-size: 14px;
        color: #00568C;
    }

    /* Remove (×) inside tag */
    .custom-dropdown .tag .remove-tag {
        margin-left: 6px;
        cursor: pointer;
        font-size: 12px;
        color: #107CBF;
    }

    /* Placeholder text */
    .custom-dropdown .placeholder {
        flex: 1;
        color: #fff;
        font-size: 14px;
    }

    /* Chevron */
    .custom-dropdown .arrow {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        pointer-events: none;
        color: #107CBF;
    }

    /* Dropdown menu (hidden by default) */
    .custom-dropdown .dropdown-menu {
        display: none;
        position: absolute;
        width: 100%;
        margin-top: 4px;
        border: #ccc;
        border-radius: 8px;
        background-color: #fff;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        z-index: 10;
        box-sizing: border-box;
        max-height: 240px;
        overflow: auto;

        border-radius: 20px;
        box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.15);
    }

    /* Open state */
    .custom-dropdown.open .dropdown-menu {
        display: block;
    }

    /* Search input */


    .dropdown-content-has-submenu .submenu {
        background: #EEF8FF;
        display: inline-flex;
        padding: 50px 0px 10px 30px;
        justify-content: left;
        align-items: left;
    }

    .dropdown-content .subs {
        display: none;
    }

    .dropdown-content-has-submenu .subs {
        width: 100% !important;
    }

    .submenu .subs a,
    .submenu .subs li {
        list-style: none;
        color: #828282;
        font-family: "Inter";
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 24px;
        /* 150% */

        width: 100%;

        margin-bottom: 15px !important;

    }

    .submenu .subs li svg {
        display: none;
    }

    .submenu .subs li:hover svg {
        display: inline-block;
        width: 16px;
        height: 16px;


        float: right;
        margin-right: 30px;
    }

    .submenu .subs a:hover,
    .submenu .subs li:hover {
        list-style: none;
        color: #00568C;
        font-family: "Inter";
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 24px;
        /* 150% */
        /* 150% */

        cursor: pointer;
    }

    .dropdown-content-has-submenu {
        padding: 0 0 0 16px !important;
    }

    .dropdown-content-has-submenu h3 {
        padding-top: 16px !important;
    }

    /* List items */
    .custom-dropdown .dropdown-list {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .custom-dropdown .dropdown-item {
        width: 95%;
        cursor: pointer;
        color: #00568C;

        display: flex;
        padding: 14px 25px;
        align-items: center;
        gap: 10px;
        align-self: stretch;

        border-radius: 30px;
        background: #EEF8FF;
        margin: 5px 10px;
    }

    .custom-dropdown .dropdown-item:hover {
        background-color: #E0F2FF;
    }


    .form-items {
        margin: 10px 0;
    }

    .form-items .title {
        color: #00568C;
        font-feature-settings: 'ss11' on, 'cv09' on, 'liga' off, 'calt' off;

        /* Label/Small */
        font-family: Inter;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 20px;
        /* 142.857% */
        letter-spacing: -0.084px;
    }

    .form-items .form-item {
        color: var(--Neutral-400, #00568C);
        font-feature-settings: 'ss11' on, 'cv09' on, 'liga' off, 'calt' off;

        /* Paragraph/Small */
        font-family: Inter;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px;
        /* 142.857% */
        letter-spacing: -0.084px;

        display: flex;
        padding: 10px 20px;
        align-items: center;
        gap: 8px;
        align-self: stretch;

        border-radius: 20px;
        border: 1px solid #E6E6E6;
        background: var(--Neutral-000, #FFF);

        width: 100%;

        margin: 10px 0;
    }

    .form-items .form-item:focus {
        border: 1px solid #6AB5E4 !important;
        outline: #6AB5E4 !important;
    }

    .text-danger {
        color: var(--Orange-Base, #FF4B0E);
        font-feature-settings: 'ss11' on, 'cv09' on, 'liga' off, 'calt' off;

        /* Label/Small */
        font-family: Inter;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 20px;
        /* 142.857% */
        letter-spacing: -0.084px;
    }

    .form-item-file {
        display: flex;
        padding: 10px 20px;
        justify-content: center;
        align-items: center;
        align-content: center;
        gap: 8px;
        align-self: stretch;
        flex-wrap: wrap;
        border-radius: 20px;
        border: 1px dashed #107CBF;
        background: var(--Neutral-000, #FFF);

        width: 100%;

        cursor: pointer;
    }

    input[type=file]::file-selector-button {
        background: url("data:image/svg+xml;utf8,<svg width='25' height='24' viewBox='0 0 25 24' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M12.5 3V15' stroke='%23107CBF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/><path d='M17.5 8L12.5 3L7.5 8' stroke='%23107CBF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/><path d='M21.5 15V19C21.5 19.5304 21.2893 20.0391 20.9142 20.4142C20.5391 20.7893 20.0304 21 19.5 21H5.5C4.96957 21 4.46086 20.7893 4.08579 20.4142C3.71071 20.0391 3.5 19.5304 3.5 19V15' stroke='%23107CBF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center/contain;
        border: none;
        width: 40px;
        height: 40px;
        cursor: pointer;
        text-align: center;
        padding-left: 100%;
    }

    .form-item-file img {
        margin-right: 10px;
    }

    .txtbtn {
        color: var(--Neutral-400, #8F8F8F);
        text-align: center;
        font-feature-settings: 'ss11' on, 'cv09' on, 'liga' off, 'calt' off;

        /* Paragraph/Small */
        font-family: Inter;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px;
        /* 142.857% */
        letter-spacing: -0.084px;
    }

    input[type=file] {
        font-size: 0;
        overflow: hidden;

    }

    .form-items .btn {
        display: flex;
        padding: 8px 20px;
        justify-content: center;
        align-items: center;
        gap: 8px;
        align-self: stretch;

        border-radius: 30px;
        background: #E4E4E4;

        width: 100%;
    }

    /* Form styles */

    .preloader {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 99999;
        background-color: #ffffff;
    }

    .spinner {
        width: 140px;
        height: 140px;
        border-radius: 5px;
        background-color: #ffffff;
        margin: 100px auto;
        /* animation: rotate-in 1.2s infinite ease-in-out; */
        /* animation: pulse-scale 1.2s infinite ease-in-out; */
    }

    @keyframes pulse-scale {

        0%,
        100% {
            transform: scale(1);
            opacity: 1;
        }

        50% {
            transform: scale(1.2);
            opacity: 0.7;
        }
    }