/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Indeed Sans', sans-serif;
    background: #f8f9fa;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.container {
    width: 100%;
    padding: 2rem 0rem;
    position: relative;
}

/* Header Styles */
.header {
    text-align: center;
    margin-bottom: 3rem;
    font-weight: light;
}

.title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.2rem;
    color: #666;
    font-weight: 400;
    line-height: 1.5;
}

.pause-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    margin: 0 auto 2rem;
    display: block;
    transition: background 0.2s;
}

.pause-btn:hover {
    background: #0056b3;
}


/* Quote Section */
.quote-section {
    position: relative;
    margin: 2rem 0;
    overflow: hidden;
    height: 450px;
}

/* Reusable Quote Component */
.quote-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 20px;
    background: linear-gradient(270deg, #FFF -29.44%, #ECF2FF 48.3%);
    padding: 1.7rem 2rem;
    margin: 0 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0);
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
    border: 1px solid #e9ecef;
}

.quote-chip:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* Individual row hover pause */
.top-row:hover {
    animation-play-state: paused;
}

.bottom-row:hover {
    animation-play-state: paused;
}

.quote-icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    margin-right: 24px
}

.quote-icon img {
    width: 20px;
    height: 19px;
}

.quote-text {
    font-size: 1.4rem;
    font-weight: 300;
    color: #495057;
    line-height: 1.3;
}

/* Quote Rows */
.quote-row {
    display: flex;
    align-items: center;
    position: absolute;
    width: max-content;
    overflow: visible;
    will-change: transform;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

.top-row {
    top: 10px;
    animation: slideRight 150s linear infinite;
}

.bottom-row {
    top: 150px;
    animation: slideLeft 150s linear infinite;
}

/* Animation Keyframes */
@keyframes slideLeft {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes slideRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0%);
    }
}





 