* {
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    margin: 0;
    background: #ffffff;
    padding: 40px 0;
}

.timeline {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

    /* DİKEY ÇİZGİ */
    .timeline::before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        width: 12px;
        background: #9E9E9E;
        transform: translateX(-50%);
        z-index: 10;
    }

/* SATIR */
.timeline-row {
    display: flex;
    align-items: center;
    min-height: 210px !important;
    position: relative;
    z-index: auto;
    background-color: #ccc1bf !important;
}

    .timeline-row::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: -1;
    }

    /* ZIGZAG */
    .timeline-row.reverse {
        flex-direction: row-reverse;
        background-color: #f7f3f2 !important; /* açık */
    }

    /* ============================= */
    /* 🔴 SATIR RENK KURALLARI */
    /* ============================= */

    /* NORMAL SATIRLAR */
    .timeline-row:nth-child(odd)::before {
        background-color: #ccc1bf !important; /* koyu */
    }

    .timeline-row:nth-child(even)::before {
        background-color: #f7f3f2; /* açık */
    }

    /* REVERSE SATIR → HER ZAMAN AÇIK */
    .timeline-row.reverse::before {
        background-color: #f7f3f2 !important;
    }

/* ============================= */

/* Görsel kolonu */
.timeline-image {
    width: 45%;
    display: flex;
    align-items: center;
}

/* NORMAL */
.timeline-row:not(.reverse) .timeline-image {
    justify-content: flex-end;
    padding-right: 10px;
    padding-left: 10px;
}

/* REVERSE */
.timeline-row.reverse .timeline-image {
    justify-content: flex-start;
    padding-left: 5px;
    padding-right: 10px;
}

/* Görsel */
.timeline-image img {
    width: 100%;
    max-width: 500px;
    height: 190px !important;
    object-fit: cover;
    border-radius: 6px;
}

/* ORTA ALAN */
.timeline-middle {
    width: 10%;
    position: relative;
    z-index: 20;
}

/* LOGO */
.timeline-logo {
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%);
    width: 50px;
    z-index: 30;
}
/*.timeline-row:not(.reverse) .timeline-logo {
    transform: translate(-50%, -50%) rotate(180deg) scaleX(-1);
}
*//* Metin SAĞDAYSА logo SAĞA dönsün */
/*.timeline-row:not(.reverse) .timeline-logo {
    transform: translate(-50%, -50%) rotate(180deg);
}*/

/* METİN */
.timeline-text {
    width: 45%;
    padding: 12px 16px;
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

/* ÇİZGİYE YAKLAŞTIRMA */
.timeline-row:not(.reverse) .timeline-text {
    padding-left: 40px;
}

.timeline-row.reverse .timeline-text {
    padding-right: 40px;
}

/* METİN STİLLERİ */
.timeline-text h4 {
    margin: 0 0 4px 0;
    font-size: 18px;
    font-weight: bold;
}

.timeline-text p {
    margin: 0;
    font-size: 13px;
    line-height: 1.4;
    font-weight: bold;
}

/* Bootstrap uyumluluk */
.card-body,
.collapse.show {
    overflow: visible !important;
}

.timeline-side {
    position: relative;
    z-index: 5;
}
