        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

        :root {
            --primary: #011935;
            --accent: #bc5f33;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Inter', system-ui, sans-serif;
        }

        .hero-bg {
            background: linear-gradient(135deg, #01203f 0%, #011935 100%);
        }

        .nav-link {
            transition: all 0.3s ease;
        }

        .nav-link:hover {
            color: #bc5f33;
            transform: translateY(-2px);
        }

        .service-card {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .service-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
        }

        .value-card {
            transition: all 0.3s ease;
        }

        .value-card:hover {
            transform: translateY(-6px);
        }

        .tech-badge {
            transition: all 0.3s ease;
        }

        .tech-badge:hover {
            transform: translateY(-4px) scale(1.05);
            box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
        }

        .process-step {
            transition: all 0.3s ease;
        }

        .process-step:hover {
            transform: translateY(-6px);
        }

        .industry-chip {
            transition: all 0.3s ease;
        }

        .industry-chip:hover {
            background-color: #bc5f33;
            color: white;
            transform: translateY(-3px);
        }

        .logo-text {
            font-family: 'Inter', sans-serif;
        }

        .mobile-menu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .mobile-menu.active {
            max-height: 600px;
        }

        /* HERO SLIDER */
        .hero-slider {
            position: relative;
            width: 100%;
            aspect-ratio: 4 / 3;
            border-radius: 1.5rem;
            overflow: hidden;
        }

        .hero-slide {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity 1.2s ease-in-out;
        }

        .hero-slide.active {
            opacity: 1;
        }

        .hero-dot {
            width: 10px;
            height: 10px;
            border-radius: 9999px;
            background-color: rgba(255, 255, 255, 0.5);
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }

        .hero-dot.active {
            background-color: #ffffff;
            width: 26px;
        }

        /* PROCESS ARROWS */
        .process-arrow {
            color: #cf7c53;
        }
    @media screen and (max-width: 767px) {
        .mobile-menu {
    display: none;
}
.mobile-menu.active {
    display: block;
}
#home.hero-bg {
    padding-top: 3rem;
}
.hero-button a {
    font-size: 1rem;
    line-height: 1.45rem;
    padding: 15px 20px;
}
        
    }