body {
    font-family: 'Inter', sans-serif;
    background-color: #050505;
    color: #ffffff;
}
h1, h2, h3 { font-family: 'Plus Jakarta Sans', sans-serif; }

.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.hero-gradient {
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, rgba(5, 5, 5, 0) 70%);
}

.text-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bento-card {
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.bento-card:hover {
    border-color: rgba(59, 130, 246, 0.5);
    transform: scale(1.02);
}

/* Animated Pulse for 'Live' */
.pulse {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(16, 185, 129, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Background Grid Pattern */
.grid-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.grid-lines {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.15) 1px, transparent 1px);
    background-size: 60px 60px;
    transform: perspective(400px) rotateX(60deg);
    animation: gridFlow 30s linear infinite;
}

@keyframes gridFlow {
    0% {
        transform: perspective(400px) rotateX(60deg) translateY(0);
    }
    100% {
        transform: perspective(400px) rotateX(60deg) translateY(60px);
    }
}

/* Accent Scanning Lines */
.accent-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: scan 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.accent-line:nth-child(1) {
    width: 300px;
    top: 20%;
    left: -300px;
    animation-delay: 0s;
}

.accent-line:nth-child(2) {
    width: 400px;
    top: 50%;
    right: -400px;
    animation: scan-reverse 10s ease-in-out infinite;
    animation-delay: 2s;
}

.accent-line:nth-child(3) {
    width: 250px;
    top: 80%;
    left: -250px;
    animation-delay: 4s;
}

@keyframes scan {
    0%, 100% {
        transform: translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(calc(100vw + 100%));
    }
}

@keyframes scan-reverse {
    0%, 100% {
        transform: translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(calc(-100vw - 100%));
    }
}

/* Hero Title Style from design.html */
.hero-title {
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero-title span {
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, #888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Section Title Style */
.section-title {
    font-weight: 700;
    letter-spacing: -0.02em;
}

.section-title span {
    font-weight: 700;
}

/* Button Style from design.html */
.btn-glass {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    text-decoration: none;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-weight: 500;
}

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

.btn-glass:hover::before {
    width: 300px;
    height: 300px;
}

.btn-glass:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Update btn-primary to use glass style */
.btn-primary {
    background: rgb(37 99 235 / 70%);
    border: 1px solid rgb(255 255 255 / 20%);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: none;
}

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

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

/* Country Slider Styles */
.country-card {
    min-width: 280px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 420px;
}

.country-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

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

.country-flag {
    width: 60px;
    height: 45px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.country-flag .fi {
    width: 100%;
    height: 100%;
    display: block;
    background-size: cover;
    background-position: center;
}

.country-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.country-services {
    flex: 1;
    min-height: 0;
}

.country-cities {
    margin-top: auto;
    padding-top: 1rem;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .country-card {
        min-width: calc(50% - 12px);
    }
}

@media (max-width: 640px) {
    .country-card {
        min-width: calc(100% - 12px);
    }
}

/* Secteurs Animation Styles */
.secteurs-animation-container {
    position: relative;
    mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
}

.secteurs-column-content {
    display: flex;
    flex-direction: column;
    animation-duration: 20s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.secteurs-column-up .secteurs-column-content {
    animation-name: scrollUp;
}

.secteurs-column-down .secteurs-column-content {
    animation-name: scrollDown;
}

@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

@keyframes scrollDown {
    0% {
        transform: translateY(-50%);
    }
    100% {
        transform: translateY(0);
    }
}

.secteurs-animation-container:hover .secteurs-column-content {
    animation-play-state: paused;
}

/* Center stats container */
#stats-container {
    width: 100%;
}

/* Process Steps - Simple Sequential Layout with Timeline */
.process-steps-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(37, 99, 235, 0.3) 10%, 
        rgba(37, 99, 235, 0.6) 50%, 
        rgba(37, 99, 235, 0.3) 90%, 
        transparent 100%);
    transform: translateX(-50%);
    z-index: 1;
}

.process-step {
    position: relative;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    z-index: 2;
}

.process-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.process-step-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
}

.timeline-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border: 4px solid #050505;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.2), 0 0 20px rgba(37, 99, 235, 0.4);
    z-index: 3;
    transition: all 0.3s ease;
}

.process-step.visible .timeline-dot {
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.2), 0 0 20px rgba(37, 99, 235, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(37, 99, 235, 0.1), 0 0 30px rgba(37, 99, 235, 0.6);
    }
}

.process-step-content .glass {
    transition: all 0.3s ease;
}

.process-step:hover .process-step-content .glass {
    transform: translateY(-5px);
    border-color: rgba(37, 99, 235, 0.5);
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.2);
}

@media (max-width: 767px) {
    .timeline-line {
        left: 30px;
    }

    .process-step {
        margin-bottom: 60px;
    }

    .process-step-content {
        grid-template-columns: auto 1fr;
        gap: 20px;
    }

    .timeline-dot {
        width: 20px;
        height: 20px;
    }

    .process-step-content .glass,
    .process-step-content > div:last-child {
        grid-column: 2;
    }
}

.process-card:hover {
    transform: translateY(-4px);
    transition: transform 0.3s ease;
}

.process-card .glass {
    transition: all 0.3s ease;
}

.process-card:hover .glass {
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.2);
}

/* Why Section Styles */
.why-card {
    position: relative;
}

.why-card:hover {
    transform: translateY(-6px);
    transition: transform 0.3s ease;
}

.why-card .glass {
    transition: all 0.3s ease;
}

.why-card:hover .glass {
    box-shadow: 0 12px 48px rgba(59, 130, 246, 0.25);
}

/* Hide scrollbar for notification animation */
.scrollbar-hide {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.scrollbar-hide::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* Form input styling */
select {
    color: white;
}

select option {
    color: white;
    background-color: #1a1a1a;
}
.to-transparent {
    --tw-gradient-to: #00030f var(--tw-gradient-to-position) !important;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Isometric Cube */
.isometric-cube {
    width: 60px;
    height: 60px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotate-cube 8s linear infinite;
}

.cube-face {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 1px solid rgba(59, 130, 246, 0.4);
    backdrop-filter: blur(10px);
}

.cube-top {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.3), rgba(59, 130, 246, 0.2));
    transform: rotateX(90deg) rotateZ(45deg) translateZ(30px);
}

.cube-left {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.4), rgba(59, 130, 246, 0.3));
    transform: rotateY(-90deg) rotateZ(45deg) translateZ(30px);
}

.cube-right {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.4), rgba(96, 165, 250, 0.3));
    transform: rotateY(90deg) rotateZ(45deg) translateZ(30px);
}

@keyframes rotate-cube {
    0% {
        transform: rotateX(0deg) rotateY(0deg);
    }
    100% {
        transform: rotateX(360deg) rotateY(360deg);
    }
}

/* Responsive Navbar Styles */
#mobile-menu {
    animation: slideDown 0.3s ease-out;
}

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

/* Language Dropdown Styles */
#language-dropdown {
    animation: fadeIn 0.2s ease-out;
}

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

/* Mobile Menu Button Animation */
#mobile-menu-btn {
    transition: transform 0.2s ease;
}

#mobile-menu-btn:active {
    transform: scale(0.95);
}

/* Ensure mobile menu doesn't overflow */
@media (max-width: 1024px) {
    #mobile-menu {
        max-height: calc(100vh - 88px);
        overflow-y: auto;
    }
}
