:root {
    --primary-color: #2563eb;
    --secondary-color: #9333ea;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
}

/* Base typography */
body {
    font-family: var(--font-primary);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom utility classes */
.text-gradient {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-custom {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn-custom {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color :var(--light-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background:linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color :var(--light-color);
}

.btn-project.active{
    background:linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color :var(--light-color);
}
@media(max-width:992px){
    .parcours-mobile .lead-info{
    text-align: center;
    }

    .Features {
    flex-direction: column;
    align-items: center;
    text-align: center;
    }

    .Features .icons{
        margin-bottom: 10px;
    }

    .btn-project{
        font-size: 10px;
    }
}



