/* İLHAM VEREN SÖZ BÖLÜMÜ STİLLERİ */
.inspirational-quote-section {
    padding: 0;
    min-height: 80vh;
    background-color: #000000;
}

.inspirational-quote-container {
    display: flex;
    /* max-width: 1200px; */
    margin: 0 auto;
    gap: 50px;
    padding: 0 20px;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    min-height: 80vh;
    position: relative;
    justify-content: flex-end;

}


.quote-image-area {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.quote-image-area video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /*border-radius: 10px; */
    filter: brightness(20%);

}



.quote-content-area {
    position: relative;
    z-index: 2;
    flex: 0 0 50%;
    /* sağda 50% genişlik */
    margin-left: auto;
    /* sağ tarafa iter */
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* padding: 50px;*/
}


.quote-mark {
    font-size: 48px;
    color: #bdd630;
    margin-bottom: 20px;
}

.quote-content {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.quote-content.active {
    display: block;
    opacity: 1;
}

.the-quote {
    font-size: 24px;
    line-height: 1.6;
    color: white;
    margin-bottom: 30px;
    font-style: italic;
}

.quote-author {
    margin-top: 20px;
}

.author-name {
    font-size: 18px;
    font-weight: bold;
    color: white;
    margin-bottom: 5px;
}

.author-title {
    font-size: 14px;
    color: #666;
}

.quote-accent-lines {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.line {
    width: 30px;
    height: 4px;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.line:hover {
    background-color: #bdd630;
}

.line.active {
    background-color: #bdd630;
    width: 40px;
}

@media (max-width: 998px) {

    .quote-mark {
        display: flex;
    }

    .the-quote {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    

    .inspirational-quote-container {
        justify-content: center;
    }

   
    .quote-content-area{
        margin-left: unset;
        text-align: center;
    }

    .quote-accent-lines{
        justify-content: center;
    }
    .the-quote {
        font-size: 18px;
    }

    .author-name {
        font-size: 16px;
    }

    .author-title {
        font-size: 12px;
    }
    
}