/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
    --default-font: "Lato", 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: "Playfair Display", sans-serif;
    --nav-font: "Lato", 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: #222222; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #222222; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #dd4026; /* 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: #222222; /* The default color of the main navmenu links */
    --nav-hover-color: #dd4026; /* 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: #222222; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #dd4026; /* 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: #f2f5f4;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #000000;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #222222;
    --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);
}

@media (min-width: 1600px) {
    .container {
        min-width: 85%;
    }
}

main.main {
    min-height: 700px;
}


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

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

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

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

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

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

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

    .header .topbar {
        background-color: var(--background-color);
        height: 40px;
        padding: 0;
        font-size: 14px;
        transition: all 0.5s;
    }

        .header .topbar .contact-info i {
            font-style: normal;
            color: var(--contrast-color);
        }

            .header .topbar .contact-info i a,
            .header .topbar .contact-info i span {
                padding-left: 5px;
                color: var(--contrast-color);
            }

@media (max-width: 575px) {

    .header .topbar .contact-info i a,
    .header .topbar .contact-info i span {
        font-size: 13px;
    }
}

.header .topbar .contact-info i a {
    line-height: 0;
    transition: 0.3s;
}

    .header .topbar .contact-info i a:hover {
        color: var(--contrast-color);
        text-decoration: underline;
    }

.header .topbar .social-links a {
    color: color-mix(in srgb, var(--contrast-color), transparent 40%);
    line-height: 0;
    transition: 0.3s;
    margin-left: 20px;
}

    .header .topbar .social-links a:hover {
        color: var(--contrast-color);
    }

.header .branding {
    min-height: 60px;
    padding: 10px 0;
}

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

    .header .logo img {
        max-height: 65px;
        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);
}

    .scrolled .header .topbar {
        height: 0;
        visibility: hidden;
        overflow: hidden;
    }

.header .top-menu {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: end;
    margin: 0;
    font-size: 18px;
    line-height: 1;
}

    .header .top-menu li {
        padding: 0 10px;
    }

    .header .top-menu .fnt-1 {
        font-size: 22px;
    }

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

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

        .navmenu li {
            position: relative;
        }

        .navmenu a,
        .navmenu a:focus {
            color: var(--nav-color);
            padding: 10px 15px;
            margin-left: 2px;
            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:hover > a,
        .navmenu .active,
        .navmenu .active:focus {
            color: var(--contrast-color);
            background-color: var(--nav-hover-color);
        }

        .navmenu .dropdown ul {
            margin: 0;
            padding: 0;
            background: var(--nav-dropdown-background-color);
            display: block;
            position: absolute;
            visibility: hidden;
            left: 2px;
            top: 130%;
            opacity: 0;
            transition: 0.3s;
            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;
                margin: 0;
                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(--contrast-color);
                    background-color: var(--nav-hover-color);
                }

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

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

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

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

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

        .navmenu ul {
            display: none;
            list-style: none;
            position: absolute;
            inset: 60px 20px 20px 20px;
            padding: 10px 0;
            margin: 0;
            border-radius: 6px;
            background-color: var(--nav-mobile-background-color);
            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 {
    /*--background-color: #f5f2ec;
    --default-color: #080808;
    --heading-color: #000000;
    --accent-color: #dd4026;
    --contrast-color: #ffffff;*/
    color: var(--default-color);
    background-color: var(--background-color);
    font-size: 14px;
    position: relative;
}

    .footer .footer-newsletter {
        background-color: var(--default-color);
        padding: 50px 0;
    }

        .footer .footer-newsletter h4 {
            font-size: 2rem;
            color: var(--contrast-color);
        }

        .footer .footer-newsletter p {
            color: var(--contrast-color);
        }

        .footer .footer-newsletter .newsletter-form {
            margin-top: 30px;
            margin-bottom: 15px;
            padding: 6px 8px;
            position: relative;
            border-radius: 4px;
            background-color: var(--surface-color);
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
            box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
            display: flex;
            transition: 0.3s;
            border-radius: 50px;
        }

            .footer .footer-newsletter .newsletter-form:focus-within {
                border-color: var(--accent-color);
            }

            .footer .footer-newsletter .newsletter-form input[type=email] {
                border: 0;
                padding: 4px;
                width: 100%;
                background-color: var(--surface-color);
                color: var(--contrast-color);
            }

                .footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
                    outline: none;
                }

            .footer .footer-newsletter .newsletter-form input[type=submit] {
                border: 0;
                font-size: 16px;
                padding: 0 20px;
                margin: -7px -8px -7px 0;
                background: var(--accent-color);
                color: var(--contrast-color);
                transition: 0.3s;
                border-radius: 50px;
            }

                .footer .footer-newsletter .newsletter-form input[type=submit]:hover {
                    background: color-mix(in srgb, var(--accent-color), transparent 20%);
                }

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

    .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: #fff;
        margin-right: 10px;
        transition: 0.3s;
    }

        .footer .social-links a:hover {
            color: #fff;
            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 {
                margin-right: 3px;
                font-size: 12px;
                line-height: 0;
                color: var(--accent-color);
            }

            .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 {
                display: inline-block;
                color: color-mix(in srgb, var(--default-color), transparent 20%);
                line-height: 1;
            }

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

    .footer .footer-about a {
        color: var(--accent-color);
        font-weight: 600;
        text-decoration: underline;
    }

    .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: 6px;
        font-size: 13px;
    }

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    left: 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 {
    text-align: center;
    padding: 20px 0;
    margin-top: 120px;
}

    .page-title .breadcrumbs {
        margin-bottom: 1.5rem;
    }

        .page-title .breadcrumbs .breadcrumb {
            justify-content: center;
            margin: 0;
            padding: 0;
            background: none;
        }

            .page-title .breadcrumbs .breadcrumb .breadcrumb-item {
                font-size: 0.9rem;
                color: color-mix(in srgb, var(--default-color), transparent 30%);
            }

                .page-title .breadcrumbs .breadcrumb .breadcrumb-item.active {
                    color: var(--accent-color);
                }

                .page-title .breadcrumbs .breadcrumb .breadcrumb-item a {
                    color: inherit;
                    text-decoration: none;
                    transition: color 0.3s ease;
                }

                    .page-title .breadcrumbs .breadcrumb .breadcrumb-item a:hover {
                        color: var(--accent-color);
                    }

                    .page-title .breadcrumbs .breadcrumb .breadcrumb-item a i {
                        font-size: 0.9rem;
                        margin-right: 0.2rem;
                    }

                .page-title .breadcrumbs .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
                    color: color-mix(in srgb, var(--default-color), transparent 50%);
                }

    .page-title .title-wrapper {
        margin: 0 auto;
        padding: 1rem 0;
    }

        .page-title .title-wrapper h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
            color: var(--accent-color);
        }

        .page-title .title-wrapper p {
            font-size: 1.1rem;
            color: #858585;
            margin: 0;
            line-height: 1.6;
        }

@media (max-width: 768px) {
    .page-title .title-wrapper h1 {
        font-size: 2rem;
    }

    .page-title .title-wrapper p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .page-title .title-wrapper h1 {
        font-size: 1.75rem;
    }
}

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

@media (max-width: 1199px) {

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

/*--------------------------------------------------------------
# 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;
    }

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    padding: 0;
}

    .hero .carousel {
        width: 100%;
        min-height: 100vh;
        padding: 0;
        margin: 0;
        background-color: var(--background-color);
        position: relative;
    }

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

    .hero .carousel-item {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        overflow: hidden;
    }

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

        .hero .carousel-item::before {
            content: "";
            background-color: color-mix(in srgb, var(--background-color), transparent 55%);
            position: absolute;
            inset: 0;
        }

    .hero .carousel-container {
        position: absolute;
        inset: 90px 60px 64px 60px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        z-index: 3;
    }

    .hero h2 {
        margin-bottom: 30px;
        font-size: 48px;
        font-weight: 700;
        animation: fadeInDown 1s both;
    }

@media (max-width: 768px) {
    .hero h2 {
        font-size: 30px;
    }

    .hero .carousel-container {
        inset: 50px 0px 0 0px;
        text-align: center;
    }
}

.hero p {
    animation: fadeInDown 1s both 0.2s;
}

@media (min-width: 1024px) {

    .hero h2,
    .hero p {
        max-width: 60%;
    }
}

.hero .btn-get-started {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 32px;
    transition: 0.5s;
    margin: 10px;
    animation: fadeInUp 1s both 0.4s;
}

    .hero .btn-get-started:hover {
        background: color-mix(in srgb, var(--accent-color), transparent 20%);
    }

.hero .carousel-control-prev,
.hero .carousel-control-next {
    width: 10%;
    transition: 0.3s;
    opacity: 0.5;
}

    .hero .carousel-control-prev:focus,
    .hero .carousel-control-next:focus {
        opacity: 0.5;
    }

    .hero .carousel-control-prev:hover,
    .hero .carousel-control-next:hover {
        opacity: 0.9;
    }

@media (min-width: 1024px) {

    .hero .carousel-control-prev,
    .hero .carousel-control-next {
        width: 5%;
    }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
    background: none;
    font-size: 32px;
    line-height: 1;
}

.hero .carousel-indicators {
    list-style: none;
}

    .hero .carousel-indicators li {
        cursor: pointer;
    }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
    padding-top: 40px;
    padding-bottom: 70px;
}

    .about .section-intro {
        max-width: 700px;
        margin: 0 auto 4rem;
    }

        .about .section-intro .subtitle {
            color: color-mix(in srgb, var(--accent-color), transparent 80%);
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .about .section-intro .title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

@media (min-width: 768px) {
    .about .section-intro .title {
        font-size: 3rem;
    }
}

.about .section-intro .desc {
    font-size: 1.125rem;
    line-height: 1.7;
}

.about .highlight-cards {
    margin-top: 5rem;
}

    .about .highlight-cards .highlight-card {
        display: block;
        position: relative;
        overflow: hidden;
        border-radius: 1.5rem;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        margin-bottom: 1.5rem;
        /*height: 300px;*/
    }

    .about .highlight-cards .highlight-card1 {
        height: auto;
    }

        .about .highlight-cards .highlight-card.elevated {
            transform: translateY(2rem);
        }

@media (max-width: 768px) {
    .about .highlight-cards .highlight-card.elevated {
        transform: translateY(0);
    }
}

/*@media(min-width: 1200px) and (max-width: 1499px) {
    .about .highlight-cards .highlight-card {
        height: 203px;
    }
}

@media(min-width: 1500px) and (max-width: 1650px) {
    .about .highlight-cards .highlight-card {
        height: 243px;
    }
}*/

/*.about .highlight-cards .highlight-card img,*/

.about .highlight-cards .highlight-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.about .highlight-cards .highlight-card .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 40%, transparent 100%);
    opacity: 1;
    transition: opacity 0.5s ease;
}

.about .highlight-cards .highlight-card .card-content {
    position: absolute;
    bottom: 1rem;
    left: 1.5rem;
    transition: transform 0.3s ease;
}

    .about .highlight-cards .highlight-card .card-content .card-title {
        color: var(--contrast-color);
        font-size: 2rem;
        font-weight: 600;
    }

.about .highlight-cards .highlight-card:hover img {
    transform: scale(1.1);
}

.about .highlight-cards .highlight-card:hover .card-content {
    transform: translateY(-5px);
}

.about .values-section {
    margin-top: 6rem;
}

    .about .values-section .values-image {
        position: relative;
        border-radius: 1.5rem;
        overflow: hidden;
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    }

        .about .values-section .values-image img {
            width: 100%;
            transition: transform 0.7s ease;
        }

        .about .values-section .values-image:hover img {
            transform: scale(1.05);
        }

    .about .values-section .values-content {
        padding: 0 1rem;
    }

@media (min-width: 992px) {
    .about .values-section .values-content {
        padding: 0 0 0 2rem;
    }
}

.about .values-section .values-content .values-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .about .values-section .values-content .values-title {
        font-size: 2.25rem;
    }
}

.about .values-section .values-content .values-desc {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.about .values-section .values-content .values-list .value-item {
    display: flex;
    margin-bottom: 1.5rem;
}

    .about .values-section .values-content .values-list .value-item .value-icon {
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 2rem;
        height: 2rem;
        margin-right: 1rem;
    }

        .about .values-section .values-content .values-list .value-item .value-icon i {
            color: var(--accent-color);
            font-size: 1.5rem;
        }

    .about .values-section .values-content .values-list .value-item .value-text h4 {
        font-size: 1.125rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        display: inline;
    }

    .about .values-section .values-content .values-list .value-item .value-text p {
        display: inline;
        margin-left: 0.5rem;
    }

/*--------------------------------------------------------------
# Call To Action 2 Section
--------------------------------------------------------------*/
.call-to-action-2 {
    padding-top: 177px;
    position: relative;
    clip-path: inset(0);
    padding-bottom: 167px;
}

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

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

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

    .call-to-action-2 h3 {
        font-size: 2rem;
        font-weight: 700;
        color: var(--default-color);
    }

    .call-to-action-2 p {
        color: var(--default-color);
    }

    .call-to-action-2 .cta-btn {
        font-weight: 500;
        font-size: 13px;
        display: inline-block;
        transition: 0.5s;
        margin: 10px;
        color: var(--default-color);
        text-decoration: underline;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .section-title {
    padding: 0;
}

.clients .clients-slider {
    overflow: hidden;
    background-color: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.clients .swiper-wrapper {
    height: auto !important;
    align-items: stretch;
    transition-timing-function: linear;
}

.clients .swiper-slide {
    height: auto;
    border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

    .clients .swiper-slide:last-child {
        border-right: none;
    }

.clients .client-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 60px;
    height: 100%;
}

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

        .clients .client-logo img:hover {
            filter: none;
            opacity: 1;
        }

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

/*--------------------------------------------------------------
# More Services Section
--------------------------------------------------------------*/
.more-services {
    padding-top: 60px;
    padding-bottom: 60px;
}

    .more-services .card {
        background-color: var(--surface-color);
        color: var(--default-color);
        padding: 30px;
        box-shadow: 0px 0 10px rgba(0, 0, 0, 0.1);
        text-align: center;
        transition: 0.3s;
        height: 100%;
        border: 0;
    }

        .more-services .card img {
            padding: 0;
            transition: 0.5s;
            transform: scale(1.1);
        }

        .more-services .card h3 {
            font-size: 2crm;
            font-weight: 600;
            margin-top: 30px;
            margin-bottom: 18px;
        }

        .more-services .card:hover {
            box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
        }

            .more-services .card:hover img {
                transform: scale(1);
            }


    .more-services .cta-button {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        background: var(--accent-color);
        color: #fff;
        padding: 10px 25px;
        font-weight: 600;
        font-size: 1rem;
        transition: all 0.3s ease;
        text-decoration: none;
    }

        .more-services .cta-button i {
            transition: transform 0.3s ease;
        }

/*--------------------------------------------------------------
# Testimonials 2 Section
--------------------------------------------------------------*/
.testimonials-2 {
    padding-top: 59px;
    padding-bottom: 60px;
}

    .testimonials-2 .swiper-wrapper {
        height: auto !important;
    }

    .testimonials-2 .testimonial-card {
        background: var(--surface-color);
        border-radius: 15px;
        overflow: hidden;
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        height: 100%;
        display: flex;
        flex-direction: column;
        transition: 0.3s;
    }

        .testimonials-2 .testimonial-card:hover {
            border-color: var(--accent-color);
        }

    .testimonials-2 .testimonial-content {
        padding: 40px 30px 30px;
        position: relative;
        flex-grow: 1;
    }

        .testimonials-2 .testimonial-content p {
            font-size: 16px;
            line-height: 1.7;
            position: relative;
            z-index: 1;
            margin: 0;
            color: color-mix(in srgb, var(--default-color), transparent 10%);
        }

        .testimonials-2 .testimonial-content .quote-icon {
            position: absolute;
            top: 15px;
            left: 30px;
            font-size: 42px;
            color: color-mix(in srgb, var(--accent-color), transparent 85%);
            z-index: 0;
            opacity: 0.8;
        }

    .testimonials-2 .testimonial-profile {
        padding: 20px 30px;
        background-color: color-mix(in srgb, var(--heading-color), transparent 95%);
        border-top: 1px solid color-mix(in srgb, var(--heading-color), transparent 90%);
    }

    .testimonials-2 .rating {
        margin-bottom: 15px;
    }

        .testimonials-2 .rating i {
            color: #ffc107;
            margin-right: 3px;
            font-size: 14px;
        }

    .testimonials-2 .profile-info {
        display: flex;
        align-items: center;
    }

        .testimonials-2 .profile-info img {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--background-color);
            margin-right: 15px;
        }

        .testimonials-2 .profile-info div {
            flex: 1;
        }

        .testimonials-2 .profile-info h3 {
            margin: 0 0 5px;
            font-size: 16px;
            font-weight: 700;
            color: var(--heading-color);
        }

        .testimonials-2 .profile-info h4 {
            margin: 0;
            font-size: 13px;
            color: color-mix(in srgb, var(--default-color), transparent 30%);
            font-weight: 500;
        }

    .testimonials-2 .swiper-pagination {
        margin-top: 30px;
        position: relative;
    }

        .testimonials-2 .swiper-pagination .swiper-pagination-bullet {
            width: 10px;
            height: 10px;
            background-color: color-mix(in srgb, var(--accent-color), transparent 60%);
            opacity: 1;
        }

        .testimonials-2 .swiper-pagination .swiper-pagination-bullet-active {
            background-color: var(--accent-color);
            width: 25px;
            border-radius: 5px;
        }

@media (max-width: 767px) {
    .testimonials-2 .testimonial-content {
        padding: 30px 20px 20px;
    }

        .testimonials-2 .testimonial-content p {
            font-size: 15px;
        }

        .testimonials-2 .testimonial-content .quote-icon {
            font-size: 36px;
            left: 20px;
        }

    .testimonials-2 .testimonial-profile {
        padding: 15px 20px;
    }

    .testimonials-2 .profile-info img {
        width: 45px;
        height: 45px;
    }
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery .gallery-item {
    overflow: hidden;
    border-right: 3px solid var(--background-color);
    border-bottom: 3px solid var(--background-color);
}

    .gallery .gallery-item img {
        transition: all ease-in-out 0.4s;
    }

    .gallery .gallery-item:hover img {
        transform: scale(1.1);
    }

/*--------------------------------------------------------------
# About 2 Section
--------------------------------------------------------------*/
.about-2 .about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 992px) {
    .about-2 .about-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.about-2 .image-gallery {
    position: relative;
}

    .about-2 .image-gallery .gallery-grid {
        display: grid;
        grid-template-columns: 1.5fr 1fr;
        gap: 1.5rem;
        align-items: center;
    }

@media (max-width: 576px) {
    .about-2 .image-gallery .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.about-2 .image-gallery .gallery-item {
    overflow: hidden;
    /*border-radius: 16px;*/
}

/*.about-2 .image-gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}*
    
    .about-2 .image-gallery .gallery-item:hover img {
  transform: scale(1.05);
}
    
    
.about-2 .image-gallery .main-image {
  height: 400px;
  box-shadow: 0 20px 50px color-mix(in srgb, var(--default-color), transparent 85%);
}*/

@media (max-width: 576px) {
    .about-2 .image-gallery .main-image {
        height: 280px;
    }
}

.about-2 .image-gallery .side-image {
    height: 400px;
    align-self: end;
    margin-top: 3rem;
}

@media (max-width: 576px) {
    .about-2 .image-gallery .side-image {
        height: 220px;
        margin-top: 0;
    }
}

.about-2 .image-gallery .experience-badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

    .about-2 .image-gallery .experience-badge .badge-inner {
        background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
        color: var(--contrast-color);
        padding: 1.2rem 2rem;
        border-radius: 60px;
        text-align: center;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

@media (max-width: 576px) {
    .about-2 .image-gallery .experience-badge .badge-inner {
        padding: 1rem 1.75rem;
    }
}

.about-2 .image-gallery .experience-badge .number {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

@media (max-width: 576px) {
    .about-2 .image-gallery .experience-badge .number {
        font-size: 2rem;
    }
}

.about-2 .image-gallery .experience-badge .label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

@media (max-width: 992px) {
    .about-2 .info-panel {
        margin-top: 2rem;
    }
}

.about-2 .info-panel .panel-header {
    margin-bottom: 1.5rem;
}

    .about-2 .info-panel .panel-header .tagline {
        display: inline-block;
        background: color-mix(in srgb, var(--accent-color), transparent 88%);
        color: var(--accent-color);
        padding: 0.5rem 1.25rem;
        border-radius: 30px;
        font-size: 0.8rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 1rem;
    }

    .about-2 .info-panel .panel-header h2 {
        font-size: 2.5rem;
        font-weight: 800;
        line-height: 1.2;
    }

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

.about-2 .info-panel .description {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-2 .info-panel .highlights-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

@media (max-width: 576px) {
    .about-2 .info-panel .highlights-row {
        grid-template-columns: 1fr;
    }
}

.about-2 .info-panel .highlight-box {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--surface-color);
    border-radius: 12px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.3s ease;
}

    .about-2 .info-panel .highlight-box:hover {
        box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 90%);
        transform: translateY(-3px);
    }

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

        .about-2 .info-panel .highlight-box .icon-wrap i {
            font-size: 1.5rem;
            color: var(--accent-color);
        }

    .about-2 .info-panel .highlight-box .highlight-content h4 {
        font-size: 1.1rem;
        font-weight: 700;
        margin-bottom: 0.4rem;
    }

    .about-2 .info-panel .highlight-box .highlight-content p {
        font-size: 0.875rem;
        color: color-mix(in srgb, var(--default-color), transparent 40%);
        margin: 0;
        line-height: 1.5;
    }

.about-2 .info-panel .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: underline;
}

    .about-2 .info-panel .cta-button i {
        transition: transform 0.3s ease;
    }

/*--------------------------------------------------------------
# About 3 Section
--------------------------------------------------------------*/
.about-3 .image-block {
    position: relative;
    padding: 30px;
}

    .about-3 .image-block .main-image {
        width: 100%;
        aspect-ratio: 4/5;
        object-fit: cover;
    }

    .about-3 .image-block .stats-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        background-color: var(--accent-color);
        padding: 30px 40px;
    }

        .about-3 .image-block .stats-overlay .stat-item {
            text-align: center;
        }

            .about-3 .image-block .stats-overlay .stat-item .stat-number {
                display: block;
                font-size: 48px;
                font-weight: 600;
                line-height: 1;
                color: var(--contrast-color);
                letter-spacing: -1px;
            }

            .about-3 .image-block .stats-overlay .stat-item .stat-label {
                display: block;
                font-size: 14px;
                font-weight: 500;
                color: var(--contrast-color);
                margin-top: 8px;
                opacity: 0.9;
            }

    .about-3 .image-block::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 60%;
        height: 100%;
        background-color: color-mix(in srgb, var(--default-color), transparent 97%);
        z-index: -1;
    }

.about-3 .content-block {
    padding-right: 0px;
}

    .about-3 .content-block .section-label {
        display: inline-block;
        font-size: 14px;
        font-weight: 500;
        color: color-mix(in srgb, var(--default-color), transparent 40%);
        margin-bottom: 15px;
    }

    .about-3 .content-block .section-headline {
        font-size: 42px;
        font-weight: 600;
        line-height: 1.15;
        margin-bottom: 25px;
    }

        .about-3 .content-block .section-headline em {
            font-style: italic;
            color: var(--accent-color);
        }

    .about-3 .content-block .lead-text {
        font-size: 16px;
        line-height: 1.75;
        margin-bottom: 40px;
    }

.about-3 .feature-list {
    margin-bottom: 40px;
}

    .about-3 .feature-list .feature-row {
        display: flex;
        gap: 20px;
        padding-bottom: 25px;
        margin-bottom: 25px;
        border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    }

        .about-3 .feature-list .feature-row:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }

        .about-3 .feature-list .feature-row .feature-icon {
            flex-shrink: 0;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-color);
        }

            .about-3 .feature-list .feature-row .feature-icon i {
                font-size: 24px;
            }

        .about-3 .feature-list .feature-row .feature-text h4 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 8px;
            line-height: 1.3;
        }

        .about-3 .feature-list .feature-row .feature-text p {
            font-size: 15px;
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            margin-bottom: 0;
            line-height: 1.6;
        }

.about-3 .action-row .btn-primary-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 17px 25px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transition: all 0.3s ease-out;
}

    .about-3 .action-row .btn-primary-link i {
        font-size: 18px;
        transition: transform 0.3s ease-out;
    }

    .about-3 .action-row .btn-primary-link:hover {
        transform: translateY(-4px);
        background-color: color-mix(in srgb, var(--accent-color), var(--default-color) 15%);
        color: var(--contrast-color);
    }

        .about-3 .action-row .btn-primary-link:hover i {
            transform: translateX(4px);
        }

@media (max-width: 992px) {
    .about-3 .image-block {
        max-width: 500px;
        margin: 0 auto 50px;
        padding: 20px;
    }

        .about-3 .image-block .stats-overlay {
            padding: 25px 30px;
        }

            .about-3 .image-block .stats-overlay .stat-item .stat-number {
                font-size: 40px;
            }

    .about-3 .content-block {
        padding-right: 0;
    }

        .about-3 .content-block .section-headline {
            font-size: 36px;
        }
}

@media (max-width: 576px) {
    .about-3 .image-block {
        padding: 0;
    }

        .about-3 .image-block::before {
            display: none;
        }

        .about-3 .image-block .stats-overlay {
            padding: 20px 25px;
        }

            .about-3 .image-block .stats-overlay .stat-item .stat-number {
                font-size: 32px;
            }

            .about-3 .image-block .stats-overlay .stat-item .stat-label {
                font-size: 12px;
            }

    .about-3 .content-block .section-headline {
        font-size: 28px;
    }

    .about-3 .content-block .lead-text {
        font-size: 15px;
    }

    .about-3 .feature-list .feature-row .feature-icon {
        width: 32px;
        height: 32px;
    }

        .about-3 .feature-list .feature-row .feature-icon i {
            font-size: 20px;
        }

    .about-3 .feature-list .feature-row .feature-text h4 {
        font-size: 18px;
    }

    .about-3 .feature-list .feature-row .feature-text p {
        font-size: 14px;
    }

    .about-3 .action-row .btn-primary-link {
        padding: 15px 22px;
        font-size: 15px;
    }
}

/*--------------------------------------------------------------
# About 4 Section
--------------------------------------------------------------*/
.about-4 .image-wrapper {
    position: relative;
}

    .about-4 .image-wrapper .experience-badge {
        position: absolute;
        bottom: 2rem;
        right: -1.5rem;
        background-color: var(--accent-color);
        color: var(--contrast-color);
        padding: 1.5rem;
        border-radius: 1rem;
        text-align: center;
        box-shadow: 0 1rem 2rem color-mix(in srgb, var(--accent-color) 30%, transparent);
    }

        .about-4 .image-wrapper .experience-badge .number {
            display: block;
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1;
        }

        .about-4 .image-wrapper .experience-badge .text {
            display: block;
            font-size: 0.875rem;
            font-weight: 500;
            margin-top: 0.25rem;
            opacity: 0.9;
        }

.about-4 .content-wrapper {
    padding-left: 2rem;
}

    .about-4 .content-wrapper .section-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.625rem 1.25rem;
        background-color: var(--surface-color);
        border: 1px solid color-mix(in srgb, var(--accent-color) 30%, transparent);
        border-radius: 3rem;
        font-size: 0.875rem;
        font-weight: 600;
        color: var(--accent-color);
        margin-bottom: 1.5rem;
    }

        .about-4 .content-wrapper .section-badge i {
            font-size: 1rem;
        }

    .about-4 .content-wrapper .main-heading {
        font-size: 2.25rem;
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }

        .about-4 .content-wrapper .main-heading .highlight {
            color: var(--accent-color);
            position: relative;
        }

            .about-4 .content-wrapper .main-heading .highlight::after {
                content: "";
                position: absolute;
                left: 0;
                bottom: 0;
                width: 100%;
                height: 3px;
                background-color: var(--accent-color);
                border-radius: 2px;
            }

    .about-4 .content-wrapper .intro-text {
        font-size: 1.0625rem;
        line-height: 1.8;
        color: color-mix(in srgb, var(--default-color) 80%, transparent);
        margin-bottom: 2rem;
    }

.about-4 .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: underline;
}

    .about-4 .cta-btn i {
        font-size: 1.25rem;
        transition: transform 0.3s ease;
    }

    .about-4 .cta-btn:hover i {
        transform: translateX(4px);
    }

@media (max-width: 992px) {
    .about-4 .image-wrapper {
        max-width: 28rem;
        margin: 0 auto 3rem;
    }

        .about-4 .image-wrapper .experience-badge {
            right: 0;
            bottom: 1.5rem;
        }

    .about-4 .content-wrapper {
        padding-left: 0;
    }

        .about-4 .content-wrapper .main-heading {
            font-size: 1.875rem;
        }
}

@media (max-width: 576px) {
    .about-4 .image-wrapper::before {
        display: none;
    }

    .about-4 .image-wrapper .experience-badge {
        padding: 1rem;
    }

        .about-4 .image-wrapper .experience-badge .number {
            font-size: 2rem;
        }

        .about-4 .image-wrapper .experience-badge .text {
            font-size: 0.75rem;
        }

    .about-4 .content-wrapper .main-heading {
        font-size: 1.625rem;
    }

    .about-4 .content-wrapper .intro-text {
        font-size: 1rem;
    }

    .about-4 .features-timeline .timeline-item .timeline-marker {
        width: 2rem;
        height: 2rem;
    }

        .about-4 .features-timeline .timeline-item .timeline-marker i {
            font-size: 0.875rem;
        }

    .about-4 .features-timeline .timeline-item .timeline-content h4 {
        font-size: 1rem;
    }

    .about-4 .features-timeline .timeline-item .timeline-content p {
        font-size: 0.875rem;
    }

    .about-4 .cta-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
    padding-top: 62px;
    position: relative;
    padding-bottom: 60px;
}

    .contact .container {
        position: relative;
        z-index: 1;
    }

    .contact .contact-intro {
        margin-bottom: 40px;
    }

        .contact .contact-intro .intro-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: color-mix(in srgb, var(--accent-color), transparent 90%);
            border-radius: 20px;
            margin-bottom: 24px;
        }

            .contact .contact-intro .intro-badge i {
                font-size: 16px;
                color: var(--accent-color);
            }

            .contact .contact-intro .intro-badge span {
                font-size: 14px;
                font-weight: 500;
                color: var(--accent-color);
            }

        .contact .contact-intro h2 {
            font-size: 36px;
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: 16px;
            color: var(--heading-color);
            line-height: 1.2;
        }

        .contact .contact-intro p {
            font-size: 16px;
            line-height: 1.6;
            color: color-mix(in srgb, var(--default-color), transparent 20%);
            margin-bottom: 0;
        }

    .contact .contact-channels {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-bottom: 40px;
    }

    .contact .channel-card {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        padding: 20px;
        background: var(--surface-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        border-radius: 12px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

        .contact .channel-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px color-mix(in srgb, var(--default-color), transparent 92%);
            border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
        }

            .contact .channel-card:hover .channel-icon {
                background: var(--accent-color);
                transform: scale(1.05);
            }

                .contact .channel-card:hover .channel-icon i {
                    color: var(--contrast-color);
                }

        .contact .channel-card .channel-icon {
            width: 48px;
            height: 48px;
            background: color-mix(in srgb, var(--accent-color), transparent 90%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

            .contact .channel-card .channel-icon i {
                font-size: 20px;
                color: var(--accent-color);
                transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            }

        .contact .channel-card .channel-info {
            flex: 1;
        }

            .contact .channel-card .channel-info h5 {
                font-size: 16px;
                font-weight: 600;
                margin-bottom: 4px;
                color: var(--heading-color);
            }

            .contact .channel-card .channel-info p {
                font-size: 15px;
                font-weight: 500;
                margin-bottom: 4px;
                color: var(--default-color);
            }

            .contact .channel-card .channel-info .channel-meta {
                font-size: 13px;
                color: color-mix(in srgb, var(--default-color), transparent 40%);
            }

    .contact .form-wrapper {
        background: var(--surface-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        border-radius: 16px;
        padding: 40px;
        box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 94%);
    }

        .contact .form-wrapper .form-header {
            margin-bottom: 32px;
        }

            .contact .form-wrapper .form-header h3 {
                font-size: 28px;
                font-weight: 700;
                letter-spacing: -0.01em;
                margin-bottom: 8px;
                color: var(--heading-color);
            }

            .contact .form-wrapper .form-header p {
                font-size: 15px;
                line-height: 1.6;
                color: color-mix(in srgb, var(--default-color), transparent 25%);
                margin-bottom: 0;
            }

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

            .contact .form-wrapper .php-email-form .form-group label {
                display: block;
                font-size: 14px;
                font-weight: 500;
                color: var(--heading-color);
                margin-bottom: 8px;
            }

            .contact .form-wrapper .php-email-form .form-group .form-control {
                width: 100%;
                height: 48px;
                padding: 12px 16px;
                font-size: 15px;
                color: var(--default-color);
                background-color: var(--surface-color);
                border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
                border-radius: 8px;
                transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            }

                .contact .form-wrapper .php-email-form .form-group .form-control:focus {
                    outline: none;
                    border-color: var(--accent-color);
                    box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);
                }

                .contact .form-wrapper .php-email-form .form-group .form-control::placeholder {
                    color: color-mix(in srgb, var(--default-color), transparent 60%);
                }

            .contact .form-wrapper .php-email-form .form-group select.form-control {
                cursor: pointer;
                appearance: none;
                background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
                background-repeat: no-repeat;
                background-position: right 16px center;
                padding-right: 40px;
            }

            .contact .form-wrapper .php-email-form .form-group textarea.form-control {
                height: auto;
                min-height: 120px;
                resize: vertical;
                font-family: inherit;
            }

        .contact .form-wrapper .php-email-form .form-check-group {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 24px;
        }

            .contact .form-wrapper .php-email-form .form-check-group .form-check-input {
                width: 18px;
                height: 18px;
                margin-top: 2px;
                cursor: pointer;
                border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
                border-radius: 4px;
                flex-shrink: 0;
            }

                .contact .form-wrapper .php-email-form .form-check-group .form-check-input:checked {
                    background-color: var(--accent-color);
                    border-color: var(--accent-color);
                }

            .contact .form-wrapper .php-email-form .form-check-group .form-check-label {
                font-size: 14px;
                color: color-mix(in srgb, var(--default-color), transparent 20%);
                cursor: pointer;
                line-height: 1.5;
            }

        .contact .form-wrapper .php-email-form .submit-btn {
            width: 100%;
            height: 52px;
            background: var(--accent-color);
            color: var(--contrast-color);
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            cursor: pointer;
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            margin-bottom: 16px;
        }

            .contact .form-wrapper .php-email-form .submit-btn:hover {
                background: color-mix(in srgb, var(--accent-color), #000 10%);
                transform: translateY(-2px);
                box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 70%);
            }

                .contact .form-wrapper .php-email-form .submit-btn:hover i {
                    transform: translateX(3px);
                }

            .contact .form-wrapper .php-email-form .submit-btn i {
                font-size: 16px;
                transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            }

        .contact .form-wrapper .php-email-form .form-footer {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding-top: 16px;
            border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
        }

            .contact .form-wrapper .php-email-form .form-footer i {
                font-size: 16px;
                color: color-mix(in srgb, var(--accent-color), transparent 20%);
            }

            .contact .form-wrapper .php-email-form .form-footer span {
                font-size: 13px;
                color: color-mix(in srgb, var(--default-color), transparent 40%);
            }

@media (max-width: 992px) {
    .contact .contact-intro h2 {
        font-size: 32px;
    }

    .contact .trust-indicators .indicator-item .indicator-value {
        font-size: 20px;
    }

    .contact .form-wrapper {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .contact .contact-intro h2 {
        font-size: 28px;
    }

    .contact .trust-indicators {
        flex-direction: column;
        gap: 16px;
    }

        .contact .trust-indicators .indicator-item {
            border-right: none;
            border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
            padding: 0 0 16px 0;
        }

            .contact .trust-indicators .indicator-item:last-child {
                border-bottom: none;
                padding-bottom: 0;
            }

    .contact .form-wrapper {
        padding: 32px 24px;
    }

        .contact .form-wrapper .form-header h3 {
            font-size: 24px;
        }
}

@media (max-width: 576px) {
    .contact .contact-intro h2 {
        font-size: 24px;
    }

    .contact .channel-card {
        flex-direction: column;
        text-align: center;
    }

        .contact .channel-card .channel-icon {
            margin: 0 auto;
        }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
    padding: 20px 0;
}

    .features .features-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        margin-bottom: 0px;
    }

@media (max-width: 992px) {
    .features .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 576px) {
    .features .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.features .features-grid .feature-card {
    padding: 40px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 4px;
    transition: all 0.4s ease;
}

@media (max-width: 576px) {
    .features .features-grid .feature-card {
        padding: 32px;
    }
}

.features .features-grid .feature-card .feature-card-inner {
    display: flex;
    gap: 20px;
}

.features .features-grid .feature-card .card-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: color-mix(in srgb, var(--accent-color), transparent 94%);
    border-radius: 50px;
    margin-bottom: 24px;
    transition: transform 0.4s ease;
}

    .features .features-grid .feature-card .card-icon i {
        font-size: 26px;
        color: var(--accent-color);
    }

.features .features-grid .feature-card .card-content h3 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 5px;
}

.features .features-grid .feature-card .card-content p {
    font-size: 14px;
    line-height: 1.75;
    color: color-mix(in srgb, var(--default-color), transparent 35%);
    margin-bottom: 10px;
}

.features .features-grid .feature-card .card-content .card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 400;
    color: var(--default-color);
    transition: all 0.3s ease;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

    .features .features-grid .feature-card .card-content .card-link i {
        font-size: 14px;
    }

    .features .features-grid .feature-card .card-content .card-link:hover {
        border-bottom-color: var(--accent-color);
    }

.features .features-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 80px;
    background-color: var(--surface-color);
    border-radius: 4px;
}

@media (max-width: 992px) {
    .features .features-cta {
        flex-direction: column;
        text-align: center;
        gap: 32px;
        padding: 48px;
    }
}

@media (max-width: 576px) {
    .features .features-cta {
        padding: 40px 32px;
    }
}

.features .features-cta .cta-content h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 8px;
    letter-spacing: -0.2px;
}

.features .features-cta .cta-content p {
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 35%);
    margin: 0;
}

.features .features-cta .cta-buttons {
    display: flex;
    gap: 16px;
}

@media (max-width: 576px) {
    .features .features-cta .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
}

.features .features-cta .cta-buttons .btn {
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 400;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.features .features-cta .cta-buttons .btn-primary-custom {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border: 1px solid var(--accent-color);
}

    .features .features-cta .cta-buttons .btn-primary-custom:hover {
        background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
        border-color: var(--accent-color);
    }

.features .features-cta .cta-buttons .btn-secondary-custom {
    background-color: transparent;
    color: var(--default-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

    .features .features-cta .cta-buttons .btn-secondary-custom:hover {
        border-color: var(--default-color);
        background-color: color-mix(in srgb, var(--default-color), transparent 95%);
    }

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
    display: flex;
    flex-direction: column;
    padding: 48px 40px;
    border: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
    margin: -1px 0 0 -1px;
    position: relative;
    background: var(--surface-color);
    transition: all 0.4s ease;
    height: 100%;
}

    .services .service-item:hover {
        background: #eee;
        z-index: 2;
    }

        .services .service-item:hover .icon-wrapper {
            background: var(--contrast-color);
        }

            .services .service-item:hover .icon-wrapper i {
                color: var(--accent-color);
            }

    .services .service-item .icon-wrapper {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: color-mix(in srgb, var(--accent-color) 10%, transparent);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 24px;
        transition: all 0.4s ease;
    }

        .services .service-item .icon-wrapper i {
            font-size: 2rem;
            color: var(--accent-color);
            transition: color 0.4s ease;
        }

    .services .service-item .content {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

        .services .service-item .content .service-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: color-mix(in srgb, var(--default-color) 12%, transparent);
            font-family: var(--heading-font);
            line-height: 1;
            margin-bottom: 8px;
            transition: color 0.4s ease;
        }

        .services .service-item .content h3 {
            font-size: 1.375rem;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--heading-color);
            transition: color 0.4s ease;
        }

        .services .service-item .content p {
            font-size: 1rem;
            line-height: 1.7;
            color: color-mix(in srgb, var(--default-color) 80%, transparent);
            margin-bottom: 24px;
            flex: 1;
            transition: color 0.4s ease;
        }

        .services .service-item .content .discover-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 24px;
            border: 2px solid var(--accent-color);
            border-radius: 30px;
            color: var(--accent-color);
            font-weight: 600;
            font-size: 0.875rem;
            text-decoration: none;
            transition: all 0.3s ease;
            width: fit-content;
        }

            .services .service-item .content .discover-btn i {
                font-size: 0.875rem;
                transition: transform 0.3s ease;
            }

            .services .service-item .content .discover-btn:hover {
                background: var(--accent-color);
                color: var(--contrast-color);
            }

                .services .service-item .content .discover-btn:hover i {
                    transform: translateX(4px);
                }

/*--------------------------------------------------------------
# About 5 Section
--------------------------------------------------------------*/
.about-5 {
    padding-top: 60px;
    padding-bottom: 60px;
}

    .about-5 .about-subtitle {
        font-family: var(--heading-font);
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 1px;
        color: var(--heading-color);
        margin-bottom: 16px;
        display: block;
    }

    .about-5 .about-title {
        font-family: var(--heading-font);
        font-size: 48px;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 32px;
        color: var(--heading-color);
    }

        .about-5 .about-title span {
            font-size: 32px;
            display: inline-block;
            margin: 8px 0;
            color: color-mix(in srgb, var(--heading-color), transparent 30%);
        }

@media (max-width: 991px) {
    .about-5 .about-title {
        font-size: 36px;
    }

        .about-5 .about-title span {
            font-size: 24px;
        }
}

.about-5 .about-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--heading-color);
}

.about-5 .about-content p {
    font-size: 15px;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 24px;
}

.about-5 .about-content .btn-learn-more {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: underline;
}

    .about-5 .about-content .btn-learn-more i {
        margin-left: 8px;
        font-size: 18px;
        transition: transform 0.3s ease;
    }

    .about-5 .about-content .btn-learn-more:hover {
        background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    }

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

.about-5 .about-img {
    text-align: center;
}

    .about-5 .about-img img {
        position: relative;
        z-index: 2;
        max-width: 100%;
        height: auto;
        border-style: solid;
        border-width: 0px 0px 4px 4px;
        border-color: #ff5940;
        border-radius: 0px 40px 0px 0px;
    }

    .about-5 .about-img.about-img-right img {
        border-width: 0px 4px 4px 0px;
        border-radius: 40px 0px 0px 0px;
    }

    .about-5 .about-img .shape-1 {
        position: absolute;
        width: 220px;
        height: 220px;
        background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
        border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
        bottom: -30px;
        right: -30px;
        z-index: 1;
        animation: blobAnimation1 8s ease-in-out infinite;
        transition: all 0.3s ease;
    }

    .about-5 .about-img .shape-2 {
        position: absolute;
        width: 180px;
        height: 180px;
        background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
        border-radius: 42% 58% 37% 63%/51% 44% 56% 49%;
        top: -30px;
        left: -30px;
        z-index: 1;
        animation: blobAnimation2 8s ease-in-out infinite;
        transition: all 0.3s ease;
    }

@keyframes blobAnimation1 {
    0% {
        border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
    }

    25% {
        border-radius: 46% 54% 42% 58%/47% 55% 45% 53%;
    }

    50% {
        border-radius: 54% 46% 52% 48%/45% 54% 46% 55%;
    }

    75% {
        border-radius: 42% 58% 37% 63%/51% 44% 56% 49%;
    }

    100% {
        border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
    }
}

@keyframes blobAnimation2 {
    0% {
        border-radius: 42% 58% 37% 63%/51% 44% 56% 49%;
    }

    25% {
        border-radius: 54% 46% 52% 48%/45% 54% 46% 55%;
    }

    50% {
        border-radius: 46% 54% 42% 58%/47% 55% 45% 53%;
    }

    75% {
        border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
    }

    100% {
        border-radius: 42% 58% 37% 63%/51% 44% 56% 49%;
    }
}

@media (max-width: 991px) {
    .about-5 .about-img {
        margin-top: 40px;
    }

        .about-5 .about-img .shape-1 {
            width: 160px;
            height: 160px;
        }

        .about-5 .about-img .shape-2 {
            width: 140px;
            height: 140px;
        }
}

/*--------------------------------------------------------------
# Clients 2 Section
--------------------------------------------------------------*/
.clients-2 {
    padding-top: 60px;
    position: relative;
    overflow: hidden;
    padding-bottom: 60px;
}

    .clients-2 .clients-showcase {
        position: relative;
        z-index: 1;
    }

    .clients-2 .client-card {
        background: var(--surface-color);
        border-radius: 16px;
        padding: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 10px 40px color-mix(in srgb, var(--default-color) 8%, transparent);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        height: 120px;
        position: relative;
        overflow: hidden;
    }

        .clients-2 .client-card::before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: 16px;
            padding: 2px;
            background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color) 30%, transparent), transparent 50%);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .clients-2 .client-card img {
            max-width: 100%;
            max-height: 90px;
            object-fit: contain;
            transition: all 0.4s ease;
        }

        .clients-2 .client-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color) 12%, transparent);
        }

            .clients-2 .client-card:hover::before {
                opacity: 1;
            }

            .clients-2 .client-card:hover img {
                filter: none;
                opacity: 1;
                transform: scale(1.05);
            }

        .clients-2 .client-card.featured {
            background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 80%, black));
            transform: scale(1.05);
            z-index: 2;
        }

            .clients-2 .client-card.featured::before {
                display: none;
            }

            .clients-2 .client-card.featured img {
                filter: brightness(0) invert(1);
                opacity: 1;
            }

            .clients-2 .client-card.featured:hover {
                transform: scale(1.05) translateY(-8px);
            }

                .clients-2 .client-card.featured:hover img {
                    filter: brightness(0) invert(1);
                }

@media (max-width: 768px) {
    .clients-2 .client-card {
        padding: 24px;
        height: 100px;
    }

        .clients-2 .client-card img {
            max-height: 45px;
        }
}

.clients-2 .trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: var(--surface-color);
    border-radius: 50px;
    box-shadow: 0 8px 32px color-mix(in srgb, var(--default-color) 10%, transparent);
    margin-top: 48px;
    position: relative;
    z-index: 1;
}

    .clients-2 .trust-badge .badge-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: color-mix(in srgb, var(--accent-color) 15%, transparent);
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .clients-2 .trust-badge .badge-icon i {
            font-size: 20px;
            color: var(--accent-color);
        }

    .clients-2 .trust-badge .badge-text {
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--heading-color);
    }

@media (max-width: 576px) {
    .clients-2 .trust-badge {
        padding: 10px 20px;
        gap: 10px;
        margin-top: 32px;
    }

        .clients-2 .trust-badge .badge-icon {
            width: 36px;
            height: 36px;
        }

            .clients-2 .trust-badge .badge-icon i {
                font-size: 18px;
            }

        .clients-2 .trust-badge .badge-text {
            font-size: 12px;
        }
}

.clients-2 .container {
    text-align: center;
}

@media (max-width: 768px) {
    .clients-2 {
        padding: 64px 0;
    }
}

.myframe {
    width: 100%;
    border: 0;
    height: 2000px;
}
