        :root {
            --primary-dark: #0A144A;
            --primary-light: #3C4A8A;
            --white: #FFFFFF;
            --light-gray: #E6E9EF;
            --text-dark: #333333;
            --text-light: #666666;
        }

        .arc-divider-1 {
            position: relative;
            width: 100%;
            overflow: hidden;
            line-height: 0;
            background-color: #000;
        }

        .arc-divider-1 svg {
            display: block;
            width: 100%;
            height: auto;
        }

        .arc-container-2 {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 160px;
            z-index: 10;
        }

        .arc-divider-2 {
            width: 100%;
            height: 100%;
            display: block;
            transform: rotateX(180deg);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Helvetica Now Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--white);
            color: var(--text-dark);
            line-height: 1.6;
        }

        .container {
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        header {
            background-color: white;
            border-radius: 20px;
            position: fixed;
            width: 90%;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1000;
            border: 1px solid rgba(0, 0, 0, 0.3);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .nav-container {
            width: 100%;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 50px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo img {
            height: 30px;
            width: auto;
            max-width: 100px;
            transition: transform 0.3s ease-in-out;
        }

        .logo img:hover {
            transform: scale(1.05);
        }

        .company-name {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-dark);
            margin: 0;
            white-space: nowrap;
        }

        .force {
            color: var(--primary-light);
            font-weight: 700;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 50px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--primary-dark);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--primary-light);
            transition: width 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a.active {
            color: var(--primary-dark);
            font-weight: 600;
        }

        .nav-links a.active::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            bottom: -5px;
            background-color: var(--primary-light);
            transition: width 0.3s;
        }

        .mobile-menu {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }

        @media (min-width: 1400px) {
            header {
                width: 85%;
            }
        }

        /* Hero Section */
        .hero {
            background: url('/images/back.png') center center / cover no-repeat;
            color: var(--white);
            padding: 200px 0 100px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.50);
            backdrop-filter: blur(5px);
            z-index: 1;
        }

        .hero * {
            position: relative;
            z-index: 2;
        }


        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }

        .hero h1 {
            color: white;
            font-size: 3rem;
            margin-bottom: 20px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 1s forwards 0.5s;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 1s forwards 0.8s;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 1s forwards 1.1s;
        }

        .btn {
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            display: inline-block;
        }

        .btn-primary {
            background-color: var(--white);
            color: var(--primary-dark);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }

        .btn-secondary:hover {
            transform: translateY(-3px);
            background-color: var(--white);
            color: var(--primary-dark);
        }

        /* Foucson Section - Sliding Cards */
        .focus-title {
            font-size: clamp(3rem, 8vw, 5.5rem);
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -0.02em;
            position: relative;
            text-align: center;
            pointer-events: none;
            font-family: "Arial Black", "Arial Bold", Arial, sans-serif;
            background: linear-gradient(to bottom,
                    rgba(8, 42, 123, 0.35) 30%,
                    rgb(255 255 255 / 0%) 76%);
            color: transparent;
            -webkit-background-clip: text;
            background-clip: text;
            margin-bottom: clamp(-30px, -5vw, -50px);
        }

        .focus-carousel-container {
            width: 100%;
            max-width: min(1200px, 95vw);
            height: clamp(300px, 50vh, 500px);
            position: relative;
            perspective: 1000px;
            margin: 0 auto;
            padding: 0 clamp(10px, 3vw, 20px);
        }

        .focus-carousel-track {
            width: 100%;
            height: 100%;
            margin-top: clamp(15px, 3vw, 20px);
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            transform-style: preserve-3d;
            transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .focus-card {
            position: absolute;
            width: clamp(200px, 80vw, 400px);
            height: clamp(250px, 45vh, 380px);
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            cursor: pointer;
            display: flex;
            flex-direction: column;
        }

        .focus-card-image {
            width: 100%;
            height: 50%;
            overflow: hidden;
        }

        .focus-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .focus-card img:hover {
            transform: scale(1.05);
        }

        .focus-card-content {
            height: 50%;
            padding: clamp(12px, 2vw, 25px);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .focus-card-title {
            font-size: clamp(1rem, 2vw, 1.3rem);
            font-weight: 700;
            color: rgb(8, 42, 123);
            margin-top: clamp(-20px, -3vw, -30px);
            margin-bottom: clamp(8px, 1.5vw, 10px);
            text-align: center;
            align-items: center;
        }

        .focus-card-description {
            color: #666;
            font-size: clamp(0.9rem, 1.8vw, 1rem);
            line-height: 1.4;
            text-align: center;
        }

        .focus-card.center {
            z-index: 10;
            transform: scale(1.1) translateZ(0);
        }

        .focus-card.center img {
            filter: none;
        }

        .focus-card.left-2 {
            z-index: 1;
            transform: translateX(calc(-100% - 20px)) scale(0.8) translateZ(-300px);
            opacity: 0.7;
        }

        .focus-card.left-2 img {
            filter: grayscale(100%);
        }

        .focus-card.left-1 {
            z-index: 5;
            transform: translateX(calc(-50% - 10px)) scale(0.9) translateZ(-100px);
            opacity: 0.9;
        }

        .focus-card.left-1 img {
            filter: grayscale(100%);
        }

        .focus-card.right-1 {
            z-index: 5;
            transform: translateX(calc(50% + 10px)) scale(0.9) translateZ(-100px);
            opacity: 0.9;
        }

        .focus-card.right-1 img {
            filter: grayscale(100%);
        }

        .focus-card.right-2 {
            z-index: 1;
            transform: translateX(calc(100% + 20px)) scale(0.8) translateZ(-300px);
            opacity: 0.7;
        }

        .focus-card.right-2 img {
            filter: grayscale(100%);
        }

        .focus-card.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .focus-dots {
            display: flex;
            justify-content: center;
            gap: clamp(6px, 1.5vw, 10px);
            margin: clamp(15px, 3vw, 20px) 0;
        }

        .focus-dot {
            width: clamp(8px, 2vw, 12px);
            height: clamp(8px, 2vw, 12px);
            border-radius: 50%;
            background: rgba(8, 42, 123, 0.2);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .focus-dot.active {
            background: rgb(8, 42, 123);
            transform: scale(1.2);
        }

        .focus-nav-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(8, 42, 123, 0.6);
            color: white;
            width: clamp(30px, 8vw, 40px);
            height: clamp(30px, 8vw, 40px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 20;
            transition: all 0.3s ease;
            font-size: clamp(1rem, 3vw, 1.5rem);
            border: none;
            outline: none;
            padding-bottom: 4px;
        }

        .focus-nav-arrow:hover {
            background: rgba(0, 0, 0, 0.8);
            transform: translateY(-50%) scale(1.1);
        }

        .focus-nav-arrow.left {
            left: clamp(5px, 2vw, 10px);
            padding-right: 3px;
        }

        .focus-nav-arrow.right {
            right: clamp(5px, 2vw, 10px);
            padding-left: 3px;
        }

        /* Slider Navigation */
        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            border: none;
            border-radius: 50%;
            background: var(--white);
            color: var(--primary-dark);
            font-size: 1.2rem;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slider-nav:hover {
            background: var(--primary-light);
            color: var(--white);
            transform: translateY(-50%) scale(1.1);
        }

        .slider-prev {
            left: 0;
        }

        .slider-next {
            right: 0;
        }

        .slider-nav:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: translateY(-50%) scale(1);
        }

        .slider-nav:disabled:hover {
            background: var(--white);
            color: var(--primary-dark);
        }

        /* Slider Dots */
        .slider-dots {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            gap: 10px;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--primary-light);
            opacity: 0.3;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .slider-dot.active {
            opacity: 1;
            transform: scale(1.2);
        }

        /* Staffing Services Section */

        .tagline-container {
            position: relative;
            width: 100%;
            margin-bottom: clamp(1.5rem, 4vw, 3rem);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .tagline-gradient-text {
            font-weight: 900;
            font-size: clamp(0.8rem, 8vw, 2.3rem);
            color: #3C4A8A;
            text-shadow:
                -0.0075em 0.0075em 0 #F6F7FB,
                0.005em 0.005em 0 #9BA3C5,
                0.01em 0.01em 0 #9EA6C7,
                0.015em 0.015em #A1A9C9,
                0.02em 0.02em 0 #A4ACCB,
                0.025em 0.025em 0 #A7AFCD,
                0.03em 0.03em 0 #AAB2CF,
                0.035em 0.035em 0 #ADB5D1;
            display: flex;
            align-items: center;
            gap: clamp(0.5rem, 2vw, 1rem);
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            text-align: center;
            line-height: 1.2;
        }

        .staffing {
            padding: 120px 0;
            background-color: var(--light-gray);
        }

        .staffing-container {
            width: 100%;
            max-width: 1200px;
            margin: 5% auto;
            padding: 0 20px;
        }

        .staffing-section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .staffing-section-title h2 {
            font-size: 2rem;
            color: #1a3a5f;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .staffing-section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: #2d5d8c;
            border-radius: 2px;
        }

        .staffing-section-title p {
            font-size: 1rem;
            color: #6c757d;
            max-width: 700px;
            margin: 25px auto 0;
        }

        .staffing-cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 500px));
            gap: 30px;
            justify-content: center;
            justify-items: center;
        }

        .staffing-card {
            background: #ffffff;
            width: 100%;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            cursor: pointer;
        }

        .staffing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .staffing-card-header {
            background: #1a3a5f;
            color: #ffffff;
            padding: 20px;
            position: relative;
        }

        .staffing-card-header h3 {
            font-size: 1.2rem;
            margin-bottom: 5px;
        }

        .staffing-card-icon {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 1.8rem;
            opacity: 0.8;
        }

        .staffing-card-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .staffing-card-content p {
            color: #6c757d;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .staffing-card-footer {
            margin-top: auto;
            padding-top: 15px;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .btn-learn-more {
            display: inline-block;
            background: transparent;
            color: #2d5d8c;
            border: 1px solid #2d5d8c;
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        .btn-learn-more:hover {
            background: #2d5d8c;
            color: #ffffff;
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 1000;
            padding: 0;
        }

        .modal-content {
            background-color: #ffffff;
            margin: 0;
            width: 100%;
            height: 100%;
            border-radius: 0;
            box-shadow: none;
            position: relative;
            animation: modalFadeIn 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        @keyframes modalFadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        .modal-header {
            background: #1a3a5f;
            color: #ffffff;
            padding: 25px 30px;
            position: relative;
            flex-shrink: 0;
        }

        .modal-header h3 {
            font-size: 1.8rem;
            margin-bottom: 5px;
        }

        .modal-icon {
            position: absolute;
            top: 25px;
            right: 30px;
            font-size: 2.2rem;
            opacity: 0.8;
        }

        .modal-body {
            position: relative;
            background-color: #E6E9EF;
            padding: 30px;
            overflow-y: auto;
            flex-grow: 1;
            z-index: 1;
        }

        .modal-bg-logo {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 400px;
            height: auto;
            opacity: 0.8;
            pointer-events: none;
            z-index: -1;
        }

        .modal-body p {
            margin-bottom: 20px;
            color: #333333;
            line-height: 1.7;
        }

        .modal-body ul {
            margin: 20px 0;
            padding-left: 20px;
        }

        .modal-body li {
            margin-bottom: 10px;
            color: #333333;
        }

        .modal-footer {
            padding: 20px 30px;
            background-color: #E6E9EF;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
            display: flex;
            justify-content: flex-end;
            flex-shrink: 0;
        }

        .btn-close-modal {
            background: #2d5d8c;
            color: #ffffff;
            border: none;
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-close-modal:hover {
            background: #1a3a5f;
        }

        /* AI Automation Section */
        .ai-automation {
            padding: clamp(100px, 15vw, 250px) 0;
            position: relative;
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
            color: var(--white);
            text-align: center;
            z-index: 1;
            margin-top: clamp(-80px, -8vw, -100px);
        }

        .ai-container {
            margin: clamp(30px, 5vw, 50px) auto;
            max-width: min(1200px, 90vw);
            z-index: 10;
            position: relative;
            text-align: center;
            padding: clamp(1.5rem, 3vw, 2rem);
            background: rgba(10, 10, 22, 0.7);
            border-radius: min(20px, 2vw);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(100, 200, 255, 0.2);
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.1),
                inset 0 -1px 0 rgba(0, 0, 0, 0.3),
                0 4px 20px rgba(0, 0, 0, 0.3);
            background-image:
                linear-gradient(135deg,
                    rgba(100, 200, 255, 0.05) 0%,
                    rgba(10, 10, 22, 0.7) 50%,
                    rgba(100, 200, 255, 0.05) 100%);
            overflow: hidden;
        }

        .ai-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(to right,
                    transparent,
                    rgba(255, 255, 255, 0.05),
                    transparent);
            transform: skewX(-15deg);
            transition: left 0.5s ease;
        }

        .ai-container:hover::before {
            left: 100%;
        }

        .ai-automation h2 {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            margin-bottom: clamp(15px, 2vw, 20px);
            line-height: 1.2;
        }

        .ai-automation p {
            font-size: clamp(1rem, 2vw, 1.2rem);
            max-width: min(800px, 90vw);
            margin: 0 auto clamp(25px, 4vw, 40px);
            line-height: 1.5;
        }

        .ai-features {
            display: flex;
            justify-content: center;
            gap: clamp(20px, 4vw, 50px);
            flex-wrap: wrap;
            margin-top: clamp(30px, 5vw, 50px);
        }

        .ai-feature {
            max-width: min(300px, 90vw);
            flex: 1 1 min(300px, 100%);
            padding: 1rem;
        }

        .ai-feature i {
            font-size: clamp(2.5rem, 6vw, 3.5rem);
            margin-bottom: clamp(15px, 2vw, 20px);
            color: var(--light-gray);
            transition: transform 0.3s ease-in-out;
        }

        .ai-feature i:hover {
            transform: scale(1.2);
        }

        .ai-feature h3 {
            font-size: clamp(1.2rem, 2.5vw, 1.5rem);
            margin-bottom: clamp(10px, 1.5vw, 15px);
        }

        .ai-feature p {
            font-size: clamp(0.9rem, 1.8vw, 1.1rem);
            line-height: 1.4;
        }

        .ai-learn-more-btn {
            background: linear-gradient(to right,
                    transparent,
                    rgba(255, 255, 255, 0.05),
                    transparent);
            color: var(--white);
            border: 1px solid rgba(100, 200, 255, 0.4);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
        }

        .ai-learn-more-btn:hover {
            background: linear-gradient(to right,
                    transparent,
                    rgba(255, 255, 255, 0.05),
                    transparent);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        #ai-modal-content h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: var(--white);
            text-align: center;
            font-weight: 600;
        }

        #ai-modal-content p {
            font-size: 1.1rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 1rem;
            text-align: left;
        }

        #ai-modal-content {
            color: var(--white);
            line-height: 1.6;
        }

        .ai-feature-details {
            display: none;
        }

        .ai-feature-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(5, 10, 25, 0.75);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1002;
            backdrop-filter: blur(5px);
            animation: fadeInOverlay 0.25s ease-in;
        }

        .ai-feature-modal {
            background: linear-gradient(145deg, var(--primary-dark) 60%, var(--primary-light) 140%);
            border-radius: 10px;
            width: 100%;
            max-width: min(600px, 90vw);
            max-height: min(80vh, 600px);
            padding: 2rem 2.5rem;
            position: relative;
            overflow-y: auto;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.15);
            z-index: 1003;
            animation: fadeInModal 0.3s ease-out, scaleUp 0.3s ease-out;
            backdrop-filter: blur(15px);
            color: var(--white);
            overflow: hidden;
            /* Prevent scrollbar from escaping corners */
            overflow-y: auto;
        }

        @keyframes fadeInModal {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes scaleUp {
            from {
                transform: scale(0.96);
            }

            to {
                transform: scale(1);
            }
        }

        @keyframes fadeInOverlay {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        .ai-feature-modal::-webkit-scrollbar {
            width: 8px;
        }

        .ai-feature-modal::-webkit-scrollbar-thumb {
            background-color: rgba(255, 255, 255, 0.15);
            border-radius: 10px;
        }

        .ai-feature-modal::-webkit-scrollbar-thumb:hover {
            background-color: rgba(255, 255, 255, 0.3);
        }

        .ai-modal-close-btn {
            position: fixed;
            top: 7%;
            right: 15px;
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: background 0.3s ease;
        }

        .ai-modal-close-btn:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .ai-feature-overlay.ai-active {
            display: flex;
            position: fixed;
            overflow: hidden;
        }

        body:has(.ai-feature-overlay.ai-active) {
            overflow: hidden;
        }

        body.ai-modal-open {
            overflow: hidden;
            height: 100vh;
        }

        #neural-connections {
            background: linear-gradient(135deg, #0A144A 0%, #3C4A8A 100%);
        }

        .neural-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        /* About Section */
        #about-anchor {
            position: relative;
            top: 100px;
        }

        .about {
            padding: 100px 0;
            background-color: var(--light-gray);
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .about-container {
            max-width: 1200px;
            width: 90%;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Title */
        .about-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .about-title h2 {
            font-size: clamp(2rem, 3.5vw, 2.8rem);
            color: var(--primary-dark);
            font-weight: 700;
        }

        /* Company Intro */
        .about-company-intro {
            max-width: 900px;
            margin: 0 auto 80px;
            text-align: center;
        }

        .about-intro-text {
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 25px;
            font-size: 1.05rem;
        }

        .about-intro-text strong {
            color: var(--primary-dark);
        }

        .about-intro-btn {
            display: inline-block;
            background-color: var(--primary-light);
            color: var(--white);
            padding: 14px 32px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .about-intro-btn:hover {
            background-color: transparent;
            color: var(--primary-light);
            border: 2px solid var(--primary-light);
        }

        /* ============================= */
        /* Core Specializations - BOX */
        /* ============================= */

        .about-core-wrapper {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 14px;
            padding: 60px 60px;
            margin-bottom: 80px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(10, 20, 74, 0.1);
        }

        /* Bigger, colored heading */
        .about-core-heading {
            text-align: center;
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--primary-dark);
            margin-bottom: 40px;
        }

        /* Pillars List */
        .about-pillars-list {
            list-style: disc;
            padding-left: 20px;
            color: var(--text-light);
        }

        .about-pillars-list li {
            margin-bottom: 30px;
            line-height: 1.7;
            font-size: 1.02rem;
        }

        .about-pillars-list strong {
            color: var(--primary-dark);
            font-size: 1.08rem;
        }

        .about-additional-services {
            max-width: 1200px;
            text-align: center;
        }

        .about-services-text {
            color: var(--text-light);
            line-height: 1.6;
            font-size: 1.05rem;
        }

        @media (max-width: 1024px) {
            .about-core-wrapper {
                padding: 50px 40px;
            }
        }

        @media (max-width: 768px) {
            .about {
                padding: 60px 0;
            }

            .about-core-wrapper {
                padding: 40px 30px;
            }

            .about-core-heading {
                font-size: 1.25rem;
            }
        }

        @media (max-width: 576px) {
            .about {
                padding: 50px 0;
            }

            .about-core-wrapper {
                padding: 35px 25px;
            }

            .about-core-heading {
                font-size: 1.15rem;
            }

            .about-intro-btn {
                width: 100%;
                text-align: center;
            }
        }



        /* Contact Section */
        #contact-anchor {
            position: relative;
            top: 90px;
        }

        .contact-section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .contact-section-title h2 {
            font-size: 2rem;
            color: #1a3a5f;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .contact-section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: #2d5d8c;
            border-radius: 2px;
        }

        .contact-section-title p {
            font-size: 1rem;
            color: #6c757d;
            max-width: 800px;
            margin: 25px auto 0;
        }

        .contact {
            padding: 130px 0;
        }

        .contact-container {
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
        }

        .contact-content {
            display: flex;
            gap: 50px;
            justify-content: space-between;
            align-items: stretch;
        }

        .contact-info {
            flex: 1;
            display: flex;
            justify-content: flex-start;
        }

        .contact-details {
            margin-top: 30px;
            background-color: var(--light-gray);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            width: 100%;
        }

        .contact-items {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            padding: 15px;
            background-color: var(--white);
            border-radius: 8px;
            transition: transform 0.3s, box-shadow 0.3s;
            margin-bottom: 0;
        }

        .contact-item a {
            text-decoration: none;
            color: inherit;
        }

        .contact-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }

        .contact-item i {
            font-size: 1.5rem;
            color: var(--primary-light);
            margin-right: 15px;
            width: 30px;
            text-align: center;
        }

        .contact-item span {
            color: var(--text-dark);
            font-weight: 500;
        }

        /* Footer */
        footer {
            background-color: var(--primary-dark);
            color: var(--white);
            padding: 70px 0 20px;
        }

        .footer-container {
            max-width: 80%;
            margin: 0% auto;
            padding: 0 20px;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-column {
            flex: 1;
            min-width: 200px;
        }

        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
            transition: transform 0.3s ease-in-out;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 2px;
            background-color: var(--primary-light);
            bottom: 0;
            left: 0;
            transition: transform 0.3s ease-in-out;
        }

        .footer-column h3:hover {
            transform: translateY(-5px);
        }

        .footer-column h3:hover::after {
            transform: translateY(5px);
        }


        .footer-column h3 span.force {
            color: #5a92d7;
        }

        .footer-links,
        .footer-links-contact {
            list-style: none;
        }

        .footer-links li,
        .footer-links-contact li {
            margin-bottom: 10px;
        }

        .footer-links a,
        .footer-links-contact a {
            position: relative;
            color: var(--light-gray);
            text-decoration: none;
            transition: color 0.3s ease, transform 0.3s ease, padding-left 0.3s ease;
            display: inline-block;
            padding-left: 0;
        }

        .footer-links a::before,
        .footer-links-contact a::before {
            content: '▶';
            position: absolute;
            left: -20px;
            opacity: 0;
            transition: all 0.3s ease;
            color: var(--white);
        }

        .footer-links-contact a::before {
            content: '';
        }

        .footer-links a::after,
        .footer-links-contact a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 0;
            height: 2px;
            background-color: var(--white);
            transition: width 0.3s ease;
        }

        .footer-links a:hover,
        .footer-links-contact a:hover {
            color: var(--white);
            transform: scale(1.05);
            padding-left: 10px;
        }

        .footer-links a:hover::before,
        .footer-links-contact a:hover::before {
            opacity: 1;
            left: -15px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--white);
            transition: background-color 0.3s, transform 0.6s ease;
        }

        .social-links a:hover {
            transform: scale(1.1);
            background-color: var(--primary-light);
        }

        .copyright {
            color: white;
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: var(--light-gray);
        }

        .copyright a {
            color: var(--light-gray);
            text-decoration: none;
        }

        .copyright a:hover {
            text-decoration: underline;
        }

        .footer-column.stagger-item {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .footer-column.stagger-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        #ai-anchor {
            position: relative;
            top: clamp(50px, 8vw, 100px);
        }

        /* Responsive Styles */
        @media (max-width: 1024px) {
            .nav-container {
                text-align: center;
                padding: 0 30px;
            }

            .nav-links li {
                margin-left: 35px;
            }

            .company-name {
                font-size: 1.3rem;
            }
        }

        @media (max-width: 992px) {
            .foucson-card {
                flex: 0 0 calc(50% - 15px);
            }

            .foucson-slider {
                padding: 0 50px;
            }

            .about-content,
            .contact-content {
                flex-direction: column;
            }

            .about-stats {
                margin-top: 40px;
            }

            .tagline-gradient-text {
                font-size: 1.9rem;
            }
        }

        @media (max-width: 768px) {
            .arc-container-2 {
                margin-top: -0.1px;
                height: 50px;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 105%;
                left: -1%;
                width: 100%;
                background: white;
                flex-direction: column;
                padding: clamp(20px, 5vw, 30px);
                border-radius: clamp(10px, 2vw, 20px);
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                border: 1px solid rgba(0, 0, 0, 0.1);
                border-top: none;
                gap: clamp(15px, 3vw, 20px);
            }

            .nav-links a:hover {
                color: inherit;
            }

            .nav-links a:hover::after {
                width: 0;
            }

            .nav-links.active {
                margin-left: 50%;
                width: 50%;
                display: flex;
            }

            .nav-links li {
                margin-left: 0;
                text-align: center;
            }

            .nav-links a {
                font-size: clamp(1rem, 4vw, 1.2rem);
                padding: clamp(8px, 2vw, 12px) 0;
                display: block;
            }

            .logo {
                gap: 8px;
            }

            .logo img {
                height: clamp(25px, 6vw, 35px);
            }

            .company-name {
                font-size: clamp(1.1rem, 4vw, 1.4rem);
            }

            .mobile-menu {
                display: block;
            }

            header {
                width: 95%;
                top: clamp(5px, 2vw, 8px);
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .ai-features {
                flex-direction: column;
                align-items: center;
            }

            .staffing-cards-grid {
                grid-template-columns: 1fr;
            }

            .staffing-section-title h2 {
                font-size: 2rem;
            }

            .modal-header,
            .modal-body {
                padding: 20px;
            }

            .modal-footer {
                padding: 15px 20px;
            }

            .foucson-card {
                flex: 0 0 100%;
            }

            .foucson-slider {
                padding: 0 40px;
            }

            .slider-nav {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }

            .tagline-gradient-text {
                flex-direction: column;
                gap: clamp(0.25rem, 1.5vw, 0.5rem);
            }

            .tagline-gradient-text-dot {
                display: none;
            }

            .focus-carousel-track {
                display: flex;
                justify-content: center;
                align-items: center;
                width: 100%;
                height: 100%;
            }

            .focus-carousel-container {
                width: 100%;
                height: clamp(250px, 50vh, 400px);
                justify-content: center;
                position: relative;
                overflow: hidden;
            }

            .focus-card {
                width: 75vw;
                height: 40vh;
                max-width: 300px;
                opacity: 1 !important;
                position: absolute;
                left: 50%;
                transform: translateX(-50%) scale(1) !important;
            }


            .focus-card.left-2,
            .focus-card.left-1,
            .focus-card.right-1,
            .focus-card.right-2 {
                display: none;
            }

            .focus-card.left-2,
            .focus-card.left-1,
            .focus-card.right-1,
            .focus-card.right-2 {
                transform: translateX(0) scale(1) translateZ(0);
                opacity: 0;
            }

            .contact {
                padding: 80px 0;
            }

            .contact-container {
                padding: 0 15px;
                max-width: 100%;
            }

            .contact-section-title {
                margin-bottom: 40px;
            }

            .contact-section-title h2 {
                font-size: 1.75rem;
            }

            .contact-section-title p {
                font-size: 0.9rem;
                padding: 0 10px;
            }

            .contact-details {
                padding: 30px 20px;
                margin-top: 20px;
            }

            .contact-items {
                gap: 15px;
            }

            .contact-item {
                padding: 12px;
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }

            .contact-item i {
                margin-right: 0;
                font-size: 1.25rem;
            }

            .contact-item span {
                font-size: 0.9rem;
                word-break: break-word;
            }
        }

        @media (max-width: 576px) {
            .hero {
                padding: 150px 0 80px;
            }

            .hero h1 {
                font-size: 1.6rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .staffing,
            .ai-automation,
            .about,
            .contact {
                padding: 70px 0;
            }

            .tagline-gradient-text {
                margin-top: 1rem;
                font-size: 2.5rem;
            }

            .tagline-gradient-text-dot {
                display: none;
            }

            .foucson {
                padding: 70px 0;
            }

            .foucson-slider {
                padding: 0 30px;
            }

            .foucson-card {
                padding: 25px 20px;
            }

            .foucson-icon {
                font-size: 3rem;
            }

            .foucson-image {
                height: 150px;
            }
        }


        /* Responsive adjustments */
        @media (max-width: 480px) {
            header {
                width: 90%;
                padding: 0 10px;
            }

            .logo {
                gap: 6px;
            }

            .company-name {
                font-size: clamp(1rem, 4.5vw, 1.3rem);
            }

            .nav-container {
                padding: 0 clamp(8px, 3vw, 12px);
            }

            .navbar {
                padding: clamp(8px, 3vw, 15px) 0;
            }

            .logo img {
                height: clamp(25px, 6vw, 35px);
            }

            .container {
                padding: 0 15px;
            }

            .focus-carousel-container {
                height: clamp(220px, 40vh, 350px);
            }

            .focus-card {
                width: 90vw;
                height: 40vh;
                max-width: 280px;
            }

            .focus-nav-arrow {
                width: clamp(25px, 7vw, 30px);
                height: clamp(25px, 7vw, 30px);
            }

            .focus-card.center {
                transform: scale(1) translateZ(0);
            }

            .staffing-card {
                width: 80%;
            }

            .contact {
                padding: 60px 0;
            }

            .contact-section-title h2 {
                font-size: 1.5rem;
            }

            .contact-section-title p {
                font-size: 0.85rem;
            }

            .contact-details {
                padding: 20px 15px;
            }

            .contact-item {
                padding: 10px;
            }

            .contact-item span {
                font-size: 0.85rem;
            }

            .contact-item i {
                font-size: 1.1rem;
            }
        }

        /* Animations */
        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes modalFadeIn {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Fade in animation */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 1.5s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Fade Out animation */
        .fade-out {
            opacity: 0;
            transform: translateY(-10px);
            transition: opacity 0.8s ease, transform 1s ease;
        }

        .fade-out.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Slide in from left */
        .slide-in-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: opacity 0.8s ease, transform 1.5s ease;
        }

        .slide-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        /* Slide in from right */
        .slide-in-right {
            opacity: 0;
            transform: translateX(50px);
            transition: opacity 0.8s ease, transform 1.5s ease;
        }

        .slide-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        /* Scale animation */
        .scale-in {
            opacity: 0;
            transform: scale(0.8);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .scale-in.visible {
            opacity: 1;
            transform: scale(1);
        }

        /* Bounce animation */
        .bounce-in {
            opacity: 0;
            transform: scale(0.3);
            transition: opacity 0.5s ease, transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .bounce-in.visible {
            opacity: 1;
            transform: scale(1);
        }

        /* Staggered animation for lists */
        .stagger-item {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease, transform 1s ease;
        }

        .stagger-item.visible {
            opacity: 1;
            transform: translateY(0);
        }