#quote-slider {
    width: 90%;
    max-width: 1200px;
    margin-top: clamp(80px, 10vh, 120px);
    margin-bottom: clamp(50px, 8vh, 80px);
    margin-left: auto;
    margin-right: auto;
    padding: clamp(20px, 3vw, 40px);
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border-radius: clamp(20px, 4vw, 50px) 0 clamp(20px, 4vw, 50px) 0;
    box-shadow: 
        8px 4px 8px 8px rgba(0, 0, 0, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#quote-slider:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.quote-style__container {
    text-align: left;
    margin-bottom: 2rem;
}

.quote-style__text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.quote-style__author {
    font-style: italic;
    color: var(--secondary-color);
    text-align: left;
    padding-right: 1rem;
    font-size: 1.1rem;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.5s ease 0.2s, transform 0.5s ease 0.2s;
}

.quote-style__controls {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.quote-style__button {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--secondary-color);
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-style__button:hover {
    background: rgba(52, 152, 219, 0.1);
    transform: scale(1.1);
}

.quote-style__button .material-icons {
    font-size: 24px;
}

/* Media Queries */
@media (max-width: 768px) {
    #quote-slider {
        width: 90%;
        margin-top: clamp(60px, 8vh, 100px);
        margin-bottom: clamp(40px, 6vh, 70px);
    }
}

@media (max-width: 480px) {
    #quote-slider {
        width: 95%;
        margin-top: clamp(40px, 6vh, 80px);
        margin-bottom: clamp(30px, 5vh, 60px);
    }
}

/* Conteneur de la barre de progression */
.quote-style__progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 2px;
}

.quote-style__progress-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(
        90deg,
        #0077B5,
        #00a0dc,
        #0077B5
    );
    background-size: 200% 100%;
    animation: gradientMove 2s linear infinite;
    box-shadow: 0 0 10px rgba(0, 119, 181, 0.5);
    border-radius: 2px;
    transition: width 0.1s linear;
}

/* Animation du gradient */
@keyframes gradientMove {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

/* Animation de pulsation */
@keyframes pulse {
    0% { transform: scaleY(1); opacity: 0.8; }
    50% { transform: scaleY(1.5); opacity: 1; }
    100% { transform: scaleY(1); opacity: 0.8; }
}

.quote-style__progress-bar {
    animation: 
        gradientMove 2s linear infinite,
        pulse 1s ease-in-out infinite;
    transform-origin: center bottom;
}

/* Calcul dynamique de la largeur basé sur la viewport */
@media (min-width: 769px) {
    #quote-slider {
        width: 90%;
        padding: 1.5rem;
        margin: 2rem auto;
    }

    .quote-style__text {
        font-size: 1.1rem;
    }

    .quote-style__author {
        font-size: 1rem;
    }
}

.project-highlight {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  margin: 2rem 0;
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(0, 0, 0, 0.1);
}