.achievement-banner {
    width: 100%;
    max-height: 320px;
    object-fit: cover;
}

.achievement-title {
    color: #fff;
    text-shadow: 0 2px 16px #0056b3, 0 1.5px 6px #51d88a;
    font-weight: 700;
    letter-spacing: 1px;
}

.achievement-card {
    background: #fff;
    border-radius: 1.25rem;
    box-shadow: 0 2px 16px 0 rgba(0, 86, 179, 0.07), 0 1.5px 6px 0 rgba(81, 216, 138, 0.08);
    padding: 1.5rem 1rem 1.25rem 1rem;
    transition: transform 0.15s, box-shadow 0.15s;
    border: none;
    position: relative;
    overflow: hidden;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.achievement-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px 0 rgba(0, 86, 179, 0.13), 0 3px 12px 0 rgba(81, 216, 138, 0.13);
}

.achievement-card img {
    border-radius: 1rem;
    border: 3px solid #51d88a;
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 1rem;
    background: #fff;
}

.achievement-card .desc {
    color: #0056b3;
    font-weight: 500;
    text-align: center;
    flex: 1;
}

.pagination .page-link {
    color: #0056b3;
    border-radius: 50%;
    margin: 0 3px;
    border: none;
    background: #e3f0fb;
    transition: background 0.2s, color 0.2s;
}

.pagination .page-link.active,
.pagination .page-link:hover {
    background: linear-gradient(90deg, #51d88a 0%, #0056b3 100%) !important;
    color: #fff !important;
}

.pagination .page-item.active .page-link {
    background: linear-gradient(90deg, #51d88a 0%, #0056b3 100%) !important;
    color: #fff !important;
}

@media (max-width: 991.98px) {
    .achievement-card img {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 767.98px) {
    .achievement-card {
        padding: 1rem 0.5rem 0.75rem 0.5rem;
        min-height: 280px;
    }

    .achievement-card img {
        width: 70px;
        height: 70px;
    }
}

/* Detail Page */

.main-heading {
    color: #006fba;
    font-weight: bold;
}

.content-wrapper {
    max-width: 900px;
    margin: auto;
}

.center-image {
    max-width: 100%;
    height: auto;
}