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

        :root {
            --primary: #f8820b;
            --secondary: #6d6e70;
            --dark: #0A0E27;
            --light: #F8F9FA;
            --accent: #ec7914;
            --text: #333333;
            --white: #ffffff;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Navigation */
        nav {
            position: fixed;
            width: 100%;
            background: rgba(10, 14, 39, 0.95);
            backdrop-filter: blur(10px);
            padding: 0.8rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transition: var(--transition);
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--white);
            display: flex;
            align-items: center;
            gap: 10px;
        }

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

        .nav-links {
            display: flex;
            gap: 1.5rem;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--white);
            font-weight: 500;
            font-size: 0.95rem;
            transition: var(--transition);
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }

        .nav-links a:hover {
            color: var(--primary);
            background: rgba(255, 255, 255, 0.1);
        }

        .nav-links a.active {
            color: var(--primary);
            background: rgba(255, 255, 255, 0.1);
        }

        .cta-button {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            font-size: 0.95rem;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(248, 130, 11, 0.4);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, #0A0E27 0%, #1a1f3a 100%);
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 80%, rgba(248, 130, 11, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(236, 121, 20, 0.1) 0%, transparent 50%);
            z-index: 0;
        }

        .hero-slider {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .hero-slides {
            display: flex;
            width: 300%;
            height: 100%;
            transition: transform 0.8s ease;
        }

        .hero-slide {
            width: 100%;
            display: flex;
            align-items: center;
            padding: 0 5%;
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-text h1 {
            font-size: 3.5rem;
            color: white;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            animation: fadeInUp 1s ease-out;
        }

        .hero-text .highlight {
            color: var(--primary);
            position: relative;
        }

        .hero-text .highlight::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 8px;
            background: rgba(248, 130, 11, 0.3);
            z-index: -1;
            border-radius: 4px;
        }

        .hero-text p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease-out 0.2s both;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease-out 0.4s both;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            display: inline-block;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(248, 130, 11, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            padding: 1rem 2.5rem;
            border: 2px solid white;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            display: inline-block;
        }

        .btn-secondary:hover {
            background: white;
            color: var(--dark);
        }

        .hero-image {
            position: relative;
            text-align: center;
            animation: fadeInRight 1s ease-out;
        }

        .hero-image img {
            max-width: 100%;
            border-radius: 20px;
            animation: float 6s ease-in-out infinite;
        }

        .slider-dots {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            bottom: 30px;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: var(--transition);
        }

        .slider-dot.active {
            background: var(--primary);
            transform: scale(1.2);
        }

        @keyframes float {

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

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

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

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

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

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

        /* About Section */
        .about {
            padding: 6rem 5%;
            background: var(--light);
        }

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

        .about-content h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--dark);
            position: relative;
        }

        .about-content h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 2px;
        }

        .about-content p {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 1.5rem;
            line-height: 1.8;
            text-align: justify;
        }

        .floating-card {
            background: transparent;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: var(--shadow);
            animation: float 6s ease-in-out infinite;
        }

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

        .stat-item {
            text-align: center;
            color: var(--dark);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
        }

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

        /* Services Section */
        .services {
            padding: 6rem 5%;
            background: var(--light);
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem;
        }

        .section-header h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--dark);
            position: relative;
            display: inline-block;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 2px;
        }

        .section-header p {
            font-size: 1.1rem;
            color: #666;
        }

        .services-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            transform: scaleX(0);
            transition: transform 0.3s;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 50px rgba(248, 130, 11, 0.15);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: white;
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .service-card p {
            color: #666;
            line-height: 1.8;
        }

        /* IA Section */
        .ia-section {
            padding: 6rem 5%;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #0A0E27 0%, #1a1f3a 100%);
            color: white;
        }

        .ia-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                radial-gradient(circle at 10% 20%, rgba(248, 130, 11, 0.1) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(236, 121, 20, 0.1) 0%, transparent 20%),
                url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23f8820b' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
            z-index: 0;
        }

        .ia-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .ia-content h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: white;
            position: relative;
        }

        .ia-content h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 2px;
        }

        .ia-content p {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .ia-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .ia-feature {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .ia-feature i {
            color: var(--primary);
            font-size: 1.5rem;
            margin-top: 0.2rem;
        }

        .ia-feature h4 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            color: white;
        }

        .ia-feature p {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 0;
            line-height: 1.6;
        }

        .ia-image {
            position: relative;
            text-align: center;
        }

        .ia-image img {
            max-width: 100%;
            border-radius: 20px;
            box-shadow: var(--shadow);
        }

        /* Projects Section */
        .projects-section {
            padding: 6rem 5%;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #1a1f3a 0%, #0A0E27 100%);
            color: white;
        }

        .projects-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                radial-gradient(circle at 80% 20%, rgba(248, 130, 11, 0.08) 0%, transparent 25%),
                radial-gradient(circle at 20% 80%, rgba(236, 121, 20, 0.08) 0%, transparent 25%),
                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='%23f8820b' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            z-index: 0;
        }

        .projects-track {
            display: flex;
            gap: 2rem;
            padding: 2rem 0;
            animation: scroll-projects 40s linear infinite;
        }

        @keyframes scroll-projects {
            0% {
                transform: translateX(0);
            }

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

        .project-card {
            flex: 0 0 auto;
            width: 350px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            overflow: hidden;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .project-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(248, 130, 11, 0.3);
        }

        .project-image img {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: white;
        }

        .project-content {
            padding: 2rem;
        }

        .project-content h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: white;
        }

        .project-content p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 1rem;
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .project-tag {
            display: inline-block;
            background: rgba(248, 130, 11, 0.2);
            color: var(--primary);
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            margin-right: 0.5rem;
            border: 1px solid rgba(248, 130, 11, 0.3);
        }

        /* Clients Section */
        .clients {
            padding: 4rem 5%;
            background: white;
            overflow: hidden;
        }

        .clients-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .clients-logos {
            display: flex;
            gap: 3rem;
            animation: scroll 30s linear infinite;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }

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

        .client-logo {
            flex: 0 0 auto;
            width: 250px;
            height: 80px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
            transition: var(--transition);
        }

        .client-logo:hover {
            transform: scale(1.05);
            box-shadow: var(--shadow);
        }

        .client-logo img{
            width: 60%;
        }

        /* Testimonials Section */
        .testimonials {
            padding: 6rem 5%;
            background: var(--dark);
            color: white;
        }

        .testimonials-slider {
            max-width: 1000px;
            margin: 0 auto;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            padding: 3rem;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .testimonial-text {
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 2rem;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
        }

        .author-info h4 {
            font-size: 1.1rem;
            margin-bottom: 0.3rem;
        }

        .author-info p {
            font-size: 0.9rem;
            opacity: 0.7;
        }

        /* Contact Section */
        .contact-section {
            padding: 6rem 5%;
            background: linear-gradient(rgba(248, 130, 11, 0.9), rgba(236, 121, 20, 0.9)), url('https://img.freepik.com/free-photo/business-people-partnership-support-team-urban-scene-concept_53876-144834.jpg?t=st=1760611739~exp=1760615339~hmac=cbebf653b5c858555ebaa46a3246ae1766bcc8e686d735c8017c055a4bfd6f4d&w=1060');
            background-size: cover;
            background-position: center;
            color: white;
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .contact-info h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .contact-info p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .contact-details {
            margin-bottom: 2rem;
        }

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

        .contact-item i {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
        }

        .contact-form {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 2.5rem;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

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

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: none;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.9);
            font-family: inherit;
            font-size: 1rem;
        }

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

        .btn-white {
            background: white;
            color: var(--primary);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            font-size: 1rem;
            width: 100%;
            margin-top: 8px;
        }

        .btn-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 4rem 5% 2rem;
        }

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

        .footer-section h3 {
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .footer-section p,
        .footer-section a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
        }

        .footer-section a:hover {
            color: var(--primary);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: var(--transition);
        }

        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.5);
        }

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

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--white);
            border-radius: 3px;
            transition: var(--transition);
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .nav-divider {
            height: 20px;
            width: 1px;
            background: rgba(255, 255, 255, 0.3);
        }

        /* Responsive */
        /* Navigation Responsive */
        @media (max-width: 1024px) {
            .nav-links {
                gap: 0.8rem;
            }

            .nav-links a {
                padding: 0.4rem 0.7rem;
                font-size: 0.85rem;
            }

            .cta-button {
                padding: 0.6rem 1rem;
                font-size: 0.85rem;
            }

            .logo {
                font-size: 1.5rem;
            }

            .logo img {
                width: 80px;
                height: 80px;
            }
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--dark);
                flex-direction: column;
                padding: 1.5rem;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                gap: 0.8rem;
            }

            .nav-links.active {
                display: flex;
            }

            .nav-divider {
                display: none;
            }

            .nav-links a {
                padding: 1rem;
                font-size: 1rem;
                text-align: center;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .nav-links a:last-child {
                border-bottom: none;
            }

            .cta-button {
                margin-top: 1rem;
                text-align: center;
                display: block;
            }
        }

        /* Hero Section Responsive */
        @media (max-width: 1024px) {
            .hero-text h1 {
                font-size: 3rem;
            }

            .hero-content {
                gap: 2rem;
            }
        }

        @media (max-width: 768px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2rem;
                padding: 2rem 0;
                margin-top: 120px;
            }

            .hero-text h1 {
                font-size: 2.2rem;
                margin-bottom: 1rem;
            }

            .hero-text p {
                font-size: 1.1rem;
                margin-bottom: 1.5rem;
            }

            .hero-buttons {
                justify-content: center;
                flex-direction: column;
                gap: 1rem;
            }

            .btn-primary,
            .btn-secondary {
                padding: 0.8rem 2rem;
                font-size: 0.9rem;
                width: 100%;
                max-width: 250px;
                margin: 0 auto;
            }

            .hero-slide {
                padding: 0 5%;
                min-height: 80vh;
            }
        }

        @media (max-width: 480px) {
            .hero-text h1 {
                font-size: 1.8rem;
            }

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

        /* About Section Responsive */
        @media (max-width: 1024px) {
            .about-container {
                gap: 3rem;
            }
        }

        @media (max-width: 768px) {
            .about {
                padding: 4rem 5%;
            }

            .about-container {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .about-content h2 {
                font-size: 2rem;
            }

            .about-content h2::after {
                left: 50%;
                transform: translateX(-50%);
            }

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

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

        @media (max-width: 480px) {
            .stats {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .about-content h2 {
                font-size: 1.8rem;
            }
        }

        /* Services Section Responsive */
        @media (max-width: 768px) {
            .services {
                padding: 4rem 5%;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .service-card {
                padding: 2rem;
            }
        }

        /* IA Section Responsive */
        @media (max-width: 1024px) {
            .ia-container {
                gap: 3rem;
            }
        }

        @media (max-width: 768px) {
            .ia-section {
                padding: 4rem 5%;
            }

            .ia-container {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .ia-content h2 {
                font-size: 2rem;
            }

            .ia-content h2::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .ia-features {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }

        /* Clients Section Responsive */
        @media (max-width: 768px) {
            .clients {
                padding: 3rem 5%;
            }

            .client-logo {
                width: 200px;
                height: 70px;
            }

            .clients-logos {
                gap: 2rem;
            }
        }

        @media (max-width: 480px) {
            .client-logo {
                width: 150px;
                height: 60px;
            }
        }

        /* Projects Section Responsive */
        @media (max-width: 768px) {
            .projects-section {
                padding: 4rem 5%;
            }

            .project-card {
                width: 280px;
            }

            .project-content {
                padding: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .project-card {
                width: 260px;
            }

            .projects-track {
                gap: 1.5rem;
            }
        }

        /* Testimonials Section Responsive */
        @media (max-width: 768px) {
            .testimonials {
                padding: 4rem 5%;
            }

            .testimonial-card {
                padding: 2rem;
            }

            .testimonial-text {
                font-size: 1.1rem;
            }
        }

        /* Contact Section Responsive */
        @media (max-width: 1024px) {
            .contact-container {
                gap: 3rem;
            }
        }

        @media (max-width: 768px) {
            .contact-section {
                padding: 4rem 5%;
            }

            .contact-container {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .contact-info h2 {
                font-size: 2rem;
            }

            .contact-item {
                justify-content: center;
                text-align: left;
            }

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

        /* Footer Responsive */
        @media (max-width: 768px) {
            footer {
                padding: 3rem 5% 1.5rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .social-links {
                justify-content: center;
            }
        }

        /* General Mobile Improvements */
        @media (max-width: 768px) {
            .container {
                width: 95%;
            }

            .section-header {
                margin-bottom: 3rem;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .section-header p {
                font-size: 1rem;
            }

            /* Amélioration du touch sur mobile */
            button,
            .btn-primary,
            .btn-secondary,
            .cta-button,
            a {
                min-height: 44px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
            }

            /* Meilleure gestion du viewport */
            html {
                -webkit-text-size-adjust: 100%;
            }
        }

        /* Correction pour les très petits écrans */
        @media (max-width: 360px) {
            .hero-text h1 {
                font-size: 1.6rem;
            }

            .btn-primary,
            .btn-secondary {
                padding: 0.7rem 1.5rem;
                font-size: 0.85rem;
            }

            .service-card {
                padding: 1.5rem;
            }

            .project-card {
                width: 240px;
            }
        }

        /* Correction du défilement horizontal */
        body {
            overflow-x: hidden;
            width: 100%;
        }

        /* Amélioration des animations sur mobile */
        @media (max-width: 768px) {

            .hero-image img,
            .floating-card {
                animation: float 8s ease-in-out infinite;
            }

            /* Réduction des effets de flou pour les performances */
            nav,
            .contact-form {
                backdrop-filter: blur(5px);
            }
        }

        /* hauteur du hero sur mobile */
        @media (max-width: 768px) {
            .hero {
                min-height: 80vh;
            }
        }

        /* validation recaptcha */
        .btn-white:disabled {
            background: rgba(255, 255, 255, 0.5) !important;
            color: rgba(236, 121, 20, 0.5) !important;
            transform: none !important;
            box-shadow: none !important;
        }

        .g-recaptcha {
            margin-bottom: 1rem;
        }