        :root {
            --transition-speed: 0.3s;
            /* CloudOne Blue Color Palette */
            --bg-primary: #F8FAFC;
            --bg-secondary: #FFFFFF;
            --bg-tertiary: #EEF2F6;
            --bg-card: rgba(13, 71, 158, 0.02);
            --bg-glass: rgba(255, 255, 255, 0.9);
            --border-color: rgba(13, 71, 158, 0.1);
            --text-primary: #0F172A;
            --text-secondary: rgba(15, 23, 42, 0.7);
            --text-tertiary: rgba(15, 23, 42, 0.5);
            --accent: #0D479E;
            --accent-secondary: #3B82F6;
            --accent-glow: rgba(13, 71, 158, 0.25);
            --gradient-1: linear-gradient(135deg, #0D479E 0%, #3B82F6 50%, #60A5FA 100%);
            --gradient-2: linear-gradient(135deg, #3B82F6 0%, #0D479E 100%);
            --shadow-glow: 0 0 60px rgba(13, 71, 158, 0.15);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
            transition: background var(--transition-speed), color var(--transition-speed);
            overflow-x: hidden;
            /* Prevent horizontal scroll */
            position: relative;
            width: 100%;
        }

        /* Animated Background */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }

        /* Sectors Section */
        .sectors {
            padding: 5rem 0;
            position: relative;
            background: var(--bg-primary);
            opacity: 1 !important;
            /* Force visibility */
            transform: none !important;
            /* Force visibility */
        }

        .sectors-unified-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 1rem;
            margin-bottom: 2rem;
        }

        .sectors-nav {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
            /* Tighter gap */
            margin-bottom: 4rem;
        }

        .sectors-nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.75rem;
            padding: 1.25rem 1rem;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.5);
            /* Glass feel */
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.6);
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            color: var(--text-primary);
            min-width: 110px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
        }

        .sectors-nav-item.active,
        .sectors-nav-item:hover {
            border-color: var(--accent);
            background: #fff;
            transform: translateY(-5px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
            /* Better shadow */
        }

        .sectors-nav-item img {
            width: 32px;
            /* Slightly smaller icon for balance */
            height: 32px;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

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

        .sectors-nav-item span {
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: capitalize;
            /* Cleaner than uppercase */
            text-align: center;
            letter-spacing: -0.01em;
        }

        .sectors-box {
            display: none;
        }

        .sectors-box.active {
            display: contents;
        }

        .sectors-title {
            text-align: center;
            margin-bottom: 2rem;
            font-size: 2rem;
            font-weight: 700;
            display: none;
        }

        .sectors-grid {
            display: contents;
        }

        .sector-card {
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.8);
            border-radius: 20px;
            padding: 2.5rem 2rem;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            height: 100%;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
        }

        /* Animate cards when they appear */
        .sectors-box.active .sector-card {
            animation: fadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) backwards;
        }

        .sector-card:hover {
            transform: translateY(-8px);
            background: #fff;
            box-shadow: 0 20px 30px -4px rgba(13, 71, 158, 0.12);
            /* Colored shadow */
            border-color: rgba(13, 71, 158, 0.1);
        }

        .sector-logo {
            height: 50px;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
        }

        .sector-logo img {
            max-height: 100%;
            max-width: 100%;
            object-fit: contain;
            object-position: left;
            transition: transform 0.3s ease;
        }

        .sector-card:hover .sector-logo img {
            transform: scale(1.05);
            /* Subtle zoom */
        }

        .sector-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            letter-spacing: -0.02em;
        }

        .sector-card p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            margin-bottom: 2rem;
            flex-grow: 1;
            line-height: 1.7;
        }

        .sector-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--accent);
            font-weight: 600;
            font-size: 0.9rem;
            text-decoration: none;
            margin-top: auto;
            transition: gap 0.3s ease;
        }

        .sector-link:hover {
            gap: 0.75rem;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .bg-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.5;
            animation: float 20s ease-in-out infinite;
        }

        .bg-orb-1 {
            width: 600px;
            height: 600px;
            background: var(--accent);
            top: -200px;
            right: -200px;
            opacity: 0.15;
        }

        .bg-orb-2 {
            width: 400px;
            height: 400px;
            background: var(--accent-secondary);
            bottom: 20%;
            left: -100px;
            opacity: 0.1;
            animation-delay: -5s;
        }

        .bg-orb-3 {
            width: 300px;
            height: 300px;
            background: var(--accent);
            top: 50%;
            right: 10%;
            opacity: 0.08;
            animation-delay: -10s;
        }

        @keyframes float {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
            }

            25% {
                transform: translate(30px, -30px) scale(1.05);
            }

            50% {
                transform: translate(-20px, 20px) scale(0.95);
            }

            75% {
                transform: translate(20px, 10px) scale(1.02);
            }
        }

        /* Grid Background */
        .grid-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                linear-gradient(var(--border-color) 1px, transparent 1px),
                linear-gradient(90deg, var(--border-color) 1px, transparent 1px);
            background-size: 60px 60px;
            opacity: 0.3;
            pointer-events: none;
            z-index: 0;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1rem 2rem;
            backdrop-filter: blur(20px);
            background: var(--bg-glass);
            border-bottom: 1px solid var(--border-color);
            transition: all var(--transition-speed);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo-icon {
            width: 36px;
            height: 36px;
            background: var(--gradient-1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-icon svg {
            width: 20px;
            height: 20px;
            fill: white;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: color var(--transition-speed);
            position: relative;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .nav-links a svg {
            opacity: 0.7;
            transition: opacity var(--transition-speed), transform var(--transition-speed);
        }

        .nav-links a:hover svg {
            opacity: 1;
            transform: scale(1.1);
        }

        .nav-links a:hover {
            color: var(--text-primary);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-1);
            transition: width var(--transition-speed);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
        }

        .mobile-menu-btn span {
            width: 24px;
            height: 2px;
            background: var(--text-primary);
            transition: all var(--transition-speed);
        }

        /* Buttons */
        .btn {
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all var(--transition-speed);
            border: none;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-primary {
            background: var(--gradient-1);
            color: white;
            box-shadow: 0 4px 20px var(--accent-glow);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 30px var(--accent-glow);
        }

        .btn-secondary {
            background: var(--bg-glass);
            color: var(--text-primary);
            border: 1px solid var(--border-color);
            backdrop-filter: blur(10px);
        }

        .btn-secondary:hover {
            background: var(--bg-tertiary);
            border-color: var(--accent);
        }

        /* Sections */
        section {
            position: relative;
            z-index: 1;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 120px;
            padding-bottom: 4rem;
            position: relative;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-text h1 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 4rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        .hero-text h1 span {
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-text p {
            font-size: 1.25rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            max-width: 500px;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .hero-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 500px;
        }

        .hero-graphic {
            width: 500px;
            height: 500px;
            position: relative;
            margin: 0 auto;
            max-width: 100%;
            /* Ensure responsiveness */
        }

        .hero-ring {
            position: absolute;
            border: 1px solid var(--border-color);
            border-radius: 50%;
            animation: rotate 30s linear infinite;
        }

        .hero-ring-1 {
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
        }

        .hero-ring-2 {
            width: 75%;
            height: 75%;
            top: 12.5%;
            left: 12.5%;
            animation-direction: reverse;
            animation-duration: 25s;
        }

        .hero-ring-3 {
            width: 50%;
            height: 50%;
            top: 25%;
            left: 25%;
            animation-duration: 20s;
        }

        .hero-center {
            position: absolute;
            top: 40%;
            left: 40%;
            transform: translate(-50%, -50%);
            width: 120px;
            height: 120px;
            background: var(--gradient-1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-glow);
        }

        .hero-center svg {
            width: 50px;
            height: 50px;
            fill: white;
        }

        .hero-dot {
            position: absolute;
            width: 12px;
            height: 12px;
            background: var(--accent);
            border-radius: 50%;
            box-shadow: 0 0 20px var(--accent-glow);
        }

        .hero-dot-1 {
            top: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        .hero-dot-2 {
            top: 50%;
            right: 0;
            transform: translateY(-50%);
        }

        .hero-dot-3 {
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        .hero-dot-4 {
            top: 50%;
            left: 0;
            transform: translateY(-50%);
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        /* Page Load Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-40px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-40px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(40px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(100px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
                box-shadow: 0 0 0 0 var(--accent-glow);
            }

            50% {
                transform: scale(1.05);
                box-shadow: 0 0 30px 10px var(--accent-glow);
            }
        }

        @keyframes shimmer {
            0% {
                background-position: -200% center;
            }

            100% {
                background-position: 200% center;
            }
        }

        @keyframes borderGlow {

            0%,
            100% {
                border-color: var(--border-color);
                box-shadow: none;
            }

            50% {
                border-color: var(--accent);
                box-shadow: 0 0 20px var(--accent-glow);
            }
        }

        @keyframes textReveal {
            from {
                clip-path: inset(0 100% 0 0);
            }

            to {
                clip-path: inset(0 0 0 0);
            }
        }

        @keyframes dotPulse {

            0%,
            100% {
                transform: translateX(-50%) scale(1);
                opacity: 1;
            }

            50% {
                transform: translateX(-50%) scale(1.5);
                opacity: 0.5;
            }
        }

        @keyframes floatY {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-20px);
            }
        }

        @keyframes ripple {
            0% {
                transform: scale(1);
                opacity: 1;
            }

            100% {
                transform: scale(1.5);
                opacity: 0;
            }
        }

        /* Animation Classes */
        .animate-fadeInUp {
            animation: fadeInUp 0.8s ease forwards;
        }

        .animate-fadeInDown {
            animation: fadeInDown 0.8s ease forwards;
        }

        .animate-fadeInLeft {
            animation: fadeInLeft 0.8s ease forwards;
        }

        .animate-fadeInRight {
            animation: fadeInRight 0.8s ease forwards;
        }

        .animate-scaleIn {
            animation: scaleIn 0.8s ease forwards;
        }

        .animate-slideInUp {
            animation: slideInUp 1s ease forwards;
        }

        /* Scroll Reveal Classes */
        .reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .reveal-left.active {
            opacity: 1;
            transform: translateX(0);
        }

        .reveal-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .reveal-right.active {
            opacity: 1;
            transform: translateX(0);
        }

        .reveal-scale {
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .reveal-scale.active {
            opacity: 1;
            transform: scale(1);
        }

        @media (max-width: 768px) {

            .reveal,
            .reveal-left,
            .reveal-right,
            .reveal-scale {
                transform: none !important;
                opacity: 1 !important;
                /* Force visibility immediately */
                transition: none !important;
                /* Remove transition to avoid stuck states */
                visibility: visible !important;
            }

            /* Ensure active state doesn't conflict but purely redundant assurance */
            .reveal.active,
            .reveal-left.active,
            .reveal-right.active,
            .reveal-scale.active {
                opacity: 1 !important;
                transform: none !important;
            }
        }

        /* Stagger Animation Delays */
        .stagger-1 {
            transition-delay: 0.1s;
        }

        .stagger-2 {
            transition-delay: 0.2s;
        }

        .stagger-3 {
            transition-delay: 0.3s;
        }

        .stagger-4 {
            transition-delay: 0.4s;
        }

        .stagger-5 {
            transition-delay: 0.5s;
        }

        .stagger-6 {
            transition-delay: 0.6s;
        }

        /* Hero Animations */
        .hero-text h1 {
            overflow: hidden;
        }

        .hero-text h1 .word {
            display: inline-block;
            opacity: 0;
            transform: translateY(100%);
            animation: wordReveal 0.6s ease forwards;
        }

        @keyframes wordReveal {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-dot {
            animation: dotPulse 2s ease-in-out infinite;
        }

        .hero-dot-1 {
            animation-delay: 0s;
        }

        .hero-dot-2 {
            animation-delay: 0.5s;
        }

        .hero-dot-3 {
            animation-delay: 1s;
        }

        .hero-dot-4 {
            animation-delay: 1.5s;
        }

        .hero-center {
            animation: pulse 3s ease-in-out infinite;
        }

        /* Card Hover Animations */
        .portfolio-card,
        .service-card,
        .team-card {
            position: relative;
            overflow: hidden;
        }

        .portfolio-card::before,
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg,
                    transparent,
                    rgba(255, 255, 255, 0.1),
                    transparent);
            transition: left 0.5s ease;
        }

        .portfolio-card:hover::before,
        .service-card:hover::before {
            left: 100%;
        }

        /* Button Ripple Effect */
        .btn {
            position: relative;
            overflow: hidden;
        }

        .btn::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .btn:active::after {
            width: 300px;
            height: 300px;
        }

        /* Logo Animation */
        .logo-icon {
            transition: transform 0.3s ease;
        }

        .logo:hover .logo-icon {
            transform: rotate(360deg);
        }

        /* Nav Link Underline Animation */
        .nav-links a::after {
            transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1), left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            left: 50%;
            transform: translateX(-50%);
        }

        .nav-links a:hover::after {
            width: 100%;
            left: 0;
            transform: translateX(0);
        }

        /* Floating Animation for About Card */
        .about-floating-card {
            animation: floatY 4s ease-in-out infinite;
        }

        /* Input Focus Animation */
        .form-group input,
        .form-group textarea,
        .form-group select {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            transform: translateY(-2px);
        }

        /* Section Header Animation */
        .section-tag {
            position: relative;
            overflow: hidden;
        }

        .section-tag::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg,
                    transparent,
                    rgba(99, 102, 241, 0.3),
                    transparent);
            animation: shimmer 3s infinite;
        }

        /* Team Avatar Hover */
        .team-avatar {
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .team-card:hover .team-avatar {
            transform: scale(1.05) rotate(5deg);
        }

        /* Contact Item Hover */
        .contact-item {
            transition: transform 0.3s ease, background 0.3s ease;
            padding: 1rem;
            border-radius: 12px;
        }

        .contact-item:hover {
            transform: translateX(10px);
            background: var(--bg-glass);
        }

        /* Footer Social Hover */
        .footer-social a,
        .team-social a {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .footer-social a:hover,
        .team-social a:hover {
            transform: translateY(-5px) rotate(5deg);
        }

        /* Stat Counter Animation */
        .stat-number {
            transition: transform 0.3s ease;
        }

        .stat-item:hover .stat-number {
            transform: scale(1.1);
        }

        /* Portfolio Logo Hover */
        .portfolio-logo {
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
        }

        .portfolio-card:hover .portfolio-logo {
            transform: rotateY(180deg);
            box-shadow: 0 10px 30px var(--accent-glow);
        }

        /* Service Icon Hover */
        .service-icon {
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .service-card:hover .service-icon {
            transform: translateY(-10px) scale(1.1);
        }

        /* Page Transition */
        .page-transition {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--bg-primary);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

        .page-transition.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .page-transition .loader {
            width: 60px;
            height: 60px;
            border: 3px solid var(--border-color);
            border-top-color: var(--accent);
            border-radius: 50%;
            animation: rotate 1s linear infinite;
        }

        /* Parallax Effect Classes */
        .parallax {
            transition: transform 0.1s ease-out;
        }

        /* Cursor Glow Effect */
        .cursor-glow {
            position: fixed;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
            opacity: 0.5;
            transform: translate(-50%, -50%);
            transition: opacity 0.3s ease;
        }

        /* Mobile Menu Animation */
        .mobile-menu {
            transition: opacity 0.4s ease, visibility 0.4s ease;
        }

        .mobile-menu-links li {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s ease;
        }

        .mobile-menu.active .mobile-menu-links li {
            opacity: 1;
            transform: translateY(0);
        }

        .mobile-menu.active .mobile-menu-links li:nth-child(1) {
            transition-delay: 0.1s;
        }

        .mobile-menu.active .mobile-menu-links li:nth-child(2) {
            transition-delay: 0.15s;
        }

        .mobile-menu.active .mobile-menu-links li:nth-child(3) {
            transition-delay: 0.2s;
        }

        .mobile-menu.active .mobile-menu-links li:nth-child(4) {
            transition-delay: 0.25s;
        }

        .mobile-menu.active .mobile-menu-links li:nth-child(5) {
            transition-delay: 0.3s;
        }

        .mobile-menu.active .mobile-menu-links li:nth-child(6) {
            transition-delay: 0.35s;
        }

        .mobile-menu.active .mobile-menu-links li:nth-child(7) {
            transition-delay: 0.4s;
        }

        /* Hamburger Animation */
        .mobile-menu-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        /* Stats */
        .stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-top: 4rem;
        }

        .stat-item {
            text-align: center;
            padding: 1.5rem;
            background: var(--bg-glass);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }

        .stat-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
        }

        .stat-icon svg {
            width: 24px;
            height: 24px;
            stroke: white;
            fill: none;
        }

        .stat-number {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-top: 0.25rem;
        }

        /* Hero Badge */
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: var(--bg-glass);
            border: 1px solid var(--border-color);
            border-radius: 50px;
            font-size: 0.85rem;
            color: var(--accent);
            margin-bottom: 1.5rem;
            animation: fadeInDown 0.8s ease forwards;
        }

        .hero-badge svg {
            color: var(--accent);
        }

        /* Hero Clients */
        .hero-clients {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid var(--border-color);
        }

        .hero-clients span {
            font-size: 0.85rem;
            color: var(--text-tertiary);
            display: block;
            margin-bottom: 1rem;
        }

        .client-logos {
            display: flex;
            gap: 1.5rem;
            align-items: center;
            flex-wrap: wrap;
        }

        .client-logo {
            width: 48px;
            height: 48px;
            background: var(--bg-glass);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-tertiary);
            transition: all 0.3s ease;
        }

        .client-logo:hover {
            border-color: var(--accent);
            color: var(--accent);
            transform: translateY(-3px);
        }

        .client-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 8px;
            /* Add padding to prevent logos from touching edges */
        }

        /* Hero Floating Icons */
        .hero-float-icon {
            position: absolute;
            width: 50px;
            height: 50px;
            background: var(--bg-glass);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            backdrop-filter: blur(10px);
            animation: floatY 4s ease-in-out infinite;
        }

        .hero-float-1 {
            top: 10%;
            right: 5%;
            animation-delay: 0s;
        }

        .hero-float-2 {
            bottom: 20%;
            left: 5%;
            animation-delay: -1.5s;
        }

        .hero-float-3 {
            top: 40%;
            right: -5%;
            animation-delay: -3s;
        }

        /* Updated Hero Dots with Icons */
        .hero-dot {
            position: absolute;
            width: 40px;
            height: 40px;
            background: var(--gradient-1);
            border-radius: 50%;
            box-shadow: 0 0 20px var(--accent-glow);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .hero-dot svg {
            width: 18px;
            height: 18px;
        }

        .hero-dot-1 {
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
        }

        .hero-dot-2 {
            top: 50%;
            right: -20px;
            transform: translateY(-50%);
        }

        .hero-dot-3 {
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
        }

        .hero-dot-4 {
            top: 50%;
            left: -20px;
            transform: translateY(-50%);
        }

        /* Section Headers */
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: var(--bg-glass);
            border: 1px solid var(--border-color);
            border-radius: 50px;
            font-size: 0.85rem;
            color: var(--accent);
            margin-bottom: 1rem;
        }

        .section-tag svg {
            flex-shrink: 0;
        }

        .section-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .section-title span {
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-desc {
            color: var(--text-secondary);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        /* About Section */
        .about {
            padding: 5rem 0;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 35% 1fr;
            gap: 4rem;
            align-items: stretch;
            /* Stretch to fill height */
        }

        .about-image {
            position: relative;
        }

        .about-image-main {
            width: 100%;
            height: 500px;
            background: var(--gradient-1);
            border-radius: 24px;
            position: relative;
            overflow: hidden;
        }

        @media (max-width: 768px) {
            .about-image-main {
                height: 280px;
                /* Reduced from 350px */
                width: 100%;
                max-width: 100vw;
                /* Hard limit */
            }

            .about-image {
                width: 100%;
                overflow: hidden;
                /* Contain animations */
            }
        }

        .about-image-main::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .about-floating-card {
            position: absolute;
            background: var(--bg-glass);
            backdrop-filter: blur(20px);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 1.5rem;
        }

        .about-floating-card-1 {
            bottom: -30px;
            right: -30px;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .about-floating-card-1 .icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .about-floating-card-1 .icon svg {
            width: 24px;
            height: 24px;
            fill: white;
        }

        .about-floating-card-1 .value {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
        }

        .about-floating-card-1 .label {
            color: var(--text-secondary);
            font-size: 0.85rem;
        }

        /* Rotating Logos in About Section */
        .about-image-main {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            /* Removed card styling to make it feel bigger/seamless */
            mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
            -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
        }

        .about-marquee-container {
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 2rem;
            transform: rotate(-12deg) scale(1.0);
            /* Standard scale */
            opacity: 0.3;
            /* Faded to keep text in foreground */
            filter: grayscale(100%);
            /* Grayscale to reduce distraction */
            transition: all 0.5s ease;
        }

        .about-marquee-container:hover {
            opacity: 0.8;
            filter: grayscale(0%);
        }

        .about-marquee-row {
            width: 100%;
            overflow: hidden;
            white-space: nowrap;
            display: flex;
            mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
            -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
        }

        .about-marquee-track {
            display: flex;
            gap: 1.5rem;
            animation: marquee-left 20s linear infinite;
        }

        .about-marquee-row.reverse .about-marquee-track {
            animation: marquee-right 20s linear infinite;
        }

        .about-logo-card {
            width: 80px;
            height: 80px;
            flex-shrink: 0;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.5);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            padding: 1rem;
            transition: transform 0.3s ease;
        }

        .about-logo-card:hover {
            transform: scale(1.1);
            background: #fff;
            z-index: 10;
        }

        .about-logo-card img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        @keyframes marquee-left {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        @keyframes marquee-right {
            0% {
                transform: translateX(-50%);
            }

            100% {
                transform: translateX(0);
            }
        }

        .about-content h2 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .about-content h2 span {
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .about-content p {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-top: 2rem;
        }

        .about-feature {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem;
            background: var(--bg-glass);
            border: 1px solid var(--border-color);
            border-radius: 12px;
        }

        .about-feature .icon {
            width: 40px;
            height: 40px;
            background: var(--gradient-1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .about-feature .icon svg {
            width: 20px;
            height: 20px;
        }

        .about-feature span {
            font-weight: 500;
            font-size: 0.95rem;
        }

        /* Portfolio Section */
        .portfolio {
            padding: 5rem 0;
            background: var(--bg-secondary);
        }

        /* Impact Metrics Section */
        .impact-metrics {
            padding: 5rem 0;
            background: var(--bg-secondary);
            position: relative;
            overflow: hidden;
        }

        .impact-metrics::before {
            background: radial-gradient(ellipse at center, var(--accent-glow) 0%, transparent 70%);
        }

        .impact-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .impact-card {
            background: var(--bg-glass);
            border: 1px solid var(--border-color);
            border-radius: 24px;
            padding: 2rem;
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
        }

        .impact-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-1);
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: 0;
        }

        .impact-card::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
            opacity: 0;
            transition: opacity 0.5s ease;
            pointer-events: none;
        }

        .impact-card:hover {
            transform: translateY(-12px) scale(1.02);
            border-color: var(--accent);
            box-shadow:
                0 25px 50px -12px var(--accent-glow),
                0 0 0 1px var(--accent),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        .impact-card:hover::before {
            opacity: 0.05;
        }

        .impact-card:hover::after {
            opacity: 1;
            animation: shimmerCard 2s ease-in-out infinite;
        }

        @keyframes shimmerCard {
            0% {
                transform: translate(-30%, -30%) rotate(0deg);
            }

            100% {
                transform: translate(30%, 30%) rotate(180deg);
            }
        }

        .impact-card>* {
            position: relative;
            z-index: 1;
        }

        .impact-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient-1);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            position: relative;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .impact-icon svg {
            width: 32px;
            height: 32px;
            stroke: white;
            transition: transform 0.5s ease;
        }

        .impact-icon-glow {
            position: absolute;
            inset: -10px;
            background: var(--gradient-1);
            border-radius: 24px;
            opacity: 0;
            filter: blur(20px);
            transition: opacity 0.5s ease;
            z-index: -1;
        }

        .impact-card:hover .impact-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 10px 40px var(--accent-glow);
        }

        .impact-card:hover .impact-icon svg {
            transform: scale(1.1);
        }

        .impact-card:hover .impact-icon-glow {
            opacity: 0.6;
        }

        .impact-number {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
            transition: transform 0.3s ease;
        }

        .impact-card:hover .impact-number {
            transform: scale(1.05);
        }

        .impact-label {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
            color: var(--text-primary);
        }

        .impact-desc {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .impact-progress {
            height: 6px;
            background: var(--bg-tertiary);
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 1.5rem;
        }

        .impact-progress-bar {
            height: 100%;
            background: var(--gradient-1);
            border-radius: 10px;
            width: 0;
            transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .impact-progress-bar::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg,
                    transparent,
                    rgba(255, 255, 255, 0.4),
                    transparent);
            animation: progressShimmer 2s infinite;
        }

        @keyframes progressShimmer {
            0% {
                transform: translateX(-100%);
            }

            100% {
                transform: translateX(100%);
            }
        }

        .impact-card:hover .impact-progress-bar {
            box-shadow: 0 0 20px var(--accent-glow);
        }

        .impact-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .impact-trend {
            display: flex;
            align-items: center;
            gap: 0.35rem;
            font-size: 0.85rem;
            font-weight: 600;
            padding: 0.35rem 0.75rem;
            border-radius: 20px;
            transition: all 0.3s ease;
        }

        .impact-trend.positive {
            color: #10b981;
            background: rgba(16, 185, 129, 0.1);
        }

        .impact-card:hover .impact-trend.positive {
            background: rgba(16, 185, 129, 0.2);
            transform: scale(1.05);
        }

        .impact-badge {
            font-size: 0.75rem;
            color: var(--text-tertiary);
            background: var(--bg-tertiary);
            padding: 0.35rem 0.75rem;
            border-radius: 20px;
            transition: all 0.3s ease;
        }

        .impact-card:hover .impact-badge {
            background: var(--accent);
            color: white;
        }

        /* Impact Card Particles on Hover */
        .impact-card .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--accent);
            border-radius: 50%;
            pointer-events: none;
            opacity: 0;
        }

        /* Responsive Impact Grid */
        @media (max-width: 1200px) {
            .impact-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .impact-grid {
                grid-template-columns: 1fr;
            }

            .impact-number {
                font-size: 2.5rem;
            }
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .portfolio-card {
            background: var(--bg-glass);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            padding: 2rem;
            transition: all var(--transition-speed);
            cursor: pointer;
        }

        .portfolio-card:hover {
            transform: translateY(-8px);
            border-color: var(--accent);
            box-shadow: var(--shadow-glow);
        }

        .portfolio-logo {
            width: 60px;
            height: 60px;
            background: var(--gradient-1);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: white;
        }

        .portfolio-card h3 {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
        }

        .portfolio-card .category {
            color: var(--accent);
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .portfolio-card .category svg {
            flex-shrink: 0;
        }

        .portfolio-card p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
        }

        .portfolio-stats {
            display: flex;
            gap: 1.5rem;
        }

        .portfolio-stat {
            text-align: left;
        }

        .portfolio-stat .value {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            font-size: 1.1rem;
        }

        .portfolio-stat .label {
            color: var(--text-tertiary);
            font-size: 0.8rem;
        }

        /* Services Section */
        .services {
            padding: 5rem 0;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .service-card {
            background: var(--bg-glass);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
            transition: all var(--transition-speed);
        }

        .service-card:hover {
            transform: translateY(-8px);
            border-color: var(--accent);
        }

        .looking-for {
            padding: 5rem 0;
            background: var(--bg-primary);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-1);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
        }

        .service-icon svg {
            width: 36px;
            height: 36px;
            fill: white;
        }

        .service-card h3 {
            font-size: 1.25rem;
            margin-bottom: 1rem;
        }

        .service-card p {
            color: var(--text-secondary);
            font-size: 0.95rem;
        }

        /* Team Section */
        .team {
            padding: 8rem 0;
            background: var(--bg-secondary);
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .team-card {
            text-align: center;
        }

        .team-avatar {
            width: 180px;
            height: 180px;
            background: var(--gradient-1);
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            position: relative;
            overflow: hidden;
        }

        .team-avatar::before {
            content: '';
            position: absolute;
            inset: 4px;
            background: var(--bg-secondary);
            border-radius: 50%;
        }

        .team-avatar::after {
            content: '';
            position: absolute;
            inset: 8px;
            background: var(--gradient-1);
            border-radius: 50%;
            opacity: 0.3;
        }

        .team-avatar .initials {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            z-index: 1;
        }

        .team-card h3 {
            font-size: 1.1rem;
            margin-bottom: 0.25rem;
        }

        .team-card .role {
            color: var(--accent);
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 1rem;
        }

        .team-social {
            display: flex;
            justify-content: center;
            gap: 0.75rem;
        }

        .team-social a {
            width: 36px;
            height: 36px;
            background: var(--bg-glass);
            border: 1px solid var(--border-color);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            transition: all var(--transition-speed);
        }

        .team-social a:hover {
            background: var(--gradient-1);
            border-color: transparent;
            color: white;
        }

        .team-social a svg {
            width: 16px;
            height: 16px;
            fill: currentColor;
        }

        /* Contact Section */
        .contact {
            padding: 8rem 0;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .contact-info h2 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .contact-info h2 span {
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .contact-info>p {
            color: var(--text-secondary);
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .contact-item .icon {
            width: 50px;
            height: 50px;
            background: var(--bg-glass);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-item .icon svg {
            width: 22px;
            height: 22px;
            fill: var(--accent);
        }

        .contact-item .label {
            color: var(--text-tertiary);
            font-size: 0.85rem;
        }

        .contact-item .value {
            font-weight: 500;
        }

        .contact-form {
            background: var(--bg-glass);
            border: 1px solid var(--border-color);
            border-radius: 24px;
            padding: 2.5rem;
            backdrop-filter: blur(10px);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 500;
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
        }

        .form-group label svg {
            color: var(--accent);
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 1rem;
            background: var(--bg-tertiary);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            color: var(--text-primary);
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            transition: all var(--transition-speed);
        }

        .form-group input[type="file"]::file-selector-button {
            background: var(--accent);
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            margin-right: 1rem;
            transition: background var(--transition-speed);
        }

        .form-group input[type="file"]::file-selector-button:hover {
            background: var(--accent-secondary);
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px var(--accent-glow);
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .contact-form .btn {
            width: 100%;
            justify-content: center;
            padding: 1rem;
        }

        /* Footer */
        footer {
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-color);
            padding: 4rem 0 2rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-brand .logo {
            margin-bottom: 1rem;
        }

        .footer-brand p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
        }

        .footer-social {
            display: flex;
            gap: 0.75rem;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            background: var(--bg-glass);
            border: 1px solid var(--border-color);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            transition: all var(--transition-speed);
        }

        .footer-social a:hover {
            background: var(--gradient-1);
            border-color: transparent;
            color: white;
        }

        .footer-social a svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }

        .footer-links h4 {
            font-size: 1rem;
            margin-bottom: 1.5rem;
        }

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

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color var(--transition-speed);
        }

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

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid var(--border-color);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-bottom p {
            color: var(--text-tertiary);
            font-size: 0.9rem;
        }

        .footer-bottom-links {
            display: flex;
            gap: 2rem;
        }

        .footer-bottom-links a {
            color: var(--text-tertiary);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color var(--transition-speed);
        }

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

        /* Mobile Responsiveness */
        @media (max-width: 1200px) {
            .hero-text h1 {
                font-size: 3rem;
            }

            .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 992px) {
            .nav-links {
                display: none;
            }

            .mobile-menu-btn {
                display: flex;
            }

            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-text p {
                margin-left: auto;
                margin-right: auto;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-visual {
                order: -1;
                margin-bottom: 2rem;
            }

            .hero-graphic {
                width: 300px;
                height: 300px;
                max-width: 100%;
            }

            .hero-visual {
                min-height: 320px;
            }

            .hero-center {
                width: 80px;
                height: 80px;
            }

            .hero-center svg {
                width: 30px;
                height: 30px;
            }

            .stats {
                grid-template-columns: repeat(2, 1fr);
            }

            .about-grid {
                grid-template-columns: 100%;
                /* Explicit 100% */
                gap: 2rem;
                width: 100%;
                overflow: hidden;
                /* Verify no scroll */
            }

            .about-image {
                order: -1;
                margin-bottom: 2rem;
                width: 100%;
            }

            /* Fix floating card for mobile/tablet */
            .about-floating-card-1 {
                position: static;
                margin-top: 1rem;
                justify-content: center;
                width: 100%;
                background: var(--bg-card);
                border: 1px solid var(--border-color);
            }

            .portfolio-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            nav {
                padding: 1rem;
            }

            .hero {
                padding-top: 140px;
            }

            .hero-text h1 {
                font-size: 2.25rem;
            }

            .hero-text p {
                font-size: 1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .portfolio-grid,
            .services-grid {
                grid-template-columns: 1fr;
            }

            .team-grid {
                grid-template-columns: 1fr;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 1rem;
            }

            .hero-text h1 {
                font-size: 1.875rem;
            }

            .stats {
                grid-template-columns: 1fr;
            }

            .stat-item {
                padding: 1rem;
            }

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

            .about-features {
                grid-template-columns: 1fr;
            }

            .contact-form {
                padding: 1.5rem;
            }
        }

        /* Mobile Menu Overlay */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--bg-primary);
            z-index: 999;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transition: all var(--transition-speed);
        }

        .mobile-menu.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-menu-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 2rem;
            cursor: pointer;
        }

        .mobile-menu-links {
            list-style: none;
            text-align: center;
        }

        .mobile-menu-links li {
            margin: 1.5rem 0;
        }

        .mobile-menu-links a {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--text-primary);
            text-decoration: none;
            transition: color var(--transition-speed);
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .mobile-menu-links a svg {
            color: var(--accent);
        }

        .mobile-menu-links a:hover {
            color: var(--accent);
        }