@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --bg-primary: #000000;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --accent-blue: #4169E1;
    --accent-purple: #8B5CF6;
    --glow-color: rgba(65, 105, 225, 0.4);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Poppins';
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 40px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 40px;
}

.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo img {
    width: 60px;
    height: auto;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15.5px;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: white;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btncontact {
    position: relative;
    align-items: center;
    gap: 8px;
    padding: 10px 28px;
    border-radius: 118px;
    font-size: 12px;
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;
    letter-spacing: normal;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    z-index: 1 !important;
}

.btncontact::before {
    content: '' !important;
    position: absolute !important;
    top: -50% !important;
    left: -50% !important;
    width: 200% !important;
    height: 200% !important;
    background: conic-gradient(from 0deg,
            transparent 0deg 60deg,
            rgba(255, 255, 255, 1) 120deg 180deg,
            transparent 240deg 360deg) !important;
    animation: rotate 4s linear infinite !important;
    z-index: -2 !important;
    filter: blur(12px) !important;
}

.btncontact::after {
    content: '' !important;
    position: absolute !important;
    inset: 1px !important;
    background: #000 !important;
    border-radius: 50px !important;
    z-index: -1 !important;
}

.btncontact:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2) !important;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Hero Section */
.hero {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: var(--spacing-2xl) var(--spacing-lg);
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: 95%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1200px;
    height: 1200px;
    background: radial-gradient(circle, rgba(65, 105, 225, 0.3) 0%, rgba(139, 92, 246, 0.2) 30%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    animation: fadeInDown 0.8s ease-out;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 60px);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 0.8s ease-out 0.2s both;
    letter-spacing: normal;
}

.hero-title em {
    font-style: italic;
    font-weight: 400;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-xl);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-description strong {
    color: var(--text-primary);
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    align-items: center;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 28px;
    border-radius: 118px;
    font-size: 12px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    letter-spacing: normal;
}

.btn-primary {
    background: var(--text-primary);
    color: var(--bg-primary);
    border: 1px solid var(--text-primary);
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Globe Effect */
.globe-container {
    position: absolute;
    bottom: -180px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1600px;
    height: 450px;
    overflow: hidden;
    pointer-events: none;
}

.globe {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 1800px;
    height: 700px;
    background: radial-gradient(ellipse at center top,
            rgba(255, 255, 255, 0.15) 0%,
            rgba(160, 160, 255, 0.10) 20%,
            rgba(120, 120, 255, 0.06) 40%,
            rgba(60, 60, 120, 0.03) 60%,
            transparent 80%);
    border-radius: 50% 50% 0 0 / 120% 120% 0 0;
    box-shadow:
        0 -20px 80px rgba(255, 255, 255, 0.25),
        0 -40px 120px rgba(150, 150, 255, 0.20),
        inset 0 -60px 100px rgba(255, 255, 255, 0.15);
    border: none;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Carousel */
.carousel-wrapper {
    width: 100%;
    background: #000;
    padding: 32px 0;
}

.carousel-container {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 80px;
    animation: scroll 40s linear infinite;
    width: max-content;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-item img {
    height: 24px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-item:hover img {
    opacity: 0.7;
    transform: scale(1.05);
}

.carousel-container::before,
.carousel-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.carousel-container::before {
    left: 0;
    background: linear-gradient(to right, #000 0%, rgba(0, 0, 0, 0.8) 40%, transparent 100%);
}

.carousel-container::after {
    right: 0;
    background: linear-gradient(to left, #000 0%, rgba(0, 0, 0, 0.8) 40%, transparent 100%);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-80px * 8 - 640px));
    }
}

/* Stars */
.stars-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: twinkle 3s ease-in-out infinite;
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.8);
}

.star.small {
    width: 1px;
    height: 1px;
}

.star.medium {
    width: 2px;
    height: 2px;
}

.star.large {
    width: 3px;
    height: 3px;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 5;
        transform: scale(1.4);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

@keyframes twinkleBright {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
        filter: brightness(3);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.3);
        filter: brightness(3);
    }
}

/* Appliqué aux étoiles qui scintillent */
.star.twinkle {
    animation: twinkle 0.3s ease-in-out infinite;
}

.star.twinkle-bright {
    animation: twinkleBright 1s ease-in-out infinite;
}

/* Skills Section */
.skills-section {
    width: 100%;
    background: #000;
    padding: 120px 40px;
    position: relative;
}

.skills-container {
    max-width: 1400px;
    margin: 0 auto;
}

.skills-header {
    text-align: center;
    margin-bottom: 80px;
}

.skills-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.skills-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 36px);
    font-weight: 400;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: -0.02em;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.skill-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.31);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(.23, 1, .32, 1);
    position: relative;
    overflow: hidden;
}

.skill-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.skill-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(114, 39, 157, 0.3);
}

.skill-card:hover::before {
    opacity: 1;
}



.skill-card:hover .skill-icon {
    color: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}



.skill-name {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-primary);
    margin: 0 0 12px 0;
    letter-spacing: -0.01em;
}

.skill-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    width: 100%;
    background: #000;
    padding: 120px 0 80px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 40px;
}

.testimonials-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.testimonials-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 48px);
    font-weight: 400;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: -0.02em;
}

.testimonials-carousel-wrapper {
    width: 100%;
    position: relative;
    padding: 0 80px;
}

.testimonials-carousel-container {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    animation: scrollTestimonials 40s linear infinite;
    width: max-content;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    width: 380px;
    flex-shrink: 0;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    margin: 0 0 4px 0;
    letter-spacing: -0.01em;
}

.author-title {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    position: relative;
    z-index: 1;
}

.testimonials-carousel-container::before,
.testimonials-carousel-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.testimonials-carousel-container::before {
    left: 0;
    background: linear-gradient(to right, #000 0%, rgba(0, 0, 0, 0.8) 40%, transparent 100%);
}

.testimonials-carousel-container::after {
    right: 0;
    background: linear-gradient(to left, #000 0%, rgba(0, 0, 0, 0.8) 40%, transparent 100%);
}

@keyframes scrollTestimonials {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-404px * 6));
    }
}

/* Projects Section */
.projects-section {
    width: 100%;
    background: #000;
    padding: 33px 59px;
    position: relative;
}

.projects-container {
    max-width: 1500px;
    margin: 0 auto;
}

.projects-header {
    text-align: center;
    margin-bottom: 40px;
}

.projects-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.projects-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 36px);
    font-weight: 400;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: -0.02em;
}

/* ROW 1: 4 Project Cards */
.projects-row-1 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.project-card {
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.31);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.project-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

.project-image {
    position: relative;
    width: 100%;
    padding-top: 60%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
}

.project-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-info {
    padding: 14px;
}

.project-header {
    margin-bottom: 10px;
}

.project-year {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    display: block;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: -0.01em;
}

.project-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.project-live-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.31);
    border-radius: 14px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 10px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.project-live-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.project-live-link svg {
    width: 10px;
    height: 10px;
    color: rgba(255, 255, 255, 0.6);
}

.project-category {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
}

/* ROW 2: Tools Grid + Feature Cards */
.projects-row-2 {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

/* Tools Grid (3x3) */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.31);
    border-radius: 12px;
    padding: 16px;
}

.tool-item {
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.31);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.tool-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.tool-item img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    /*filter: grayscale(100%) brightness(0.8);*/
    transition: filter 0.3s ease;
}

.tool-item:hover img {
    filter: grayscale(0%) brightness(1);
}

.tool-badge {
    position: relative;
}

.badge-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

/* Feature Cards */
.feature-card {
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.31);
    border-radius: 12px;
    padding: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

.feature-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    margin: 0 0 8px 0;
    letter-spacing: -0.01em;
}

.feature-description {
    font-size: 11px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Collaborate Card */
.collaborate-card {
    position: relative;
}

.collaborate-avatars {
    position: relative;
    height: 80px;
    margin-top: 12px;
}

.avatar-tag {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.31);
    border-radius: 16px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.avatar-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Navigation Card */
.navigation-card {
    display: flex;
    gap: 12px;
}

.nav-content {
    flex: 1;
}

.nav-menu-panel {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.31);
    border-radius: 10px;
    padding: 12px;
    min-width: 120px;
    position: relative;
}

.nav-close {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 20px;
    height: 20px;
    border: none;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 1);
}

.nav-menu-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 20px;
}

.nav-menu-item {
    padding: 6px 10px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 11px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-menu-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.9);
}

.nav-menu-item.active {
    background: rgba(139, 92, 246, 0.15);
    color: rgba(255, 255, 255, 1);
    border-left: 2px solid #8B5CF6;
}

/* ROW 3: Global Reach + Animations */
.projects-row-3 {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 16px;
}

/* Global Reach Card */
.global-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
}

.global-content {
    margin-bottom: 12px;
}

.global-image {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.global-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}



/* Animations Card */
.animations-card {
    display: flex;
    flex-direction: column;
}

.animation-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 12px;
    flex: 0;
}

.animation-item {
    /*aspect-ratio: 1;*/
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    padding: 113px 1px;
}

.animation-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.animation-item svg {
    width: 32px;
    height: 32px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.animation-item:hover svg {
    color: rgba(255, 255, 255, 0.9);
}

.animation-item span {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .projects-row-1 {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-row-2 {
        grid-template-columns: 1fr;
    }

    .tools-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 896px) {
    .skill-icon {
        width: 60px !important;
        height: 60px !important;
    }

    .skill-icon img {
        width: 100%;
        height: 100%;
    }

    .hero-glow {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 140px;
        height: 20px;
    }

    .carousel-wrapper {
        padding: -1px 0;
    }

    .skill-card {
        padding: 0px 14px;
    }

    .skill-name {
        font-size: 16px;
        font-weight: 500;
        color: var(--text-primary);
        margin: -14px 0 13px 0;
    }

    .skill-description {
        font-size: 12px;
        padding-bottom: 20px;
    }

    .nav-menu {
        display: none;
    }

    .navbar {
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: none;
        border-bottom: 0solid rgba(0, 0, 0, 0.84);
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-content {
        margin: 33px auto;

    }

    .status-badge {
        margin-bottom: 21px;
        display: none;
    }

    .btn {
        padding: 10px 41px;
        justify-content: center;
    }

    .logo-item img {
        height: 21px;
        width: auto;
    }


    .globe {
        width: 600px;
        height: 300px;
    }

    .skills-section {
        padding: 46px 20px;
    }

    .animation-item {

        background: rgba(0, 0, 0, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.31);

        padding: 55px 1px;
    }

    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .skills-header {
        margin-bottom: 60px;
    }

    .hero-description {
        font-size: clamp(0.7rem, 2vw, 1.15rem);
    }

    .hero-title {

        font-size: clamp(1rem, 7vw, 60px);
    }

    .hero {
        padding-top: 124px;
    }


    .testimonials-section {
        padding: 35px 0 60px 0;
    }

    .testimonials-header {
        margin-bottom: 40px;
        padding: 0 20px;
    }

    .testimonials-carousel-wrapper {
        padding: 0 20px;
    }

    .testimonial-card {
        width: 300px;
        padding: 24px;
    }

    @keyframes scrollTestimonials {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-324px * 6));
        }
    }

    .projects-section {
        padding: 40px 20px;
    }

    .projects-row-1 {

        gap: 12px;
    }

    .projects-row-2,
    .projects-row-3 {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .tools-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .animation-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .navigation-card {
        flex-direction: column;
    }


}

/* Shooting Star Effect */
.shooting-star {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1), 0 0 0 8px rgba(255, 255, 255, 0.1), 0 0 20px rgba(255, 255, 255, 1);
    animation: shoot 3s linear infinite;
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}

.shooting-star::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 1px;
    background: linear-gradient(90deg, #fff, transparent);
}

@keyframes shoot {
    0% {
        transform: rotate(315deg) translateX(0);
        opacity: 1;
    }

    70% {
        opacity: 1;
    }

    100% {
        transform: rotate(315deg) translateX(-1000px);
        opacity: 0;
    }
}



/* Services Section */
.services-section {
    width: 100%;
    background: #000;
    padding: 100px 40px;
    position: relative;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

.service-category {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-category-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-item:hover {
    color: rgba(255, 255, 255, 1);
    transform: translateX(4px);
}

.service-icon {
    width: 16px;
    height: 16px;
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
}

.service-item:hover .service-icon {
    color: rgba(139, 92, 246, 0.9);
}

/* Contact Section */
.contact-section {
    width: 100%;
    background: #000;
    padding: 100px 40px;
    position: relative;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-form-wrapper {
    max-width: 500px;
}

.contact-title {
    font-size: 32px;
    font-weight: 400;
    color: var(--text-primary);
    margin: 0 0 40px 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px 16px;
    color: var(--text-primary);
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(139, 92, 246, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.phone-input {
    display: flex;
    gap: 8px;
}

.country-code {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px 12px;
    color: var(--text-primary);
    font-size: 14px;
    cursor: pointer;
    width: 80px;
}

.phone-input input {
    flex: 1;
}

.requirement-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.req-btn {
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.req-btn:hover,
.req-btn.active {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.5);
    color: var(--text-primary);
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--text-primary);
    color: #000;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

/* Contact Visual */
.contact-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-sphere {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(139, 92, 246, 0.4), rgba(65, 105, 225, 0.2));
    box-shadow:
        0 0 60px rgba(139, 92, 246, 0.3),
        inset 0 0 40px rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.sphere-1 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0s;
}

.sphere-2 {
    width: 120px;
    height: 120px;
    top: 20%;
    right: 20%;
    animation-delay: 2s;
}

.sphere-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(-50%, -50%) translateY(0px);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-20px);
    }
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .contact-container {
        gap: 60px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {


    .services-section,
    .contact-section {
        padding: 60px 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-visual {
        height: 300px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-title {
        font-size: 28px;
    }

    .sphere-1 {
        width: 150px;
        height: 150px;
    }

    .sphere-2 {
        width: 90px;
        height: 90px;
    }

    .sphere-3 {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .requirement-buttons {
        gap: 8px;
    }

    .req-btn {
        padding: 8px 18px;
        font-size: 13px;
    }

    .contact-visual {
        height: 250px;
    }
}

.skill-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}


.country-code {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px 12px;
    color: var(--text-primary);
    font-size: 14px;
    cursor: pointer;
    width: 80px;
}

.phone-input input {
    flex: 1;
}

.requirement-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.req-btn {
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.req-btn:hover,
.req-btn.active {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.5);
    color: var(--text-primary);
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--text-primary);
    color: #000;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

/* Contact Visual */
.contact-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-sphere {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(139, 92, 246, 0.4), rgba(65, 105, 225, 0.2));
    box-shadow:
        0 0 60px rgba(139, 92, 246, 0.3),
        inset 0 0 40px rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.sphere-1 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0s;
}

.sphere-2 {
    width: 120px;
    height: 120px;
    top: 20%;
    right: 20%;
    animation-delay: 2s;
}

.sphere-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(-50%, -50%) translateY(0px);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-20px);
    }
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .contact-container {
        gap: 60px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {


    .services-section,
    .contact-section {
        padding: 60px 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-visual {
        height: 300px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-title {
        font-size: 28px;
    }

    .sphere-1 {
        width: 150px;
        height: 150px;
    }

    .sphere-2 {
        width: 90px;
        height: 90px;
    }

    .sphere-3 {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .requirement-buttons {
        gap: 8px;
    }

    .req-btn {
        padding: 8px 18px;
        font-size: 13px;
    }

    .contact-visual {
        height: 250px;
    }
}

.skill-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.4s ease;
    margin: 15px auto 24px;
}

.skill-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Pour maintenir le ratio d'aspect */
}

/* Pricing Section */
.pricing-section {
    width: 100%;
    background: #000;
    padding: 120px 40px;
    position: relative;
}

.pricing-container {
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.pricing-image-container {
    position: relative;
}

.pricing-image-wrapper {
    width: 100%;
    height: 600px;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.pricing-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: all 0.5s ease;
}

.pricing-image-wrapper:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    bottom: 32px;
    right: 32px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 300px;
}

.badge-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.badge-name {
    color: #000;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.badge-role {
    color: #666;
    font-size: 12px;
}

.badge-logo {
    width: 32px;
    height: auto;
    opacity: 0.8;
}

.pricing-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pricing-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 48px);
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.1;
    margin: 0;
    text-transform: uppercase;
}

.pricing-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.pricing-description strong {
    color: var(--text-primary);
    font-weight: 600;
}

.pricing-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
    margin-top: 24px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-header h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.feature-item p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

@media (max-width: 1024px) {
    .pricing-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .pricing-image-wrapper {
        height: 400px;
    }
}

@media (max-width: 640px) {
    .pricing-features {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .pricing-section {
        padding: 80px 20px;
    }
}