        /*--------------------------------------------------------------
        # Global Header
        --------------------------------------------------------------*/
        :root {
            --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
            --heading-font: "Ubuntu", 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: #f9fafb;
            /* Background color for the entire website, including individual sections */
            --default-color: #331a2d;
            /* Default color used for the majority of the text content across the entire website */
            --heading-color: #371b31;
            /* Color for headings, subheadings and title throughout the website */
            --accent-color: #0b64ea;
            --accent-shadow-color: #0b64ea12;
            --accent-hover-color: color-mix(in srgb, var(--accent-color), #000 15%);
            /* 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. */
            --btn-2nd-background-color: #1A3263;
        }

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

        .dark-background {
            --background-color: #1A3263;
            --default-color: #ffffff;
            --heading-color: #ffffff;
            --accent-color: #ffffff;
            --surface-color: #331a2d;
            --contrast-color: #ffffff;
        }

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

        .container {
            width: 100%;
            margin-right: auto;
            margin-left: auto
        }

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

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

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

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

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


        .header {
            --background-color: #ffffff;
            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: 60px;
            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;
        }

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

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

            .navmenu li {
                position: relative;
            }

            .navmenu a,
            .navmenu a:focus {
                color: var(--nav-color);
                padding: 18px 15px;
                font-size: 16px;
                font-family: var(--nav-font);
                font-weight: 400;
                display: flex;
                align-items: center;
                justify-content: space-between;
                white-space: nowrap;
                transition: 0.3s;
            }

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

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

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

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

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

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

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

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

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

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

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

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

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

            .navmenu ul {
                display: none;
                list-style: none;
                position: absolute;
                inset: 60px 20px 20px 20px;
                padding: 10px 0;
                margin: 0;
                border-radius: 6px;
                background-color: var(--nav-mobile-background-color);
                overflow-y: auto;
                transition: 0.3s;
                z-index: 9998;
                box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
            }

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

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

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

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

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

            .navmenu .dropdown ul {
                position: static;
                display: none;
                z-index: 99;
                padding: 10px 0;
                margin: 10px 20px;
                background-color: var(--nav-dropdown-background-color);
                border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
                box-shadow: none;
                transition: all 0.5s ease-in-out;
            }

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

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

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

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

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

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


        /* hero sec */

        .hero {
            position: relative;
            padding: 120px 0;
            background-color: var(--background-color);
            overflow: hidden;
        }

        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("./images/hero/showcase-5.webp");
            background-size: cover;
            background-position: center;
            opacity: 0.05;
            z-index: 0;
        }

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

        .hero .hero-content {
            margin-bottom: 30px;
        }

        .hero .hero-content .subtitle {
            display: inline-block;
            font-weight: 600;
            font-size: 14px;
            text-transform: uppercase;
            color: var(--accent-color);
            margin-bottom: 15px;
            letter-spacing: 1px;
            position: relative;
            padding-left: 25px;
        }

        .hero .hero-content .subtitle::before {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            width: 15px;
            height: 2px;
            background-color: var(--accent-color);
            transform: translateY(-50%);
        }

        .hero .hero-content h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        @media (max-width: 992px) {
            .hero .hero-content h1 {
                font-size: 36px;
            }
        }

        @media (max-width: 768px) {
            .hero .hero-content h1 {
                font-size: 32px;
            }
        }

        .hero .hero-content p {
            font-size: 18px;
            margin-bottom: 30px;
            color: color-mix(in srgb, var(--default-color), transparent 20%);
        }

        .hero .hero-buttons {
            display: flex;
            gap: 15px;
            margin-bottom: 40px;
        }

        @media (max-width: 576px) {
            .hero .hero-buttons {
                gap: 10px;
            }
        }

        .btn-primary{
            display: inline-block;
            padding: 14px 32px;
            background-color: var(--accent-color);
            color: var(--contrast-color);
            border-radius: 4px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background-color: color-mix(in srgb, var(--accent-color), black 15%);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .btn-secondary {
            display: inline-block;
            padding: 14px 32px;
            background-color: transparent;
            color: var(--default-color);
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
            border-radius: 4px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background-color: color-mix(in srgb, var(--default-color), transparent 95%);
            border-color: var(--default-color);
            transform: translateY(-3px);
        }

        .hero .trust-badges {
            display: flex;
            gap: 30px;
        }

        @media (max-width: 768px) {
            .hero .trust-badges {
                flex-wrap: wrap;
                gap: 20px;
            }
        }

        .hero .trust-badges .badge-item {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .hero .trust-badges .badge-item i {
            font-size: 32px;
            color: var(--accent-color);
        }

        .hero .trust-badges .badge-item .badge-text {
            display: flex;
            flex-direction: column;
        }

        .hero .trust-badges .badge-item .badge-text .count {
            font-size: 24px;
            font-weight: 700;
            color: var(--heading-color);
            line-height: 1;
        }

        .hero .trust-badges .badge-item .badge-text .label {
            font-size: 14px;
            color: color-mix(in srgb, var(--default-color), transparent 30%);
        }

        .hero .hero-image {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .hero .hero-image img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            transition: transform 0.5s ease;
        }

        .hero .hero-image:hover img {
            transform: scale(1.05);
        }

        .hero .hero-image .image-badge {
            position: absolute;
            bottom: 30px;
            left: 30px;
            background-color: var(--accent-color);
            color: var(--contrast-color);
            padding: 15px 20px;
            border-radius: 4px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .hero .hero-image .image-badge span {
            display: block;
            font-weight: 700;
            font-size: 18px;
        }

        .hero .hero-image .image-badge p {
            margin: 0;
            font-size: 14px;
            opacity: 0.9;
        }

        @media (max-width: 992px) {
            .hero {
                padding: 80px 0;
            }

            .hero .hero-content {
                margin-bottom: 50px;
            }
        }

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

        .about .about-content h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            position: relative;
        }

        .about .about-content h2:after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -0.5rem;
            width: 80px;
            height: 4px;
            background-color: var(--accent-color);
        }

        .about .about-content .lead {
            font-size: 1.15rem;
            margin-bottom: 1.5rem;
            color: color-mix(in srgb, var(--heading-color), transparent 10%);
        }

        .about .about-content p {
            margin-bottom: 1rem;
            line-height: 1.7;
        }

        .about .achievement-boxes .achievement-box {
            background-color: var(--surface-color);
            border-left: 4px solid var(--accent-color);
            padding: 1.2rem;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .about .achievement-boxes .achievement-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        }

        .about .achievement-boxes .achievement-box h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 0.3rem;
            color: var(--accent-color);
        }

        .about .achievement-boxes .achievement-box p {
            margin-bottom: 0;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .about .certifications h5 {
            font-size: 1.1rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .about .certifications img {
            transition: transform 0.3s ease;
            filter: grayscale(100%);
            opacity: 0.7;
        }

        .about .certifications img:hover {
            filter: grayscale(0);
            opacity: 1;
            transform: scale(1.05);
        }

        .about .cta-container .btn-primary {
            background-color: var(--accent-color);
            border-color: var(--accent-color);
            color: var(--contrast-color);
            padding: 0.75rem 1.5rem;
            font-weight: 500;
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        .about .cta-container .btn-primary:hover {
            background-color: color-mix(in srgb, var(--accent-color), #000 10%);
            border-color: color-mix(in srgb, var(--accent-color), #000 10%);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
        }

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

        .about .about-image .main-image {
            border-radius: 8px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            width: 100%;
        }

        .about .about-image .image-overlay {
            position: absolute;
            bottom: -60px;
            right: -30px;
            width: 50%;
            z-index: 2;
            border-radius: 8px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .about .about-image .image-overlay img {
            border: 5px solid var(--background-color);
        }

        .about .about-image .experience-badge {
            position: absolute;
            top: 30px;
            left: -30px;
            background-color: var(--accent-color);
            color: var(--contrast-color);
            padding: 1.5rem;
            border-radius: 50%;
            width: 130px;
            height: 130px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            box-shadow: 0 10px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
        }

        .about .about-image .experience-badge span {
            font-size: 2rem;
            font-weight: 700;
            line-height: 1;
        }

        .about .about-image .experience-badge p {
            font-size: 0.8rem;
            margin-bottom: 0;
            margin-top: 0.3rem;
        }

        @media (max-width: 991.98px) {
            .about .about-image {
                margin-top: 3rem;
            }

            .about .about-image .image-overlay {
                bottom: -40px;
                right: -20px;
            }

            .about .about-image .experience-badge {
                width: 100px;
                height: 100px;
                padding: 1rem;
                left: -20px;
            }

            .about .about-image .experience-badge span {
                font-size: 1.5rem;
            }

            .about .about-image .experience-badge p {
                font-size: 0.7rem;
            }
        }

        @media (max-width: 767.98px) {
            .about .achievement-boxes .achievement-box {
                padding: 1rem;
            }

            .about .achievement-boxes .achievement-box h3 {
                font-size: 1.8rem;
            }

            .about .achievement-boxes .achievement-box p {
                font-size: 0.8rem;
            }

            .about .about-image .image-overlay {
                bottom: -30px;
                right: 0;
                width: 40%;
            }
        }

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

        @media (max-width: 1199px) {

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

        .services {
            position: relative;
        }

        .services .service-card {
            background-color: var(--surface-color);
            padding: 2.5rem;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            height: 100%;
            position: relative;
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .services .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .services .service-card.featured {
            border: 2px solid var(--accent-color);
        }

        .services .service-card.featured .service-icon {
            background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
        }

        .services .service-card .service-badge {
            position: absolute;
            top: 0;
            right: 0;
            background-color: var(--accent-color);
            color: var(--contrast-color);
            font-size: 0.75rem;
            font-weight: 600;
            padding: 0.25rem 1rem;
            border-radius: 0 0 0 8px;
        }

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

        .services .service-card .service-icon i {
            font-size: 2rem;
            color: var(--accent-color);
        }

        .services .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .services .service-card p {
            margin-bottom: 1.5rem;
            color: color-mix(in srgb, var(--default-color), transparent 20%);
        }

        .services .service-card .service-features {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }

        .services .service-card .service-features span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
        }

        .services .service-card .service-features span i {
            color: var(--accent-color);
        }

        .services .service-card .service-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 600;
            color: var(--accent-color);
            transition: all 0.3s ease;
        }

        .services .service-card .service-link:hover {
            gap: 0.75rem;
        }

        .services .service-image-block {
            height: 100%;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .services .service-image-block img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .services .service-list-block {
            height: 100%;
            padding: 2rem;
            display: flex;
            flex-direction: column;
        }

        .services .service-list-block h3 {
            font-size: 1.75rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .services .service-list-block p {
            margin-bottom: 2rem;
            color: color-mix(in srgb, var(--default-color), transparent 20%);
        }

        .services .service-list {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .services .service-list-item {
            display: flex;
            gap: 1rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        }

        .services .service-list-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .services .service-list-item .service-list-icon {
            flex-shrink: 0;
            width: 50px;
            height: 50px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
        }

        .services .service-list-item .service-list-icon i {
            font-size: 1.5rem;
            color: var(--accent-color);
        }

        .services .service-list-item .service-list-content h4 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .services .service-list-item .service-list-content p {
            margin-bottom: 0;
            font-size: 0.95rem;
            color: color-mix(in srgb, var(--default-color), transparent 20%);
        }

        .services .cta-container {
            margin-top: 5rem;
            background-color: color-mix(in srgb, var(--heading-color), transparent 90%);
            border-radius: 10px;
        }

        .services .cta-container h3 {
            font-size: 1.75rem;
            color: var(--heading-color);
        }

        .services .cta-container p {
            max-width: 700px;
            color: color-mix(in srgb, var(--default-color), transparent 20%);
        }

        .services .cta-container .btn-cta {
            background-color: var(--accent-color);
            color: var(--contrast-color);
            padding: 0.75rem 2rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
        }

        .services .cta-container .btn-cta:hover {
            background-color: color-mix(in srgb, var(--accent-color), #000 15%);
            transform: translateY(-3px);
        }

        @media (max-width: 992px) {
            .services .service-list-block {
                margin-top: 2rem;
            }

            .services .service-card {
                padding: 2rem;
            }

            .services .cta-container h3 {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .services .service-list-item {
                flex-direction: column;
                gap: 1rem;
            }

            .services .service-list-item .service-list-icon {
                margin-bottom: 0.5rem;
            }
        }

        /* testimonial section  */


        .testimonials-slider {
            max-width: 900px;
            margin: auto;
        }

        .testimonial-slide {
            padding: 2rem;
            text-align: center;
            min-height: 380px;
            border-radius: 25px;
            background: linear-gradient(135deg, var(--surface-color), var(--accent-shadow-color));
            border: 1px solid rgba(0, 0, 0, 0.05);
            border-top: 4px solid var(--accent-color);
        }

        .testimonial-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }

        .stars-rating i {
            color: #ffc107;
            font-size: 1.3rem;
        }

        .quote-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--accent-color), #000000);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .quote-icon i {
            color: #fff;
            font-size: 1.5rem;
        }

        .testimonial-body p {
            font-size: 1.2rem;
            line-height: 1.8;
            font-style: italic;
            color: var(--heading-color);
        }

        .author-info {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.2rem;
            margin-top: 2rem;
        }

        .author-avatar {
            width: 75px;
            height: 75px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid var(--accent-color);
        }

        .author-details h4 {
            margin: 0;
            color: var(--heading-color);
        }

        .role {
            color: var(--accent-color);
            font-weight: 600;
            display: block;
        }

        .company {
            font-size: 0.9rem;
            color: #777;
        }

        .swiper-navigation-wrapper {
            display: flex !important;
            justify-content: space-between !important;
            align-items: center !important;
            gap: 25px !important;
            margin-top: 35px !important;
        }

        .swiper-button-prev,
        .swiper-button-next {
            position: static !important;
            width: 50px !important;
            height: 50px !important;
            background: var(--accent-color) !important;
            border-radius: 50% !important;
        }

        .swiper-button-prev::after,
        .swiper-button-next::after {
            font-size: 18px !important;
            color: #fff !important;
        }

        .swiper-pagination-bullet {
            width: 12px !important;
            height: 12px !important;
            background: #ccc !important;
            opacity: 1 !important;
        }

        .swiper-pagination-bullet-active {
            background: var(--accent-color) !important;
            transform: scale(1.2) !important;
        }

        /* projects or company sections. */


        .projects .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 40px;
        }

        @media (max-width: 992px) {
            .projects .projects-grid {
                grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
                gap: 30px;
            }
        }

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

        .projects .project-item {
            display: flex;
            background: var(--surface-color);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 32px color-mix(in srgb, var(--default-color), transparent 92%);
            transition: all 0.4s ease;
            min-height: 280px;
        }

        .projects .project-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
        }

        .projects .project-item:hover .project-visual img {
            transform: scale(1.08);
        }

        .projects .project-item:hover .project-link {
            background: var(--btn-2nd-background-color);
            color: var(--contrast-color);
        }

        .projects .project-item:hover .project-link i {
            transform: translateX(5px);
        }

        @media (max-width: 768px) {
            .projects .project-item {
                flex-direction: column;
                min-height: auto;
            }
        }

        .projects .project-content {
            flex: 1;
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        @media (max-width: 768px) {
            .projects .project-content {
                padding: 25px;
            }
        }

        .projects .project-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .projects .project-category {
            background: color-mix(in srgb, var(--accent-color), transparent 85%);
            color: var(--accent-color);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.8px;
        }

        .projects .project-status {
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 10px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .projects .project-status.completed {
            background: #22c55e;
            color: #ffffff;
        }

        .projects .project-status.in-progress {
            background: var(--accent-color);
            color: #ffffff;
        }

        .projects .project-status.planning {
            background: #f59e0b;
            color: #ffffff;
        }

        .projects .project-title {
            font-size: 22px;
            font-weight: 700;
            color: var(--heading-color);
            margin-bottom: 15px;
            line-height: 1.3;
        }

        @media (max-width: 768px) {
            .projects .project-title {
                font-size: 20px;
            }
        }

        .projects .project-details {
            margin-bottom: 25px;
        }

        .projects .project-info {
            margin-bottom: 20px;
        }

        .projects .project-info p {
            color: color-mix(in srgb, var(--default-color), transparent 25%);
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .projects .project-specs {
            display: flex;
            gap: 20px;
            margin-bottom: 15px;
        }

        @media (max-width: 576px) {
            .projects .project-specs {
                flex-direction: column;
                gap: 8px;
            }
        }

        .projects .spec-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            font-weight: 500;
        }

        .projects .spec-item i {
            color: var(--accent-color);
            font-size: 14px;
        }

        .projects .project-location {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 0;
            border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        }

        .projects .project-location i {
            color: var(--accent-color);
            font-size: 14px;
        }

        .projects .project-location span {
            font-size: 13px;
            color: color-mix(in srgb, var(--default-color), transparent 30%);
            font-weight: 500;
        }

        .projects .project-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: color-mix(in srgb, var(--btn-2nd-background-color), transparent 90%);
            color: var(--btn-2nd-background-color);
            padding: 12px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            font-size: 13px;
            transition: all 0.3s ease;
            align-self: flex-start;
        }

        .projects .project-link i {
            font-size: 12px;
            transition: transform 0.3s ease;
        }

        .projects .project-visual {
            flex: 0 0 200px;
            position: relative;
            overflow: hidden;
        }

        @media (max-width: 768px) {
            .projects .project-visual {
                flex: none;
                height: 200px;
            }
        }

        .projects .project-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .projects .project-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 40px;
            height: 40px;
            background: color-mix(in srgb, var(--surface-color), transparent 10%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
        }

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

        /*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
        .footer {
            color: var(--default-color);
            background-color: var(--background-color);
            font-size: 14px;
            padding-bottom: 50px;
            position: relative;
        }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        .footer .copyright {
            padding-top: 25px;
            padding-bottom: 25px;
            background-color: color-mix(in srgb, var(--default-color), transparent 95%);
        }

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

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

        .footer p {
            color: #fff;
        }


        /*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
        .service-details .service-sidebar {
            position: sticky;
            top: 120px;
        }
        .service-details .service-sidebar .contact-action-card {
            text-align: center;
        }
        .service-details .service-sidebar .service-overview-card,
        .service-details .service-sidebar .quick-info-card,
        .service-details .service-sidebar .contact-action-card {
            background-color: var(--surface-color);
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
        }

        .service-details .service-sidebar .service-overview-card {
            text-align: center;
        }

        .service-details .service-sidebar .service-overview-card .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
        }

        .service-details .service-sidebar .service-overview-card .service-icon i {
            font-size: 2rem;
            color: var(--contrast-color);
        }

        .service-details .service-sidebar .service-overview-card h3 {
            color: var(--heading-color);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .service-details .service-sidebar .service-overview-card p {
            color: var(--default-color);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        .service-details .service-sidebar .service-overview-card .service-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .service-details .service-sidebar .service-overview-card .service-stats .stat-item {
            text-align: center;
        }

        .service-details .service-sidebar .service-overview-card .service-stats .stat-item .stat-number {
            display: block;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--accent-color);
            line-height: 1;
        }

        .service-details .service-sidebar .service-overview-card .service-stats .stat-item .stat-label {
            font-size: 0.85rem;
            color: color-mix(in srgb, var(--default-color), transparent 30%);
            margin-top: 0.5rem;
        }

        .service-details .service-sidebar .quick-info-card h4 {
            color: var(--heading-color);
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .service-details .service-sidebar .quick-info-card .info-grid .info-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
            border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
        }

        .service-details .service-sidebar .quick-info-card .info-grid .info-row:last-child {
            border-bottom: none;
        }

        .service-details .service-sidebar .quick-info-card .info-grid .info-row .label {
            color: var(--default-color);
            font-weight: 500;
            font-size: 0.95rem;
        }

        .service-details .service-sidebar .quick-info-card .info-grid .info-row .value {
            color: var(--accent-color);
            font-weight: 600;
            font-size: 0.95rem;
        }

        .service-details .service-sidebar .contact-action-card h4 {
            color: var(--heading-color);
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .service-details .service-sidebar .contact-action-card .contact-text {
            color: var(--default-color);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .service-details .service-sidebar .contact-action-card .contact-methods {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .service-details .service-sidebar .contact-action-card .contact-methods .contact-btn {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 1rem;
            background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
            border-radius: 10px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .service-details .service-sidebar .contact-action-card .contact-methods .contact-btn i {
            font-size: 1.5rem;
            color: var(--accent-color);
            margin-bottom: 0.5rem;
        }

        .service-details .service-sidebar .contact-action-card .contact-methods .contact-btn span {
            color: var(--default-color);
            font-weight: 500;
            font-size: 0.9rem;
        }

        .service-details .service-sidebar .contact-action-card .contact-methods .contact-btn:hover {
            background-color: var(--accent-color);
            transform: translateY(-2px);
        }

        .service-details .service-sidebar .contact-action-card .contact-methods .contact-btn:hover i,
        .service-details .service-sidebar .contact-action-card .contact-methods .contact-btn:hover span {
            color: var(--contrast-color);
        }

        .service-details .service-sidebar .contact-action-card .btn {
            background-color: var(--accent-color);
            border-color: var(--accent-color);
            color: var(--contrast-color);
            font-weight: 600;
            padding: 0.8rem 1.5rem;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .service-details .service-sidebar .contact-action-card .btn:hover {
            background-color: color-mix(in srgb, var(--accent-color), black 15%);
            border-color: color-mix(in srgb, var(--accent-color), black 15%);
            transform: translateY(-2px);
        }

        .service-details .service-main-content .hero-section {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            margin-bottom: 3rem;
        }

        .service-details .service-main-content .hero-section img {
            width: 100%;
            height: 350px;
            object-fit: cover;
        }

        .service-details .service-main-content .hero-section .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
            display: flex;
            align-items: flex-end;
            padding: 2rem;
        }

        .service-details .service-main-content .hero-section .hero-overlay .hero-badge {
            background-color: var(--accent-color);
            color: var(--contrast-color);
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 600;
        }

        .service-details .service-main-content .hero-section .hero-overlay .hero-badge i {
            font-size: 1.1rem;
        }

        .service-details .service-main-content .content-section {
            margin-bottom: 3rem;
        }

        .service-details .service-main-content .content-section h1 {
            color: var(--heading-color);
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 2rem;
            line-height: 1.2;
        }

        .service-details .service-main-content .content-section .content-intro p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--default-color);
            margin-bottom: 1.5rem;
        }

        .service-details .service-main-content .content-section .content-intro p:last-child {
            margin-bottom: 0;
        }

        .service-details .service-main-content .capabilities-grid {
            margin-bottom: 4rem;
        }

        .service-details .service-main-content .capabilities-grid h2 {
            color: var(--heading-color);
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 2.5rem;
            text-align: center;
        }

        .service-details .service-main-content .capabilities-grid .capability-card {
            background-color: var(--surface-color);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            height: 100%;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
            transition: all 0.3s ease;
        }

        .service-details .service-main-content .capabilities-grid .capability-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }

        .service-details .service-main-content .capabilities-grid .capability-card .capability-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
        }

        .service-details .service-main-content .capabilities-grid .capability-card .capability-icon i {
            font-size: 1.8rem;
            color: var(--contrast-color);
        }

        .service-details .service-main-content .capabilities-grid .capability-card h4 {
            color: var(--heading-color);
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .service-details .service-main-content .capabilities-grid .capability-card p {
            color: var(--default-color);
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0;
        }

        .service-details .service-main-content .methodology-section h2 {
            color: var(--heading-color);
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 3rem;
            text-align: center;
        }

        .service-details .service-main-content .methodology-section .methodology-timeline {
            position: relative;
        }

        .service-details .service-main-content .methodology-section .methodology-timeline::before {
            content: "";
            position: absolute;
            left: 40px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 50%));
        }

        .service-details .service-main-content .methodology-section .methodology-timeline .timeline-item {
            position: relative;
            padding-left: 120px;
            margin-bottom: 3rem;
        }

        .service-details .service-main-content .methodology-section .methodology-timeline .timeline-item:last-child {
            margin-bottom: 0;
        }

        .service-details .service-main-content .methodology-section .methodology-timeline .timeline-item .timeline-marker {
            position: absolute;
            left: 0;
            top: 0;
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
        }

        .service-details .service-main-content .methodology-section .methodology-timeline .timeline-item .timeline-marker .phase-number {
            color: var(--contrast-color);
            font-size: 1.5rem;
            font-weight: 700;
        }

        .service-details .service-main-content .methodology-section .methodology-timeline .timeline-item .timeline-content {
            background-color: var(--surface-color);
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
        }

        .service-details .service-main-content .methodology-section .methodology-timeline .timeline-item .timeline-content h4 {
            color: var(--heading-color);
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .service-details .service-main-content .methodology-section .methodology-timeline .timeline-item .timeline-content p {
            color: var(--default-color);
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .service-details .service-main-content .methodology-section .methodology-timeline .timeline-item .timeline-content .phase-features {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .service-details .service-main-content .methodology-section .methodology-timeline .timeline-item .timeline-content .phase-features li {
            color: var(--default-color);
            font-size: 0.95rem;
            padding: 0.4rem 0;
            position: relative;
            padding-left: 1.5rem;
        }

        .service-details .service-main-content .methodology-section .methodology-timeline .timeline-item .timeline-content .phase-features li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--accent-color);
            font-weight: 600;
        }

        .service-details .portfolio-showcase .showcase-header {
            margin-bottom: 3rem;
        }

        .service-details .portfolio-showcase .showcase-header h2 {
            color: var(--heading-color);
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .service-details .portfolio-showcase .showcase-header p {
            color: var(--default-color);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .service-details .portfolio-showcase .project-showcase-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            height: 100%;
        }

        .service-details .portfolio-showcase .project-showcase-item .project-image {
            position: relative;
            height: 100%;
            min-height: 250px;
        }

        .service-details .portfolio-showcase .project-showcase-item .project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .service-details .portfolio-showcase .project-showcase-item .project-image .project-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .service-details .portfolio-showcase .project-showcase-item .project-image .project-overlay .project-info {
            text-align: center;
            color: var(--contrast-color);
            padding: 1.5rem;
        }

        .service-details .portfolio-showcase .project-showcase-item .project-image .project-overlay .project-info h4 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .service-details .portfolio-showcase .project-showcase-item .project-image .project-overlay .project-info p {
            font-size: 0.95rem;
            opacity: 0.9;
            margin-bottom: 1.5rem;
        }

        .service-details .portfolio-showcase .project-showcase-item .project-image .project-overlay .project-info .view-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background-color: var(--accent-color);
            color: var(--contrast-color);
            border-radius: 50%;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .service-details .portfolio-showcase .project-showcase-item .project-image .project-overlay .project-info .view-btn i {
            font-size: 1.2rem;
        }

        .service-details .portfolio-showcase .project-showcase-item .project-image .project-overlay .project-info .view-btn:hover {
            background-color: color-mix(in srgb, var(--accent-color), white 20%);
            transform: scale(1.1);
        }

        .service-details .portfolio-showcase .project-showcase-item:hover .project-image img {
            transform: scale(1.05);
        }

        .service-details .portfolio-showcase .project-showcase-item:hover .project-image .project-overlay {
            opacity: 1;
        }

        @media (max-width: 992px) {
            .service-details .service-sidebar {
                position: static;
                margin-top: 3rem;
            }

            .service-details .service-main-content .content-section h1 {
                font-size: 2rem;
            }

            .service-details .service-main-content .methodology-section .methodology-timeline::before {
                left: 30px;
            }

            .service-details .service-main-content .methodology-section .methodology-timeline .timeline-item {
                padding-left: 100px;
            }

            .service-details .service-main-content .methodology-section .methodology-timeline .timeline-item .timeline-marker {
                width: 60px;
                height: 60px;
            }

            .service-details .service-main-content .methodology-section .methodology-timeline .timeline-item .timeline-marker .phase-number {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 768px) {
            .service-details .service-sidebar .contact-action-card .contact-methods {
                grid-template-columns: 1fr;
            }

            .service-details .service-main-content .hero-section img {
                height: 250px;
            }

            .service-details .service-main-content .hero-section .hero-overlay {
                padding: 1.5rem;
            }

            .service-details .service-main-content .capabilities-grid .row {
                --bs-gutter-y: 2rem;
            }

            .service-details .service-main-content .methodology-section .methodology-timeline::before {
                display: none;
            }

            .service-details .service-main-content .methodology-section .methodology-timeline .timeline-item {
                padding-left: 0;
                text-align: center;
            }

            .service-details .service-main-content .methodology-section .methodology-timeline .timeline-item .timeline-marker {
                position: relative;
                margin: 0 auto 1.5rem;
            }
        }


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

        .page-title h1 {
            font-size: 24px;
            font-weight: 700;
        }

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

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

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

        /* brand slider  */

        .logo-swiper {
            width: 100%;
            padding: 10px 0;
        }

        .logo-swiper .swiper-slide {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .logo-swiper img {
            max-height: 40px;
            width: auto;
            object-fit: contain;
            filter: grayscale(100%);
            opacity: 0.8;
            transition: 0.3s ease;
        }

        .logo-swiper img:hover {
            filter: grayscale(0%);
            opacity: 1;
        }