:root {
    --orange:#FF4500;
    --bleu: #50E6E6;
}

/* About US section */
@media screen {

    #about-us {
        background: #fff;
    }

    #about-us .contenu span {
        color: var(--bleu);
        font-size: 1.5rem;
        text-transform: uppercase;
    }

    #about-us .contenu h4 {
        font-size: clamp(100%, 10vw, 3rem);
        font-weight: 700;
    }

    #about-us .contenu p {
        font-size: 1.3rem;
        margin-bottom: 0;
    }
}

/* Vision & Mission */
@media screen {
    
    #vimi .header {
        margin: 0 auto;
        max-width: 600px;
        text-align: center;
    }

    #vimi .header h4 {
        font-size: 2.5rem;
        color: var(--bleu);
        position: relative;
        padding-bottom: 1rem;
        font-weight: 700;
        position: relative;

    }

    #vimi .header h4::after {
        content: "";
        position: absolute;
        width: 100px;
        height: 4px;
        border-radius: 8px;
        background: var(--orange);
        bottom: 8px;
        left: 50%;
        transform: translateX(-50%)
    }

    #listeVimi .vimi {
        border-radius: 12px;
        padding: 2.5rem 1.5rem;
        text-align: center;
        height: 100%;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: all 0.5s ease;
        position: relative;

    }

    #listeVimi .vimi::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 0;
        background: color-mix(in srgb, var(--accent-color), transparent 92%);
        z-index: -1;
        transition: height 0.5s cubic-bezier(0.65, 0, 0.35, 1);
        border-radius: 12px;
        background: #ff440016;
    }

    #listeVimi .vimi:hover {
        transform: translateY(-20px);
    }


    #listeVimi .vimi:hover::before {
        height: 100%;
    }

    #listeVimi .vimi:hover .icone {
        background: var(--orange);
    }

    #listeVimi .vimi:hover .icone svg {
        color: #fff;
    }




    #listeVimi .vimi .icone {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: color-mix(in srgb, var(--orange), transparent 90%);
        color: var(--orange);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        font-size: 1.8rem;
        transition: all 0.5s ease;
        box-shadow: 0 5px 15px color-mix(in srgb, var(--orange), transparent 85%);
    }

    #listeVimi .vimi .icone svg {
        width: 40px;
        color: var(--orange);
    }


    #listeVimi .vimi h5 {
        font-size: 1.5rem;
    }

    #listeVimi .vimi p {
        margin-bottom: 0;
        font-size: 1.2rem;
    }
}