/* Quote Section */
.quote-section {
    height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* background: linear-gradient(135deg, #21212c 0%, #0b0648 100%); */
    background-color: #244153;
    padding: 4rem 2rem;
    overflow: hidden;
}

.quote-container {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 3.4fr;
    gap: 4rem;
    align-items: center;
}

.quote-image-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.quote-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 10px;
}

.quote-content {
    color: white;
}

.quote-text {
    font-size: 3.2rem;
    line-height: 1.5;
    margin: 0 0 2rem 0;
    font-weight: 600;
    font-style: italic;
    position: relative;
}

.quote-text .letter {
    display: inline-block;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.quote-text .letter.visible {
    opacity: 1;
}

.quote-author {
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 500;
    display: block;
    margin-top: 2rem;
    opacity: 0.9;
    text-align: end;
    color: var(--primary-accent);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .quote-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .quote-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }

    .quote-text {
        font-size: 2rem;
    }

    .quote-author {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .quote-section {
        padding: 3rem 1.5rem;
    }

    .quote-text {
        font-size: 1.5rem;
    }

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

    .quote-image-wrapper {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .quote-text {
        font-size: 1.25rem;
    }

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