/* Awards Section Fix */

.award-section {
    padding-top: 50px;
    padding-bottom: 0px;
    background-color: transparent;
    /* Light background to make cards pop */
}

.slider2-track {
    padding-top: 40px;
    /* Space for the pop-out */
    padding-bottom: 15px;
    /* Space for shadow */
}

.slide2 {
    overflow: visible !important;
    margin-top: 0 !important;
    /* background: #7d9a7e; */
    /* border: none !important; */
    border-radius: 20px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding-bottom: 20px;
}

.slide2:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12) !important;
}

/* The popped out image container */
.award-img {
    width: 90% !important;
    height: 260px !important;
    margin: -60px auto 15px auto !important;
    /* Negative margin to pop out */
    border-radius: 15px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2) !important;
    overflow: hidden;
    position: relative;
    z-index: 2;
    background: #fff;
    /* Fallback */
    border: 4px solid #fff;
    /* White border for clean separation */
}

.award-img img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    transition: transform 0.5s ease;
    transform: scale(1.1);
    /* Slight default zoom */
}

.slide2:hover .award-img img {
    transform: scale(1.2);
    /* Increased hover zoom */
}

.award-text {
    padding: 10px 25px 25px 25px !important;
    text-align: center;
    /* Center align text for better balance */
}

.award-text .year {
    display: inline-block;
    background: #e8f5e9;
    color: #1e3f29;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 15px;
    border: none !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.slide2 p {
    color: black;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 500;
    text-align: left;
    /* Align text center */
}

/* Hide the old decorative trophy if it conflicts, or adjust it */
.slide2::after {
    display: none !important;
}

/* Navigation buttons adjustment if needed */
.award-section .slider-btn {
    background: #fff;
    color: #19376D;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: none;
}

.award-section .slider-btn:hover {
    background: #19376D;
    color: #fff;
}