@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

.timeline-wrapper-f32e832e {
    background-color: #F7F8FC;
    color: #1a1f36;
    font-family: 'Inter', sans-serif;
    padding: 100px 4vw;
    overflow: hidden;
}

/* Hero Section */
.hero-f32e832e {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 60px auto;
}

.hero-left-f32e832e {
    flex: 1.2;
}

.hero-right-f32e832e {
    flex: 0.8;
    padding-top: 50px;
}

.label-f32e832e {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #5D67FF;
    display: inline-block;
    margin-bottom: 20px;
}

.heading-f32e832e {
    font-family: 'Playfair Display', serif;
    font-size: 54px;
    line-height: 1.15;
    font-weight: 700;
    color: #0A2540;
    margin: 0;
}

.desc-f32e832e {
    font-size: 17px;
    line-height: 1.6;
    color: #4F566B;
    margin: 0;
}

/* Sticky continuous endless marquee */
.scroll-ticker-container-f32e832e {
    width: 100%;
    overflow: hidden;
    padding: 60px 0;
    user-select: none;
    pointer-events: none;
    margin-bottom: 40px;
    display: flex;
}

.scroll-ticker-track-f32e832e {
    display: flex;
    gap: 80px;
    font-size: 140px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    opacity: 0.05;
    will-change: transform;
    animation: marquee_f32e832e 25s linear infinite;
    padding-right: 80px;
}

.scroll-ticker-track-f32e832e span {
    display: inline-block;
}

@keyframes marquee_f32e832e {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Grid layout with 7 columns */
.grid-f32e832e {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto 80px auto;
}

/* Individual Cards */
.card-f32e832e {
    background: #FFFFFF;
    border: 1px solid #E8EAF2;
    border-radius: 20px;
    padding: 24px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 12px rgba(9, 30, 66, 0.03);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    box-sizing: border-box;
}

.card-f32e832e:hover {
    transform: translateY(-8px);
    border-color: #5D67FF;
    box-shadow: 0 12px 28px rgba(93, 103, 255, 0.08);
}

.card-header-f32e832e {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.card-year-f32e832e {
    font-size: 32px;
    font-weight: 600;
    color: #0A2540;
    letter-spacing: -0.5px;
}

.badge-f32e832e {
    font-size: 10px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background-color: var(--badge-accent);
    color: #FFF;
}

.card-footer-f32e832e {
    margin-top: auto;
}

.card-code-f32e832e {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: #5D67FF;
    margin-bottom: 4px;
}

.card-city-f32e832e {
    font-size: 13px;
    color: #4F566B;
    line-height: 1.4;
}

/* Fade up animation for cards */
.animate-f32e832e {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp_f32e832e 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInUp_f32e832e {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer style */
.footer-f32e832e {
    text-align: center;
    border-top: 1px solid #E8EAF2;
    padding-top: 40px;
    max-width: 600px;
    margin: 0 auto;
}

.footer-f32e832e p {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #8792A2;
    margin: 0;
}

/* Responsive Overrides */
@media (max-width: 1200px) {
    .grid-f32e832e {
        grid-template-columns: repeat(4, 1fr);
    }
    .heading-f32e832e {
        font-size: 44px;
    }
}

@media (max-width: 768px) {
    .hero-f32e832e {
        flex-direction: column;
        gap: 20px;
    }
    .hero-right-f32e832e {
        padding-top: 0;
    }
    .grid-f32e832e {
        grid-template-columns: repeat(2, 1fr);
    }
    .scroll-ticker-container-f32e832e {
        padding: 30px 0;
    }
    .scroll-ticker-track-f32e832e {
        font-size: 80px;
        gap: 40px;
        padding-right: 40px;
    }
}

@media (max-width: 480px) {
    .grid-f32e832e {
        grid-template-columns: 1fr;
    }
}
