p{
    font-size: 17px; 
}

.about-img{
    width:100%;
    margin-top: 20%;
}
.about-head{
    margin-top: 2rem;
}

.counter-box {
    text-align: left;
    padding: 20px;
    background: #fcf6f6;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    margin: 15px;
    height: 280px;
    overflow: hidden;
}

.counter-box p{
    font-size: 16px;
    margin-top: 12px;
}
.counter, .fixed-sym {
    font-size: 40px;
    font-weight: bold;
    color: #ffb900;
    font-family: swiss 721;
}
.label {
    font-size: 18px;
    font-weight: 600;
    margin-top:25%;
    text-transform: uppercase;
}


/* our journey timeline */
body {
    font-family: Arial, sans-serif;
}

/* First Column - Display Year */
.year-display {
    /* background: #ffb900; */
    color: black;
    font-size: 40px;
    padding: 20px;
    text-align: center;
    height: 100vh;
    font-weight: bold;
}

/* Image + Content */
.content-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    height: 100vh;
    justify-content: center;
}

.content-block {
    text-align: center;
    margin-bottom: 30px;
}

.content-block img {
    width: 80%;
    border-radius: 8px;
    max-height: 350px;
}

/* Scrolling Years */
.scrolling-years {
    overflow-y: auto;
    max-height: 100vh;
    text-align: center;
    padding: 20px;
    border-left: 2px solid #ffb900;
}

.year-item {
    font-size: 18px;
    font-weight: bold;
    padding: 10px;
    background: #eee;
    margin-bottom: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.year-item:hover, .active-year {
    background: #ffb900;
    color: white;
}

/* Main Scrolling Content */
.main-scroll {
    overflow-y: auto;
    max-height: 100vh;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
}

.scroll-content {
    padding: 20px;
    border-bottom: 1px solid #ddd;
}

@media (max-width: 768px) {
    .year-display {
        height: 10vh;
    }

    .scrolling-years {
        max-height: 500px;
        margin-top: -20% !important;
    }

    .main-scroll {
        max-height: 800px;
    }

    .content-image{
        height: 58vh;
        padding: 0%;
    }
}
/* end */