.timeline-container-index {
    position: relative;
    width: 80vmin;
    height: 80vmin;
    border-radius: 50%;
    border: 3px solid #ff9f55;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px auto 90px auto;
}

.timeline-item-index {
    position: absolute;
    width: 135px;
    height: 135px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    padding: 10px;
    box-sizing: border-box;
    cursor: pointer;
    overflow: hidden;
}

.timeline-item-index h2,
.timeline-item-index p,
.timeline-item-index a {
    transition: opacity 0.3s ease-in-out;
}

.timeline-item-index h2 {
    font-size: 14px;
    margin: 0;
    color: #ff9f55;
}

.timeline-item-index h3 {
    font-size: 10px;
    margin-top: 8px;
    color: #ff9f55;
}

.timeline-item-index p {

    margin: 5px 0 0;
}

.timeline-item-index a {
    display: block;
    margin-top: 2px;
    padding: 2px 5px;
    background-color: #ff9f55;
    color: white;
    border-radius: 3px;
    text-decoration: none;
    font-size: 5px;
    transition: background-color 0.3s ease-in-out;
}

.timeline-item-index a:hover {
    background-color: #ff7f32;
}


.timeline-item-index:nth-child(1) {
    transform: rotate(0deg) translate(38vmin) rotate(-0deg);
}

.timeline-item-index:nth-child(2) {
    transform: rotate(60deg) translate(38vmin) rotate(-60deg);
}

.timeline-item-index:nth-child(3) {
    transform: rotate(120deg) translate(38vmin) rotate(-120deg);
}

.timeline-item-index:nth-child(4) {
    transform: rotate(180deg) translate(38vmin) rotate(-180deg);
}

.timeline-item-index:nth-child(5) {
    transform: rotate(240deg) translate(38vmin) rotate(-240deg);
}

.timeline-item-index:nth-child(6) {
    transform: rotate(300deg) translate(38vmin) rotate(-300deg);
}



@media(max-width:576.98px){

    .timeline-item-index:nth-child(1) {
        transform: rotate(0deg) translate(36vmin) rotate(-0deg);
    }

    .timeline-item-index:nth-child(2) {
        transform: rotate(60deg) translate(36vmin) rotate(-60deg);
    }

    .timeline-item-index:nth-child(3) {
        transform: rotate(120deg) translate(36vmin) rotate(-120deg);
    }

    .timeline-item-index:nth-child(4) {
        transform: rotate(180deg) translate(36vmin) rotate(-180deg);
    }

    .timeline-item-index:nth-child(5) {
        transform: rotate(240deg) translate(36vmin) rotate(-240deg);
    }

    .timeline-item-index:nth-child(6) {
        transform: rotate(300deg) translate(36vmin) rotate(-300deg);
    }

    .timeline-item-index.active{
        transform: translate(0, 0) scale(2);
        z-index: 1;
        width: 85px !important;
        height: 85px !important;
    }


}

.timeline-item-index.active {
    transform: translate(0, 0) scale(2);
    z-index: 1;
}

.timeline-item-index.show {
    opacity: 1;
}

.timeline-p {
    width: 90%;
    font-size: 8px;
}

.settimeout-a {
    font-size: 5px !important;
}


@media (max-width: 767.98px) {
    .timeline-container-index {
        width: 90vmin !important;
        height: 90vmin !important;
    }

    .timeline-item-index {
        width: 100px !important;
        height: 100px !important;
        padding: 5px !important;
    }

    .timeline-item-index h2 {
        font-size: 12px !important;
    }

    .timeline-item-index h3 {
        font-size: 6px !important;
        padding-top: 6px;
    }


    .timeline-item-index p {
        font-size: 10px ;
    }

    .timeline-p {
        font-size: 5px !important;
    }

    .timeline-item-index a {
        font-size: 4px;
    }

    .timeline::after {
        left: 90% !important;
    }

    .timeline-container {
        width: 100%;
        padding-left: 50px !important;
        padding-right: 25px !important;
    }

    .timeline-container.left::before,
    .timeline-container.right::before {
        left: 50px !important;
        border: medium solid white;
        border-width: 10px 10px 10px 0;
        border-color: transparent white transparent transparent;
    }

    .timeline-container.right {
        left: 0 !important;
    }

    .timeline-container.right::after {
        left: 0 !important;
    }

    .content {
        padding: 20px 15px !important;
    }

    .content h2 {
        font-size: 20px !important;
    }

    .content p {
        font-size: 14px !important;
    }

    .content img {
        margin-top: 5px !important;
    }

    .content .btn {
        padding: 8px 15px !important;
        font-size: 12px !important;
    }


    .timeline-container{
        width: 98% !important;
    }
}


@media (max-width: 576.98px){

    .timeline-item-index h3{
        font-size: 6px !important;
        padding-top: 0 !important;
        margin: 9px 0 0px 0 !important;
    }

    .timeline-item-index p {
        margin: 5px !important;
    }

    .timeline-p{
        font-size: 4px !important;
    }




}















.timeline {
    position: relative;
    max-width: 1200px;
    margin: 110px auto;
    padding: 10px 40px;
}
.timeline::before {
    display: none;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: #ff9f55;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}

.timeline-container {
    padding: 20px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    transition: all 0.3s ease-in-out;
    transition-delay: var(--delay, 0s);
}

.timeline-container:hover {
    transform: scale(1.05);
    z-index: 1;
}

.timeline-container::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    right: -25px;
    background-color: white;
    background-image: url('/../images/factory-timeline.png');
    background-size: cover;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
    border: 4px solid #ff9f55;
}

.left {
    left: 0;
}

.right {
    left: 50%;
}

.left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid white;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent white;
}

.right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
}

.right::after {
    left: -25px;
}

.content {
    padding: 20px 30px;
    background-color: white;
    position: relative;
    border-radius: 6px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    transition-delay: var(--delay, 0s);
}

.content:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.content h2 {
    font-size: 24px;
    color: #ff9f55;
    margin-bottom: 10px;
}

.content p {
    margin: 10px 0;
    font-size: 16px;
}

.content img {
    max-width: 100%;
    border-radius: 6px;
    margin-top: 10px;
    transition: all 0.3s ease-in-out;
    transition-delay: var(--delay, 0s);
}

.content img:hover {
    transform: scale(1.1);
}

.content .btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #ff9f55;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s ease-in-out;
}

.content .btn:hover {
    background-color: #ff7f32;
}


.timeline-container {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
}

.timeline-container.in-view {
    opacity: 1;
    transform: none;
}








/* zaman çizelgesi için diğer örnek */
/* .tl-menubar{
    top: 31px !important;
}

.tl-menubar-button{
    background-color: #191970 !important;
}
.tl-timenav {
    width: 100%;
    background-color: #191970 !important;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #e5e5e5;
    top: -510px;
}
.tl-storyslider {
    width: 100%;
    height: 100%;
    max-height: 535px ;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    position: relative;
    box-sizing: content-box;
    z-index: 8;
    top: 197px;
}

.tl-timeline {
    font-family: 'PT Serif', serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3em;
    height: 700px !important;

}
.tl-attribution{
    display: none !important;
}

.tl-headline-date{
    font-size: 20px !important;
    position: relative;
    top: -10px !important;
}

.tl-timeline p a {
    font-size: 18.5px ;
    color: #191970;
}


.tl-timeaxis {
    padding-left: 0 !important;
}

/* Zaman çizelgesi sol boşluğu kaldırma */
/* .tl-timeaxis .tl-timeinterval .tl-timenav-label {
    margin-left: 0 !important;
} */
