:root {
    --ats-purple:#6c3ad8;
    --ats-bg:#f7f1ff;
}

/* === ANA BÖLÜM === */
.ats-history {
    background: var(--ats-bg);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* === BAŞLIK === */
.ats-history-header {
    text-align: center;
    margin-bottom: 70px;
}

.ats-history-header h3 {
    font-size: 22px;
    color: var(--ats-purple);
    letter-spacing: 4px;
}

.ats-history-header h2 {
    font-size: 52px;
    font-weight: 800;
    color:#222;
}

/* === TIMELINE WRAPPER === */
.timeline-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* === KAYAN STRIP === */
.timeline-track {
    display: flex;
    gap: 110px;
    padding-left: 50px;
    animation: scrollLoop 25s linear infinite;
}

@keyframes scrollLoop {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.33%); }
}

/* === ITEM === */
.timeline-item {
    min-width: 260px;
    text-align: center;
    transition: 0.3s ease;
    transform: scale(0.92);
    opacity: 0.55;
}

.timeline-item h1 {
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--ats-purple);
}

.timeline-item p {
    font-size: 15px;
    color:#444;
}

/* Hover parlama */
.timeline-item:hover {
    transform: scale(1.12);
    opacity: 1;
}

/* === OK BUTONLARI === */
.timeline-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background:#fff;
    border:none;
    font-size: 22px;
    cursor:pointer;
    box-shadow:0 5px 20px rgba(0,0,0,0.15);
    transition:0.25s;
    z-index:9;
}

.timeline-btn:hover {
    background: var(--ats-purple);
    color:#fff;
}

.timeline-btn.prev { left: 40px; }
.timeline-btn.next { right: 40px; }

/* === SABİT DÖNEN İKONLAR === */
.history-icon-left,
.history-icon-right {
    position: absolute;
    z-index: 3;
    opacity: 0.50;
    animation: spin 16s linear infinite;
    pointer-events: none;
    object-fit: contain;      /* GLOBAL CSS bozamaz */
    max-width: none !important; 
    width: auto !important;
    height: auto !important;
}

/* İKON BOYUTUNU BURADA SABİTLİYORUM */
.history-icon-left {
    width: 130px !important;
    left: 40px;
    bottom: 40px;
}

.history-icon-right {
    width: 150px !important;
    right: 40px;
    top: 60px;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
/* TÜM NORMAL METİNLERDE ALAN SANS KULLAN */
body,
body *:not(i):not(.fa):not([class*="fa-"]) {
    font-family: 'Alan Sans', sans-serif !important;
}