/*--------------------------------------------------------------
# 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";
    --heading-font: "Raleway", sans-serif;
    --nav-font: "Poppins", 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: #124265; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #009ee0; /* 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. */
}

/* 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: #124265; /* The default color of the main navmenu links */
    --nav-hover-color: #009ee0; /* 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: #124265; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #009ee0; /* 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: #f6fafd;
    --surface-color: #ffffff;
}

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

.accent-background {
    --background-color: #2487ce;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --accent-color: #ffffff;
    --surface-color: #469fdf;
    --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);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 15px 0;
    transition: all 0.5s;
    z-index: 997;
}

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

        .header .logo img {
            max-height: 32px;
            margin-right: 8px;
        }

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

.scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@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 a,
        .navmenu a:focus {
            color: var(--nav-color);
            padding: 18px 15px;
            font-size: 16px;
            font-family: var(--nav-font);
            font-weight: 400;
            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;
                transition: 0.3s;
            }

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

        .navmenu li:hover > a,
        .navmenu .active,
        .navmenu .active:focus {
            color: var(--nav-hover-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;
        }
}

/* Navmenu - Mobile */
@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);
            overflow-y: auto;
            transition: 0.3s;
            z-index: 9998;
            box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
        }

        .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);
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
            box-shadow: none;
            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;
            }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    color: var(--default-color);
    background-color: var(--background-color);
    border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
    font-size: 14px;
    padding-bottom: 50px;
    position: relative;
}

    .footer .footer-top {
        padding-top: 50px;
    }

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

        .footer .footer-about .logo img {
            max-height: 40px;
            margin-right: 6px;
        }

        .footer .footer-about .logo span {
            color: var(--heading-color);
            font-size: 30px;
            font-weight: 700;
            letter-spacing: 1px;
            font-family: var(--heading-font);
        }

    .footer .footer-about p {
        font-size: 14px;
        font-family: var(--heading-font);
    }

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

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

    .footer h4 {
        font-size: 16px;
        font-weight: bold;
        position: relative;
        padding-bottom: 12px;
    }

    .footer .footer-links {
        margin-bottom: 30px;
    }

        .footer .footer-links ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

            .footer .footer-links ul i {
                padding-right: 2px;
                font-size: 12px;
                line-height: 0;
            }

            .footer .footer-links ul li {
                padding: 10px 0;
                display: flex;
                align-items: center;
            }

                .footer .footer-links ul li:first-child {
                    padding-top: 0;
                }

            .footer .footer-links ul a {
                color: color-mix(in srgb, var(--default-color), transparent 20%);
                display: inline-block;
                line-height: 1;
            }

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

    .footer .footer-contact p {
        margin-bottom: 5px;
    }

    .footer .copyright {
        padding-top: 25px;
        padding-bottom: 25px;
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }

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

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

        .footer .credits a {
            color: color-mix(in srgb, var(--contrast-color), transparent 30%);
        }

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: 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 #ffffff;
        border-color: var(--accent-color) transparent var(--accent-color) transparent;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        animation: animate-preloader 1.5s linear infinite;
    }

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

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    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;
    }

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 120px 0;
    text-align: center;
    position: relative;
}

    .page-title h1 {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .page-title .breadcrumbs ol {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        justify-content: center;
        padding: 0;
        margin: 0;
        font-size: 16px;
        font-weight: 400;
    }

        .page-title .breadcrumbs ol a {
            color: color-mix(in srgb, var(--default-color), transparent 20%);
        }

        .page-title .breadcrumbs ol li + li {
            padding-left: 10px;
        }

            .page-title .breadcrumbs ol li + li::before {
                content: "/";
                display: inline-block;
                padding-right: 10px;
                color: color-mix(in srgb, var(--default-color), transparent 70%);
            }

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 100px;
    overflow: clip;
}

@media (max-width: 1199px) {

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

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

    .section-title h2 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 15px;
        text-transform: uppercase;
    }

    .section-title p {
        margin-bottom: 0;
    }


/*--------------------------------------------------------------
# Hero 2 Section
--------------------------------------------------------------*/
.hero-2 {
    background-color: var(--background-color);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
}

    .hero-2 .content-wrapper {
        position: relative;
        z-index: 3;
        padding: 2rem 0;
    }

@media (max-width: 991px) {
    .hero-2 .content-wrapper {
        text-align: center;
        margin-bottom: 3rem;
    }
}

.hero-2 .excellence-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

    .hero-2 .excellence-badge i {
        font-size: 1rem;
    }

.hero-2 .main-heading {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--heading-color);
    margin-bottom: 2rem;
    font-family: var(--heading-font);
}

@media (max-width: 991px) {
    .hero-2 .main-heading {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero-2 .main-heading {
        font-size: 2rem;
    }
}

.hero-2 .description-section {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 991px) {
    .hero-2 .description-section {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-2 .description-section {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

.hero-2 .action-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

    .hero-2 .action-link:hover {
        background-color: color-mix(in srgb, var(--accent-color), black 10%);
        color: var(--contrast-color);
        transform: scale(1.1);
    }

    .hero-2 .action-link i {
        font-size: 1.25rem;
    }

.hero-2 .description-text {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    line-height: 1.6;
    margin: 0;
    font-size: 1.1rem;
    max-width: 400px;
}

@media (max-width: 576px) {
    .hero-2 .description-text {
        text-align: center;
    }
}

.hero-2 .pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0.1;
}

    .hero-2 .pattern-overlay img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.hero-2 .image-section {
    position: relative;
    padding: 2rem 0;
}

@media (max-width: 991px) {
    .hero-2 .image-section {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

.hero-2 .hero-image {
    position: relative;
    z-index: 2;
}

    .hero-2 .hero-image img {
        border-radius: 20px;
        box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
    }

.hero-2 .customer-stats {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background-color: var(--surface-color);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px color-mix(in srgb, var(--default-color), transparent 90%);
    z-index: 3;
    max-width: 280px;
}

@media (max-width: 991px) {
    .hero-2 .customer-stats {
        position: static;
        margin-top: 2rem;
        margin-left: 0;
    }
}

@media (max-width: 576px) {
    .hero-2 .customer-stats {
        max-width: 100%;
        margin-left: 1rem;
        margin-right: 1rem;
    }
}

.hero-2 .customer-avatars {
    margin-bottom: 1rem;
}

.hero-2 .avatar-list {
    display: flex;
    align-items: center;
    gap: -0.5rem;
}

.hero-2 .avatar-item {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid var(--surface-color);
    overflow: hidden;
    margin-left: -0.5rem;
    position: relative;
}

    .hero-2 .avatar-item:first-child {
        margin-left: 0;
    }

    .hero-2 .avatar-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-2 .avatar-item.plus-icon {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .hero-2 .avatar-item.plus-icon i {
            font-size: 1.2rem;
            font-weight: bold;
        }

.hero-2 .stats-info {
    text-align: left;
}

.hero-2 .stats-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: var(--heading-font);
}

.hero-2 .stats-text {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

@media (max-width: 991px) {
    .hero-2 .row {
        flex-direction: column-reverse;
    }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

@media (max-width: 768px) {
    .services .features-grid {
        grid-template-columns: 1fr;
    }
}

.services .features-card {
    position: relative;
    background-color: var(--surface-color);
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    padding: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .services .features-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

        .services .features-card:hover .icon-wrapper {
            background-color: var(--accent-color);
            color: var(--contrast-color);
        }

    .services .features-card .icon-wrapper {
        width: 70px;
        height: 70px;
        background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
        color: var(--accent-color);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        margin-bottom: 25px;
        transition: all 0.3s ease;
    }

        .services .features-card .icon-wrapper i {
            font-size: 32px;
        }

    .services .features-card h3 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 15px;
        color: var(--heading-color);
    }

    .services .features-card p {
        font-size: 15px;
        margin-bottom: 20px;
        color: color-mix(in srgb, var(--default-color), transparent 20%);
    }

    .services .features-card .features-list {
        margin-bottom: 25px;
    }

        .services .features-card .features-list .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
        }

            .services .features-card .features-list .feature-item:last-child {
                margin-bottom: 0;
            }

            .services .features-card .features-list .feature-item i {
                color: var(--accent-color);
                font-size: 16px;
                margin-right: 10px;
                margin-top: 3px;
            }

            .services .features-card .features-list .feature-item span {
                font-size: 14px;
                color: color-mix(in srgb, var(--default-color), transparent 10%);
            }

    .services .features-card .image-container {
        margin-top: auto;
        text-align: center;
    }

        .services .features-card .image-container img {
            max-height: 180px;
            object-fit: contain;
            transition: transform 0.4s ease;
        }

    .services .features-card:hover .image-container img {
        transform: scale(1.05);
    }

/*--------------------------------------------------------------
# Framework Section
--------------------------------------------------------------*/
.framework {
    position: relative;
    min-height: 80vh;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--background-color), transparent 0%) 0%, color-mix(in srgb, var(--background-color), var(--accent-color) 10%) 100%);
    overflow: hidden;
}

    .framework .framework-title {
        height: 6rem;
    }

@media (max-width: 1200px) {
    .framework .framework-title {
        height: 4rem;
    }
}

@media (max-width: 480px) {
    .framework .framework-title {
        height: 3rem;
    }
}

.framework::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 90%) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
    z-index: 1;
}

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

.framework .hero-content {
    padding-right: 2.5rem;
}

@media (max-width: 991px) {
    .framework .hero-content {
        padding-right: 0;
        margin-bottom: 4rem;
        text-align: center;
    }
}

.framework .hero-content .subtitle {
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

    .framework .hero-content .subtitle span {
        font-size: 1rem;
        font-weight: 700;
        letter-spacing: 3px;
        padding-bottom: 10px;
        position: relative;
        color: color-mix(in srgb, var(--heading-color), transparent 20%);
    }

        .framework .hero-content .subtitle span::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 2px;
            background-color: var(--accent-color);
        }

@media (max-width: 991px) {
    .framework .hero-content .subtitle span::after {
        right: 0;
        margin: 0 auto;
    }
}

.framework .hero-content .title {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 2rem;
    letter-spacing: -1px;
    color: var(--heading-color);
}

    .framework .hero-content .title .highlight {
        position: relative;
        display: inline-block;
        color: var(--accent-color);
    }

        .framework .hero-content .title .highlight::after {
            content: "";
            position: absolute;
            bottom: 10px;
            left: 0;
            width: 100%;
            height: 8px;
            background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
            z-index: -1;
        }

@media (max-width: 1200px) {
    .framework .hero-content .title {
        font-size: 3.8rem;
    }
}

@media (max-width: 991px) {
    .framework .hero-content .title {
        font-size: 3.2rem;
    }
}

@media (max-width: 767px) {
    .framework .hero-content .title {
        font-size: 2.8rem;
    }
}

@media (max-width: 480px) {
    .framework .hero-content .title {
        font-size: 2.4rem;
    }
}

.framework .hero-content .description {
    margin-bottom: 2.5rem;
}

    .framework .hero-content .description p {
        font-size: 1.05rem;
        line-height: 1.7;
        color: color-mix(in srgb, var(--default-color), transparent 20%);
    }

.framework .hero-content .hero-buttons {
    display: flex;
    gap: 1.25rem;
}

@media (max-width: 991px) {
    .framework .hero-content .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .framework .hero-content .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
}

.framework .hero-content .hero-buttons .primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .framework .hero-content .hero-buttons .primary-btn i {
        margin-left: 8px;
        font-size: 0.85rem;
        transition: transform 0.3s ease;
    }

    .framework .hero-content .hero-buttons .primary-btn:hover {
        background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
        transform: translateY(-3px);
        box-shadow: 0 10px 20px color-mix(in srgb, var(--accent-color), transparent 80%);
    }

        .framework .hero-content .hero-buttons .primary-btn:hover i {
            transform: translateX(4px);
        }

.framework .hero-content .hero-buttons .secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
    background-color: transparent;
    color: var(--default-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .framework .hero-content .hero-buttons .secondary-btn:hover {
        border-color: var(--default-color);
        transform: translateY(-3px);
    }

.framework .hero-visual {
    position: relative;
}

    .framework .hero-visual .image-wrapper {
        position: relative;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    }

        .framework .hero-visual .image-wrapper .main-image {
            width: 100%;
            height: auto;
            display: block;
        }

        .framework .hero-visual .image-wrapper .floating-element {
            position: absolute;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background-color: color-mix(in srgb, var(--surface-color), transparent 40%);
            backdrop-filter: blur(10px);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            animation: float 6s ease-in-out infinite;
        }

            .framework .hero-visual .image-wrapper .floating-element i {
                font-size: 1.5rem;
                color: var(--accent-color);
            }

            .framework .hero-visual .image-wrapper .floating-element.top-left {
                top: -20px;
                left: -20px;
                animation-delay: 0.5s;
            }

            .framework .hero-visual .image-wrapper .floating-element.bottom-right {
                bottom: -20px;
                right: -20px;
                animation-delay: 1.5s;
            }

        .framework .hero-visual .image-wrapper .experience-badge {
            position: absolute;
            bottom: 30px;
            left: 30px;
            background-color: color-mix(in srgb, var(--surface-color), transparent 40%);
            backdrop-filter: blur(10px);
            border-radius: 10px;
            padding: 1rem;
            display: flex;
            flex-direction: column;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            min-width: 140px;
        }

            .framework .hero-visual .image-wrapper .experience-badge .years {
                font-size: 2.2rem;
                font-weight: 800;
                color: var(--accent-color);
                line-height: 1;
            }

            .framework .hero-visual .image-wrapper .experience-badge .text {
                font-size: 0.85rem;
                color: var(--default-color);
                font-weight: 500;
            }

    .framework .hero-visual .client-counter {
        position: absolute;
        top: 30px;
        right: -30px;
        background-color: var(--surface-color);
        border-radius: 10px;
        padding: 1.25rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        min-width: 160px;
    }

@media (max-width: 991px) {
    .framework .hero-visual .client-counter {
        right: 0;
    }
}

@media (max-width: 767px) {
    .framework .hero-visual .client-counter {
        right: 20px;
    }
}

.framework .hero-visual .client-counter .counter-number span {
    font-size: 2rem;
    font-weight: 800;
    color: var(--heading-color);
}

.framework .hero-visual .client-counter .counter-text span {
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

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

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

/*--------------------------------------------------------------
# Services 3 Section
--------------------------------------------------------------*/
.services-3 .content-block {
    margin-right: 30px;
}

    .services-3 .content-block .subtitle {
        font-size: 0.9rem;
        text-transform: uppercase;
        font-weight: 600;
        margin-bottom: 0.8rem;
        color: color-mix(in srgb, var(--accent-color), transparent 25%);
    }

    .services-3 .content-block .title {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        line-height: 1.3;
    }

    .services-3 .content-block .description {
        margin-bottom: 1.8rem;
        font-size: 1rem;
        line-height: 1.7;
    }

    .services-3 .content-block .button-wrapper {
        margin-top: 2rem;
    }

        .services-3 .content-block .button-wrapper .btn {
            background-color: var(--accent-color);
            color: var(--contrast-color);
            padding: 0.8rem 1.8rem;
            border-radius: 5px;
            transition: all 0.3s ease;
            font-weight: 500;
        }

            .services-3 .content-block .button-wrapper .btn:hover {
                background-color: color-mix(in srgb, var(--accent-color), #000 10%);
                transform: translateY(-3px);
            }

@media (max-width: 992px) {
    .services-3 .content-block {
        margin-right: 0;
        margin-bottom: 3rem;
    }
}

.services-3 .services-list .service-item {
    position: relative;
    padding: 2.5rem 0;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

    .services-3 .services-list .service-item:first-child {
        padding-top: 0;
    }

    .services-3 .services-list .service-item:hover .service-content h4 a {
        color: var(--accent-color);
    }

.services-3 .services-list .service-icon {
    height: 5rem;
    width: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    margin-right: 1.5rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

    .services-3 .services-list .service-icon i {
        font-size: 2.5rem;
        color: var(--accent-color);
        transition: all 0.3s ease;
    }

.services-3 .services-list .service-content {
    position: relative;
    width: 100%;
}

    .services-3 .services-list .service-content h4 {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        line-height: 1.5;
    }

        .services-3 .services-list .service-content h4 a {
            color: var(--heading-color);
            transition: color 0.3s;
        }

            .services-3 .services-list .service-content h4 a:hover {
                color: var(--accent-color);
            }

    .services-3 .services-list .service-content p {
        margin-bottom: 0.25rem;
        font-size: 0.95rem;
    }

@media (max-width: 768px) {
    .services-3 .services-list .service-item {
        padding: 2rem 0;
    }

    .services-3 .services-list .service-icon {
        height: 4rem;
        width: 4rem;
        margin-right: 1rem;
    }

        .services-3 .services-list .service-icon i {
            font-size: 2rem;
        }

    .services-3 .services-list .service-content h4 {
        font-size: 1.25rem;
    }

    .services-3 .services-list .service-content p {
        font-size: 0.9rem;
    }
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats {
    padding: 30px 0;
}

    .stats .stats-item {
        padding: 30px;
        width: 100%;
    }

        .stats .stats-item span {
            font-size: 48px;
            display: block;
            color: var(--accent-color);
            font-weight: 700;
        }

        .stats .stats-item p {
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            padding: 0;
            margin: 0;
            font-family: var(--heading-font);
            font-size: 15px;
            font-weight: 600;
        }

/*--------------------------------------------------------------
# Features 3 Section
--------------------------------------------------------------*/
.features-3 .intro-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--heading-color);
    line-height: 1.3;
}

.features-3 .intro-content p {
    font-size: 18px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 35px;
    line-height: 1.6;
}

.features-3 .intro-content .feature-stats {
    display: flex;
    gap: 30px;
}

    .features-3 .intro-content .feature-stats .stat-item {
        text-align: center;
    }

        .features-3 .intro-content .feature-stats .stat-item .stat-number {
            display: block;
            font-size: 28px;
            font-weight: 700;
            color: var(--accent-color);
            line-height: 1;
        }

        .features-3 .intro-content .feature-stats .stat-item .stat-label {
            font-size: 14px;
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            font-weight: 500;
            margin-top: 5px;
            display: block;
        }

.features-3 .intro-image {
    position: relative;
}

    .features-3 .intro-image img {
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    }

.features-3 .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.features-3 .feature-item {
    position: relative;
    background: var(--surface-color);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    overflow: hidden;
}

    .features-3 .feature-item::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 50%));
        transition: left 0.5s ease;
    }

    .features-3 .feature-item .feature-number {
        position: absolute;
        top: 20px;
        right: 25px;
        font-size: 48px;
        font-weight: 900;
        color: color-mix(in srgb, var(--accent-color), transparent 90%);
        line-height: 1;
        z-index: 1;
    }

    .features-3 .feature-item .feature-content {
        position: relative;
        z-index: 2;
    }

        .features-3 .feature-item .feature-content .feature-icon {
            margin-bottom: 25px;
        }

            .features-3 .feature-item .feature-content .feature-icon i {
                font-size: 32px;
                color: var(--contrast-color);
                background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 30%));
                width: 70px;
                height: 70px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 16px;
                transition: all 0.3s ease;
                box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
            }

        .features-3 .feature-item .feature-content h4 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 18px;
            color: var(--heading-color);
            line-height: 1.3;
        }

        .features-3 .feature-item .feature-content p {
            font-size: 15px;
            color: color-mix(in srgb, var(--default-color), transparent 25%);
            margin-bottom: 25px;
            line-height: 1.6;
        }

        .features-3 .feature-item .feature-content .feature-tags {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

            .features-3 .feature-item .feature-content .feature-tags .tag {
                font-size: 12px;
                font-weight: 600;
                padding: 6px 12px;
                background: color-mix(in srgb, var(--accent-color), transparent 90%);
                color: var(--accent-color);
                border-radius: 20px;
                transition: all 0.3s ease;
            }

    .features-3 .feature-item:hover {
        transform: translateY(-15px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    }

        .features-3 .feature-item:hover::before {
            left: 0;
        }

        .features-3 .feature-item:hover .feature-number {
            color: color-mix(in srgb, var(--accent-color), transparent 80%);
            transform: scale(1.1);
        }

        .features-3 .feature-item:hover .feature-icon i {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 12px 35px color-mix(in srgb, var(--accent-color), transparent 60%);
        }

        .features-3 .feature-item:hover .feature-tags .tag {
            background: var(--accent-color);
            color: var(--contrast-color);
        }

@media (max-width: 991px) {
    .features-3 .intro-content {
        margin-bottom: 40px;
    }

        .features-3 .intro-content h2 {
            font-size: 32px;
        }

        .features-3 .intro-content .feature-stats {
            justify-content: center;
            gap: 25px;
        }

    .features-3 .features-grid {
        grid-template-columns: 1fr;
        margin-top: 40px;
        gap: 25px;
    }
}

@media (max-width: 767px) {
    .features-3 .intro-content .feature-stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

        .features-3 .intro-content .feature-stats .stat-item {
            display: flex;
            align-items: center;
            gap: 15px;
        }

            .features-3 .intro-content .feature-stats .stat-item .stat-number {
                font-size: 24px;
            }

            .features-3 .intro-content .feature-stats .stat-item .stat-label {
                margin-top: 0;
            }

    .features-3 .feature-item {
        padding: 25px;
    }

        .features-3 .feature-item .feature-number {
            font-size: 36px;
            top: 15px;
            right: 20px;
        }

        .features-3 .feature-item .feature-content h4 {
            font-size: 20px;
        }

    .features-3 .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .features-3 .intro-content h2 {
        font-size: 28px;
    }

    .features-3 .intro-content p {
        font-size: 16px;
    }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
    padding: 20px 0;
}

    .clients .client-logo {
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }

        .clients .client-logo img {
            padding: 20px 40px;
            max-width: 90%;
            transition: 0.3s;
            opacity: 0.5;
            filter: grayscale(100);
        }

            .clients .client-logo img:hover {
                filter: none;
                opacity: 1;
                transform: scale(1.1);
            }

@media (max-width: 640px) {
    .clients .client-logo img {
        padding: 20px;
    }
}

/*--------------------------------------------------------------
# Tabs Section
--------------------------------------------------------------*/
.tabs .nav-tabs {
    border: 0;
}

.tabs .nav-link {
    color: var(--heading-color);
    background-color: var(--surface-color);
    padding: 15px 0;
    transition: 0.3s;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    height: 100%;
    border: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

    .tabs .nav-link::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background-color: var(--accent-color);
        transition: all 0.3s ease-in-out;
        z-index: -1;
        border-radius: inherit;
    }

    .tabs .nav-link i {
        padding-right: 15px;
        font-size: 48px;
    }

    .tabs .nav-link:hover {
        color: var(--contrast-color);
    }

        .tabs .nav-link:hover::before {
            left: 0;
        }

    .tabs .nav-link.active {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }

.tabs .tab-content-inner {
    height: 100%;
    background-color: var(--surface-color);
    padding: 30px;
    border-radius: 15px;
}

    .tabs .tab-content-inner h3 {
        color: var(--heading-color);
        font-weight: 700;
        font-size: 24px;
        position: relative;
        margin-bottom: 20px;
    }

    .tabs .tab-content-inner ul {
        list-style: none;
        padding: 0;
    }

        .tabs .tab-content-inner ul li {
            padding-top: 10px;
        }

        .tabs .tab-content-inner ul i {
            font-size: 20px;
            padding-right: 4px;
            color: var(--accent-color);
        }

    .tabs .tab-content-inner p:last-child {
        margin-bottom: 0;
    }

    .tabs .tab-content-inner .benefits-list {
        display: grid;
        gap: 1.5rem;
        margin: 1.4rem 0;
    }

        .tabs .tab-content-inner .benefits-list .benefit-item {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

            .tabs .tab-content-inner .benefits-list .benefit-item i {
                font-size: 1.5rem;
                color: var(--accent-color);
            }

            .tabs .tab-content-inner .benefits-list .benefit-item h4 {
                margin: 0;
                font-size: 1.1rem;
            }

    .tabs .tab-content-inner .btn-cta {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        padding: 0.8rem 2.5rem;
        border-radius: 2rem;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        transition: all 0.3s ease;
    }

        .tabs .tab-content-inner .btn-cta:hover {
            background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
            color: var(--contrast-color);
        }

        .tabs .tab-content-inner .btn-cta i {
            transition: transform 0.3s ease;
        }

        .tabs .tab-content-inner .btn-cta:hover i {
            transform: translateX(5px);
        }

.tabs .image-wrapper {
    overflow: hidden;
    border-radius: 15px;
}

.tabs .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

@media (max-width: 768px) {
    .tabs .features-grid {
        grid-template-columns: 1fr;
    }
}

.tabs .features-card {
    position: relative;
    background-color: var(--surface-color);
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    padding: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
    height: fit-content;
    display: flex;
    flex-direction: column;
}

    .tabs .features-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

        .tabs .features-card:hover .icon-wrapper {
            background-color: var(--accent-color);
            color: var(--contrast-color);
        }

    .tabs .features-card .icon-wrapper {
        width: 70px;
        height: 70px;
        background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
        color: var(--accent-color);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        margin-bottom: 25px;
        transition: all 0.3s ease;
    }

        .tabs .features-card .icon-wrapper i {
            font-size: 32px;
        }

    .tabs .features-card h3 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 15px;
        color: var(--heading-color);
    }

    .tabs .features-card p {
        font-size: 15px;
        margin-bottom: 20px;
        color: color-mix(in srgb, var(--default-color), transparent 20%);
    }

    .tabs .features-card .features-list {
        margin-bottom: 25px;
    }

        .tabs .features-card .features-list .feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 12px;
        }

            .tabs .features-card .features-list .feature-item:last-child {
                margin-bottom: 0;
            }

            .tabs .features-card .features-list .feature-item i {
                color: var(--accent-color);
                font-size: 16px;
                margin-right: 10px;
                margin-top: 3px;
            }

            .tabs .features-card .features-list .feature-item span {
                font-size: 14px;
                color: color-mix(in srgb, var(--default-color), transparent 10%);
            }

    .tabs .features-card .image-container {
        margin-top: auto;
        text-align: center;
    }

        .tabs .features-card .image-container img {
            max-height: 180px;
            object-fit: contain;
            transition: transform 0.4s ease;
        }

    .tabs .features-card:hover .image-container img {
        transform: scale(1.05);
    }



/*--------------------------------------------------------------
# Slider Section
--------------------------------------------------------------*/
.slider {
    overflow: visible;
}

    .slider .section-title {
        text-align: left;
    }

        .slider .section-title h2 {
            color: color-mix(in srgb, var(--contrast-color), transparent 50%);
            text-transform: uppercase;
            font-size: 20px;
        }

        .slider .section-title p {
            color: var(--contrast-color);
        }

    .slider .services-carousel-wrap {
        position: relative;
    }

    .slider .swiper-wrapper {
        height: auto;
    }

    .slider .service-item {
        position: relative;
        overflow: hidden;
        max-height:6rem;
        padding:1rem;
        display: grid;
        place-items: center;
    }

        

        .slider .service-item img {
            transition: 0.5s all ease;
            transform: scale(1);
            max-height: 5rem;
            filter: grayscale(100);
            opacity: 0.5;
        }

        .slider .service-item .service-item-contents {
            z-index: 9;
            position: absolute;
            bottom: 20px;
            left: 20px;
            right: 20px;
            transition: 0.3s all ease;
            transform: translateY(100%);
            visibility: hidden;
        }

            .slider .service-item .service-item-contents .service-item-category {
                color: var(--accent-color);
                text-transform: uppercase;
            }

            .slider .service-item .service-item-contents .service-item-title {
                color: var(--contrast-color);
                margin-bottom: 0;
            }

       /* .slider .service-item:hover:before {
            opacity: 1;
            visibility: visible;
        }*/

        .slider .service-item:hover .service-item-contents {
            transform: translateY(0%);
            opacity: 1;
            visibility: visible;
        }

        .slider .service-item:hover img {
            transform: scale(1.1);
            filter: grayscale(0);
            opacity: 1;
        }

    .slider .navigation-prev,
    .slider .navigation-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 9;
        width: 46px;
        height: 46px;
        background: var(--contrast-color);
        background-color: none;
        border: none;
        transition: 0.3s all ease;
    }

        .slider .navigation-prev i,
        .slider .navigation-next i {
            font-size: 2rem;
        }

        .slider .navigation-prev:hover,
        .slider .navigation-next:hover {
            background-color: var(--accent-color);
            color: var(--contrast-color);
        }

    .slider .navigation-prev {
        left: 10px;
    }

    .slider .navigation-next {
        right: 10px;
    }

    .slider .swiper-pagination {
        bottom: 0px;
    }

        .slider .swiper-pagination .swiper-pagination-bullet {
            border-radius: 0;
            width: 20px;
            height: 4px;
            background-color: var(--surface-color);
            opacity: 1;
        }

        .slider .swiper-pagination .swiper-pagination-bullet-active {
            background-color: var(--accent-color) !important;
        }
/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
    /* Add your styles here */
}
