/* Slider Image Area */
.Awards_CeRtificate_Hc_img-box {
    height: 340px; 
    display: flex;
    /* Changed from flex-end to center to vertically center the images */
    align-items: center; 
    justify-content: flex-start;
}

.Awards_CeRtificate_Hc_img-box img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain; 
    
}

/* Timeline Area */
.Awards_CeRtificate_Hc_timeline-box {
    position: relative;
    display: flex;
    align-items: center;
    height: 40px;
    margin-top: 10px;
}

/* The continuous line bridging across slides */
.Awards_CeRtificate_Hc_line-bridge {
    position: absolute;
    top: 50%;
    left: 14px; 
    width: calc(100% + 60px); 
    height: 1px;
    background-color: rgba(9, 37, 58, 0.5);
    z-index: 1;
}

/* The marker and text block */
.Awards_CeRtificate_Hc_marker-group {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    background-color: #ffffff; 
    padding-right: 15px; 
}

.Awards_CeRtificate_Hc_marker {
    width: 19px;
    height: 19px;
    background-color: rgba(126, 42, 143, 1);
    margin-right: 10px;
}

.Awards_CeRtificate_Hc_year {
    color: rgba(9, 37, 58, 0.8);
    margin: 0;
    font-family: Sora;
    font-weight: 600;
    font-size: clamp(1rem, 0.8143rem + 0.7619vw, 1.5rem);
    line-height: 150%;
    letter-spacing: 0%;
}

/* Description Area */
.Awards_CeRtificate_Hc_desc {
    color: rgba(9, 37, 58, 0.8);
    margin-top: 15px;
    padding-right: 0px;
    font-family: Inter;
    font-weight: 300;
    font-size: clamp(0.875rem, 0.7821rem + 0.381vw, 1.125rem);
    line-height: 170%;
    letter-spacing: 0%;
}

/* Navigation Buttons */
.Awards_CeRtificate_Hc_nav-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 1rem;
}

.Awards_CeRtificate_Hc_btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(35, 31, 32, 1); 
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}



.swiper-button-disabled.Awards_CeRtificate_Hc_btn {
    background-color: rgba(35, 31, 32, 0.5);
    cursor: default;
}

/* Responsive Adjustments */
@media (min-width: 992px) {
    .Awards_CeRtificate_Hc_heading {
        margin-top: 5rem; 
    }
}

@media (max-width: 991px) {
    .Awards_CeRtificate_Hc_img-box {
        height: 280px;
    }
    .Awards_CeRtificate_Hc_nav-wrap {
        margin-top: 0rem;
    }
    .Awards_CeRtificate_Hc_heading{
        text-align: center;
    }
}