/* ============================================================
   TICKER SECTION (Final - Vertical Fade Animation)
   ============================================================ */

.ticker-section {
    background-color: #1a1a1a;
    padding: 15px 0;
    width: 100%;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    display: flex;
    justify-content: center; /* Ticker ko center mein rakhega */
    align-items: center;
}

.ticker-wrapper {
    position: relative;
    /* Height utni rakhein jitni ek item ki hai, taake layout na kharab ho */
    height: 25px; 
    width: 100%;
    max-width: 1200px; /* Max width set kar sakte hain */
    overflow: hidden; /* Extra content ko chupaye rakhega */
}

.ticker-item {
    /* Sab items ko ek doosre ke oopar rakhega */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* Animation ke liye starting point */
    opacity: 0;
    transform: translateY(100%); /* Neeche se start hoga */
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    
    /* Text ko center mein rakhega */
    display: flex;
    justify-content: center;
    align-items: center;
    
    font-size: 14px;
    color: #ccc;
}

/* Jab item active hoga, to woh screen par nazar aayega */
.ticker-item.is-active {
    opacity: 1;
    transform: translateY(0); /* Apni asli jaga par aa jayega */
}

.ticker-item a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
}

.ticker-item a:hover {
    color: var(--brand-pink, #FF3366);
}

.ticker-separator {
    margin-right: 15px;
    font-size: 16px;
}

/* Mobile par font size chota */
@media (max-width: 768px) {
    .ticker-item {
        font-size: 10px;
        justify-content: flex-start; /* Mobile par text left se shuru ho */
        padding: 0 20px;
    }
}
/* --- IN MEMORIAM TICKER STYLING --- */
.ticker-item {
    gap: 10px; /* Icon aur text ke beech space */
}

.ticker-icon {
    font-size: 16px;
    opacity: 0.7;
}