.header .topbar {
    height: 32px;
}

    .header .topbar .contact-info i a, .header .topbar .contact-info i span {
        padding-right: 5px;
        padding-left: initial;
    }

        .header .topbar .contact-info i a:hover {
            color: var(--heading-color);
            text-decoration: underline;
        }

.header .branding {
    padding: 5px 0 8px 0;
}

@media (min-width: 1200px) {
    .navmenu a i, .navmenu a:focus i {
        margin-left: auto;
        margin-right: 5px;
    }
}

.header .logo h1 {
    font-size: 24px;
    margin: 0;
    font-weight: 700;
    color: var(--heading-color);
}

@media (min-width: 1200px) {
    .navmenu .dropdown ul {
        left: auto;
        right: 14px;
    }
}

.navmenu a i, .navmenu a:focus i {
    color: var(--accent-color);
}

@media (min-width: 1200px) {
    .navmenu a, .navmenu a:focus {
        padding: 17px 15px 11px 15px;
    }
}

.header .logo img {
    max-height: 50px;
    margin-left: 8px;
    margin-right: auto;
}

.services-2 .img {
    border-radius: 8px;
    overflow: hidden;
}

    .services-2 .img img {
        transition: 0.6s;
    }

.services-2 .details {
    background: color-mix(in srgb, var(--surface-color), transparent 5%);
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    padding: 10px;
    transition: all ease-in-out 0.3s;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
}

    .services-2 .details h3 {
        font-weight: 700;
        margin: 10px 0 15px 0;
        font-size: 22px;
        transition: ease-in-out 0.3s;
    }

    .services-2 .details p {
        color: color-mix(in srgb, var(--default-color), transparent 10%);
        line-height: 24px;
        font-size: 14px;
        margin-bottom: 0;
    }

.services-2 .service-item:hover .details h3 {
    color: var(--accent-color);
}

.services-2 .service-item:hover .img img {
    transform: scale(1.2);
}



.blog-section .section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

    .blog-section .section-title h2 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 20px;
        padding-bottom: 20px;
        position: relative;
        color: var(--heading-color);
    }

        .blog-section .section-title h2:after {
            content: '';
            position: absolute;
            display: block;
            width: 50px;
            height: 3px;
            background: var(--accent-color);
            left: 0;
            right: 0;
            bottom: 0;
            margin: auto;
        }

    .blog-section .section-title p {
        margin-bottom: 0;
    }

.blog-section .featured-post {
    margin-bottom: 40px;
}

    .blog-section .featured-post .post-img {
        border-radius: 12px;
        overflow: hidden;
        margin-bottom: 20px;
    }

        .blog-section .featured-post .post-img img {
            width: 100%;
            aspect-ratio: 16/9;
            object-fit: cover;
        }

    .blog-section .featured-post .category-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
    }

    .blog-section .featured-post .post-category {
        font-size: 13px;
        font-weight: 600;
        color: var(--accent-color);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .blog-section .featured-post .author-meta {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
    }

        .blog-section .featured-post .author-meta .author-img {
            width: 30px;
            height: 30px;
            border-radius: 50%;
        }

        .blog-section .featured-post .author-meta .author-name {
            color: var(--heading-color);
            font-weight: 500;
        }

        .blog-section .featured-post .author-meta .post-date {
            color: color-mix(in srgb, var(--default-color), transparent 40%);
        }

            .blog-section .featured-post .author-meta .post-date:before {
                content: "";
                margin: 0;
            }

    .blog-section .featured-post .title {
        font-size: 14px;
        line-height: 1.4;
        margin: 0;
        text-align: justify;
    }

        .blog-section .featured-post .title a {
            color: var(--heading-color);
            transition: color 0.3s;
        }

            .blog-section .featured-post .title a:hover {
                color: var(--accent-color);
            }

.blog-section .list-post {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

    .blog-section .list-post .post-img {
        flex: 0 0 100px;
        border-radius: 8px;
        overflow: hidden;
    }

        .blog-section .list-post .post-img img {
            width: 100px;
            height: 100px;
            object-fit: cover;
        }

    .blog-section .list-post .post-content {
        flex: 1;
    }

    .blog-section .list-post .post-category {
        font-size: 13px;
        font-weight: 500;
        color: var(--accent-color);
        margin-bottom: 8px;
        display: inline-block;
    }

    .blog-section .list-post .title {
        font-size: 17px;
        line-height: 1.5;
        margin: 0 0 8px 0;
    }

        .blog-section .list-post .title a {
            color: var(--heading-color);
            transition: color 0.3s;
        }

            .blog-section .list-post .title a:hover {
                color: var(--accent-color);
            }

    .blog-section .list-post .post-meta {
        font-size: 13px;
        color: color-mix(in srgb, var(--default-color), transparent 40%);
    }

        .blog-section .list-post .post-meta .read-time:after {
            content: "•";
            margin: 0 8px;
        }

@media (max-width: 992px) {
    .blog-section .featured-post .title {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .blog-section .list-post .post-img {
        flex: 0 0 80px;
    }

        .blog-section .list-post .post-img img {
            width: 80px;
            height: 80px;
        }

    .blog-section .list-post .title {
        font-size: 15px;
    }
}

.services-3 {
    --cyan-color: #0dcaf0;
    --orange-color: #fd7e14;
    --teal-color: #20c997;
    --red-color: #df1529;
}

    .services-3 .service-item {
        background-color: var(--surface-color);
        box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
        height: 100%;
        padding: 40px 30px;
        text-align: center;
        transition: 0.3s;
        border-radius: 5px;
        border: 1px solid transparent;
    }

        .services-3 .service-item .icon {
            margin: 0 auto;
            width: 64px;
            height: 64px;
            display: flex;
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            transition: ease-in-out 0.3s;
            position: relative;
        }

            .services-3 .service-item .icon i {
                font-size: 28px;
                transition: 0.5s;
                position: relative;
            }

        .services-3 .service-item h3 {
            font-weight: 700;
            margin: 10px 0 15px 0;
            font-size: 22px;
        }

        .services-3 .service-item p {
            line-height: 24px;
            font-size: 14px;
            margin-bottom: 0;
        }

        .services-3 .service-item:hover {
            box-shadow: 0px 5px 35px 0px rgba(0, 0, 0, 0.1);
        }

        .services-3 .service-item.item-cyan .icon {
            background-color: color-mix(in srgb, var(--cyan-color) 10%, white 95%);
        }

            .services-3 .service-item.item-cyan .icon i {
                color: var(--cyan-color);
            }

        .services-3 .service-item.item-cyan:hover {
            border-color: var(--cyan-color);
        }

            .services-3 .service-item.item-cyan:hover .icon {
                background-color: var(--cyan-color);
            }

                .services-3 .service-item.item-cyan:hover .icon i {
                    color: var(--contrast-color);
                }

        .services-3 .service-item.item-orange .icon {
            background-color: color-mix(in srgb, var(--orange-color) 10%, white 95%);
        }

            .services-3 .service-item.item-orange .icon i {
                color: var(--orange-color);
            }

        .services-3 .service-item.item-orange:hover {
            border-color: var(--orange-color);
        }

            .services-3 .service-item.item-orange:hover .icon {
                background-color: var(--orange-color);
            }

                .services-3 .service-item.item-orange:hover .icon i {
                    color: var(--contrast-color);
                }

        .services-3 .service-item.item-teal .icon {
            background-color: color-mix(in srgb, var(--teal-color) 10%, white 95%);
        }

            .services-3 .service-item.item-teal .icon i {
                color: var(--teal-color);
            }

        .services-3 .service-item.item-teal:hover {
            border-color: var(--teal-color);
        }

            .services-3 .service-item.item-teal:hover .icon {
                background-color: var(--teal-color);
            }

                .services-3 .service-item.item-teal:hover .icon i {
                    color: var(--contrast-color);
                }

        .services-3 .service-item.item-red .icon {
            background-color: color-mix(in srgb, var(--red-color) 10%, white 95%);
        }

            .services-3 .service-item.item-red .icon i {
                color: var(--red-color);
            }

        .services-3 .service-item.item-red:hover {
            border-color: var(--red-color);
        }

            .services-3 .service-item.item-red:hover .icon {
                background-color: var(--red-color);
            }

                .services-3 .service-item.item-red:hover .icon i {
                    color: var(--contrast-color);
                }


.cards-3 .card {
    background-color: var(--surface-color);
    color: var(--default-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    position: relative;
    border-radius: 0;
}

    .cards-3 .card .card-img {
        overflow: hidden;
        margin-bottom: 15px;
        border-radius: 0;
    }

        .cards-3 .card .card-img img {
            transition: 0.3s ease-in-out;
        }

    .cards-3 .card h3 {
        font-weight: 600;
        font-size: 20px;
        margin-bottom: 5px;
        padding: 0 20px;
    }

    .cards-3 .card a {
        color: var(--heading-color);
        transition: 0.3;
    }

        .cards-3 .card a:hover {
            color: var(--accent-color);
        }

    .cards-3 .card .stars {
        padding: 0 20px;
        margin-bottom: 5px;
    }

        .cards-3 .card .stars i {
            color: #ffc107;
        }

    .cards-3 .card p {
        padding: 0 20px;
        margin-bottom: 20px;
        color: color-mix(in srgb, var(--default-color), transparent 40%);
        font-style: italic;
        font-size: 15px;
    }

    .cards-3 .card:hover .card-img img {
        transform: scale(1.1);
    }


.tabs .nav-tabs {
    border: 0;
    background-color: color-mix(in srgb, var(--default-color), transparent 96%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    padding: 6px;
    width: auto;
}

.tabs .nav-item {
    margin: 0;
    padding: 0 5px 0 0;
}

    .tabs .nav-item:last-child {
        padding-right: 0;
    }

.tabs .nav-link {
    background-color: none;
    color: var(--heading-color);
    padding: 10px 30px;
    transition: 0.3s;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    height: 100%;
    border: 0;
    margin: 0;
}

@media (max-width: 468px) {
    .tabs .nav-link {
        padding: 8px 20px;
    }
}

.tabs .nav-link i {
    padding-right: 15px;
    font-size: 48px;
}

.tabs .nav-link h4 {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.tabs .nav-link:hover {
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

    .tabs .nav-link:hover h4 {
        color: var(--accent-color);
    }

.tabs .nav-link.active {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

    .tabs .nav-link.active h4 {
        color: var(--contrast-color);
    }

.tabs .tab-content {
    margin-top: 30px;
}

.tabs .tab-pane h3 {
    color: var(--heading-color);
    font-weight: 700;
    font-size: 32px;
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

    .tabs .tab-pane h3:after {
        content: "";
        position: absolute;
        display: block;
        width: 60px;
        height: 3px;
        background: var(--accent-color);
        left: 0;
        bottom: 0;
    }

.tabs .tab-pane ul {
    list-style: none;
    padding: 0;
}

    .tabs .tab-pane ul li {
        padding-top: 10px;
    }

    .tabs .tab-pane ul i {
        font-size: 20px;
        padding-right: 4px;
        color: var(--accent-color);
    }

.tabs .tab-pane p:last-child {
    margin-bottom: 0;
}

.services-6 .service-item {
    text-align: center;
    padding: 20px;
    transition: all ease-in-out 0.3s;
    height: 100%;
}

    .services-6 .service-item .icon {
        background-color: var(--surface-color);
        color: var(--accent-color);
        margin: 0 auto;
        width: 80px;
        height: 80px;
        border-radius: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        transition: 0.3s;
        font-size: 32px;
        transition: ease-in-out 0.3s;
        box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
    }

    .services-6 .service-item h3 {
        font-weight: 700;
        margin-bottom: 15px;
        padding-bottom: 15px;
        font-size: 22px;
        transition: 0.3s;
        position: relative;
    }

        .services-6 .service-item h3:after {
            content: "";
            position: absolute;
            display: block;
            width: 50px;
            height: 2px;
            background: var(--accent-color);
            bottom: 0;
            left: calc(50% - 25px);
        }

    .services-6 .service-item p {
        line-height: 24px;
        font-size: 14px;
        margin-bottom: 0;
    }

    .services-6 .service-item:hover .icon {
        box-shadow: 0px 0 40px rgba(0, 0, 0, 0.1);
    }

    .services-6 .service-item:hover h3 {
        color: var(--accent-color);
    }


.footer {
    color: var(--default-color);
    background-color: var(--background-color);
    font-size: 14px;
    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-family: var(--heading-font);
            font-size: 26px;
            font-weight: 700;
            letter-spacing: 1px;
        }

    .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: 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 20%);
        margin-right: 10px;
        transition: 0.3s;
    }

        .footer .social-links a:hover {
            color: var(--accent-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 30%);
                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: 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: 8px;
        font-size: 13px;
    }


/*--------------------------------------------------------------
# Blog Hero Section
--------------------------------------------------------------*/
.blog-hero {
    padding: 0;
}

    .blog-hero .blog-hero-slider {
        position: relative;
        overflow: hidden;
    }

    .blog-hero .blog-hero-item {
        position: relative;
        height: 80vh;
        min-height: 600px;
    }

        .blog-hero .blog-hero-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .blog-hero .blog-hero-item::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
        }

    .blog-hero .blog-hero-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
        padding: 60px;
        color: var(--contrast-color);
        text-align: center;
        max-width: 800px;
        width: 100%;
    }

        .blog-hero .blog-hero-content .category {
            display: inline-block;
            background-color: var(--accent-color);
            color: var(--contrast-color);
            padding: 6px 16px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .blog-hero .blog-hero-content h1, h2 {
            color: var(--contrast-color);
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }

@media (max-width: 991px) {
    .blog-hero .blog-hero-content h1 {
        font-size: 36px;
    }

    .blog-hero .blog-hero-content h2 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .blog-hero .blog-hero-content h1 {
        font-size: 28px;
    }

    .blog-hero .blog-hero-content h2 {
        font-size: 28px;
    }
}

.blog-hero .blog-hero-content .meta {
    margin-bottom: 30px;
    font-size: 14px;
}

    .blog-hero .blog-hero-content .meta span {
        display: inline-block;
        margin-right: 20px;
        color: color-mix(in srgb, var(--contrast-color), transparent 20%);
    }

        .blog-hero .blog-hero-content .meta span:last-child {
            margin-right: 0;
        }

        .blog-hero .blog-hero-content .meta span a {
            color: var(--contrast-color);
            font-weight: 600;
        }

            .blog-hero .blog-hero-content .meta span a:hover {
                color: var(--accent-color);
            }

@media (max-width: 767px) {
    .blog-hero .blog-hero-content .meta span {
        display: block;
        margin: 0 0 10px 0;
    }
}

.blog-hero .blog-hero-content .read-more {
    display: inline-flex;
    align-items: center;
    color: var(--contrast-color);
    font-weight: 500;
}

    .blog-hero .blog-hero-content .read-more i {
        margin-right: 8px;
        transition: transform 0.3s ease;
    }

    .blog-hero .blog-hero-content .read-more:hover {
        color: var(--accent-color);
    }

        .blog-hero .blog-hero-content .read-more:hover i {
            transform: translateX(5px);
        }

@media (max-width: 767px) {
    .blog-hero .blog-hero-content {
        padding: 30px;
    }
}

.blog-hero .swiper-button-prev,
.blog-hero .swiper-button-next {
    color: var(--contrast-color);
    width: 60px;
    height: 60px;
}

    .blog-hero .swiper-button-prev::after,
    .blog-hero .swiper-button-next::after {
        font-size: 32px;
    }

    .blog-hero .swiper-button-prev:hover,
    .blog-hero .swiper-button-next:hover {
        color: var(--accent-color);
    }

.blog-hero .swiper-wrapper {
    height: auto !important;
}

.services .service-item .icon {
    margin-right: auto;
    margin-left: 30px;
}


[data-colorpreset="cp-light-background"], .light-background {
    --background-color: #f6f9fc; /*f9f9f9*/
    --surface-color: #ffffff;
}



/*--------------------------------------------------------------
# Hero Section New Site
--------------------------------------------------------------*/
.hero {
    width: 100%;
    min-height: 70vh;
    position: relative;
    padding: 40px 0 140px 0;
    display: flex;
    align-items: center;
}

    .hero .hero-bg {
        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(--bg-color-hero), transparent 10%);
        position: absolute;
        inset: 0;
        z-index: 2;
    }

    .hero .container {
        position: relative;
        z-index: 3;
    }

    .hero h1 {
        margin: 0 0 20px 0;
        font-size: 48px;
        font-weight: 500;
        line-height: 56px;
        color: color-mix(in srgb, var(--heading-color), transparent 10%);
    }

        .hero h1 span {
            color: var(--heading-color);
            border-bottom: 3px solid var(--accent-color);
            font-weight: 700;
        }

    .hero p {
        color: color-mix(in srgb, #ffffff, transparent 10%);
        margin: 5px 0 10px 0;
        font-size: 18px;
        font-weight: 400;
    }

    .hero .card-body h2 {
        color: color-mix(in srgb, #000000, transparent 10%);
        margin: 5px 0 20px 0;
        font-size: 18px;
        font-weight: 600;
    }

    .hero .card-body p {
        color: color-mix(in srgb, #000000, transparent 10%);
        margin: 5px 0 20px 0;
        font-size: 18px;
        font-weight: 400;
    }

    .hero .btn-get-started {
        color: var(--contrast-color);
        background: var(--accent-color);
        font-family: var(--heading-font);
        font-weight: 400;
        font-size: 15px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 10px 28px 12px 28px;
        border-radius: 3px;
        transition: 0.5s;
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    }

        .hero .btn-get-started:hover {
            color: var(--contrast-color);
            background: color-mix(in srgb, var(--accent-color), transparent 15%);
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
        }

    .hero .btn-watch-video {
        font-size: 16px;
        transition: 0.5s;
        margin-left: 25px;
        color: var(--default-color);
        font-weight: 600;
    }

        .hero .btn-watch-video i {
            color: var(--accent-color);
            font-size: 32px;
            transition: 0.3s;
            line-height: 0;
            margin-right: 8px;
        }

        .hero .btn-watch-video:hover {
            color: var(--accent-color);
        }

            .hero .btn-watch-video:hover i {
                color: color-mix(in srgb, var(--accent-color), transparent 15%);
            }

    .hero .animated {
        animation: up-down 2s ease-in-out infinite alternate-reverse both;
    }

@media (max-width: 640px) {
    .hero h1 {
        font-size: 28px;
        line-height: 36px;
    }

    .hero p {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }

    .hero .btn-get-started,
    .hero .btn-watch-video {
        font-size: 13px;
    }
}

.hero .hero-waves {
    display: block;
    width: 100%;
    height: 60px;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 3;
}

.hero .wave1 use {
    animation: move-forever1 10s linear infinite;
    animation-delay: -2s;
    fill: var(--default-color);
    opacity: 0.6;
}

.hero .wave2 use {
    animation: move-forever2 8s linear infinite;
    animation-delay: -2s;
    fill: var(--default-color);
    opacity: 0.4;
}

.hero .wave3 use {
    animation: move-forever3 6s linear infinite;
    animation-delay: -2s;
    fill: var(--default-color);
}

@keyframes move-forever1 {
    0% {
        transform: translate(85px, 0%);
    }

    100% {
        transform: translate(-90px, 0%);
    }
}

@keyframes move-forever2 {
    0% {
        transform: translate(-90px, 0%);
    }

    100% {
        transform: translate(85px, 0%);
    }
}

@keyframes move-forever3 {
    0% {
        transform: translate(-90px, 0%);
    }

    100% {
        transform: translate(85px, 0%);
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}



/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-item {
    background-color: var(--surface-color);
    display: flex;
    align-items: center;
    padding: 20px;
    transition: 0.3s;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    position: relative;
}

    .features .features-item i {
        font-size: 32px;
        padding-right: initial;
        padding-left: 10px;
        line-height: 0;
        color: var(--accent-color);
    }

    .features .features-item h3 {
        font-weight: 700;
        margin: 0;
        padding: 0;
        line-height: 1;
        font-size: 16px;
    }

        .features .features-item h3 a {
            color: var(--heading-color);
            transition: 0.3s;
        }

    .features .features-item:hover {
        border-color: var(--accent-color);
    }

        .features .features-item:hover h3 a {
            color: var(--accent-color);
        }

.cards-4 {
    background-color: transparent !important;
    margin-top: -140px
}

    .cards-4 .service-item-on {
        z-index: 11;
    }

    .cards-4 .service-item {
        background-color: var(--surface-color);
        border-radius: 0;
        box-shadow: 0 4px 15px color-mix(in srgb, var(--default-color), transparent 93%);
        transition: all 0.3s ease-in-out;
        height: 100%;
        position: relative;
        border: 0px solid transparent;
        padding-bottom: 30px;
    }

        .cards-4 .service-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 88%);
        }

            .cards-4 .service-item:hover .image-container img {
                transform: scale(1.05);
            }

            .cards-4 .service-item:hover .icon-box {
                background-color: var(--accent-color);
                transform: translateX(-50%) rotate(45deg);
                color: var(--contrast-color);
            }

                .cards-4 .service-item:hover .icon-box i {
                    transform: rotate(-45deg);
                }

        .cards-4 .service-item .image-container {
            position: relative;
            border-radius: 0;
            overflow: hidden;
        }

            .cards-4 .service-item .image-container img {
                transition: transform 0.4s ease;
            }

        .cards-4 .service-item .icon-box {
            position: absolute;
            bottom: -32px;
            left: 50%;
            transform: translateX(-50%);
            width: 64px;
            height: 64px;
            background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
            color: var(--accent-color);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            border: 4px solid var(--surface-color);
            transition: all 0.3s ease;
            transform-origin: center;
        }

            .cards-4 .service-item .icon-box i {
                transition: transform 0.3s ease;
            }

        .cards-4 .service-item .content {
            padding: 25px 10px 20px 10px;
            text-align: center;
        }

            .cards-4 .service-item .content h4 {
                font-size: 20px;
                font-weight: 700;
                margin-bottom: 10px;
            }

                .cards-4 .service-item .content h4 a {
                    color: var(--heading-color);
                    transition: 0.3s;
                }

                    .cards-4 .service-item .content h4 a:hover {
                        color: var(--accent-color);
                    }

            .cards-4 .service-item .content p {
                font-size: 15px;
                margin-bottom: 20px;
                color: color-mix(in srgb, var(--default-color), transparent 30%);
            }

            .cards-4 .service-item .content .read-more {
                display: inline-flex;
                align-items: center;
                color: var(--accent-color);
                font-weight: 600;
                font-size: 14px;
                text-decoration: none;
            }

                .cards-4 .service-item .content .read-more i {
                    margin-left: 5px;
                    transition: margin-left 0.3s ease;
                }

                .cards-4 .service-item .content .read-more:hover i {
                    margin-left: 8px;
                }

        .cards-4 .service-item.featured {
            border: 1px solid var(--accent-color);
            box-shadow: 0 8px 30px color-mix(in srgb, var(--accent-color), transparent 85%);
        }

            .cards-4 .service-item.featured .icon-box {
                background: var(--accent-color);
                color: var(--contrast-color);
            }

@media (max-width: 576px) {
    .cards-4 .service-item .content {
        padding: 40px 20px 20px 20px;
    }

        .cards-4 .service-item .content h4 {
            font-size: 18px;
        }
}


/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
    padding: 80px 0;
    position: relative;
}

    .testimonials:before {
        content: "";
        background: color-mix(in srgb, var(--background-color), transparent 30%);
        position: absolute;
        inset: 0;
        z-index: 2;
    }

    .testimonials .testimonials-bg {
        position: absolute;
        inset: 0;
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

    .testimonials .container {
        position: relative;
        z-index: 3;
    }

    .testimonials .testimonials-carousel,
    .testimonials .testimonials-slider {
        overflow: hidden;
    }

    .testimonials .testimonial-item {
        text-align: center;
        background: none;
    }

        .testimonials .testimonial-item .testimonial-img {
            width: 100px;
            border-radius: 50%;
            border: 6px solid color-mix(in srgb, var(--default-color), transparent 85%);
            margin: 0 auto;
        }

        .testimonials .testimonial-item h3 {
            font-size: 20px;
            font-weight: bold;
            margin: 10px 0 5px 0;
        }

        .testimonials .testimonial-item h4 {
            font-size: 14px;
            margin: 0 0 15px 0;
            color: color-mix(in srgb, var(--default-color), transparent 40%);
        }

        .testimonials .testimonial-item .stars {
            margin-bottom: 15px;
        }

            .testimonials .testimonial-item .stars i {
                color: #ffc107;
                margin: 0 1px;
            }

        .testimonials .testimonial-item .quote-icon-left,
        .testimonials .testimonial-item .quote-icon-right {
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            font-size: 26px;
            line-height: 0;
        }

        .testimonials .testimonial-item .quote-icon-left {
            display: inline-block;
            left: -5px;
            position: relative;
        }

        .testimonials .testimonial-item .quote-icon-right {
            display: inline-block;
            right: -5px;
            position: relative;
            top: 10px;
            transform: scale(-1, -1);
        }

        .testimonials .testimonial-item p {
            font-style: italic;
            margin: 0 auto 15px auto;
        }

    .testimonials .swiper-wrapper {
        height: auto;
    }

    .testimonials .swiper-pagination {
        margin-top: 20px;
        position: relative;
    }

        .testimonials .swiper-pagination .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background-color: color-mix(in srgb, var(--default-color), transparent 50%);
            opacity: 0.5;
        }

        .testimonials .swiper-pagination .swiper-pagination-bullet-active {
            background-color: var(--default-color);
            opacity: 1;
        }

@media (min-width: 992px) {
    .testimonials .testimonial-item p {
        width: 80%;
    }
}



/*--------------------------------------------------------------
# Slider Section
--------------------------------------------------------------*/
.slider {
    background-color: transparent;
}

    .slider .swiper-pagination .swiper-pagination-bullet {
        background-color: color-mix(in srgb, var(--default-color) 90%, white 15%);
    }

    .slider .swiper-pagination .swiper-pagination-bullet-active {
        background-color: var(--accent-color);
    }

    .slider .swiper-wrapper {
        height: auto !important;
    }

    .slider .swiper-slide {
        min-height: 200px; /*min-height: 500px;*/
        position: relative;
        display: flex;
        align-items: flex-end;
        background-repeat: no-repeat;
        background-size: cover;
    }

        .slider .swiper-slide::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: color-mix(in srgb, var(--background-color), transparent 50%);
        }

@media (max-width: 575px) {
    .slider .swiper-slide {
        min-height: 300px;
    }
}

.slider .swiper-button-prev:after,
.slider .swiper-button-next:after {
    font-size: 24px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.slider .content {
    padding: 60px 80px;
    /*max-width: 700px;*/
    position: relative;
}

    .slider .content a,
    .slider .content h2,
    .slider .content p {
        color: var(--default-color);
    }

    .slider .content a,
    .slider .content h2,
    .slider .content p {
        font-size: 1.5rem;
        line-height: 2rem;
    }
