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

        body {
            background-color: #02070C;
            color: #ffffff;
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 15px 50px;
            background: transparent;
            backdrop-filter: blur(10px);
            transition: transform 0.3s ease, background-color 0.3s ease;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        nav.nav-hidden {
            transform: translateY(-100%);
        }

        nav.nav-scrolled {
            background: rgba(15, 15, 15, 0.3);
            backdrop-filter: blur(15px);
        }


        .logo {
            animation: fadeIn 1s ease-out 0.3s both;
        }

        .logo img {
            height: 35px;
            width: auto;
            object-fit: contain;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            gap: 45px;
        }

        .nav-menu li {
            margin: 0;
        }

        .nav-menu a {
            color: #fff;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-menu a:hover {
            color: #ff6b35;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #ff6b35;
            transition: width 0.3s ease;
        }

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

        /* Dropdown Styles */
        .dropdown {
            position: relative;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            background-color: transparent;
            backdrop-filter: blur(15px);
            min-width: 200px;
            box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.3);
            z-index: 1000;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            top: 100%;
            left: 0;
            padding: 10px 0;
        }

        .dropdown-content::before {
            content: '';
            position: absolute;
            top: -8px;
            left: 50%;
            transform: translateX(-50%);
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-bottom: 8px solid rgba(255, 255, 255, 0.1);
        }

        .dropdown-content a {
            color: #fff !important;
            padding: 12px 20px;
            text-decoration: none;
            display: block;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .dropdown-content a:hover {
            background-color: rgba(255, 107, 53, 0.1);
            color: #ff6b35 !important;
            backdrop-filter: blur(20px);
        }

        .dropdown:hover .dropdown-content {
            display: block;
            animation: fadeInDropdown 0.3s ease-out;
        }

        @keyframes fadeInDropdown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 0 50px;
            position: relative;
            background: #02070C;
            overflow: hidden;
        }

        .hero-content {
            width: 100%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 80vh;
        }
        
        /* New Hero Text Design Styles */
        :root{
            --ai-overlap: 200px;   /* cât de mult urcă AI peste SYNC */
            --gap-under-sync: 2px; /* distanța sub SYNC pentru etichete */
        }

        .desktop1-desktop1 {
            text-align: center;
            position: absolute;
            left: 50%;
            top: 33%;
            transform: translate(-50%, -50%);
            z-index: 10;
            width: 100vw;
        }

        /* WE ARE - Initial hidden state */
        .desktop1-text10 {
            font-size: 32px;
            font-weight: 300;
            text-align: center;
            display: block;
            margin-bottom: -27px; /* distanță mică față de SYNC */
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        /* Wrapper general */
        .sync-wrapper {
            position: relative;
            display: inline-block;
            text-align: center;
        }

        /* SYNC - Initial state above screen with fade */
        .desktop1-text18 {
            font-size: 440px;
            font-weight: 500;
            line-height: 0.9;
            white-space: nowrap;
            display: block;
            transform: translateY(-120vh);
            opacity: 0;
            filter: blur(20px);
            transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1), filter 1.2s cubic-bezier(0.22, 1, 0.36, 1);
        }

        /* Etichetele – sub SYNC - Initial hidden state */
        .desktop1-text17,
        .desktop1-text11 {
            position: absolute;
            top: 100%;
            margin-top: var(--gap-under-sync);
            font-weight: 300;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .desktop1-text17 {
            left: 5px;
            font-size: 38px;
        }

        .desktop1-text11 {
            right: 0;
            font-size: 26px;
            line-height: 1.1;
            text-align: right;
        }

        /* AI cu stroke portocaliu - Initial blurred state with bottom-to-top animation */
        .desktop1-text19 {
            position: absolute;
            left: 49%;
            transform: translateX(-50%) translateY(30px);
            top: calc(100% - var(--ai-overlap));
            font-size: 500px;
            font-weight: 800;
            line-height: 0.9;
            white-space: nowrap;
            z-index: 1;
            color: transparent; /* interior gol */
            -webkit-text-stroke: 15px #D14900; /* stroke portocaliu */
            text-stroke: 15px #D14900;
            filter: blur(8px);
            transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s ease 0.2s;
        }

        /* Animation classes */
        .desktop1-text18.animate {
            transform: translateY(0);
            opacity: 1;
            filter: blur(0px);
        }

        .desktop1-text19.animate {
            transform: translateX(-50%) translateY(0px);
            filter: blur(0px);
        }

        .desktop1-text10.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .desktop1-text17.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .desktop1-text11.animate {
            opacity: 1;
            transform: translateY(0);
        }



        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        

        /* Fade in animation for letters */
        .hero-text .title-line .letter,
        .hero-text .digital-agency-text .letter,
        .about-text .letter,
        .section-header .letter,
        .portfolio-title .letter {
            display: inline-block;
            opacity: 0;
            transform: translateX(-20px);
            animation: fadeInLeft 0.6s ease-out forwards;
        }

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



    



        .arrow-icon {
            position: relative;
            width: 40px;
            height: 40px;
            display: inline-block;
            margin-right: 15px;
            vertical-align: middle;
            border-top: 2px solid #ff6b35;
            border-right: 2px solid #ff6b35;
            border-bottom: 2px solid #ff6b35;
        }

        .arrow-icon::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50%;
            height: 2px;
            background: #ff6b35;
        }

        .arrow-icon::after {
            content: '';
            position: absolute;
            bottom: 8px;
            right: 8px;
            width: 12px;
            height: 12px;
            border-top: 2px solid #ff6b35;
            border-right: 2px solid #ff6b35;
            transform: rotate(45deg);
        }

        /* Typewriter effect for DIGITAL AGENCY */
        .typewriter {
            display: inline-block;
            white-space: nowrap;
        }

        .typewriter .cursor {
            border-right: .05em solid #ff6b35;
            animation: caret 1s steps(1) infinite;
        }
        
        .typewriter .letter {
            animation: typeIn 0.1s ease-out forwards;
        }
        
        @keyframes typeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes caret {
            50% {
                border-color: transparent;
            }
        }
        
        @keyframes logoFloat {
            0%, 100% { 
                transform: translateY(0px) rotate(0deg); 
            }
            25% {
                transform: translateY(-3px) rotate(1deg);
            }
            50% { 
                transform: translateY(-6px) rotate(0deg); 
            }
            75% {
                transform: translateY(-3px) rotate(-1deg);
            }
        }





        /* About Section */
        .about {
            padding: 100px 50px;
            background: linear-gradient(135deg, #02070C 0%, #0a0f14 50%, #02070C 100%);
            position: relative;
            overflow: hidden;
        }


        .about::before {
            content: '';
            position: absolute;
            top: -50%;
            left: 0;
            width: 100%;
            height: 200%;
            background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.04) 0%, transparent 60%);
            animation: aboutGlow 10s ease-in-out infinite;
        }

        @keyframes aboutGlow {
            0%, 100% { 
                transform: scale(0.9) rotate(0deg);
                opacity: 0.5;
            }
            50% { 
                transform: scale(1.1) rotate(180deg);
                opacity: 0.7;
            }
        }

        .about-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 80px;
            align-items: center;
        }

        .about-image {
            opacity: 0;
            transform: translateX(-50px);
        }

        .about-image.animate {
            animation: slideInLeft 1s ease-out forwards;
        }

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

        .about-image img {
            width: 120%;
            transform: scale(1.1);
            opacity: 0.7;
            animation: floating 6s ease-in-out infinite;
        }

        @keyframes floating {
            0%, 100% {
                transform: scale(1.1) translateY(0px);
            }
            50% {
                transform: scale(1.1) translateY(-20px);
            }
        }

        .about-text {
            opacity: 0;
            transform: translateX(50px);
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
        }

        .about-text.animate {
            animation: slideInRight 1s ease-out 0.3s forwards;
        }

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

        .about-text h2 {
            font-size: 2.8rem;
            margin-bottom: 35px;
            color: #fff;
            font-weight: 600;
            line-height: 1.3;
            letter-spacing: -0.01em;
            word-break: keep-all;
            overflow-wrap: break-word;
        }

        /* Hide titles initially before animation */
        #about-title:not(.animated),
        #services-title:not(.animated),
        #industries-title:not(.animated) {
            opacity: 0;
        }
        
        /* Force visibility on mobile only after animation */
        @media (max-width: 768px) {
            #about-title.animated,
            #industries-title.animated {
                opacity: 1 !important;
            }
            
            #about-title:not(.animated),
            #industries-title:not(.animated) {
                opacity: 0 !important;
            }
        }

        .about-text .welcome {
            color: #d14900;
            font-size: 1rem;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .about-description {
            font-size: 1.15rem;
            line-height: 1.8;
            color: #a0a0a0;
            margin-bottom: 45px;
            font-weight: 400;
        }

        .skills {
            margin-top: 40px;
        }

        .skill {
            margin-bottom: 40px;
            opacity: 0;
            transform: translateY(20px);
        }

        .skill-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 3px;
        }

        .skill.animate {
            animation: fadeInUp 0.6s ease-out forwards;
        }

        .skill:nth-child(1) { animation-delay: 0.8s; }
        .skill:nth-child(2) { animation-delay: 0.8s; }
        .skill:nth-child(3) { animation-delay: 0.8s; }

        .skill-name {
            font-weight: 600;
        }

        .skill-percentage {
            color: #cccccc;
            font-weight: bold;
        }

        .skill-bar {
            width: 100%;
            height: 4px;
            background: #333;
            border-radius: 2px;
            margin-top: 0px;
            overflow: hidden;
        }

        .skill-progress {
            height: 100%;
            background: #cccccc;
            border-radius: 2px;
            width: 0;
            transition: width 2s ease-out;
            position: relative;
            overflow: hidden;
        }

        .skill-progress::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            animation: shimmer 2s infinite;
            transform: translateX(-100%);
        }

        @keyframes shimmer {
            to {
                transform: translateX(100%);
            }
        }

        .skill-progress.animate {
            width: var(--progress-width);
        }

        .btn {
            display: inline-block;
            padding: 15px 30px;
            background: transparent;
            border: 2px solid #d14900;
            color: #d14900;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            margin-top: 30px;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(209, 73, 0, 0.3);
        }

        /* Services Section */
        .services {
            padding: 100px 50px;
            background: #02070C;
            position: relative;
            overflow: hidden;
        }

        .services-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
            opacity: 0;
            transform: translateY(30px);
        }

        .section-header.animate {
            animation: fadeInUp 1s ease-out forwards;
        }

        .section-label {
            color: #d14900;
            font-size: 1rem;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
        }

        .section-header h2 {
            font-size: 2.8rem;
            margin-bottom: 30px;
            color: #fff;
            font-weight: 600;
            line-height: 1.3;
            letter-spacing: -0.01em;
            word-break: keep-all;
            overflow-wrap: break-word;
        }

        .section-description {
            font-size: 1.15rem;
            line-height: 1.8;
            color: #a0a0a0;
            max-width: 600px;
            margin: 0 auto;
            font-weight: 400;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 60px;
            /* 3D perspective for smooth card effects */
            perspective: 1000px;
            position: relative;
        }

        /* Hide carousels on desktop */
        .services-carousel-container,
        .industries-carousel-container,
        .testimonials-carousel-container {
            display: none;
        }




        .service-card {
            background: #02070C;
            padding: 40px 30px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.05);
            opacity: 0;
            transform: translateY(50px);
            position: relative;
            z-index: 10;
            transition: all 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-10px) scale(1.05);
            box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.01);
            border-color: rgba(255, 255, 255, 0.15);
        }


        .service-icon {
            font-size: 3rem;
            margin-bottom: 25px;
            filter: grayscale(100%) brightness(0.8);
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon {
            filter: grayscale(0%) brightness(1);
            transform: scale(1.1);
        }

        .service-card h3 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            color: #fff;
            font-weight: 600;
        }

        .service-card p {
            color: #a0a0a0;
            line-height: 1.7;
            font-size: 1rem;
        }

        .service-card.animate {
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .service-card:nth-child(1) { animation-delay: 0.1s; }
        .service-card:nth-child(2) { animation-delay: 0.2s; }
        .service-card:nth-child(3) { animation-delay: 0.3s; }
        .service-card:nth-child(4) { animation-delay: 0.4s; }
        .service-card:nth-child(5) { animation-delay: 0.5s; }
        .service-card:nth-child(6) { animation-delay: 0.6s; }
        .service-card:nth-child(7) { animation-delay: 0.7s; }
        .service-card:nth-child(8) { animation-delay: 0.8s; }

        .service-card:hover {
            /* 3D effect is handled by JavaScript */
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 25px;
            filter: grayscale(100%) brightness(0.8);
        }


        .service-card h3 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            color: #fff;
            font-weight: 600;
        }

        .service-card p {
            color: #a0a0a0;
            line-height: 1.7;
            font-size: 1rem;
        }

        /* Industries Section */
        .industries {
            padding: 100px 50px;
            background: #02070C;
            position: relative;
            overflow: hidden;
        }

        .industries-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .industries-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 60px;
            /* 3D perspective for smooth card effects */
            perspective: 1000px;
            position: relative;
        }


        .industry-item {
            background: #02070C;
            padding: 35px 25px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.05);
            opacity: 0;
            transform: translateY(30px);
            position: relative;
            z-index: 10;
            transition: all 0.3s ease;
        }

        .industry-item:hover {
            transform: translateY(-8px) scale(1.03);
            box-shadow: 0 15px 30px rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.01);
            border-color: rgba(255, 255, 255, 0.15);
        }


        .industry-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
            filter: grayscale(100%) brightness(0.7);
            transition: all 0.3s ease;
        }

        .industry-item:hover .industry-icon {
            filter: grayscale(0%) brightness(1);
            transform: scale(1.08);
        }

        .industry-item h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: #fff;
            font-weight: 600;
        }

        .industry-item p {
            color: #a0a0a0;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        .industry-item.animate {
            animation: fadeInUp 0.6s ease-out forwards;
        }

        .industry-item:nth-child(1) { animation-delay: 0.1s; }
        .industry-item:nth-child(2) { animation-delay: 0.2s; }
        .industry-item:nth-child(3) { animation-delay: 0.3s; }
        .industry-item:nth-child(4) { animation-delay: 0.4s; }
        .industry-item:nth-child(5) { animation-delay: 0.5s; }
        .industry-item:nth-child(6) { animation-delay: 0.6s; }

        .industry-item:hover {
            /* 3D effect is handled by JavaScript */
        }

        .industry-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
            filter: grayscale(100%) brightness(0.7);
        }

        .industry-item h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: #fff;
            font-weight: 600;
        }

        .industry-item p {
            color: #a0a0a0;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        /* Testimonials Section */
        .testimonials {
            padding: 80px 50px;
            background: linear-gradient(135deg, #02070C 0%, #0a0f14 50%, #02070C 100%);
            position: relative;
            overflow: hidden;
        }

        .testimonials::before {
            content: '';
            position: absolute;
            top: -50%;
            left: 0;
            width: 100%;
            height: 200%;
            background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.04) 0%, transparent 60%);
            animation: aboutGlow 10s ease-in-out infinite;
        }

        .testimonials-content {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 5;
        }

        /* Testimonials section specific lines - lower opacity with blur */
        .testimonials .line {
            background: rgba(255, 255, 255, 0.03);
            filter: blur(1px);
        }


        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 40px 30px;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }

        .testimonial-card.animate {
            animation: fadeInUp 0.6s ease-out forwards;
        }

        .testimonial-card:nth-child(1) { animation-delay: 0.1s; }
        .testimonial-card:nth-child(2) { animation-delay: 0.2s; }
        .testimonial-card:nth-child(3) { animation-delay: 0.3s; }

        .testimonial-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.2);
            box-shadow: 0 20px 40px rgba(255, 255, 255, 0.15);
        }

        .testimonial-quote {
            font-size: 4rem;
            color: #ff6b35;
            font-family: serif;
            line-height: 1;
            margin-bottom: 20px;
            opacity: 0.8;
        }

        .testimonial-text {
            color: #e0e0e0;
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 30px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-info h4 {
            color: #fff;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .author-info p {
            color: #ff6b35;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .dots-testimonials {
            top: 15%;
            right: 8%;
        }

        .sparkle-testimonials-1 {
            left: 8%;
            top: 20%;
        }

        .sparkle-testimonials-2 {
            right: 12%;
            bottom: 25%;
        }

        /* Portfolio Section */
        .portfolio {
            padding: 80px 50px;
            background: linear-gradient(135deg, #02070C 0%, #0a0f14 50%, #02070C 100%);
            position: relative;
            overflow: hidden;
        }


        .portfolio::before {
            content: '';
            position: absolute;
            top: 0;
            left: -50%;
            width: 200%;
            height: 100%;
            background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.03) 50%, transparent 70%);
            animation: portfolioShine 8s linear infinite;
        }

        @keyframes portfolioShine {
            0% { transform: translateX(-100%) rotate(45deg); }
            100% { transform: translateX(100%) rotate(45deg); }
        }

        .portfolio h2 {
            font-size: 4rem;
            font-weight: 900;
            text-align: center;
            margin-bottom: 80px;
            opacity: 0;
            transform: translateY(30px);
            position: relative;
            overflow: hidden;
            width: 100%;
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .portfolio h2.animate {
            animation: fadeInUp 1s ease-out forwards;
        }

        .portfolio-text-carousel {
            display: flex;
            animation: scrollPortfolioText 40s linear infinite;
            white-space: nowrap;
            width: max-content;
        }

        .portfolio-text-item {
            color: #fff;
            margin-right: 100px;
            font-size: 4rem;
            font-weight: 900;
            flex-shrink: 0;
            transition: all 0.3s ease;
            cursor: pointer;
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
            letter-spacing: 2px;
        }

        .portfolio-text-item:hover {
            color: #d14900 !important;
        }

        .portfolio-text-item.outline {
            color: transparent !important;
            -webkit-text-stroke: 3px #fff;
            text-stroke: 3px #fff;
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
            letter-spacing: 2px;
        }

        .portfolio-text-item.outline:hover {
            -webkit-text-stroke: 3px #d14900 !important;
            text-stroke: 3px #d14900 !important;
            color: transparent !important;
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
            letter-spacing: 2px;
        }

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

        .portfolio h2 .static-text {
            color: #fff;
            margin-right: 50px;
        }

        .portfolio-header {
            text-align: center;
            margin-bottom: 30px;
            position: relative;
            z-index: 2;
        }

        .portfolio-label {
            background: linear-gradient(135deg, #ffffff, #f0f0f0, #ffffff);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 2.5rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 4px;
            position: relative;
            display: inline-block;
            text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
            opacity: 0;
            transform: translateX(-30px);
        }

        .portfolio-label.animate {
            animation: fadeInLeft 1s ease-out forwards, gradientShift 8s ease-in-out infinite 1s;
        }

        /* Our Work Marquee Animation */
        .our-work-marquee {
            left: 0px;
            height: 80px;
            background: transparent;
            position: relative;
            width: 100%;
            overflow: hidden;
            margin-bottom: 10px;
        }

        .our-work-content {
            width: 100%;
            padding-top: 20px;
            margin: 0 auto;
            font-size: 30px;
            white-space: nowrap;
            text-transform: uppercase;
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
            font-weight: bold;
        }

        .marqueeStyle {
            display: inline-block;
            color: #ff6b35;
            /* Apply animation to this element */
            -webkit-animation: scrolling-left1 30s linear infinite;
            animation: scrolling-left1 30s linear infinite;
        }

        .marqueeStyle2 {
            display: inline-block;
            color: #ff6b35;
            /* Apply animation to this element */
            -webkit-animation: scrolling-left2 30s linear infinite;
            animation: scrolling-left2 30s linear infinite;
            animation-delay: 15s;
        }

        /* scrolling-left is continuous/repeatly text */
        @keyframes scrolling-left1 {
            0% {
                transform: translateX(100%);
                -webkit-transform: translateX(100%);
            }
            100% {
                transform: translateX(-100%);
                -webkit-transform: translateX(-100%);
            }
        }

        @keyframes scrolling-left2 {
            0% {
                transform: translateX(0%);
                -webkit-transform: translateX(0%);
            }
            100% {
                transform: translateX(-200%);
                -webkit-transform: translateX(-200%);
            }
        }

        @-webkit-keyframes scrolling-left1 {
            0% {
                -webkit-transform: translateX(100%);
            }
            100% {
                -webkit-transform: translateX(-100%);
            }
        }

        @-webkit-keyframes scrolling-left2 {
            0% {
                -webkit-transform: translateX(0%);
            }
            100% {
                -webkit-transform: translateX(-200%);
            }
        }

        .portfolio-title {
            font-size: 3.5rem;
            font-weight: 700;
            color: #ffffff;
            margin: -5px 0 0 0;
            opacity: 0;
            word-break: keep-all;
            overflow-wrap: break-word;
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .portfolio-label::before,
        .portfolio-label::after {
            content: '◊';
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: #ffffff;
            font-size: 0.8rem;
            animation: pulse 2s ease-in-out infinite;
        }

        .portfolio-label::before {
            left: -40px;
            animation-delay: 0.5s;
        }

        .portfolio-label::after {
            right: -40px;
            animation-delay: 1s;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.6; transform: translateY(-50%) scale(1); }
            50% { opacity: 1; transform: translateY(-50%) scale(1.2); }
        }

        .portfolio-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 60px;
            padding: 0 50px 40px 50px;
        }

        .portfolio-button {
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .portfolio-item {
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
            border: 2px solid transparent;
            background-clip: padding-box;
            border-radius: 25px;
            padding: 35px 30px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            opacity: 0;
            transform: translateY(50px) rotateX(10deg);
            min-height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(20px);
            box-shadow: 
                inset 0 1px 0 rgba(255, 255, 255, 0.1),
                0 10px 30px rgba(0, 0, 0, 0.2);
            z-index: 2;
        }

        .portfolio-item::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent, rgba(255, 255, 255, 0.3));
            border-radius: 25px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .portfolio-item::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            transform: translate(-50%, -50%);
            transition: all 0.4s ease;
            border-radius: 50%;
            z-index: -1;
        }

        .portfolio-item.animate {
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .portfolio-button:nth-child(1) .portfolio-item { animation-delay: 0.2s; }
        .portfolio-button:nth-child(2) .portfolio-item { animation-delay: 0.4s; }

        .portfolio-item:hover {
            transform: translateY(-15px) scale(1.03) rotateX(0deg);
            box-shadow: 
                inset 0 1px 0 rgba(255, 255, 255, 0.2),
                0 30px 60px rgba(255, 255, 255, 0.15),
                0 0 0 1px rgba(255, 255, 255, 0.1);
        }

        .portfolio-item:hover::before {
            opacity: 1;
        }

        .portfolio-item:hover::after {
            width: 200px;
            height: 200px;
        }

        .portfolio-info {
            text-align: center;
            width: 100%;
        }

        .portfolio-icon {
            font-size: 2.8rem;
            margin-bottom: 20px;
            display: block;
            filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3)) grayscale(100%);
            transition: all 0.3s ease;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-8px); }
        }

        .portfolio-item:hover .portfolio-icon {
            transform: scale(1.1);
            filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5)) grayscale(0%);
            animation: float 6s ease-in-out infinite;
        }

        .portfolio-info h3 {
            font-size: 1.4rem;
            margin-bottom: 12px;
            color: #fff;
            font-weight: 700;
        }

        .portfolio-info p {
            color: #a0a0a0;
            line-height: 1.5;
            font-size: 0.9rem;
            margin-bottom: 15px;
            max-width: 250px;
            margin-left: auto;
            margin-right: auto;
        }

        .portfolio-arrow {
            font-size: 1.5rem;
            color: #ffffff;
            transition: transform 0.3s ease;
            display: inline-block;
        }

        .portfolio-item:hover .portfolio-arrow {
            transform: translateX(10px);
        }

        /* Decorative Elements */
        .decoration {
            position: absolute;
            width: 100px;
            height: 100px;
            border: 2px solid #d14900;
            border-radius: 50%;
            opacity: 0.1;
        }
        
        /* Sparkle Decorations */
        .sparkle {
            position: absolute;
            font-size: 2.5rem;
            color: rgba(255, 255, 255, 0.2);
            pointer-events: none;
            z-index: 2;
        }
        
        .sparkle-hero {
            left: 5%;
            top: 45%;
        }
        
        .sparkle-about {
            right: 5%;
            top: 35%;
        }
        
        .sparkle-services-1 {
            left: 3%;
            top: 55%;
        }
        
        .sparkle-services-2 {
            right: 4%;
            bottom: 30%;
        }
        
        .sparkle-industries-1 {
            left: 2%;
            bottom: 40%;
        }
        
        .sparkle-industries-2 {
            right: 3%;
            top: 50%;
        }

        .decoration-1 {
            top: 20%;
            right: 10%;
            animation: float 6s ease-in-out infinite;
        }

        .decoration-2 {
            bottom: 20%;
            left: 10%;
            animation: float 8s ease-in-out infinite reverse;
        }

        /* Background Lines */
        .bg-lines {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }

        .line {
            position: absolute;
            background: rgba(255, 255, 255, 0.15);
        }
        
        
        
        /* About section specific lines - lower opacity */
        .about .line {
            background: rgba(255, 255, 255, 0.03);
        }
        
        /* About section content with blur effect for lines */
        .about .about-content {
            position: relative;
            z-index: 5;
        }
        
        .about .about-text,
        .about .about-image {
            position: relative;
            z-index: 10;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            padding: 20px;
            border-radius: 15px;
            background: rgba(15, 15, 15, 0.3);
        }

        .line-vertical-left {
            width: 1px;
            height: 100%;
            left: 15%;
            top: 0;
        }

        .line-vertical-right {
            width: 1px;
            height: 100%;
            right: 15%;
            top: 0;
        }

        .line-horizontal-top {
            width: 100%;
            height: 1px;
            top: 20%;
            left: 0;
        }

        .line-horizontal-bottom {
            width: 100%;
            height: 1px;
            bottom: 20%;
            left: 0;
        }

        .line-diagonal-1 {
            width: 1px;
            height: 200px;
            top: 10%;
            left: 8%;
            transform: rotate(45deg);
        }

        .line-diagonal-2 {
            width: 1px;
            height: 150px;
            bottom: 15%;
            right: 8%;
            transform: rotate(-45deg);
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        /* Contact Form Section */
        .contact-form-section {
            padding: 100px 50px;
            background: linear-gradient(135deg, #02070C 0%, #0a0f14 50%, #02070C 100%);
            position: relative;
            overflow: hidden;
        }



        .contact-form-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
        }

        .contact-form-section .section-header {
            text-align: center;
            margin-bottom: 80px;
            opacity: 1;
            transform: none;
        }

        .contact-form-section .section-label {
            color: #d14900;
            font-size: 1rem;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
        }

        .contact-form-section .section-header h2 {
            font-size: 2.8rem;
            margin-bottom: 30px;
            color: #ffffff;
            font-weight: 600;
            line-height: 1.3;
            letter-spacing: -0.01em;
            word-break: keep-all;
            overflow-wrap: break-word;
        }

        .contact-form-section .section-description {
            font-size: 1.15rem;
            line-height: 1.8;
            color: #a0a0a0;
            max-width: 600px;
            margin: 0 auto;
            font-weight: 400;
        }

        .contact-options {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 60px;
            align-items: start;
            margin-top: 60px;
        }

        .contact-form-wrapper {
            position: relative;
        }

        .contact-form {
            background: #0a0a0a;
            padding: 50px 40px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            position: relative;
            z-index: 20;
        }

        /* Call Directly Section */
        .call-directly-section {
            position: relative;
            margin-top: 20px;
            z-index: 20;
        }

        .call-directly-btn {
            background: #0a0a0a;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 25px 30px;
            color: #fff;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 15px;
            backdrop-filter: blur(20px);
            min-width: 200px;
            justify-content: center;
        }

        .call-directly-btn:hover {
            background: rgba(209, 73, 0, 0.1);
            border-color: rgba(209, 73, 0, 0.3);
            transform: translateY(-2px);
        }

        .call-icon {
            font-size: 1.3rem;
        }

        .dropdown-arrow {
            font-size: 0.8rem;
            transition: transform 0.3s ease;
        }

        .call-directly-btn.active .dropdown-arrow {
            transform: rotate(180deg);
        }

        .phone-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: rgba(26, 26, 26, 0.95);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            backdrop-filter: blur(20px);
            margin-top: 10px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 100;
        }

        .phone-dropdown.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .phone-option {
            padding: 0;
        }

        .phone-option a {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 15px 20px;
            color: #fff;
            text-decoration: none;
            transition: all 0.3s ease;
            border-radius: 10px;
            margin: 5px;
        }

        .phone-option a:hover {
            background: rgba(209, 73, 0, 0.1);
            color: #ff6b35;
        }

        .phone-icon {
            font-size: 1.1rem;
        }
        
        .email-contact {
            margin-top: 20px;
        }
        
        .email-btn {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 20px 25px;
            background: #0a0a0a;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            color: #fff;
            text-decoration: none;
            transition: all 0.3s ease;
            backdrop-filter: blur(20px);
            font-size: 1.1rem;
            font-weight: 600;
        }
        
        .email-btn:hover {
            background: rgba(209, 73, 0, 0.1);
            border-color: rgba(209, 73, 0, 0.3);
            transform: translateY(-2px);
            color: #ff6b35;
        }
        
        .email-icon {
            font-size: 1.3rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
            margin-bottom: 25px;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #fff;
            font-weight: 600;
            font-size: 1rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 15px 20px;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 10px;
            color: #ffffff !important;
            font-size: 1rem;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: rgba(255, 255, 255, 0.15);
            box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.03);
            background: rgba(255, 255, 255, 0.02);
            color: #fff;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #a0a0a0;
        }

        .form-group select {
            cursor: pointer;
        }

        .form-group select option {
            background: #1a1a1a !important;
            color: #ffffff !important;
            padding: 10px;
        }

        .submit-btn {
            width: 100%;
            padding: 18px 30px;
            background: linear-gradient(135deg, #d14900, #ff6b35);
            border: none;
            border-radius: 50px;
            color: #fff;
            font-size: 1.1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(209, 73, 0, 0.4);
        }

        .btn-arrow {
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        .submit-btn:hover .btn-arrow {
            transform: translateX(5px);
        }

        .form-success {
            display: none;
            text-align: center;
            padding: 40px;
            background: rgba(76, 175, 80, 0.1);
            border: 1px solid rgba(76, 175, 80, 0.3);
            border-radius: 20px;
            backdrop-filter: blur(20px);
        }

        .form-success.show {
            display: block;
        }

        .success-icon {
            font-size: 3rem;
            color: #4caf50;
            margin-bottom: 20px;
        }

        .form-success h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #4caf50;
            font-weight: 600;
        }

        .form-success p {
            color: #a0a0a0;
            font-size: 1rem;
        }

        /* Footer */
        .footer {
            background: #0a0a0a;
            padding: 60px 50px 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            color: #fff;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }

        .footer-section p,
        .footer-section a {
            color: #a0a0a0;
            text-decoration: none;
            line-height: 1.8;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: #ff6b35;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: #1a1a1a;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: #ff6b35;
            transform: translateY(-2px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            color: #666;
        }

        /* Tablet styles */
        @media (max-width: 1024px) and (min-width: 769px) {
            .services-content > .services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }
        }

        /* Mobile Menu Burger */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
        }

        .burger-line {
            width: 25px;
            height: 3px;
            background-color: #fff;
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

        .mobile-menu-toggle.active .burger-line:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
            background-color: #ff6b35;
        }

        .mobile-menu-toggle.active .burger-line:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active .burger-line:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
            background-color: #ff6b35;
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(2, 7, 12, 0.98);
            backdrop-filter: blur(20px);
            z-index: 999;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transform: translateY(-100%);
            transition: transform 0.3s ease;
        }

        .mobile-menu.active {
            transform: translateY(0);
        }

        .mobile-menu ul {
            list-style: none;
            margin: 0;
            padding: 0;
            text-align: center;
        }

        .mobile-menu li {
            margin: 30px 0;
        }

        .mobile-menu a {
            color: #fff;
            text-decoration: none;
            font-size: 1.5rem;
            font-weight: 500;
            transition: color 0.3s ease;
            display: block;
            padding: 15px 30px;
        }

        .mobile-menu a:hover,
        .mobile-menu a.active {
            color: #ff6b35;
        }

        .mobile-menu .dropdown {
            position: relative;
        }

        .mobile-menu .dropdown > a {
            position: relative;
            cursor: pointer;
        }

        .mobile-menu .dropdown > a::after {
            content: '▼';
            position: absolute;
            right: -20px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 0.8rem;
            transition: transform 0.3s ease;
        }

        .mobile-menu .dropdown.active > a::after {
            transform: translateY(-50%) rotate(180deg);
        }

        .mobile-menu .dropdown-content {
            position: static;
            background: rgba(255, 255, 255, 0.05);
            box-shadow: none;
            border: none;
            padding: 0;
            margin-top: 15px;
            border-radius: 10px;
            backdrop-filter: blur(10px);
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .mobile-menu .dropdown.active .dropdown-content {
            max-height: 300px;
            padding: 10px 0;
        }

        .mobile-menu .dropdown-content a {
            font-size: 1.2rem;
            color: #a0a0a0;
            padding: 10px 30px;
            border-left: 3px solid transparent;
            transition: all 0.3s ease;
        }

        .mobile-menu .dropdown-content a:hover,
        .mobile-menu .dropdown-content a.active {
            color: #ff6b35;
            border-left-color: #ff6b35;
            background: rgba(255, 107, 53, 0.1);
        }

        /* Mobile color adjustments */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .mobile-menu-toggle {
                display: flex;
            }
            body {
                background-color: #060C14;
            }
            
            .hero {
                background: #060C14;
            }
            
            .services {
                background: #060C14;
            }
            
            .industries {
                background: #060C14;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            
            /* Hide about image on mobile */
            .about-image {
                display: none;
            }


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

            .contact-form {
                padding: 30px 20px;
                margin: 0 10px;
            }

            .portfolio h2 {
                font-size: 2.8rem;
                height: 100px;
                margin-bottom: 40px;
            }

            .portfolio-text-item {
                font-size: 2.8rem;
                margin-right: 50px;
            }

            .portfolio h2 .static-text {
                margin-right: 25px;
                font-size: 2.8rem;
            }

            .portfolio-text-carousel {
                animation: scrollPortfolioText 30s linear infinite;
            }

            .portfolio-grid {
                grid-template-columns: 1fr;
                gap: 40px;
                padding: 20px 10px;
            }

            .portfolio-item {
                min-height: 250px;
                padding: 40px 30px;
            }

            .portfolio-icon {
                font-size: 3rem;
                margin-bottom: 20px;
            }

            .portfolio-info h3 {
                font-size: 1.7rem;
            }

            .portfolio-info p {
                font-size: 1rem;
            }

            nav, .hero, .about, .portfolio, .contact-form-section {
                padding: 50px 20px;
            }

            .contact-options {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .call-directly-section {
                order: -1;
                margin-top: 0;
                margin-bottom: 30px;
            }

            /* Hide desktop services grid on mobile */
            .services-grid {
                display: none;
            }

            /* Show Mobile Services Carousel */
            .services-carousel-container {
                display: block !important;
                width: 100%;
                overflow: visible;
                position: relative;
                margin-top: 60px;
                z-index: 15;
                min-height: 300px;
            }

            .services-carousel-inner {
                display: grid;
                grid-template-columns: 1fr 1fr;
                grid-template-rows: auto auto;
                width: 100%;
                gap: 15px;
                padding: 0 20px;
                box-sizing: border-box;
            }

            .service-carousel-item {
                display: none;
            }

            .service-carousel-item.active {
                display: block;
                position: relative;
                z-index: 20;
                width: 100%;
            }

            .service-carousel-item .service-card {
                background: #02070C;
                padding: 20px 15px;
                border-radius: 12px;
                border: 1px solid rgba(255, 255, 255, 0.05);
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                text-align: center;
                height: 220px;
                box-sizing: border-box;
                transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
            }

            .service-carousel-item .service-card:hover {
                transform: translateY(-5px);
                background: rgba(209, 73, 0, 0.05);
                border-color: rgba(209, 73, 0, 0.2);
            }

            .service-carousel-item .service-card h3 {
                font-size: 1rem;
                margin-bottom: 12px;
                color: #fff;
                line-height: 1.2;
            }

            .service-carousel-item .service-card p {
                font-size: 0.85rem;
                line-height: 1.4;
                color: #a0a0a0;
                display: -webkit-box;
                -webkit-line-clamp: 3;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }

            .service-carousel-item .service-icon {
                font-size: 2rem;
                margin-bottom: 15px;
                filter: grayscale(100%) brightness(0.8);
            }

            /* Carousel Navigation */
            .carousel-nav {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 20px;
                margin-top: 30px;
            }

            .carousel-btn {
                background: rgba(255, 107, 53, 0.2);
                border: 2px solid #ff6b35;
                color: #ff6b35;
                width: 45px;
                height: 45px;
                border-radius: 50%;
                cursor: pointer;
                font-size: 1.5rem;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: all 0.3s ease;
            }

            .carousel-btn:hover {
                background: #ff6b35;
                color: white;
            }

            .carousel-dots {
                display: flex;
                gap: 10px;
            }

            .dot {
                width: 12px;
                height: 12px;
                border-radius: 50%;
                background: rgba(255, 107, 53, 0.3);
                cursor: pointer;
                transition: all 0.3s ease;
            }

            .dot.active {
                background: #ff6b35;
                transform: scale(1.2);
            }

            .services {
                padding: 50px 1px;
            }

            /* Hide industries grid on mobile */
            .industries-grid {
                display: none;
            }
            /* Show Mobile Industries Carousel */
            .industries-carousel-container {
                display: block !important;
                width: 100%;
                overflow: visible;
                position: relative;
                margin-top: 60px;
                z-index: 15;
                min-height: 300px;
            }

            .industries-carousel-inner {
                display: grid;
                grid-template-columns: 1fr 1fr;
                grid-template-rows: auto auto;
                width: 100%;
                gap: 15px;
                padding: 0 20px;
                box-sizing: border-box;
            }

            .industry-carousel-item {
                display: none;
            }

            .industry-carousel-item.active {
                display: block;
                position: relative;
                z-index: 20;
                width: 100%;
            }

            .industry-carousel-item .industry-card {
                background: #02070C;
                padding: 20px 15px;
                border-radius: 12px;
                border: 1px solid rgba(255, 255, 255, 0.05);
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                text-align: center;
                height: 220px;
                box-sizing: border-box;
                transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
            }

            .industry-carousel-item .industry-card:hover {
                transform: translateY(-5px);
                background: rgba(209, 73, 0, 0.05);
                border-color: rgba(209, 73, 0, 0.2);
            }

            .industry-carousel-item .industry-card h3 {
                font-size: 1rem;
                margin-bottom: 12px;
                color: #fff;
                line-height: 1.2;
            }

            .industry-carousel-item .industry-card p {
                font-size: 0.85rem;
                line-height: 1.4;
                color: #a0a0a0;
                display: -webkit-box;
                -webkit-line-clamp: 3;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }

            .industry-carousel-item .industry-icon {
                font-size: 2rem;
                margin-bottom: 15px;
                filter: grayscale(100%) brightness(0.8);
            }

            /* Industries Carousel Navigation */
            .industries-carousel-nav {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 20px;
                margin-top: 30px;
            }

            .industries-carousel-btn {
                background: rgba(255, 107, 53, 0.2);
                border: 2px solid #ff6b35;
                color: #ff6b35;
                width: 45px;
                height: 45px;
                border-radius: 50%;
                cursor: pointer;
                font-size: 1.5rem;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: all 0.3s ease;
            }

            .industries-carousel-btn:hover {
                background: #ff6b35;
                color: white;
            }

            .industries-carousel-dots {
                display: flex;
                gap: 10px;
            }

            .industries-dot {
                width: 12px;
                height: 12px;
                border-radius: 50%;
                background: rgba(255, 107, 53, 0.3);
                cursor: pointer;
                transition: all 0.3s ease;
            }

            .industries-dot.active {
                background: #ff6b35;
                transform: scale(1.2);
            }

            .industries {
                padding: 50px 1px;
            }

            /* Hide testimonials grid on mobile */
            .testimonials-grid {
                display: none;
            }
            
            /* Show Mobile Testimonials Carousel */
            .testimonials-carousel-container {
                display: block !important;
                width: 100%;
                overflow: visible;
                position: relative;
                margin-top: 60px;
                z-index: 15;
                min-height: 300px;
            }
            
            .testimonials-carousel-inner {
                display: flex;
                width: 100%;
                padding: 0 20px;
                box-sizing: border-box;
            }
            
            .testimonial-carousel-item {
                display: none;
                width: 100%;
                flex-shrink: 0;
            }
            
            .testimonial-carousel-item.active {
                display: block;
            }
            
            .testimonial-carousel-item .testimonial-card {
                background: rgba(255, 255, 255, 0.05);
                border-radius: 20px;
                padding: 30px 20px;
                border: 1px solid rgba(255, 255, 255, 0.1);
                backdrop-filter: blur(20px);
                position: relative;
                transition: all 0.3s ease;
            }
            
            .testimonial-carousel-item .testimonial-card:hover {
                transform: translateY(-5px);
                background: rgba(255, 255, 255, 0.08);
            }
            
            /* Testimonials Carousel Navigation */
            .testimonials-carousel-nav {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 20px;
                margin-top: 30px;
            }
            
            .testimonials-carousel-btn {
                background: rgba(255, 107, 53, 0.2);
                border: 2px solid #ff6b35;
                color: #ff6b35;
                width: 45px;
                height: 45px;
                border-radius: 50%;
                cursor: pointer;
                font-size: 1.5rem;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: all 0.3s ease;
            }
            
            .testimonials-carousel-btn:hover {
                background: #ff6b35;
                color: white;
            }
            
            .testimonials-carousel-dots {
                display: flex;
                gap: 10px;
            }
            
            .testimonials-dot {
                width: 12px;
                height: 12px;
                border-radius: 50%;
                background: rgba(255, 107, 53, 0.3);
                cursor: pointer;
                transition: all 0.3s ease;
            }
            
            .testimonials-dot.active {
                background: #ff6b35;
                transform: scale(1.2);
            }

            /* Hide invert cursor on mobile */
            .invert-cursor {
                display: none;
            }
            
            /* Mobile sparkles - more visible */
            .sparkle {
                font-size: 3rem;
                color: rgba(255, 255, 255, 0.4);
            }
            
            /* Hide all sparkles on mobile */
            .sparkle {
                display: none;
            }

            /* Mobile section titles - smaller font to prevent word cutting */
            .about-text h2,
            .section-header h2 {
                font-size: 1.6rem !important;
                line-height: 1.3 !important;
                word-break: keep-all;
                white-space: normal;
                overflow: visible;
                text-align: center;
                padding: 0 10px;
            }

            /* Specific mobile adjustments for each title */
            #about-title {
                font-size: 1.3rem !important;
                word-spacing: 0.1em;
            }

            #services-title {
                font-size: 1.4rem !important;
            }

            #industries-title {
                font-size: 1.2rem !important;
            }
            
            /* Fix skill progress bars on mobile */
            .skill-progress {
                width: 0 !important;
                transition: width 2s ease-out 0.5s;
            }
            
            .skill-progress.animate {
                width: var(--progress-width) !important;
            }

            /* Mobile navigation */
            nav {
                padding: 10px 20px;
            }

            .logo img {
                height: 25px;
            }

            .nav-menu {
                gap: 20px;
            }

            .nav-menu a {
                font-size: 1rem;
            }
            
            /* Mobile styles for new hero text */
            .desktop1-text10 {
                font-size: 22px;
                margin-bottom: -10px;
                transform: translateY(-20px);
            }
            
            .desktop1-text18 {
                font-size: 160px;
                transform: translateY(-100vh);
            }
            
            .desktop1-text17 {
                font-size: 14px;
                transform: translateX(-30px);
            }
            
            .desktop1-text11 {
                font-size: 14px;
                transform: translateX(25px);
            }
            
            .desktop1-text19 {
                font-size: 180px;
                -webkit-text-stroke: 6px #D14900;
                text-stroke: 6px #D14900;
                transform: translateX(-70px) translateY(15px);
                transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s ease 0.2s;
            }
            
            .desktop1-text19.animate {
                transform: translateX(-70px) translateY(-15px) !important;
            }
            
            :root {
                --ai-overlap: 60px;
                --gap-under-sync: 1px;
            }
        }

        @media (max-width: 480px) {
            .desktop1-text10 {
                font-size: 18px;
                margin-bottom: -8px;
                transform: translateY(-25px);
            }
            
            .desktop1-text18 {
                font-size: 120px;
                transform: translateY(-100vh);
            }
            
            .desktop1-text17 {
                font-size: 11px;
                transform: translateX(-35px);
            }
            
            .desktop1-text11 {
                font-size: 11px;
                transform: translateX(30px);
            }
            
            .desktop1-text19 {
                font-size: 130px;
                -webkit-text-stroke: 4px #D14900;
                text-stroke: 4px #D14900;
                transform: translateX(-70px) translateY(10px);
                transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s ease 0.2s;
            }
            
            .desktop1-text19.animate {
                transform: translateX(-70px) translateY(-10px) !important;
            }
            
            :root {
                --ai-overlap: 40px;
                --gap-under-sync: 1px;
            }
        }

        @media (max-width: 480px) {

            .portfolio h2 {
                font-size: 2.2rem;
                height: 80px;
                margin-bottom: 30px;
            }

            .portfolio-text-item {
                font-size: 2.2rem;
                margin-right: 35px;
            }

            .portfolio h2 .static-text {
                margin-right: 20px;
                font-size: 2.2rem;
            }

        }

        .invert-cursor {
    position: fixed;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    pointer-events: none;
    mix-blend-mode: difference;
    background-color: white;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.2s ease;
    z-index: 9999;
}

        /* Decorative Dots */
        .decorative-dots {
            position: absolute;
            pointer-events: none;
            z-index: 1;
        }

        .dot-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 12px;
            opacity: 0.5;
        }

        .decorative-dot {
            width: 2px;
            height: 2px;
            background-color: rgba(255, 255, 255, 0.4);
            border-radius: 50%;
        }

        .dots-hero-top {
            top: 15%;
            right: 8%;
        }

        .dots-hero-bottom {
            bottom: 20%;
            left: 5%;
        }

        .dots-about {
            top: 10%;
            right: 10%;
        }

        .dots-services {
            bottom: 15%;
            left: 8%;
        }

        .dots-portfolio {
            top: 20%;
            left: 6%;
        }

        .dots-contact {
            bottom: 10%;
            right: 12%;
        }

        /* Background Glow Effects */
.hero-bg-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.glow-blue {
    position: absolute;
    width: 1200px;
    height: 1200px;
    background: radial-gradient(circle, rgba(0, 0, 255, 0.6) 0%, rgba(0, 0, 255, 0.4) 20%, rgba(0, 0, 255, 0.25) 40%, rgba(0, 0, 255, 0.1) 60%, transparent 80%);
    top: -400px;
    right: -400px;
    opacity: 1;
    transform: scale(1);
    z-index: 1;
    filter: blur(2px);
}

.glow-orange {
    position: absolute;
    width: 1800px;
    height: 1800px;
    background: radial-gradient(circle, rgba(255, 69, 0, 0.6) 0%, rgba(255, 107, 53, 0.5) 10%, rgba(255, 107, 53, 0.35) 20%, rgba(255, 107, 53, 0.25) 30%, rgba(255, 107, 53, 0.15) 40%, rgba(255, 107, 53, 0.08) 50%, rgba(255, 107, 53, 0.04) 60%, rgba(255, 107, 53, 0.02) 70%, rgba(255, 107, 53, 0.01) 80%, rgba(255, 107, 53, 0.005) 90%, transparent 100%);
    bottom: -600px;
    left: -600px;
    opacity: 1;
    transform: scale(1);
    z-index: 1;
    filter: blur(5px);
}

/* Media Queries pentru glow effects */
@media (max-width: 768px) {
    .glow-blue {
        width: 900px;
        height: 900px;
        top: -300px;
        right: -300px;
        background: radial-gradient(circle, rgba(0, 0, 255, 0.5) 0%, rgba(0, 0, 255, 0.35) 20%, rgba(0, 0, 255, 0.2) 40%, rgba(0, 0, 255, 0.08) 60%, transparent 80%);
        filter: blur(2px);
    }
    
    .glow-orange {
        width: 1200px;
        height: 1200px;
        bottom: -450px;
        left: -450px;
        background: radial-gradient(circle, rgba(255, 69, 0, 0.5) 0%, rgba(255, 107, 53, 0.35) 10%, rgba(255, 107, 53, 0.25) 20%, rgba(255, 107, 53, 0.15) 30%, rgba(255, 107, 53, 0.1) 40%, rgba(255, 107, 53, 0.06) 50%, rgba(255, 107, 53, 0.03) 60%, rgba(255, 107, 53, 0.015) 70%, rgba(255, 107, 53, 0.008) 80%, rgba(255, 107, 53, 0.003) 90%, transparent 100%);
        filter: blur(3px);
    }
}

@media (max-width: 480px) {
    .glow-blue {
        width: 700px;
        height: 700px;
        top: -250px;
        right: -250px;
        background: radial-gradient(circle, rgba(0, 0, 255, 0.6) 0%, rgba(0, 0, 255, 0.4) 20%, rgba(0, 0, 255, 0.25) 40%, rgba(0, 0, 255, 0.1) 60%, transparent 80%);
        filter: blur(2px);
    }
    
    .glow-orange {
        width: 1000px;
        height: 1000px;
        bottom: -400px;
        left: -400px;
        background: radial-gradient(circle, rgba(255, 69, 0, 0.6) 0%, rgba(255, 107, 53, 0.4) 10%, rgba(255, 107, 53, 0.28) 20%, rgba(255, 107, 53, 0.18) 30%, rgba(255, 107, 53, 0.12) 40%, rgba(255, 107, 53, 0.08) 50%, rgba(255, 107, 53, 0.04) 60%, rgba(255, 107, 53, 0.02) 70%, rgba(255, 107, 53, 0.01) 80%, rgba(255, 107, 53, 0.005) 90%, transparent 100%);
        filter: blur(2px);
    }
}

