  :root {
            --primary-blue: #2563eb;
            --dark-blue: #1e293b;
            --bg-light: #f0f9ff;
            --footer-bg: #0f172a;        
            --primary-light: #dbeafe;
            --text-muted: #64748b;
            --bg-body: #ffffff;
            --bg-alt: #f8fafc;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-light);
            color: var(--dark-blue);
            overflow-x: hidden;
        }

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

        .blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.5;
            animation: pulse 10s infinite alternate;
        }

        .blob-1 { width: 400px; height: 400px; background: #bfdbfe; top: -100px; left: -100px; }
        .blob-2 { width: 300px; height: 300px; background: #e0e7ff; top: 20%; right: -50px; }
        .blob-3 { width: 250px; height: 250px; background: #bae6fd; bottom: 10%; left: 20%; }

        @keyframes pulse {
            0% { transform: scale(1); }
            100% { transform: scale(1.2); }
        }

        /* Navbar */
        .navbar {
            transition: all 0.3s ease;
            padding: 20px 0;
            z-index: 1050;
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.8) !important;
            backdrop-filter: blur(10px);
            padding: 10px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .nav-link {
            font-weight: 600;
            font-size: 0.9rem;
            margin: 0 10px;
            color: var(--dark-blue) !important;
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--primary-blue);
            transition: width 0.3s;
        }

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

        /* Hero Styling */
        .hero-section {
            padding: 160px 0 80px;
            text-align: center;
        }

        .badge-custom {
            background-color: #dbeafe;
            color: var(--primary-blue);
            font-weight: 800;
            font-size: 0.75rem;
            padding: 8px 16px;
            border-radius: 50px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 2rem;
        }

        .dot {
            width: 8px;
            height: 8px;
            background-color: var(--primary-blue);
            border-radius: 50%;
            display: inline-block;
            animation: blink 1.5s infinite;
        }

        @keyframes blink {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.2); }
        }

        .hero-title {
            font-size: clamp(2.5rem, 8vw, 4.5rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        .text-gradient {
            background: linear-gradient(90deg, #2563eb, #6366f1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .typewriter-cursor {
            display: inline-block;
            width: 3px;
            background-color: var(--primary-blue);
            margin-left: 5px;
            animation: cursor-blink 0.7s infinite;
            vertical-align: middle;
        }

        @keyframes cursor-blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0; }
        }

        .hero-desc {
            font-size: 1.2rem;
            color: #64748b;
            max-width: 700px;
            margin: 0 auto 2.5rem;
        }

        /* Hero Stats Grid */
        .stats-grid {
            margin-top: 80px;
            border-top: 1px solid #e2e8f0;
            padding-top: 60px;
        }

        .stat-item h3 {
            font-weight: 800;
            font-size: 2.2rem;
            margin-bottom: 5px;
            color: var(--primary-blue);
        }

        .stat-item p {
            color: #94a3b8;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Buttons */
        .btn-primary-custom {
            background-color: var(--primary-blue);
            color: white !important;
            padding: 16px 32px;
            border-radius: 12px;
            font-weight: 700;
            border: none;
            box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
            transition: all 0.3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .btn-primary-custom:hover { transform: translateY(-3px); background-color: #1d4ed8; }

        .btn-secondary-custom {
            background-color: white;
            color: var(--dark-blue);
            padding: 16px 32px;
            border-radius: 12px;
            font-weight: 700;
            border: 2px solid #e2e8f0;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .btn-secondary-custom:hover { transform: translateY(-3px); background-color: #f8fafc; }

        /* Sections */
        .section-padding { padding: 100px 0; }

        .card-service {
            background: white;
            border: 1px solid rgba(226, 232, 240, 0.6);
            border-radius: 24px;
            padding: 40px;
            height: 100%;
            transition: all 0.4s ease;
        }

        .card-service:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            border-color: var(--primary-blue);
        }

        .icon-box {
            width: 60px;
            height: 60px;
            background: #eff6ff;
            color: var(--primary-blue);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-bottom: 24px;
        }

        .feature-icon-blue {
            font-size: 2rem;
            color: var(--primary-blue);
            margin-bottom: 15px;
        }

        .img-rounded-custom {
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        /* Footer Original Style */
        .footer {
            background-color: var(--footer-bg);
            color: #94a3b8;
            padding: 80px 0 30px;
        }

        .footer-logo {
            color: white;
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-title { color: white; font-weight: 700; margin-bottom: 25px; font-size: 1.1rem; }

        .footer-links { list-style: none; padding: 0; }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a { color: #94a3b8; text-decoration: none; transition: color 0.3s; }
        .footer-links a:hover { color: var(--primary-blue); }

        .social-links { display: flex; gap: 15px; margin-top: 20px; }
        .social-links a {
            width: 40px; height: 40px; background: rgba(255,255,255,0.05);
            color: white; border-radius: 50%; display: flex; align-items: center;
            justify-content: center; text-decoration: none; transition: all 0.3s;
        }
        .social-links a:hover { background: var(--primary-blue); transform: translateY(-3px); }

        .copyright {
            border-top: 1px solid rgba(255,255,255,0.05);
            margin-top: 60px;
            padding-top: 30px;
            font-size: 0.85rem;
            text-align: center;
        }

        .fab {
            position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px;
            background-color: var(--primary-blue); border-radius: 50%; display: flex;
            align-items: center; justify-content: center; color: white;
            font-size: 24px; box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            cursor: pointer; z-index: 1000;
        }
        
        
        
        
        
        /* --- Page Header --- */
        .page-header {
            padding: 180px 0 100px;
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            text-align: center;
            overflow: hidden;
        }

        .section-padding {
            padding: 100px 0;
        }

        /* --- Design Cards --- */
        .card-custom {
            background: white;
            border-radius: 24px;
            padding: 40px;
            border: 1px solid #e2e8f0;
            height: 100%;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .card-custom:hover {
            border-color: var(--primary-blue);
            transform: translateY(-12px);
            box-shadow: 0 25px 50px rgba(37, 99, 235, 0.1);
        }

        .icon-box {
            width: 55px;
            height: 55px;
            background: var(--primary-light);
            color: var(--primary-blue);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-bottom: 25px;
            transition: transform 0.3s ease;
        }
        .card-custom:hover .icon-box {
            transform: scale(1.1) rotate(5deg);
        }

        .img-rounded {
            border-radius: 40px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.12);
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: transform 0.5s ease;
        } 

        /* --- Services Specific ---  */
        .step-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--primary-light);
            line-height: 1;
            margin-bottom: 15px;
            opacity: 0.6;
        }

        .check-list {
            list-style: none;
            padding: 0;
        }
        .check-list li {
            margin-bottom: 12px;
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }
        .check-list i {
            color: var(--primary-blue);
            font-size: 1.1rem;
        } 
        
        
        
        
        

        /* =========================
   RESPONSIVE MOBILE
   ========================= */
@media (max-width: 768px) {

    /* Global */
    body {
        text-align: center;
    }

    /* Navbar */
    .navbar .navbar-nav {
        text-align: center;
    }

    .navbar .btn {
        margin-top: 15px;
    }

    /* Hero */
    .hero-section {
        padding: 120px 15px 60px;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    /* Boutons */
    .btn-primary-custom,
    .btn-secondary-custom {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    /* Stats */
    .stat-item {
        text-align: center;
    }

    /* Services cards */
    .card-service {
        text-align: center;
    }

    .icon-box {
        margin-left: auto;
        margin-right: auto;
    }

    /* Why us section */
    #why-us .row {
        text-align: center;
    }

    #why-us .d-flex {
        justify-content: center;
        text-align: center;
    }

    #why-us .feature-icon-blue {
        margin-left: auto;
        margin-right: auto;
    }
    

 
 

    /* Footer */
    .footer {
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

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

        /* =========================
        STOP SCROLL HORIZONTAL
        ========================= */
        html, body {
        max-width: 100%;
        overflow-x: hidden !important;
}
    /* =========================
   MOBILE – CARTES & IMAGES COMPACTES
   ========================= */
@media (max-width: 768px) {

    /* Sections moins hautes */
    .section-padding {
        padding: 50px 0;
    }

    /* Cards services */
    .card-service {
        padding: 20px;
        margin: 0 auto;
        max-width: 92%;
    }

    /* Icône dans la card */
    .icon-box {
        width: 52px;
        height: 52px;
        font-size: 20px;
        margin: 0 auto 16px;
    }

    /* Images (Why us) */
    .img-rounded-custom {
        max-width: 92%;
        margin: 0 auto;
        display: block;
        border-radius: 16px;
    }

    /* Espaces entre lignes */
    .row.g-4 {
        --bs-gutter-y: 1.2rem;
    }

    .row.g-5 {
        --bs-gutter-y: 1.5rem;
    }

    /* Réduire les blocs features */
    #why-us .d-flex {
        gap: 10px;
        margin-bottom: 16px;
    }

    /* Texte un peu plus compact */
    p {
        margin-bottom: 0.6rem;
    }
}