
/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: #f8fbff;
    padding-top: 80px;
    background: radial-gradient(circle at top, rgba(4, 159, 217, 0.18), transparent 35%),
                linear-gradient(180deg, #061526 0%, #0c1a2e 50%, #111827 100%);
}

.hero-section::before,
.hero-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
    animation: drift 20s ease-in-out infinite;
}

.hero-section::before {
    background: #049fd9;
    top: -10%;
    left: -5%;
}

.hero-section::after {
    background: #7c3aed;
    bottom: -10%;
    right: -5%;
    animation-delay: -10s;
}

@keyframes drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, -30px) scale(1.1); }
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.4;
    display: none;
}

.particles-background {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.8) 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.8) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 90vh;
}

.hero-text {
    max-width: 800px;
    width: 100vw;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    margin: 20px;
}

.hero-text h1 {
    font-size: clamp(2rem, 5.5vw, 3.6rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.15;
    margin-bottom: 24px;
}

.textNDD {
    font-size: 1.5rem;
    max-width: 560px;
}

.hero-quick-links {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    justify-content: flex-start;
}

.quick-link-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 16px 28px;
    border-radius: var(--radius);
    color: #f8fbff;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.08);
    min-width: 120px;
}

.quick-link-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
}

.quick-link-item i {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #ffffff;
    transition: var(--transition);
}

.quick-link-item:hover i {
    transform: scale(1.15);
}

.quick-link-icons {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.quick-link-icons i {
    font-size: 1.1rem;
}

.quick-link-description {
    display: block;
    margin-top: 8px;
    font-size: 0.85rem;
    color: rgba(248, 251, 255, 0.8);
    text-align: center;
    max-width: 180px;
}

.promotionPrix p {
    margin: 0;
    line-height: 1.1;
}

.promotionPrix .promotion-text,
.promotionPrix .promotion-value,
.promotionPrix .promotion-suffix {
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.promotionPrix .promotion-text {
    display: block;
    font-size: 1rem;
    color: #d1d5db;
    margin-bottom: 0.35rem;
}

.promotionPrix .promotion-value {
    font-weight: 800;
    font-size: 3rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.promotionPrix .promotion-suffix {
    font-size: 1.1rem;
    font-weight: 500;
    color: #9ca3af;
    margin-left: 0.35rem;
    transition: opacity 0.35s ease, transform 0.35s ease;
}
}

.promotionPrix p span {
    font-weight: 800;
    font-size: 3rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    transition: opacity 0.4s ease;
}

.promotionPrix .promotion-suffix {
    font-size: 1.1rem;
    font-weight: 500;
    color: #9ca3af;
    margin-left: 0.35rem;
    transition: opacity 0.4s ease;
}

.promotionPrix {
    font-size: 1.1rem;
    color: #9ca3af;
    margin-top: 15px;
}

.cloud{
    position: absolute;
    top: 80px;
    right: 50px;
    width: 100px;
    height: 100px;
    display: none;
}

.cloud img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.Mi-cloud{
    position: absolute;
    bottom: 0;
    right: 0;
    height: 200px;
}

.Mi-cloud img{
    object-fit: cover;
    height: 100%;
}

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

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.typing-animation{
    display: inline;
    max-width:min-content;
    color: black;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 15px;
    margin-top: 30px;
}

.cta-button {
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    width: 290px;
}

.cta-button i {
    font-size: 0.9rem;
}



.primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 5px 20px rgba(74, 0, 224, 0.3);
}

.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 0, 224, 0.4);
}

.secondary {
    background: rgba(255, 255, 255);
    color: var(--accent-color);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(51, 18, 160, 0.2);
}

.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-3px);
}

.hero-image {
    display: flex;
    justify-content: center;
    max-width: 90vw;
    overflow: hidden;
}

.hero-image img{
    max-width: 100%;
    object-fit: cover;
}

.floating-image {
    animation: float 16s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    25% { transform: translateY(-40px); }
    50% { transform: translateY(0px); }
    75% { transform: translateY(40px); }
    100% { transform: translateY(0px); }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    opacity: 0.7;
    z-index: 10;
}

.scroll-indicator span {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--light-color);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    padding-top: 5px;
}

.wheel {
    width: 5px;
    height: 8px;
    background-color: var(--light-color);
    border-radius: 3px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(10px); opacity: 0; }
}

/* Responsive Design */
@media (max-width: 892px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        height: 90vh;
    }
    
    .hero-text {
        margin-bottom: 50px;
        max-width: 100%;
        height: 60vh;
        justify-content: space-between;

    }

    .quick-link-item{
        padding: 12px 20px;
        min-width: 100px;
    }

    .hero-image{
        display: none;
    }

    .textNDD {
        font-size: 1.5rem;
        width: 100vw;
        max-width: none;
        padding: 30px;
    }
    .hero-quick-links{
        width: 100vw;
        display: flex;
        justify-content: center;
        align-items: center
    }
}

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