@charset "UTF-8";
/*#region Font & Color Section*/
/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
    /*--default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";*/

    --default-font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Nunito", sans-serif;
    --nav-font: "Ubuntu", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #282828; /* Color for headings, subheadings and title throughout the website */
    /*--accent-color: #ea7c00;*/ /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --accent-color: #2d8689; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
    --box-shadow: rgba(0, 0, 0, .2) 0 8px 10px -1px, rgba(0, 0, 0, .14) 0 6px 10px 0, rgba(0, 0, 0, .12) 0 1px 18px 0;
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #ffffff; /* The default color of the main navmenu links */
    --nav-hover-color: #2d8689; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #ea7c00; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
    --background-color: #f5f2ef;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #060606;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

    a:hover {
        color: color-mix(in srgb, var(--accent-color), transparent 25%);
        text-decoration: none;
    }

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}
/*#endregion*/

/*#region Header*/


.header {
    --background-color: rgba(0, 0, 0, 0);
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 10px 0;
    transition: all 0.5s;
    z-index: 997;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

    .header .logo {
        line-height: 1;
    }

        .header .logo img {
            max-height: 60px;
            margin-right: 14px;
            margin-top: 14px;
            box-shadow: #be9252 1px 1px 1px,#be9252 -1px 1px 1px,#be9252 1px -1px 1px,#be9252 -1px -1px 1px;
        }

        .header .logo h1 {
            font-size: 30px;
            margin: 0;
            font-weight: 500;
            color: var(--heading-color);
        }

        .header .logo span {
            font-size: 30px;
            color: var(--accent-color);
            margin-left: 2px;
            font-weight: 700;
        }

    .header .cta-btn,
    .header .cta-btn:focus {
        color: var(--contrast-color);
        background: var(--accent-color);
        font-size: 14px;
        padding: 8px 26px;
        margin: 0;
        border-radius: 50px;
        transition: 0.3s;
    }

        .header .cta-btn:hover,
        .header .cta-btn:focus:hover {
            color: var(--contrast-color);
            background: color-mix(in srgb, var(--accent-color), transparent 15%);
        }

@media (max-width: 1200px) {
    .header .logo {
        order: 1;
    }

        .header .logo h1 {
            font-size: 24px;
        }

    .header .cta-btn {
        order: 2;
        margin: 0 15px 0 0;
        padding: 6px 20px;
    }

    .header .navmenu {
        order: 3;
    }
}

/*#endregion*/

/*#region Header on Scroll*/


.scrolled .header {
    background-color: var(--surface-color);
    --surface-color: #252525;
}

/*#endregion*/

/*#region Hero*/

.hero {
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 120px 0 60px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .hero img {
        position: absolute;
        inset: 0;
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

    .hero:before {
        content: "";
        background: color-mix(in srgb, var(--background-color), transparent 30%);
        position: absolute;
        inset: 0;
        z-index: 2;
    }

    .hero .container {
        position: relative;
        z-index: 3;
    }

    .hero h1 {
        margin: 0;
        font-size: 85px;
        font-weight: 800;
        text-transform: uppercase;
        text-align: center;
        color: var(--accent-color);
    }

    .hero p {
        margin-top: 30px;
        margin-bottom: 30px;
        font-size: 30px;
        font-weight: 900;
        text-transform: uppercase;
        color: var(--contrast-color);
        text-align: center;
        line-height: 50px;
    }

    .hero .btn-primary {
        background: var(--accent-color);
        color: var(--contrast-color);
        font-weight: 700;
        font-size: 14px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 10px 30px;
        transition: 0.3s;
        text-transform: uppercase;
        border-radius: 40px;
        animation: btn-up-down 1s ease-in-out infinite alternate-reverse both;
    }

        .hero .btn-primary:hover {
            background: var(--accent-color);
            color: var(--contrast-color);
        }

@media (max-width: 640px) {
    .hero h1 {
        font-size: 30px;
        line-height: 36px;
    }

    .hero p {
        font-size: 20px;
        line-height: 36px;
    }
}

@keyframes btn-up-down {
    0% {
        transform: translateY(5px);
    }

    100% {
        transform: translateY(-5px);
    }
}

/*#endregion*/

/*#region Who We Are*/

.who-we-are {
    position: relative;
}

    .who-we-are .who-we-are-image {
        position: relative;
        overflow: hidden;
        border-radius: 8px;
        margin-bottom: 30px;
    }

        .who-we-are .who-we-are-image img {
            transition: transform 0.5s ease;
        }

            .who-we-are .who-we-are-image img:hover {
                transform: scale(1.1);
            }

@media (max-width: 992px) {
    .who-we-are .who-we-are-image {
        margin-bottom: 40px;
    }
}

.who-we-are .who-we-are-content {
    padding-left: 20px;
}

@media (max-width: 992px) {
    .who-we-are .who-we-are-content {
        padding-left: 0;
    }
}

.who-we-are .who-we-are-content h2:hover {
    color: var(--accent-color);
}

.who-we-are .who-we-are-content h2 {
    font-weight: 900;
    font-size: 38px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 20px;
    position: relative;
}

    .who-we-are .who-we-are-content h2:after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -10px;
        height: 4px;
        width: 60px;
        background: var(--accent-color);
        border-radius: 2px;
    }

.who-we-are .who-we-are-content .lead {
    font-size: 1.2rem;
    margin-bottom: 20px;
    margin-top: 25px;
    color: color-mix(in srgb, var(--heading-color), transparent 30%);
    font-weight: 500;
}

.who-we-are .who-we-are-content p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.who-we-are .who-we-are-content:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    height: 4px;
    width: 60px;
    background: var(--accent-color);
    border-radius: 2px;
}

.who-we-are .who-we-are-content .hero-features {
    list-style: none;
    padding-left: 0;
    font-size: 1.5rem;
}

    .who-we-are .who-we-are-content .hero-features li {
        display: flex;
        align-items: center;
    }

        .who-we-are .who-we-are-content .hero-features li i {
            color: var(--accent-color);
            margin-right: 0.7rem;
            margin-bottom: 5.7rem;
        }

.who-we-are .stats-row {
    margin-top: 30px;
}

.who-we-are .stat-item {
    text-align: center;
    padding: 15px 5px;
    margin-bottom: 20px;
    border-radius: 8px;
    background-color: var(--surface-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .who-we-are .stat-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 5px 5px rgba(0, 0, 0, 0.4);
        animation: btn-up-down 1s ease-in-out infinite alternate-reverse both;
    }

    .who-we-are .stat-item .stat-number {
        display: block;
        font-size: 2.2rem;
        font-weight: 900;
        color: var(--accent-color);
        margin-bottom: 5px;
        font-family: var(--heading-font);
    }

    .who-we-are .stat-item .stat-text {
        font-size: 0.85rem;
        font-weight: 700;
        color: var(--heading-color);
        margin-bottom: 0;
        text-transform: uppercase;
    }

.who-we-are .btn-learn-more {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    background-color: transparent;
    color: var(--accent-color);
    font-weight: 600;
    border: 2px solid var(--accent-color);
    border-radius: 50px;
    transition: all 0.3s ease;
    animation: btn-up-down 1s ease-in-out infinite alternate-reverse both;
    margin-bottom: 2rem;
}

    .who-we-are .btn-learn-more i {
        margin-left: 8px;
        transition: transform 0.3s ease;
    }

    .who-we-are .btn-learn-more:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }

        .who-we-are .btn-learn-more:hover i {
            transform: translateX(5px);
        }

@media (max-width: 768px) {
    .who-we-are .who-we-are-content h2 {
        font-size: 2rem;
    }

    .who-we-are .stat-item {
        margin-bottom: 15px;
    }

    .who-we-are .stat-number {
        font-size: 1.8rem;
    }
}

/*#endregion*/

/*#region Services*/

.services {
    padding-top: 13px;
    position: relative;
    padding-bottom: 60px;
}

    .services .about-image {
        position: relative;
        overflow: hidden;
        border-radius: 8px;
        margin-bottom: 30px;
    }

        .services .about-image img {
            transition: transform 0.5s ease;
        }

            .services .about-image img:hover {
                transform: scale(1.1);
            }

@media (max-width: 992px) {
    .services .about-image {
        margin-bottom: 40px;
    }
}

.services .about-content {
    padding-left: 20px;
}

@media (max-width: 992px) {
    .services .about-content {
        padding-left: 0;
    }
}

.services .about-content h2:hover {
    color: var(--accent-color);
}

.services .about-content h2 {
    font-weight: 900;
    font-size: 38px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 20px;
    position: relative;
}

    .services .about-content h2:after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -10px;
        height: 4px;
        width: 60px;
        background: var(--accent-color);
        border-radius: 2px;
    }

.services .about-content .lead {
    font-size: 1.2rem;
    margin-bottom: 20px;
    margin-top: 25px;
    color: color-mix(in srgb, var(--heading-color), transparent 30%);
    font-weight: 500;
}

.services .about-content p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.services .about-content:after {
    position: absolute;
    left: 0;
    bottom: -10px;
    height: 4px;
    width: 60px;
    background: var(--accent-color);
    border-radius: 2px;
}

.services .about-content .hero-features {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 1rem;
}

    .services .about-content .hero-features li {
        flex: 0 0 100%;
        max-width: 100%;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

@media (min-width: 768px) {
    .services .about-content .hero-features li {
        flex: 0 0 calc(50% - 0.5rem);
        max-width: calc(50% - 0.5rem);
    }
}

.services .about-content .hero-features li i {
    flex-shrink: 0;
    color: var(--accent-color);
}

.services .about-content .hero-features li p {
    margin: 0;
}

.services .about-content .hero-features-2 {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 1rem;
}

    .services .about-content .hero-features-2 li {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

        .services .about-content .hero-features-2 li i {
            flex-shrink: 0;
            color: var(--accent-color);
        }

        .services .about-content .hero-features-2 li p {
            margin: 0;
        }

.services .stats-row {
    margin-top: 30px;
}

.services .stat-item {
    text-align: center;
    padding: 15px 5px;
    margin-bottom: 20px;
    border-radius: 8px;
    background-color: var(--surface-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .services .stat-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 5px 5px rgba(0, 0, 0, 0.4);
    }

    .services .stat-item .stat-number {
        display: block;
        font-size: 2.2rem;
        font-weight: 900;
        color: var(--accent-color);
        margin-bottom: 5px;
        font-family: var(--heading-font);
    }

    .services .stat-item .stat-text {
        font-size: 0.85rem;
        font-weight: 700;
        color: var(--heading-color);
        margin-bottom: 0;
        text-transform: uppercase;
    }

.services .btn-learn-more {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    background-color: transparent;
    color: var(--accent-color);
    font-weight: 600;
    border: 2px solid var(--accent-color);
    border-radius: 50px;
    transition: all 0.3s ease;
    animation: btn-up-down 1s ease-in-out infinite alternate-reverse both;
    margin-bottom: 2rem;
}

    .services .btn-learn-more i {
        margin-left: 8px;
        transition: transform 0.3s ease;
    }

    .services .btn-learn-more:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }

        .services .btn-learn-more:hover i {
            transform: translateX(5px);
        }

@media (max-width: 768px) {
    .services .about-content h2 {
        font-size: 2rem;
    }

    .services .stat-item {
        margin-bottom: 15px;
    }

    .services .stat-number {
        font-size: 1.8rem;
    }
}

/*#endregion*/

/*#region Stats Section*/

.stats {
    background-color: var(--stats-bg, color-mix(in srgb, #eaf3f3, #eaf3f3 50%));
}

    .stats .stats-item {
        background-color: var(--surface-color);
        padding: 30px;
        box-shadow: var(--box-shadow);
        border-radius: 20px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

        .stats .stats-item i {
            color: var(--accent-color);
            font-size: 42px;
            line-height: 0;
            margin-right: 20px;
        }

        .stats .stats-item span {
            color: var(--heading-color);
            font-size: 36px;
            display: block;
            font-weight: 600;
        }

        .stats .stats-item p {
            padding: 0;
            margin: 0;
            font-family: var(--heading-font);
            font-size: 16px;
        }
/*#endregion Stats Section*/

/*#region Call To Action*/

.call-to-action {
    padding-top: 120px;
    position: relative;
    clip-path: inset(0);
    padding-bottom: 120px;
    min-height: 60vh;
}

    .call-to-action img {
        position: fixed;
        top: 0;
        left: 0;
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

    .call-to-action:before {
        content: "";
        background: color-mix(in srgb, var(--background-color), transparent 40%);
        position: absolute;
        inset: 0;
        z-index: 2;
    }

    .call-to-action .container {
        position: relative;
        z-index: 3;
        padding: 50px;
    }

    .call-to-action h3 {
        color: var(--default-color);
        font-size: 38px;
        font-weight: 900;
        text-transform: uppercase;
    }

    .call-to-action p {
        color: var(--default-color);
        font-size: 20px;
        font-weight: 900;
    }

    .call-to-action .cta-btn {
        font-family: var(--heading-font);
        font-weight: 500;
        font-size: 16px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 12px 40px;
        border-radius: 50px;
        transition: 0.5s;
        border: 2px solid var(--default-color);
        color: var(--default-color);
        animation: btn-up-down 1s ease-in-out infinite alternate-reverse both;
    }

        .call-to-action .cta-btn:hover {
            background: var(--accent-color);
            color: var(--contrast-color);
            border: 2px solid var(--accent-color);
        }

@media (max-width: 768px) {
    .call-to-action h3 {
        font-size: 22px;
        margin-bottom: 2rem;
    }

    .call-to-action p {
        font-size: 18px;
    }
}

/*#endregion*/

/*#region WHO WE SUPPORT*/

.who-we-support {
    padding-top: 60px;
    padding-bottom: 10px;
}

    .who-we-support .who-we-support-visual {
        position: relative;
        padding-left: 0px;
    }

        .who-we-support .who-we-support-visual .feature-highlight-card {
            background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--accent-color), transparent 95%));
            border-radius: 24px;
            padding: 40px 15px;
            box-shadow: 0 10px 40px color-mix(in srgb, var(--accent-color), transparent 80%);
            border: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
            position: relative;
            overflow: hidden;
        }

            .who-we-support .who-we-support-visual .feature-highlight-card::before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                height: 4px;
                background: linear-gradient(90deg, var(--accent-color), #3498db, #9b59b6);
            }

            .who-we-support .who-we-support-visual .feature-highlight-card h2 {
                font-weight: 900;
                font-size: 38px;
                text-transform: uppercase;
                text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
                margin-bottom: 20px;
                position: relative;
            }

                .who-we-support .who-we-support-visual .feature-highlight-card h2:hover {
                    color: var(--accent-color);
                }

                .who-we-support .who-we-support-visual .feature-highlight-card h2:after {
                    content: "";
                    position: absolute;
                    left: 0;
                    bottom: -10px;
                    height: 4px;
                    width: 60px;
                    background: var(--accent-color);
                    border-radius: 2px;
                }

            .who-we-support .who-we-support-visual .feature-highlight-card .card-header {
                display: flex;
                align-items: center;
                gap: 20px;
                margin-bottom: 20px;
            }

                .who-we-support .who-we-support-visual .feature-highlight-card .card-header .faq-item {
                    background-color: var(--background-color);
                    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
                    border-radius: 8px;
                    margin-top: 24px;
                    margin-bottom: 24px;
                    padding: 15px;
                    transition: all 0.3s ease;
                    box-shadow: 0 2px 8px color-mix(in srgb, var(--accent-color), transparent 95%);
                    display: flex;
                }

                    .who-we-support .who-we-support-visual .feature-highlight-card .card-header .faq-item:hover {
                        box-shadow: 0 4px 16px color-mix(in srgb, var(--accent-color), transparent 90%);
                        border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
                        transform: translateY(-10px);
                    }

                    .who-we-support .who-we-support-visual .feature-highlight-card .card-header .faq-item:last-child {
                        margin-bottom: 0;
                    }

                .who-we-support .who-we-support-visual .feature-highlight-card .card-header .question-wrapper {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                }

                .who-we-support .who-we-support-visual .feature-highlight-card .card-header .icon-wrapper {
                    flex-shrink: 0;
                    width: 48px;
                    height: 48px;
                    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
                    border-radius: 6px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    margin-top: 4px;
                }

                .who-we-support .who-we-support-visual .feature-highlight-card .card-header i {
                    color: var(--heading-color);
                    font-size: 24px;
                }

                .who-we-support .who-we-support-visual .feature-highlight-card .card-header .content-wrapper {
                    flex: 1;
                    min-width: 0;
                }

                .who-we-support .who-we-support-visual .feature-highlight-card .card-header .question {
                    color: var(--default-color);
                    font-size: 18px;
                    font-weight: 600;
                    line-height: 1.4;
                    margin-left: 16px;
                    font-family: var(--heading-font);
                    text-transform: uppercase;
                    text-shadow: none;
                }

        .who-we-support .who-we-support-visual .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
        }

            .who-we-support .who-we-support-visual .floating-elements .floating-icon {
                position: absolute;
                width: 60px;
                height: 60px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                background: var(--surface-color);
                box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 85%);
                animation: float 6s ease-in-out infinite;
            }

                .who-we-support .who-we-support-visual .floating-elements .floating-icon i {
                    font-size: 24px;
                    color: var(--accent-color);
                }

                .who-we-support .who-we-support-visual .floating-elements .floating-icon.icon-1 {
                    top: 20%;
                    right: -30px;
                    animation-delay: -2s;
                }

                .who-we-support .who-we-support-visual .floating-elements .floating-icon.icon-2 {
                    bottom: 30%;
                    right: -20px;
                    animation-delay: -4s;
                }

                .who-we-support .who-we-support-visual .floating-elements .floating-icon.icon-3 {
                    top: 60%;
                    left: -30px;
                    animation-delay: -1s;
                }

@keyframes float {

    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@media (max-width: 992px) {
    .who-we-support .who-we-support-visual {
        padding-left: 0;
        margin-top: 50px;
    }

        .who-we-support .who-we-support-visual .floating-elements {
            display: none;
        }

    .who-we-support .who-we-support-content .feature-card .feature-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .who-we-support .feature-highlight-card .card-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .who-we-support .feature-highlight-card .feature-metrics {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .who-we-support .who-we-support-content .feature-card {
        padding: 25px;
    }

        .who-we-support .who-we-support-content .feature-card .feature-text h4 {
            font-size: 20px;
        }

    .who-we-support .feature-highlight-card {
        padding: 30px;
    }

        .who-we-support .feature-highlight-card .card-header h3 {
            font-size: 24px;
        }

        .who-we-support .feature-highlight-card .feature-metrics {
            gap: 20px;
        }

            .who-we-support .feature-highlight-card .feature-metrics .metric .metric-number {
                font-size: 28px;
            }

    .who-we-support .who-we-support-visual .feature-highlight-card .card-header .question {
        font-size: 16px;
        margin-left: 5px;
        text-align: left;
    }

    .who-we-support .who-we-support-visual .feature-highlight-card h2 {
        font-size: 28px;
    }

        .who-we-support .who-we-support-visual .feature-highlight-card h2:after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -10px;
            height: 4px;
            width: 60px;
            background: var(--accent-color);
            border-radius: 2px;
        }
}

/*#endregion*/

/*#region Make It Count*/

.make-it-count {
    padding-top: 10px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
    position: relative;
    overflow: hidden;
    padding-bottom: 0px;
}

    .make-it-count .container {
        position: relative;
        z-index: 2;
        padding: 40px 15px;
    }


    .make-it-count .make-it-count-content h2 {
        font-weight: 900;
        font-size: 38px;
        text-transform: uppercase;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        margin-bottom: 20px;
        position: relative;
    }

        .make-it-count .make-it-count-content h2:hover {
            color: var(--accent-color);
        }

        .make-it-count .make-it-count-content h2:after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -10px;
            height: 4px;
            width: 60px;
            background: var(--accent-color);
            border-radius: 2px;
        }

@media (max-width: 992px) {
    .make-it-count .make-it-count-content h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .make-it-count .make-it-count-content h2 {
        font-size: 2.2rem;
    }
}

.make-it-count .make-it-count-content .make-it-count-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 3rem;
    max-width: 90%;
}

@media (max-width: 768px) {
    .make-it-count .make-it-count-content .make-it-count-description {
        font-size: 1rem;
        max-width: 100%;
    }
}

.make-it-count .make-it-count-content .make-it-count-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

@media (max-width: 576px) {
    .make-it-count .make-it-count-content .make-it-count-actions {
        flex-direction: column;
        gap: 1rem;
    }
}

.make-it-count .make-it-count-content .make-it-count-actions .btn-primary {
    padding: 14px 32px;
    background: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
}

    .make-it-count .make-it-count-content .make-it-count-actions .btn-primary:hover {
        background: color-mix(in srgb, var(--accent-color), black 10%);
        border-color: color-mix(in srgb, var(--accent-color), black 10%);
        transform: translateY(-2px);
    }

.make-it-count .make-it-count-content .make-it-count-actions .btn-secondary {
    padding: 14px 32px;
    background: transparent;
    color: var(--heading-color);
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

    .make-it-count .make-it-count-content .make-it-count-actions .btn-secondary:hover {
        background: transparent;
        color: var(--accent-color);
        border-color: var(--accent-color);
        transform: translateY(-2px);
    }

.make-it-count .make-it-count-content .make-it-count-actions .cta-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
}

    .make-it-count .make-it-count-content .make-it-count-actions .cta-wrapper .btn-primary {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        background: var(--accent-color);
        color: var(--contrast-color);
        padding: 1.2rem 2.5rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1rem;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 70%);
    }

        .make-it-count .make-it-count-content .make-it-count-actions .cta-wrapper .btn-primary:hover {
            background: var(--accent-color);
            transform: translateY(-2px);
            box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 60%);
            color: var(--white-color);
        }

            .make-it-count .make-it-count-content .make-it-count-actions .cta-wrapper .btn-primary:hover i {
                transform: translateX(3px);
            }

        .make-it-count .make-it-count-content .make-it-count-actions .cta-wrapper .btn-primary i {
            transition: transform 0.3s ease;
            font-size: 1.1rem;
        }

    .make-it-count .make-it-count-content .make-it-count-actions .cta-wrapper .contact-quick {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

        .make-it-count .make-it-count-content .make-it-count-actions .cta-wrapper .contact-quick i {
            width: 45px;
            height: 45px;
            background: color-mix(in srgb, var(--accent-color), transparent 90%);
            color: var(--accent-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .make-it-count .make-it-count-content .make-it-count-actions .cta-wrapper .contact-quick .contact-text {
            display: flex;
            flex-direction: column;
        }

            .make-it-count .make-it-count-content .make-it-count-actions .cta-wrapper .contact-quick .contact-text span {
                font-size: 0.85rem;
                color: color-mix(in srgb, var(--default-color), transparent 40%);
                margin-bottom: 0.1rem;
            }

            .make-it-count .make-it-count-content .make-it-count-actions .cta-wrapper .contact-quick .contact-text a {
                font-weight: 600;
                color: var(--heading-color);
                text-decoration: none;
                font-size: 1rem;
            }

                .make-it-count .make-it-count-content .make-it-count-actions .cta-wrapper .contact-quick .contact-text a:hover {
                    color: var(--accent-color);
                }

@media (max-width: 768px) {
    .make-it-count .make-it-count-content .make-it-count-actions .cta-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
}

.make-it-count .make-it-count-image {
    position: relative;
}

    .make-it-count .make-it-count-image .image-wrapper {
        position: relative;
        max-width: 500px;
        margin: 0 auto;
    }

        .make-it-count .make-it-count-image .image-wrapper .main-image {
            border-radius: 12px;
            box-shadow: 0 20px 60px color-mix(in srgb, var(--heading-color), transparent 85%);
            transition: transform 0.3s ease;
        }

            .make-it-count .make-it-count-image .image-wrapper .main-image:hover {
                transform: scale(1.02);
            }

        .make-it-count .make-it-count-image .image-wrapper .floating-card {
            position: absolute;
            background: var(--surface-color);
            padding: 1rem 1.5rem;
            border-radius: 8px;
            box-shadow: 0 10px 30px color-mix(in srgb, var(--heading-color), transparent 90%);
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--heading-color);
            transition: all 0.3s ease;
        }

            .make-it-count .make-it-count-image .image-wrapper .floating-card:hover {
                transform: translateY(-5px);
                box-shadow: 0 15px 40px color-mix(in srgb, var(--heading-color), transparent 85%);
            }

            .make-it-count .make-it-count-image .image-wrapper .floating-card i {
                font-size: 1.25rem;
                color: var(--accent-color);
            }

            .make-it-count .make-it-count-image .image-wrapper .floating-card.card-1 {
                top: 5%;
                left: -15%;
                z-index: 3;
                animation: btn-up-down 2s ease-in-out infinite alternate-reverse both;
            }

@media (max-width: 992px) {
    .make-it-count .make-it-count-image .image-wrapper .floating-card.card-1 {
        left: -10%;
    }
}

@media (max-width: 768px) {
    .make-it-count .make-it-count-image .image-wrapper .floating-card.card-1 {
        left: 0;
        top: 10%;
    }

    .make-it-count .make-it-count-image .image-wrapper .floating-card {
        padding: 0.35rem 0.5rem;
    }
}

.make-it-count .make-it-count-image .image-wrapper .floating-card.card-2 {
    top: 60%;
    right: -15%;
    z-index: 3;
    animation: btn-up-down 1s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 992px) {
    .make-it-count .make-it-count-image .image-wrapper .floating-card.card-2 {
        right: -10%;
    }
}

@media (max-width: 768px) {
    .make-it-count .make-it-count-image .image-wrapper .floating-card.card-2 {
        right: 0;
        top: 50%;
    }
}

.make-it-count .make-it-count-image .image-wrapper .floating-card.card-3 {
    bottom: 5%;
    left: -10%;
    z-index: 3;
    animation: btn-up-down 3s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 992px) {
    .make-it-count .make-it-count-image .image-wrapper .floating-card.card-3 {
        left: -5%;
    }
}

@media (max-width: 768px) {
    .make-it-count .make-it-count-image .image-wrapper .floating-card.card-3 {
        left: 0;
        bottom: 5%;
    }
}

@media (max-width: 992px) {
    .make-it-count .make-it-count-content {
        margin-top: 2rem;
    }
}

/*#endregion*/

/*#region Call To Action 2*/

.call-to-action-2 {
    padding-top: 9px;
    position: relative;
    overflow: hidden;
    padding-bottom: 11px;
}

    .call-to-action-2 .container {
        position: relative;
        z-index: 2;
    }

    .call-to-action-2 .cta-content {
        padding-right: 20px;
    }

        .call-to-action-2 .cta-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            position: relative;
            font-weight: 900;
            text-transform: uppercase;
        }

            .call-to-action-2 .cta-content h2:after {
                content: "";
                position: absolute;
                left: 0;
                bottom: -10px;
                height: 4px;
                width: 60px;
                background: var(--accent-color);
                border-radius: 2px;
            }

@media (max-width: 992px) {
    .call-to-action-2 .cta-content h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .call-to-action-2 .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    .call-to-action-2 .cta-content {
        padding-right: 0;
        margin-bottom: 50px;
    }
}

.call-to-action-2 h2 {
    font-weight: 900;
    font-size: 38px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

    .call-to-action-2 h2:hover {
        color: var(--accent-color);
    }


.call-to-action-2 .lead {
    font-size: 1.1rem;
    line-height: 1.8;
    color: color-mix(in srgb, var(--default-color), transparent 0%);
    margin-bottom: 3rem;
    max-width: 90%;
    text-align: justify;
}

.call-to-action-2 .features-list .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

    .call-to-action-2 .features-list .feature-item i {
        color: #22c55e;
        font-size: 18px;
        flex-shrink: 0;
    }

    .call-to-action-2 .features-list .feature-item span {
        font-weight: 500;
        color: var(--default-color);
    }

.call-to-action-2 .cta-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
}

@media (max-width: 576px) {
    .call-to-action-2 .cta-buttons {
        flex-direction: column;
    }
}

.call-to-action-2 .cta-buttons .btn {
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

    .call-to-action-2 .cta-buttons .btn.btn-primary {
        background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #6c5ce7 50%) 100%);
        color: var(--contrast-color);
        box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
    }

        .call-to-action-2 .cta-buttons .btn.btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 50%);
        }

    .call-to-action-2 .cta-buttons .btn.btn-outline {
        background: var(--surface-color);
        color: var(--default-color);
        border-color: color-mix(in srgb, var(--default-color), transparent 80%);
    }

        .call-to-action-2 .cta-buttons .btn.btn-outline:hover {
            background: var(--accent-color);
            color: var(--contrast-color);
            border-color: var(--accent-color);
            transform: translateY(-2px);
        }

/*#endregion*/

/*#region PHP Email Form Messages Section*/
.php-email-form .error-message {
    display: none;
    background: #df1529;
    color: #ffffff;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .sent-message {
    display: none;
    color: #ffffff;
    background: #059652;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .loading {
    display: none;
    background: var(--surface-color);
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}

    .php-email-form .loading:before {
        content: "";
        display: inline-block;
        border-radius: 50%;
        width: 24px;
        height: 24px;
        margin: 0 10px -6px 0;
        border: 3px solid var(--accent-color);
        border-top-color: var(--surface-color);
        animation: php-email-form-loading 1s linear infinite;
    }

@keyframes php-email-form-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*#endregion*/

/*#region  Navigation Menu*/

/* Desktop Navigation */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

        .navmenu ul {
            margin: 0;
            padding: 0;
            display: flex;
            list-style: none;
            align-items: center;
        }

        .navmenu li {
            position: relative;
        }

        .navmenu > ul > li {
            white-space: nowrap;
            padding: 15px 14px;
        }

            .navmenu > ul > li:last-child {
                padding-right: 0;
            }

        .navmenu a,
        .navmenu a:focus {
            color: color-mix(in srgb, var(--nav-color), transparent 30%);
            font-size: 15px;
            padding: 0 2px;
            font-family: var(--nav-font);
            font-weight: 400;
            display: flex;
            align-items: center;
            justify-content: space-between;
            white-space: nowrap;
            transition: 0.3s;
            position: relative;
        }

            .navmenu a i,
            .navmenu a:focus i {
                font-size: 12px;
                line-height: 0;
                margin-left: 5px;
                transition: 0.3s;
            }

        .navmenu > ul > li > a:before {
            content: "";
            position: absolute;
            height: 2px;
            bottom: -27px;
            left: 0;
            background-color: var(--nav-hover-color);
            visibility: hidden;
            width: 0px;
            transition: all 0.3s ease-in-out 0s;
        }

        .navmenu a:hover:before,
        .navmenu li:hover > a:before,
        .navmenu .active:before {
            visibility: visible;
            width: 100%;
        }

        .navmenu li:hover > a,
        .navmenu .active,
        .navmenu .active:focus {
            color: var(--nav-color);
        }

        .navmenu .dropdown ul {
            margin: 0;
            padding: 10px 0;
            background: var(--nav-dropdown-background-color);
            display: block;
            position: absolute;
            visibility: hidden;
            left: 14px;
            top: 130%;
            opacity: 0;
            transition: 0.3s;
            border-radius: 4px;
            z-index: 99;
            box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
        }

            .navmenu .dropdown ul li {
                min-width: 200px;
            }

            .navmenu .dropdown ul a {
                padding: 10px 20px;
                font-size: 15px;
                text-transform: none;
                color: var(--nav-dropdown-color);
            }

                .navmenu .dropdown ul a i {
                    font-size: 12px;
                }

                .navmenu .dropdown ul a:hover,
                .navmenu .dropdown ul .active:hover,
                .navmenu .dropdown ul li:hover > a {
                    color: var(--nav-dropdown-hover-color);
                }

        .navmenu .dropdown:hover > ul {
            opacity: 1;
            top: 100%;
            visibility: visible;
        }

        .navmenu .dropdown .dropdown ul {
            top: 0;
            left: -90%;
            visibility: hidden;
        }

        .navmenu .dropdown .dropdown:hover > ul {
            opacity: 1;
            top: 0;
            left: -100%;
            visibility: visible;
        }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

        .navmenu ul {
            display: none;
            list-style: none;
            position: absolute;
            inset: 60px 20px 20px 20px;
            padding: 10px 0;
            margin: 0;
            border-radius: 6px;
            background-color: var(--nav-mobile-background-color);
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
            box-shadow: none;
            overflow-y: auto;
            transition: 0.3s;
            z-index: 9998;
        }

        .navmenu a,
        .navmenu a:focus {
            color: var(--nav-dropdown-color);
            padding: 10px 20px;
            font-family: var(--nav-font);
            font-size: 17px;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: space-between;
            white-space: nowrap;
            transition: 0.3s;
        }

            .navmenu a i,
            .navmenu a:focus i {
                font-size: 12px;
                line-height: 0;
                margin-left: 5px;
                width: 30px;
                height: 30px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                transition: 0.3s;
                background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
            }

                .navmenu a i:hover,
                .navmenu a:focus i:hover {
                    background-color: var(--accent-color);
                    color: var(--contrast-color);
                }

            .navmenu a:hover,
            .navmenu .active,
            .navmenu .active:focus {
                color: var(--nav-dropdown-hover-color);
            }

                .navmenu .active i,
                .navmenu .active:focus i {
                    background-color: var(--accent-color);
                    color: var(--contrast-color);
                    transform: rotate(180deg);
                }

        .navmenu .dropdown ul {
            position: static;
            display: none;
            z-index: 99;
            padding: 10px 0;
            margin: 10px 20px;
            background-color: var(--nav-dropdown-background-color);
            transition: all 0.5s ease-in-out;
        }

            .navmenu .dropdown ul ul {
                background-color: rgba(33, 37, 41, 0.1);
            }

        .navmenu .dropdown > .dropdown-active {
            display: block;
            background-color: rgba(33, 37, 41, 0.03);
        }

    .mobile-nav-active {
        overflow: hidden;
    }

        .mobile-nav-active .mobile-nav-toggle {
            color: #fff;
            position: absolute;
            font-size: 32px;
            top: 15px;
            right: 15px;
            margin-right: 0;
            z-index: 9999;
        }

        .mobile-nav-active .navmenu {
            position: fixed;
            overflow: hidden;
            inset: 0;
            background: rgba(33, 37, 41, 0.8);
            transition: 0.3s;
        }

            .mobile-nav-active .navmenu > ul {
                display: block;
            }

    .navmenu .theme-toggle, .navmenu .language-toggle {
        border: 2px solid var(--accent-color);
        color: var(--accent-color);
    }
}

/*#endregion*/

/*#region Preloader*/

#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow: hidden;
    background-color: var(--background-color);
    transition: all 0.6s ease-out;
}

    #preloader:before {
        content: "";
        position: fixed;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
        border: 6px solid var(--accent-color);
        border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
        border-radius: 50%;
        width: 60px;
        height: 60px;
        animation: animate-preloader 1s linear infinite;
    }

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*#endregion*/

/*#region Scroll Top Button*/

.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
}

    .scroll-top i {
        font-size: 24px;
        color: var(--contrast-color);
        line-height: 0;
    }

    .scroll-top:hover {
        background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
        color: var(--contrast-color);
    }

    .scroll-top.active {
        visibility: visible;
        opacity: 1;
        bottom: 80px;
    }

/*#endregion*/

/*#region Disable aos animation delay on mobile devices*/

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*#endregion*/

/*#region Sections*/

section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 72px;
    overflow: clip;
}

@media (max-width: 1199px) {

    section,
    .section {
        scroll-margin-top: 57px;
    }
}

/*#endregion*/

/*#region Questions */
.questions h3 {
    font-weight: 900;
    font-size: 38px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    text-align: center;
}

.questions h5 {
    padding-left: 40px;
    padding-right: 40px;
    line-height: 1.6;
    text-align: center;
}

.questions .process-container {
    margin: 0 auto;
    padding: 2rem 0;
}

.questions .process-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding-bottom: 2.5rem;
}

    .questions .process-item:last-child {
        padding-bottom: 0;
    }

    .questions .process-item .content {
        width: 100%;
        position: relative;
        background: linear-gradient(145deg, color-mix(in srgb, var(--accent-color), transparent 95%), var(--surface-color));
        border: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
        border-radius: 20px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

        .questions .process-item .content:hover {
            transform: translateX(10px);
            box-shadow: -8px 8px 25px rgba(0, 0, 0, 0.1);
        }

            .questions .process-item .content:hover .question-icon {
                background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 15%), var(--accent-color));
                transform: rotate(10deg);
            }

            .questions .process-item .content:hover .question-number {
                transform: translateX(-5px);
                opacity: 1;
            }

    .questions .process-item .question-number {
        position: absolute;
        left: -30px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 4rem;
        font-weight: 800;
        color: var(--accent-color);
        font-family: var(--heading-font);
        line-height: 1;
        opacity: 0.2;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .questions .process-item .card-body {
        padding: 2rem;
        display: flex;
        align-items: flex-start;
        gap: 2rem;
    }

    .questions .process-item .question-icon {
        flex-shrink: 0;
        width: 70px;
        height: 70px;
        background-color: var(--accent-color);
        border-radius: 15px;
        display: grid;
        place-items: center;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
    }

        .questions .process-item .question-icon i {
            font-size: 2rem;
            color: var(--contrast-color);
        }

    .questions .process-item .question-content h3 {
        color: var(--heading-color);
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
        font-weight: 600;
    }

    .questions .process-item .question-content p {
        color: color-mix(in srgb, var(--default-color), transparent 25%);
        font-size: 0.95rem;
        line-height: 1.6;
        margin: 0;
    }

    .questions .process-item .arrow {
        color: color-mix(in srgb, var(--accent-color), transparent 50%);
        margin: 1rem 0;
        width: 100px;
        height: 100px;
        opacity: 0.7;
    }

@media (max-width: 767.98px) {
    .questions .process-container {
        padding: 1rem 0;
    }

    .questions .process-item {
        padding-bottom: 2rem;
    }

        .questions .process-item .content {
            border-width: 1px;
        }

            .questions .process-item .content:hover {
                transform: translateY(-5px);
            }

        .questions .process-item .question-number {
            font-size: 3rem;
            left: 50%;
            top: -1.5rem;
            transform: translateX(-50%);
        }

            .questions .process-item .question-number:hover {
                transform: translateX(-50%);
            }

        .questions .process-item .card-body {
            padding: 2rem 1.5rem 1.5rem;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 1rem;
        }

        .questions .process-item .question-icon {
            width: 60px;
            height: 60px;
            border-radius: 12px;
        }

            .questions .process-item .question-icon i {
                font-size: 1.75rem;
            }

        .questions .process-item .question-content h3 {
            font-size: 1.25rem;
        }

        .questions .process-item .arrow {
            height: 60px;
            margin: 0.5rem 0;
        }
}


@media (max-width: 500px) {

    .questions h4 {
        padding-left: 20px;
        padding-right: 20px;
        line-height: 1.6;
    }
}
/*#endregion Steps Section */

/*#region Contact-2 Section*/
.contact-2 {
    z-index: 9999999;
}

    .contact-2 h3 {
        font-weight: 900;
        font-size: 38px;
        text-transform: uppercase;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        text-align: center;
    }

        .contact-2 h3:hover {
            color: var(--accent-color);
        }

    .contact-2 .contact-info-box {
        background-color: var(--surface-color);
        border-radius: 10px;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
        padding: 25px;
        height: 100%;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        align-items: flex-start;
        gap: 15px;
    }

        .contact-2 .contact-info-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
        }

        .contact-2 .contact-info-box .icon-box {
            background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
            color: var(--accent-color);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }


            .contact-2 .contact-info-box .icon-box:hover {
                box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
            }

            .contact-2 .contact-info-box .icon-box i {
                font-size: 24px;
            }

                .contact-2 .contact-info-box .icon-box i:hover {
                    color: var(--heading-color);
                }

        .contact-2 .contact-info-box .info-content {
            text-align: center;
        }

            .contact-2 .contact-info-box .info-content h4 {
                margin-bottom: 10px;
            }

            .contact-2 .contact-info-box .info-content p {
                margin-bottom: 5px;
                color: color-mix(in srgb, var(--default-color), transparent 20%);
                font-size: 15px;
                line-height: 1.5;
            }

                .contact-2 .contact-info-box .info-content p:last-child {
                    margin-bottom: 0;
                }

    .contact-2 .map-section {
        position: relative;
        width: 100%;
        height: 500px;
        overflow: hidden;
    }

        .contact-2 .map-section iframe {
            display: block;
            width: 100%;
            height: 100%;
            border: 0;
        }

    .contact-2 .form-container-overlap {
        position: relative;
        margin-top: -150px;
        margin-bottom: 60px;
        z-index: 9999999;
    }

    .contact-2 .contact-form-wrapper {
        background-color: #ffffff;
        border-radius: 12px;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
        padding: 40px;
    }

        .contact-2 .contact-form-wrapper h2 {
            text-transform: uppercase;
        }

        .contact-2 .contact-form-wrapper p {
            font-size: 18px;
            font-weight: 900;
            margin-bottom: 30px;
            position: relative;
        }

        .contact-2 .contact-form-wrapper h2:after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: -10px;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            background-color: var(--accent-color);
        }

        .contact-2 .contact-form-wrapper .form-group {
            margin-bottom: 20px;
        }

            .contact-2 .contact-form-wrapper .form-group .input-with-icon {
                position: relative;
            }

                .contact-2 .contact-form-wrapper .form-group .input-with-icon i {
                    position: absolute;
                    left: 15px;
                    top: 50%;
                    transform: translateY(-50%);
                    color: color-mix(in srgb, var(--default-color), transparent 40%);
                    font-size: 18px;
                    z-index: 9999999;
                }

                    .contact-2 .contact-form-wrapper .form-group .input-with-icon i.message-icon {
                        top: 28px;
                    }

                .contact-2 .contact-form-wrapper .form-group .input-with-icon textarea + i {
                    top: 25px;
                    transform: none;
                }

                .contact-2 .contact-form-wrapper .form-group .input-with-icon .form-control {
                    border-radius: 8px;
                    padding: 12px 15px 12px 45px;
                    height: 3.5rem;
                    color: var(--default-color);
                    background-color: var(--surface-color);
                    font-size: 15px;
                    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
                }

                    .contact-2 .contact-form-wrapper .form-group .input-with-icon .form-control:focus {
                        border-color: var(--accent-color);
                        box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 90%);
                    }

                    .contact-2 .contact-form-wrapper .form-group .input-with-icon .form-control::placeholder {
                        color: color-mix(in srgb, var(--default-color), transparent 40%);
                    }

                .contact-2 .contact-form-wrapper .form-group .input-with-icon textarea.form-control {
                    height: 180px;
                    resize: none;
                    padding-top: 15px;
                }

        .contact-2 .contact-form-wrapper .btn-submit {
            background-color: var(--accent-color);
            border: none;
            color: var(--contrast-color);
            padding: 12px 30px;
            font-size: 16px;
            font-weight: 600;
            letter-spacing: 1px;
            border-radius: 8px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
        }

            .contact-2 .contact-form-wrapper .btn-submit:hover {
                background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
                transform: translateY(-3px);
                box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
            }

            .contact-2 .contact-form-wrapper .btn-submit:active {
                transform: translateY(0);
                box-shadow: 0 3px 10px color-mix(in srgb, var(--accent-color), transparent 70%);
            }

        .contact-2 .contact-form-wrapper .loading,
        .contact-2 .contact-form-wrapper .error-message,
        .contact-2 .contact-form-wrapper .sent-message {
            margin-top: 10px;
            margin-bottom: 20px;
        }

/*#endregion Contact-2 Section*/

/*#region Dark Mode Variables */

/* Dark Mode Variables */
[data-theme="dark"] {
    --background-color: #1a1a1a;
    --default-color: #e0e0e0;
    --heading-color: #e0e0e0;
    --accent-color: #4aa0a3;
    --surface-color: #2d2d2d;
    --contrast-color: #ffffff;
    --nav-color: #e0e0e0;
    --nav-hover-color: #f4d47a;
    --nav-mobile-background-color: #2d2d2d;
    --nav-dropdown-background-color: #2d2d2d;
    --nav-dropdown-color: #e0e0e0;
    --nav-dropdown-hover-color: #f4d47a;
    --box-shadow: rgba(0, 0, 0, .4) 0 8px 10px -1px, rgba(0, 0, 0, .3) 0 6px 10px 0, rgba(0, 0, 0, .2) 0 1px 18px 0;
}

    [data-theme="dark"] .light-background {
        --background-color: #242424;
        --surface-color: #2d2d2d;
    }

    [data-theme="dark"] .dark-background {
        --background-color: #0d1117;
        --surface-color: var(--accent-color);
    }

/* Dark Mode Toggle Button */
.theme-toggle, language-toggle {
    background: none;
    border: 2px solid var(--heading-color);
    border-radius: 25px;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--contrast-color);
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    margin-left: 15px;
}

    .theme-toggle:hover, .language-toggle:hover {
        background: var(--accent-color);
        color: var(--contrast-color);
        transform: scale(1.05);
    }

    .theme-toggle i, .language-toggle i {
        font-size: 14px;
        transition: transform 0.3s ease;
    }

        .theme-toggle i.moon {
            display: none;
        }

[data-theme="dark"] .theme-toggle i.sun {
    display: none;
}

[data-theme="dark"] .theme-toggle i.moon {
    display: inline;
}


[data-theme="dark"] .stats,
[data-theme="dark"] .faq {
    --stats-bg: #242424;
    --faq-bg: #242424;
}

/* Dark mode footer background */
[data-theme="dark"] .footer {
    --surface-color: #1a1a1a;
    --background-color: #1a1a1a;
}

/* Dark mode scrolled header */
[data-theme="dark"] .scrolled .header {
    --background-color: #2d2d2d;
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.3);
}


/* Mobile adjustments */
@media (max-width: 1199px) {
    .theme-toggle, .language-toggle {
        margin: 10px 20px;
        justify-content: center;
    }
}

/* Dark mode modal styling */
[data-theme="dark"] .modal-content {
    background-color: var(--surface-color);
    color: var(--default-color);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .modal-header {
    background-color: var(--background-color);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .modal-body {
    background-color: var(--surface-color);
}

[data-theme="dark"] .modal-footer {
    background-color: var(--background-color);
    border-top-color: rgba(255, 255, 255, 0.1);
}

/* Dark mode modal backdrop */
[data-theme="dark"] .modal-backdrop {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Dark mode for sections inside modal */
[data-theme="dark"] .modal .section {
    background-color: var(--surface-color);
}

[data-theme="dark"] .modal .light-background {
    background-color: #242424;
}

[data-theme="dark"] .modal .dark-background {
    background-color: #0d1117;
}

/* Dark mode for cards and items inside modal */
[data-theme="dark"] .modal .why-choose-us-card,
[data-theme="dark"] .modal .service-item {
    background-color: var(--background-color);
    color: var(--default-color);
}

/* Dark mode for call to action inside modal */
[data-theme="dark"] .modal .call-to-action {
    background-color: var(--background-color);
}

[data-theme="dark"] .modal .cta-wrapper {
    background-color: var(--surface-color);
}


/*#endregion Dark Mode Variables */

/*#region footer*/

.footer {
    color: var(--default-color);
    background-color: var(--surface-color);
    font-size: 14px;
    padding: 40px 0 0 0;
    position: relative;
}

    .footer .border-side {
        border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    }

    .footer .footer-about a {
        color: var(--contrast-color);
        margin-inline: 2px;
    }

        .footer .footer-about a:hover {
            color: var(--heading-color);
            transform: scale(1.05);
        }

    .footer .footer-about .logo {
        line-height: 1;
        margin-bottom: 10px;
    }

        .footer .footer-about .logo img {
            max-height: 65px;
        }

        .footer .footer-about .logo span {
            font-size: 30px;
            font-weight: 700;
            letter-spacing: 1px;
            font-family: var(--heading-font);
            color: var(--contrast-color);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
            margin-bottom: 15px;
            text-align: center;
        }

    .footer .footer-about p {
        font-size: 14px;
    }

    .footer .icon {
        color: var(--accent-color);
        margin-right: 15px;
        font-size: 24px;
        line-height: 0;
    }

    .footer h4 {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .footer .address p {
        margin-bottom: 0px;
    }

    .footer .social-links {
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .footer .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
            font-size: 16px;
            color: color-mix(in srgb, var(--default-color), transparent 50%);
            margin-right: 10px;
            transition: 0.3s;
        }

            .footer .social-links a:hover {
                color: var(--accent-color);
                border-color: var(--accent-color);
            }

    .footer .copyright {
        padding: 25px 0;
        border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    }

        .footer .copyright p {
            margin-bottom: 0;
        }

    .footer .credits {
        margin-top: 5px;
        font-size: 13px;
    }



/*#endregion*/

/*#region DESKTOP FOOTER FIXED RIGHT*/

.btn-phone-desktop-bar-fixed-right {
    background-color: var(--accent-color);
    position: fixed !important;
    bottom: 20rem !important;
    right: 1rem !important;
    color: white !important;
    padding: 1rem !important;
    border-radius: 50px;
    transition: all 0.3s ease !important;
    z-index: 50 !important;
    border: none !important;
    cursor: pointer !important;
    width: 44px;
    height: 44px;
}

.btn-email-desktop-bar-fixed-right {
    background-color: var(--accent-color);
    position: fixed !important;
    bottom: 17rem !important;
    right: 1rem !important;
    color: white !important;
    padding: 1rem !important;
    border-radius: 50px;
    transition: all 0.3s ease !important;
    z-index: 50 !important;
    border: none !important;
    cursor: pointer !important;
    width: 44px;
    height: 44px;
}

.btn-whatsapp-desktop-bar-fixed-right {
    background-color: var(--accent-color);
    position: fixed !important;
    bottom: 14rem !important;
    right: 1rem !important;
    color: white !important;
    padding: 1rem !important;
    border-radius: 50px;
    transition: all 0.3s ease !important;
    z-index: 50 !important;
    border: none !important;
    cursor: pointer !important;
    width: 44px;
    height: 44px;
}


.btn-phone-desktop-bar-fixed-right:hover {
    transform: scale(1.1) !important;
}

.btn-email-desktop-bar-fixed-right:hover {
    transform: scale(1.1) !important;
}

.btn-whatsapp-desktop-bar-fixed-right:hover {
    transform: scale(1.1) !important;
}



/* ========================================
   MOBILE FOOTER FIXED BOTTOM
   ======================================== */

.mobile-bar-fixed-bottom {
    display: none; /* Hidden by default on desktop */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #2d2d2d;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000; /* High z-index to stay above other content */
    padding: 10px 0;
    justify-content: space-around;
    align-items: center;
}

/* Show only on mobile devices (screens smaller than 768px) */
@media (max-width: 767px) {
    .mobile-bar-fixed-bottom {
        display: flex !important;
    }

    .desktop-bar-fixed-right {
        display: none;
    }
}

/* Individual buttons */
.btn-phone-mobile-bar-fixed-bottom,
.btn-email-mobile-bar-fixed-bottom,
.btn-whatsapp-mobile-bar-fixed-bottom {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-decoration: none;
    color: #ffffff;
    font-size: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    background-color: var(--accent-color);
}


    .btn-phone-mobile-bar-fixed-bottom:hover, .btn-email-mobile-bar-fixed-bottom:hover, .btn-whatsapp-mobile-bar-fixed-bottom:hover {
        background-color: var(--accent-color);
        transform: scale(1.1);
    }

    /* Icon styling */
    .btn-phone-mobile-bar-fixed-bottom i,
    .btn-email-mobile-bar-fixed-bottom i,
    .btn-whatsapp-mobile-bar-fixed-bottom i {
        font-size: 24px;
    }

/* Add padding to body to prevent content from being hidden behind the fixed footer */
@media (max-width: 767px) {
    body {
        padding-bottom: 80px; /* Height of mobile bar + some spacing */
    }
}

/* ========================================
   ADJUST CHATBOT POSITION ON MOBILE
   (So it doesn't overlap with mobile footer)
   ======================================== */

@media (max-width: 767px) {
    .custom-chat-btn {
        bottom: 90px !important; /* Position above mobile footer */
    }

    .custom-chat-window {
        bottom: 90px !important; /* Position above mobile footer */
        height: calc(100vh - 170px) !important; /* Adjust height to fit above mobile footer */
    }
}

/*#endregion*/

/*#region COMING-SOON */

.coming-soon {
    width: 100%;
    position: relative;
    padding: 5px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
}

    .coming-soon h2 {
        font-weight: 900;
        font-size: 38px;
        text-transform: uppercase;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        margin-bottom: 20px;
        position: relative;
    }

    .coming-soon p {
        margin: 10px 0 0 0;
        font-size: 24px;
        color: var(--heading-color);
    }

@media (max-width: 768px) {
    .coming-soon h2 {
        font-size: 32px;
    }

    .coming-soon p {
        font-size: 18px;
    }
}

.coming-soon .countdown {
    margin-top: 25px;
}

    .coming-soon .countdown div {
        text-align: center;
        border-top: 2px solid var(--accent-color);
        background-color: var(--surface-color);
        margin: 10px 10px;
        width: 100px;
        padding: 15px 0;
    }

        .coming-soon .countdown div h3 {
            font-weight: 700;
            font-size: 32px;
            margin-bottom: 15px;
        }

        .coming-soon .countdown div h4 {
            font-size: 16px;
            font-weight: 600;
        }

@media (max-width: 575px) {
    .coming-soon .countdown div {
        width: 70px;
        padding: 10px 0;
        margin: 10px 8px;
    }

        .coming-soon .countdown div h3 {
            font-size: 28px;
            margin-bottom: 10px;
        }

        .coming-soon .countdown div h4 {
            font-size: 14px;
            font-weight: 500;
        }
}

.coming-soon .social-links {
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .coming-soon .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        font-size: 24px;
        color: color-mix(in srgb, var(--default-color), transparent 50%);
        margin-right: 10px;
        transition: 0.3s;
    }

        .coming-soon .social-links a:hover {
            color: var(--default-color);
        }

/*
.coming-soon {
    padding-top: 5px;
    width: 100%;
    min-height: 50vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 2px;
}

    .coming-soon img {
        position: absolute;
        inset: 0;
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

    .coming-soon:before {
        content: "";
        background: color-mix(in srgb, var(--background-color), transparent 30%);
        position: absolute;
        inset: 0;
        z-index: 2;
    }

    .coming-soon .container {
        position: relative;
        z-index: 3;
    }

    .coming-soon h2 {
        margin: 0;
        font-size: 85px;
        font-weight: 800;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        text-transform: uppercase;
    }

    .coming-soon p {
        margin: 5px 0 0 0;
        font-size: 36px;
        font-weight: 600;
    }

        .coming-soon p span {
            letter-spacing: 1px;
        }

@media (max-width: 768px) {
    .coming-soon h2 {
        font-size: 32px;
    }

    .coming-soon p {
        font-size: 20px;
    }
}*/

/*#endregion*/

/*#region LANGUAGE-TOGGLE */

.language-toggle {
    background: none;
    border: 2px solid var(--heading-color);
    border-radius: 25px;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--contrast-color);
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    margin-left: 15px;
}

    .language-toggle:hover {
        background: var(--accent-color);
        color: var(--contrast-color);
        transform: scale(1.05);
    }

    .language-toggle i {
        font-size: 14px;
        transition: transform 0.3s ease;
    }

/*#endregion*/

/*#region MODAL */

.modal-header {
    padding: 10px 10px;
    border: 40px;
}

    .modal-header .btn-close {
        padding: 5px !important;
    }



.modal-footer {
    padding: 10px 10px;
    border: 40px;
}


/*#endregion */

/*#region CONTAINER */
.container {
    width: 92% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px !important;
    }
}

@media (max-width: 1199.98px) {
    .container {
        width: 94% !important;
        max-width: 100% !important;
    }
}

@media (max-width: 991.98px) {
    .container {
        width: 96% !important;
        padding: 0 20px !important;
    }
}

@media (max-width: 767.98px) {
    .container {
        width: 100% !important;
        padding: 0 15px !important;
    }
}

/*#endregion */
