        :root {
            --bg-dark: #0a0a0c;
            --primary-color: #d4ff3f;
            --text-gray: #a1a1aa;
        }

        body {
            background-color: var(--bg-dark);
            color: white;
            font-family: 'Inter', sans-serif;
            margin: 0;
            overflow-x: hidden;
        }

        /* Navigation */
        .nav-top {
            position: absolute;
            top: 30px;
            width: 100%;
            padding: 0 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
        }

        .logo {
            text-align: center !important;
            pointer-events: none;
            user-select: none;
            -webkit-user-select: none;
        }

        /* Main Brand Name */
        .logo-main {
            font-size: 38px;
            font-weight: 700;
            letter-spacing: 3px;
            color: white;
            position: relative;
            font-family: 'Oswald', sans-serif;
        }

        .logo-main::after {
            content: ".";
            color: var(--primary-color);
            margin-left: 3px;
        }

        /* Sub text (DIGITAL) */
        .logo-sub {
            font-size: 12px;
            letter-spacing: 6px;
            color: var(--text-gray);
            text-transform: uppercase;
            position: relative;
            font-family: 'Oswald', sans-serif;

        }

        /* Lines like your example */
        .logo-sub::before,
        .logo-sub::after {
            content: "";
            display: inline-block;
            width: 25px;
            height: 1px;
            background: var(--text-gray);
            margin: 0 10px;
            vertical-align: middle;
        }

        @media (max-width:768px) {
            .logo-main {
                font-size: 28px;
            }

            .logo-sub {
                font-size: 6px;
            }
        }


        .btn-menu-toggle {
            color: white;
            padding: 10px 22px;
            cursor: pointer;
            transition: 0.3s;
            text-decoration: none;
            font-size: 0.9rem;
            background: rgba(255, 255, 255, 0.25);
            border-radius: 16px;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(1.8px);
            -webkit-backdrop-filter: blur(1.8px);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .btn-menu-toggle:hover {
            background: rgba(255, 255, 255, 0.15);
            color: white;
        }

        .offcanvas {
            background-color: #0f0f12;
            color: white;
            border-left: 1px solid rgba(255, 255, 255, 0.1);
        }

        .nav-link-custom {
            font-size: 2rem;
            font-weight: 700;
            color: white;
            text-decoration: none;
            display: block;
            margin-bottom: 20px;
            transition: color 0.3s;
        }

        .nav-link-custom:hover {
            color: var(--primary-color);
        }


        .services-dropdown {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .services-menu.active .services-dropdown {
            max-height: 500px;
            padding-left: 20px !important;
        }

        .nav-link-sub {
            font-size: 1.5rem;
            font-weight: 600;
            color: white;
            text-decoration: none;
            display: block;
            margin-bottom: 20px;
            transition: color 0.3s ease;
        }

        .nav-link-sub:hover {
            color: var(--primary-color);
        }

        .services-toggle {
            cursor: pointer;
        }

        /* ------------------ RESPONSIVE ------------------ */

        @media (max-width: 768px) {

            .nav-top {
                padding: 0 15px;
            }

            .nav-top .h4 {
                font-size: 1.2rem;
            }

            .btn-menu-toggle {
                padding: 8px 14px;
                font-size: 0.8rem;
            }

            .hero-footer {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 15px;
                padding: 0 20px;
                bottom: 20px;
            }
        }

        @media (max-width: 576px) {
            .hero-content .d-flex {
                flex-direction: column;
                gap: 10px;
            }

            .btn-call,
            .btn-projects {
                width: 100%;
                margin-right: 0;
            }

            .hero-footer {
                font-size: 0.8rem;
            }

            .stat-number {
                font-size: 1rem;
            }
        }

        /* Chrome, Edge, Safari */
        .offcanvas-body::-webkit-scrollbar {
            width: 6px;
        }

        .offcanvas-body::-webkit-scrollbar-track {
            background: transparent;
        }

        .offcanvas-body::-webkit-scrollbar-thumb {
            background-color: var(--primary-color);
            border-radius: 10px;
        }

        /* Hover effect */
        .offcanvas-body::-webkit-scrollbar-thumb:hover {
            background-color: var(--primary-color);
        }


        /* hero section */

        .hero-section {
            height: 60vh !important;
            width: 100% !important;
            /* background-image:
                linear-gradient(rgba(0, 0, 0, 0.658), rgba(0, 0, 0, 0.699)),
                url('/assets/about-hero.avif'); */

            background: radial-gradient(circle at center, #1b2203 0%, #0a0a0c 100%);

            /* background-size: cover;
            background-position: center; */
            display: flex !important;
            justify-content: left !important;
            align-items: center !important;
        }

        .hero-section .container h1 {
            font-weight: 800 !important;
            letter-spacing: 2px !important;
            text-transform: uppercase !important;
            font-family: 'Oswald', sans-serif;
            font-size: clamp(2.5rem, 5vw, 3rem);
            line-height: 1.1;
            text-transform: uppercase;
            letter-spacing: -1px;
        }


        /* who-section */

        .who-section {
            padding: 60px 20px;
        }

        .who-section .who-box {
            box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05),
                0 10px 30px rgba(0, 0, 0, 0.8);
            background-color: #141416;
            border-radius: 20px;
            padding: 40px !important;
            position: relative;
            overflow: hidden;
        }

        .who-section .who-box .who-title {
            font-size: 40px;
            font-weight: 700;
            color: #fff;
            font-weight: 800 !important;
            letter-spacing: 1px !important;
            text-transform: uppercase !important;
            font-family: 'Oswald', sans-serif;
        }

        .who-section .who-box .highlight {
            color: var(--primary-color);
        }

        .who-section .who-box .who-text {
            color: #9ca3af;
            margin-top: 5px;
            line-height: 1.7;
            font-size: 15px;
        }

        .who-img {
            border-radius: 8px;
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(100%);
        }

        .img-wrapper {
            height: 100%;
            position: absolute;
            top: 50px;
            right: 50px;
        }

        .img-wrapper img {
            height: 480px;
            width: auto;
        }

        .badge-text {
            color: #9ca3af;
            font-size: 14px;
            margin-bottom: 10px;
            display: block;
        }

        /* Decorative dots */
        .dots {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 120px;
            height: 120px;
            background-image: radial-gradient(#d4ff3f 2px, transparent 2px);
            background-size: 12px 12px;
            opacity: 0.3;
        }

        .who-row {
            position: relative;
            height: 520px !important;
        }

        .left-content-inner {
            position: absolute;
            top: 50px;
            width: 33em;
            padding: 20px;
            border-top-left-radius: 16px;
            border-bottom-left-radius: 16px;
            border-bottom-right-radius: 40px;
            box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05),
                0 10px 30px rgba(0, 0, 0, 0.8);
            background-color: #141416;
            z-index: 10;
        }

        @media (max-width: 768px) {

            .who-section {
                padding: 60px 0px;
            }

            .who-section .who-box {
                padding: 10px !important;
            }

            .who-row {
                height: auto !important;
            }

            .left-content-inner {
                position: relative;
                top: 0;
                width: 100%;
                padding: 20px;
                border-radius: 16px;
            }

            .img-wrapper {
                position: relative;
                top: 0;
                right: 0;
                margin-top: 20px;
                text-align: center;
            }

            .img-wrapper img {
                height: auto;
                width: 100%;
                max-width: 100%;
            }

        }

        /* mission vision */

        .mission-section {
            padding: 60px 0;
        }

        .mission-section .section-header h1 {
            font-size: 40px;
            font-weight: 700;
            color: #fff;
            font-weight: 800 !important;
            letter-spacing: 1px !important;
            text-transform: uppercase !important;
            font-family: 'Oswald', sans-serif;
        }

        .mission-section .section-header p {
            color: var(--text-gray);
        }

        .mission-section .content-box {
            margin-top: 50px;
        }

        .mission-section .image-wrapper {
            background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
            border: 1px solid #333;
            border-radius: 30px;
            padding: 20px;
            display: inline-block;
            width: 100%;
            max-width: 500px;
        }

        .mission-section .image-wrapper img {
            border-radius: 20px;
            width: 100%;
            height: auto;
            filter: grayscale(100%);
            display: block;
        }

        .mission-section .text-content {
            padding: 20px 0;
        }

        .mission-section .text-content h2 {
            font-weight: 600;
            margin-bottom: 20px;
            font-size: 2rem;
        }

        .mission-section .text-content p {
            color: var(--text-gray);
            line-height: 1.7;
            font-size: 0.95rem;
        }

        .mission-section .v-line {
            border-left: 2px solid var(--primary-color);
            padding-left: 25px;
            height: 100%;
        }

        @media (max-width: 991px) {
            .mission-section .v-line {
                border-left: none;
                padding-left: 0;
            }

            .mission-section .order-mobile-last {
                order: 2;
            }

            .mission-section .order-mobile-first {
                order: 1;
            }
        }

        /* proccess section */

        .process-container {
            width: 100%;
            margin: 0 auto;
            margin-bottom: 100px !important;
            margin-top: 20px !important;
        }

        .process-container .head {
            font-weight: 800 !important;
            letter-spacing: 2px !important;
            text-transform: uppercase !important;
            font-family: 'Oswald', sans-serif;
            font-size: clamp(2.5rem, 5vw, 3rem);
            line-height: 1.1;
            text-transform: uppercase;
            letter-spacing: -1px;

        }

        .process-container .sub-head {
            color: var(--text-gray) !important;
        }

        .process-left-content {
            position: sticky;
            top: 20px;
            align-self: flex-start;
        }

        @media(max-width: 768px) {
            .process-left-content {
                position: relative;
                top: 0;
                display: none;
            }
        }

        .process-img-outer {
            width: 100%;
            height: 100%;
        }

        .process-img-outer img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }

        .timeline-wrapper {
            position: relative;
            padding: 40px 0;
        }

        /* Gray Background Line (Static) */
        .timeline-wrapper::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--text-gray);
            transform: translateX(-50%);
            z-index: 1;
        }

        /* Black Progress Bar (Animated) */
        .progress-bar {
            position: absolute;
            left: 50%;
            top: 0;
            width: 2px;
            height: 0%;
            /* Start height */
            background: var(--primary-color);
            transform: translateX(-50%);
            z-index: 2;
            transition: height 0.1s linear;
            /* Smooth movement */
        }

        .step {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 120px;
            position: relative;
            width: 100%;
            z-index: 3;
            transition: opacity 0.5s ease;
        }

        .step-title {
            width: 42%;
            text-align: right;
            font-size: 1.8rem;
            font-weight: 700;
        }

        .step-description {
            width: 42%;
            text-align: left;
            font-size: 1.1rem;
            color: var(--text-gray);
            line-height: 1.5;
        }

        /* Dots */
        .dot {
            position: absolute;
            left: 50%;
            top: 50%;
            width: 12px;
            height: 12px;
            background-color: var(--inactive-gray);
            border: 3px solid var(--bg-color);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: background-color 0.3s ease, transform 0.3s ease;
        }


        .step.active .dot {
            background-color: var(--primary-color);
            transform: translate(-50%, -50%) scale(1.2);
        }

        /* Responsive */
        /* @media (max-width: 768px) { */
        .timeline-wrapper::before,
        .progress-bar {
            left: 20px;
            transform: none;
        }

        .step {
            flex-direction: column;
            align-items: flex-start;
            padding-left: 50px;
            text-align: left;
        }

        .step-title,
        .step-description {
            width: 100%;
            text-align: left;
        }

        .dot {
            left: 20px;
            transform: translate(-50%, -50%);
        }

        .step.active .dot {
            transform: translate(-50%, -50%) scale(1.2);
        }

        /* why choose  */

        .why-choose {
            margin-bottom: 100px !important;
            margin-top: 100px !important;
        }

        .why-choose .container {
            max-width: 1100px;
            width: 100%;
            display: flex;
            flex-direction: row;
            gap: 40px;
            align-items: center;
        }

        .why-choose .intro-content {
            flex: 1;
            align-self: flex-start;
            margin-top: 50px;
        }

        .why-choose h3 {
            font-weight: 800 !important;
            letter-spacing: 2px !important;
            text-transform: uppercase !important;
            font-family: 'Oswald', sans-serif;
            font-size: clamp(2.5rem, 5vw, 3rem);
            line-height: 1.1;
            text-transform: uppercase;
            letter-spacing: -1px;
        }

        .why-choose .description {
            color: var(--text-gray);
        }

        .why-choose .features-grid {
            flex: 1.5;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .why-choose .card {
            background: var(--bg-dark);
            padding: 30px;
            border-radius: 10px;
            transition: transform 0.2s ease;
        }

        .why-choose .icon {
            margin-bottom: 15px;
            color: white;
            font-size: 1.8rem;
        }

        .why-choose .card h3 {
            font-size: 1.1rem;
            margin: 0 0 10px 0;
            color: white;
        }

        .why-choose .card p {
            font-size: 0.9rem;
            color: var(--text-gray);
            line-height: 1.5;
            margin: 0;
        }

        @media (max-width: 900px) {
            .why-choose .container {
                flex-direction: column;
                align-items: flex-start;
            }

            .why-choose .features-grid {
                width: 100%;
            }
        }

        @media (max-width: 600px) {
            .why-choose .features-grid {
                grid-template-columns: 1fr;
            }

            .why-choose h3 {
                font-size: 2rem;
            }
        }

        /* cta section */
        .cta-section {
            background: radial-gradient(circle at center, #1b2203 0%, #0a0a0c 100%);
            color: #ffffff;
            padding: 100px 0;
            min-height: 450px;
            display: flex;
            align-items: center;
        }

        .cta-title {
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 700;
            line-height: 0.9;
            margin-bottom: 20px;
        }

        .cta-subtitle {
            font-size: 1.25rem;
            font-weight: 500;
            margin-bottom: 2rem;
        }

        .right-text {
            font-size: 1.1rem;
            max-width: 350px;
            line-height: 1.4;
            margin-bottom: 40px;
        }

        /* Circular Button Styling */
        .circle-btn {
            width: 180px;
            height: 180px;
            background-color: transparent;
            /* Muted aqua/teal */
            color: #ffffff;
            border: 2px solid var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            transition: transform 0.3s ease, background-color 0.3s ease;
            line-height: 1.2;
            padding: 20px;
        }

        .circle-btn:hover {
            transform: scale(1.05);
            background-color: var(--primary-color);
            color: black
        }

        /* Mobile Adjustments */
        @media (max-width: 991px) {
            .cta-section {
                text-align: center;
                padding: 60px 20px;
            }

            .right-text {
                margin: 0 auto 30px auto;
            }

            .circle-btn {
                margin: 0 auto;
            }
        }

        .footer,
        .last-div {
            background: radial-gradient(circle at center, #1b2203 0%, #0a0a0c 100%);
        }

        .footer p {
            color: var(--text-gray);
        }

        .footer .footer-icon {
            height: 40px;
            width: 40px;
            background: transparent;
            border: 2px white solid;
            color: white;
            font-size: 14px;
            border-radius: 50px;
            align-content: center;
        }