* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.achievement-page {
    --achievement-blue: #078dcc;
    --achievement-dark: #102d3d;
    --achievement-text: #526b7c;
    --achievement-teal: #50c7be;
    --achievement-orange: #ff6635;
    --achievement-bg: #f5f8fb;
    --achievement-white: #ffffff;
    --achievement-border: #deedf3;

    background: var(--achievement-bg);
    color: var(--achievement-dark);

    font-family: 'Poppins', sans-serif;

    overflow: hidden;
}

.achievement-page img {
    display: block;
    width: 100%;
}

.achievement-page button,
.achievement-page a {
    font-family: inherit;
}

.achievement-page a {
    text-decoration: none;
}

.achievement-container {
    width: min(1380px, 90%);
    margin: 0 auto;
}

/* =========================================================
   MODERN ACHIEVEMENT HERO
   Replace your existing HERO CSS with this section
========================================================= */

.achievement-hero {
    position: relative;

    min-height: 720px;

    padding: 105px 0 135px;

    overflow: hidden;

    background:
        radial-gradient(circle at 8% 20%,
            rgba(80, 199, 190, .14),
            transparent 25%),
        radial-gradient(circle at 88% 75%,
            rgba(7, 141, 204, .13),
            transparent 28%),
        linear-gradient(135deg,
            #f8fcfe 0%,
            #eef8fc 48%,
            #f7fbfd 100%);
}


/* =========================================================
   HERO BACKGROUND GRID
========================================================= */

.achievement-hero::before {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    opacity: .42;

    background-image:
        linear-gradient(rgba(7, 141, 204, .035) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(7, 141, 204, .035) 1px,
            transparent 1px);

    background-size: 55px 55px;

    mask-image:
        linear-gradient(to bottom,
            black,
            transparent 85%);

    -webkit-mask-image:
        linear-gradient(to bottom,
            black,
            transparent 85%);
}


/* =========================================================
   HERO BACKGROUND GLOW
========================================================= */

.achievement-hero::after {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    right: -180px;
    top: -180px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(7, 141, 204, .13),
            rgba(7, 141, 204, .03) 45%,
            transparent 70%);

    filter: blur(5px);

    pointer-events: none;

    animation:
        heroBackgroundGlow 8s ease-in-out infinite;
}


/* =========================================================
   HERO CONTAINER
========================================================= */

.hero-container {
    position: relative;

    z-index: 5;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr) minmax(0, 1fr);

    align-items: center;

    gap: 70px;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
    position: relative;

    max-width: 680px;

    z-index: 5;
}


/* =========================================================
   HERO BADGE
========================================================= */

.hero-badge {
    position: relative;

    display: inline-flex;

    align-items: center;

    gap: 11px;

    padding: 7px 18px 7px 7px;

    border-radius: 50px;

    color: var(--achievement-blue);

    background:
        rgba(255, 255, 255, .78);

    border: 1px solid rgba(7, 141, 204, .16);

    box-shadow:
        0 12px 30px rgba(20, 70, 90, .08),
        inset 0 1px 0 rgba(255, 255, 255, .9);

    backdrop-filter: blur(14px);

    -webkit-backdrop-filter: blur(14px);

    font-size: 13px;

    font-weight: 700;

    overflow: hidden;

    animation:
        heroBadgeFloat 4s ease-in-out infinite;
}


/* Badge animated shine */

.hero-badge::after {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 70%;
    height: 100%;

    background:
        linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .7),
            transparent);

    transform: skewX(-20deg);

    animation:
        badgeShine 4.5s ease-in-out infinite;
}


.hero-badge-icon {
    position: relative;

    z-index: 2;

    width: 38px;
    height: 38px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: white;

    background:
        linear-gradient(135deg,
            var(--achievement-teal),
            var(--achievement-blue));

    box-shadow:
        0 8px 18px rgba(7, 141, 204, .20);

    animation:
        trophyIconPulse 3s ease-in-out infinite;
}


/* =========================================================
   HERO HEADING
========================================================= */

.hero-content h1 {
    position: relative;

    margin-top: 27px;

    max-width: 720px;

    color: var(--achievement-dark);

    font-size: clamp(48px, 5.2vw, 74px);

    line-height: 1.04;

    letter-spacing: -3px;

    font-weight: 800;

    text-wrap: balance;
}


.hero-content h1 span {
    position: relative;

    display: inline-block;

    color: transparent;

    background:
        linear-gradient(100deg,
            #078dcc 5%,
            #16a5d8 45%,
            #50c7be 100%);

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;

    animation:
        heroTextGlow 4s ease-in-out infinite;
}


/* Animated underline */

.hero-content h1 span::after {
    content: "";

    position: absolute;

    left: 3px;
    bottom: -13px;

    width: 78%;
    height: 6px;

    border-radius: 20px;

    background:
        linear-gradient(90deg,
            var(--achievement-teal),
            var(--achievement-blue));

    transform:
        rotate(-2deg) scaleX(0);

    transform-origin: left;

    animation:
        heroUnderlineReveal 1.2s .7s ease forwards;
}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.hero-content p {
    max-width: 650px;

    margin-top: 34px;

    color: #526f82;

    font-size: 16px;

    line-height: 1.9;

    font-weight: 400;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-buttons {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 36px;
}


.achievement-primary-btn,
.achievement-secondary-btn {
    position: relative;

    min-height: 56px;

    padding: 0 25px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 11px;

    border-radius: 50px;

    font-size: 14px;

    font-weight: 700;

    overflow: hidden;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease,
        color .35s ease;
}


/* Primary */

.achievement-primary-btn {
    color: white;

    background:
        linear-gradient(135deg,
            #078dcc,
            #087fb3);

    box-shadow:
        0 16px 35px rgba(7, 141, 204, .25);
}


.achievement-primary-btn::before {
    content: "";

    position: absolute;

    top: 0;
    left: -110%;

    width: 80%;
    height: 100%;

    background:
        linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .25),
            transparent);

    transform: skewX(-20deg);

    transition: left .6s ease;
}


.achievement-primary-btn:hover::before {
    left: 130%;
}


.achievement-primary-btn:hover {
    transform: translateY(-5px);

    color: white;

    box-shadow:
        0 22px 45px rgba(7, 141, 204, .34);
}


.achievement-primary-btn i {
    transition:
        transform .35s ease;
}


.achievement-primary-btn:hover i {
    transform: translateY(4px);
}


/* Secondary */

.achievement-secondary-btn {
    color: var(--achievement-dark);

    background:
        rgba(255, 255, 255, .82);

    border: 1px solid rgba(7, 141, 204, .16);

    box-shadow:
        0 10px 25px rgba(20, 70, 90, .06);

    backdrop-filter: blur(10px);
}


.achievement-secondary-btn:hover {
    color: var(--achievement-blue);

    border-color:
        rgba(7, 141, 204, .35);

    transform: translateY(-5px);

    box-shadow:
        0 18px 35px rgba(20, 70, 90, .11);
}


.achievement-secondary-btn i {
    transition:
        transform .35s ease;
}


.achievement-secondary-btn:hover i {
    transform:
        rotate(8deg) scale(1.15);
}


/* =========================================================
   HERO VISUAL
========================================================= */

.achievement-hero-visual {
    position: relative;

    min-width: 0;

    z-index: 4;

    padding: 20px;

    animation:
        heroVisualFloat 6s ease-in-out infinite;
}


/* Decorative glow behind image */

.achievement-hero-visual::before {
    content: "";

    position: absolute;

    width: 430px;
    height: 430px;

    right: 4%;
    top: 50%;

    transform: translateY(-50%);

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(80, 199, 190, .17),
            rgba(7, 141, 204, .06) 48%,
            transparent 70%);

    filter: blur(10px);

    z-index: -2;

    animation:
        heroVisualGlow 5s ease-in-out infinite;
}


/* Dashed decorative circle */

.achievement-hero-visual::after {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -25px;
    top: 50%;

    transform:
        translateY(-50%) rotate(-12deg);

    border:
        1px dashed rgba(7, 141, 204, .18);

    border-radius: 50%;

    z-index: -1;

    animation:
        heroOrbitRotate 25s linear infinite;
}


/* =========================================================
   HERO IMAGE CARD
========================================================= */

.hero-image-card {
    position: relative;

    height: 500px;

    overflow: hidden;

    border-radius: 38px;

    background: #ffffff;

    border: 8px solid rgba(255, 255, 255, .95);

    box-shadow:
        0 35px 80px rgba(19, 65, 85, .20),
        0 8px 25px rgba(7, 141, 204, .10);

    isolation: isolate;
}


/* Animated glowing outer border */

.hero-image-card::before {
    content: "";

    position: absolute;

    inset: -3px;

    border-radius: 40px;

    padding: 3px;

    background:
        conic-gradient(from 0deg,
            var(--achievement-teal),
            var(--achievement-blue),
            #ffffff,
            var(--achievement-orange),
            var(--achievement-teal));

    mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);

    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);

    mask-composite: exclude;

    -webkit-mask-composite: xor;
}


/* Image shine */

.hero-image-card::after {
    content: "";

    position: absolute;

    top: -20%;
    left: -70%;

    width: 45%;
    height: 150%;

    background:
        linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .24),
            transparent);

    transform: rotate(18deg);

    z-index: 5;

    pointer-events: none;

    animation:
        heroImageShine 6s ease-in-out infinite;
}


.hero-image-card img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transform: scale(1.01);

    transition:
        transform 1s cubic-bezier(.2, .7, .2, 1),
        filter .5s ease;
}


.hero-image-card:hover img {
    transform: scale(1.07);

    filter:
        saturate(1.08) contrast(1.02);
}


/* =========================================================
   IMAGE GRADIENT
========================================================= */

.hero-image-gradient {
    position: absolute;

    inset: 0;

    z-index: 2;

    pointer-events: none;

    background:
        linear-gradient(180deg,
            rgba(4, 35, 49, .02) 20%,
            rgba(4, 35, 49, .08) 50%,
            rgba(4, 35, 49, .72) 100%);
}


/* =========================================================
   EVENT LABEL
========================================================= */

.hero-event-label {
    position: absolute;

    left: 24px;
    bottom: 24px;

    z-index: 8;

    display: flex;

    align-items: center;

    gap: 12px;

    min-width: 260px;

    padding: 13px 19px 13px 13px;

    border-radius: 20px;

    background:
        rgba(255, 255, 255, .92);

    border:
        1px solid rgba(255, 255, 255, .7);

    backdrop-filter:
        blur(18px);

    -webkit-backdrop-filter:
        blur(18px);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, .16);

    animation:
        eventLabelFloat 5s ease-in-out infinite;
}


.hero-event-icon {
    width: 47px;
    height: 47px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 14px;

    color: var(--achievement-blue);

    background:
        linear-gradient(145deg,
            #eefbfc,
            #e3f6fb);

    box-shadow:
        inset 0 0 0 1px rgba(7, 141, 204, .07);
}


.hero-event-icon i {
    font-size: 18px;

    animation:
        calendarPulse 3s ease-in-out infinite;
}


.hero-event-label strong {
    display: block;

    color: var(--achievement-dark);

    font-size: 13px;

    font-weight: 800;
}


.hero-event-label span {
    display: block;

    margin-top: 4px;

    color: #718797;

    font-size: 10px;
}


/* =========================================================
   FLOATING ACHIEVEMENT CARDS
========================================================= */

.floating-achievement-card {
    position: absolute;

    z-index: 10;

    background:
        rgba(255, 255, 255, .94);

    border:
        1px solid rgba(255, 255, 255, .8);

    backdrop-filter:
        blur(18px);

    -webkit-backdrop-filter:
        blur(18px);

    box-shadow:
        0 20px 45px rgba(20, 60, 80, .16),
        0 5px 15px rgba(7, 141, 204, .07);
}


/* =========================================================
   FLOATING AWARD
========================================================= */

.floating-award {
    right: -30px;
    top: 48px;

    display: flex;

    align-items: center;

    gap: 11px;

    min-width: 210px;

    padding: 13px 17px;

    border-radius: 20px;

    animation:
        floatingAwardMotion 5s ease-in-out infinite;
}


.floating-card-icon {
    width: 43px;
    height: 43px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 13px;

    color: var(--achievement-teal);

    background:
        linear-gradient(145deg,
            #edfbf9,
            #e3f8f5);

    box-shadow:
        inset 0 0 0 1px rgba(80, 199, 190, .10);
}


.floating-card-icon i {
    animation:
        awardIconPulse 2.8s ease-in-out infinite;
}


.floating-award strong {
    display: block;

    color: var(--achievement-dark);

    font-size: 12px;

    font-weight: 800;
}


.floating-award span {
    display: block;

    margin-top: 3px;

    color: #7b8e9a;

    font-size: 9px;
}


/* =========================================================
   FLOATING YEAR
========================================================= */

.floating-year {
    right: -28px;
    bottom: 35px;

    width: 92px;
    height: 92px;

    display: flex;

    flex-direction: column;

    justify-content: center;
    align-items: center;

    border-radius: 25px;

    color: white;

    background:
        linear-gradient(145deg,
            #ff7445,
            #ff5c30);

    box-shadow:
        0 22px 45px rgba(255, 102, 53, .28);

    transform: rotate(6deg);

    animation:
        floatingYearMotion 5.5s ease-in-out infinite;
}


.floating-year::before {
    content: "";

    position: absolute;

    inset: 5px;

    border:
        1px solid rgba(255, 255, 255, .25);

    border-radius: 20px;
}


.floating-year strong {
    position: relative;

    font-size: 23px;

    line-height: 1;

    font-weight: 800;
}


.floating-year span {
    position: relative;

    margin-top: 6px;

    font-size: 9px;

    font-weight: 600;

    opacity: .95;
}


/* =========================================================
   HERO DECORATIONS
========================================================= */

.achievement-hero-decoration {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    z-index: 1;
}


/* Large turquoise ring */

.hero-decoration-one {
    width: 420px;
    height: 420px;

    left: -210px;
    top: -170px;

    border:
        70px solid rgba(80, 199, 190, .065);

    animation:
        heroDecorationFloat 10s ease-in-out infinite;
}


/* Blue ring */

.hero-decoration-two {
    width: 300px;
    height: 300px;

    right: -100px;
    bottom: -180px;

    border:
        45px solid rgba(7, 141, 204, .06);

    animation:
        heroDecorationFloatReverse 12s ease-in-out infinite;
}


/* =========================================================
   EXTRA DECORATIVE DOTS
   Created using existing decoration elements
========================================================= */

.hero-decoration-one::before {
    content: "";

    position: absolute;

    width: 12px;
    height: 12px;

    right: -105px;
    bottom: 80px;

    border-radius: 50%;

    background: var(--achievement-teal);

    box-shadow:
        0 0 0 8px rgba(80, 199, 190, .08),
        0 0 25px rgba(80, 199, 190, .25);

    animation:
        heroDotPulse 3s ease-in-out infinite;
}


.hero-decoration-two::before {
    content: "";

    position: absolute;

    width: 9px;
    height: 9px;

    left: -35px;
    top: 25px;

    border-radius: 50%;

    background: var(--achievement-blue);

    box-shadow:
        0 0 0 7px rgba(7, 141, 204, .07),
        0 0 20px rgba(7, 141, 204, .20);

    animation:
        heroDotPulse 3.5s .5s ease-in-out infinite;
}


/* =========================================================
   HERO ANIMATIONS
========================================================= */

@keyframes heroBackgroundGlow {

    0%,
    100% {
        transform: scale(1);
        opacity: .7;
    }

    50% {
        transform: scale(1.12);
        opacity: 1;
    }
}


@keyframes heroBadgeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}


@keyframes badgeShine {

    0% {
        left: -120%;
    }

    35%,
    100% {
        left: 140%;
    }
}


@keyframes trophyIconPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08) rotate(-4deg);
    }
}


@keyframes heroTextGlow {

    0%,
    100% {
        filter:
            drop-shadow(0 0 0 rgba(7, 141, 204, 0));
    }

    50% {
        filter:
            drop-shadow(0 5px 18px rgba(7, 141, 204, .12));
    }
}


@keyframes heroUnderlineReveal {

    to {
        transform:
            rotate(-2deg) scaleX(1);
    }
}


@keyframes heroVisualFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}


@keyframes heroVisualGlow {

    0%,
    100% {
        transform:
            translateY(-50%) scale(1);
        opacity: .65;
    }

    50% {
        transform:
            translateY(-50%) scale(1.12);
        opacity: 1;
    }
}


@keyframes heroOrbitRotate {

    from {
        transform:
            translateY(-50%) rotate(-12deg);
    }

    to {
        transform:
            translateY(-50%) rotate(348deg);
    }
}


@keyframes heroBorderRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


@keyframes heroImageShine {

    0% {
        left: -70%;
    }

    45%,
    100% {
        left: 140%;
    }
}


@keyframes eventLabelFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}


@keyframes calendarPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.12);
    }
}


@keyframes floatingAwardMotion {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-12px) rotate(1deg);
    }
}


@keyframes awardIconPulse {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
    }

    50% {
        transform: scale(1.12) rotate(6deg);
    }
}


@keyframes floatingYearMotion {

    0%,
    100% {
        transform: rotate(6deg) translateY(0);
    }

    50% {
        transform: rotate(9deg) translateY(-10px);
    }
}


@keyframes heroDecorationFloat {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(20px, 15px) rotate(8deg);
    }
}


@keyframes heroDecorationFloatReverse {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-18px, -12px) rotate(-8deg);
    }
}


@keyframes heroDotPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: .65;
    }

    50% {
        transform: scale(1.35);
        opacity: 1;
    }
}


/* =========================================================
   HERO REVEAL
========================================================= */

.hero-content.achievement-reveal {
    transform: translateX(-35px) translateY(25px);
}


.achievement-hero-visual.achievement-reveal {
    transform: translateX(35px) translateY(25px);
}


.hero-content.achievement-reveal.show,
.hero-content.achievement-reveal.active,
.achievement-hero-visual.achievement-reveal.show,
.achievement-hero-visual.achievement-reveal.active {
    transform: translateX(0) translateY(0);
}


/* =========================================================
   RESPONSIVE - 1100px
========================================================= */

@media (max-width: 1100px) {

    .achievement-hero {
        min-height: 680px;

        padding:
            90px 0 120px;
    }

    .hero-container {
        gap: 45px;
    }

    .hero-content h1 {
        font-size: clamp(44px, 5.5vw, 62px);
    }

    .achievement-hero-visual {
        padding: 15px;
    }

    .hero-image-card {
        height: 450px;

        border-radius: 32px;
    }

    .achievement-hero-visual::after {
        width: 430px;
        height: 430px;
    }

    .floating-award {
        right: -10px;
    }

    .floating-year {
        right: -8px;
    }
}


/* =========================================================
   RESPONSIVE - 800px
========================================================= */

@media (max-width: 800px) {

    .achievement-hero {
        min-height: auto;

        padding:
            80px 0 110px;
    }

    .hero-container {
        grid-template-columns: 1fr;

        gap: 65px;
    }

    .hero-content {
        max-width: 700px;

        margin: auto;

        text-align: center;
    }

    .hero-badge {
        margin: auto;
    }

    .hero-content h1 {
        font-size:
            clamp(44px, 8vw, 62px);

        letter-spacing: -2px;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;

        max-width: 620px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .achievement-hero-visual {
        width: 100%;

        max-width: 700px;

        margin: auto;

        padding: 15px 25px;
    }

    .hero-image-card {
        height: 450px;
    }

    .achievement-hero-visual::before {
        width: 400px;
        height: 400px;
    }

    .achievement-hero-visual::after {
        width: 440px;
        height: 440px;

        right: 50%;

        transform:
            translate(50%, -50%);
    }

    .floating-award {
        right: 0;
        top: 25px;
    }

    .floating-year {
        right: 0;
        bottom: 25px;
    }

    .hero-content.achievement-reveal,
    .achievement-hero-visual.achievement-reveal {
        transform:
            translateY(35px);
    }

    .hero-content.achievement-reveal.show,
    .hero-content.achievement-reveal.active,
    .achievement-hero-visual.achievement-reveal.show,
    .achievement-hero-visual.achievement-reveal.active {
        transform:
            translateY(0);
    }
}


/* =========================================================
   RESPONSIVE - 600px
========================================================= */

@media (max-width: 600px) {

    .achievement-hero {
        padding:
            65px 0 90px;
    }

    .hero-container {
        gap: 48px;
    }

    .hero-content h1 {
        margin-top: 22px;

        font-size: 42px;

        line-height: 1.08;

        letter-spacing: -1.5px;
    }

    .hero-content h1 span::after {
        height: 4px;

        bottom: -8px;
    }

    .hero-content p {
        margin-top: 28px;

        font-size: 13px;

        line-height: 1.8;
    }

    .hero-buttons {
        flex-direction: column;

        width: 100%;

        margin-top: 30px;
    }

    .achievement-primary-btn,
    .achievement-secondary-btn {
        width: 100%;

        min-height: 54px;
    }

    .achievement-hero-visual {
        padding: 10px 8px;
    }

    .hero-image-card {
        height: 370px;

        border-width: 6px;

        border-radius: 27px;
    }

    .hero-image-card::before {
        border-radius: 30px;
    }

    .hero-event-label {
        left: 15px;
        bottom: 15px;

        min-width: 0;

        max-width: calc(100% - 30px);

        padding: 10px 13px 10px 10px;

        border-radius: 16px;
    }

    .hero-event-icon {
        width: 42px;
        height: 42px;

        border-radius: 12px;
    }

    .hero-event-label strong {
        font-size: 11px;
    }

    .hero-event-label span {
        font-size: 8px;
    }

    .floating-award {
        right: 3px;
        top: 15px;

        min-width: 175px;

        padding: 10px 12px;

        border-radius: 16px;
    }

    .floating-card-icon {
        width: 38px;
        height: 38px;

        border-radius: 11px;
    }

    .floating-award strong {
        font-size: 10px;
    }

    .floating-award span {
        font-size: 8px;
    }

    .floating-year {
        right: 3px;
        bottom: 15px;

        width: 72px;
        height: 72px;

        border-radius: 19px;
    }

    .floating-year::before {
        border-radius: 15px;
    }

    .floating-year strong {
        font-size: 18px;
    }

    .floating-year span {
        font-size: 7px;
    }

    .achievement-hero-visual::after {
        width: 330px;
        height: 330px;
    }

    .achievement-hero-visual::before {
        width: 300px;
        height: 300px;
    }

    .hero-decoration-one {
        width: 280px;
        height: 280px;

        left: -160px;
        top: -100px;

        border-width: 45px;
    }

    .hero-decoration-two {
        width: 220px;
        height: 220px;

        right: -120px;
        bottom: -130px;

        border-width: 35px;
    }
}


/* =========================================================
   RESPONSIVE - 400px
========================================================= */

@media (max-width: 400px) {

    .achievement-hero {
        padding:
            55px 0 75px;
    }

    .hero-content h1 {
        font-size: 35px;

        letter-spacing: -1px;
    }

    .hero-content p {
        font-size: 12.5px;
    }

    .hero-badge {
        padding:
            6px 13px 6px 6px;

        font-size: 10px;
    }

    .hero-badge-icon {
        width: 32px;
        height: 32px;
    }

    .achievement-hero-visual {
        padding:
            8px 4px;
    }

    .hero-image-card {
        height: 320px;

        border-radius: 23px;

        border-width: 5px;
    }

    .hero-event-label {
        left: 10px;
        bottom: 10px;

        max-width:
            calc(100% - 20px);
    }

    .floating-award {
        right: -2px;
        top: 10px;

        min-width: 155px;

        padding: 8px 10px;
    }

    .floating-card-icon {
        width: 34px;
        height: 34px;
    }

    .floating-award strong {
        font-size: 9px;
    }

    .floating-award span {
        font-size: 7px;
    }

    .floating-year {
        right: 0;
        bottom: 10px;

        width: 65px;
        height: 65px;
    }

    .floating-year strong {
        font-size: 16px;
    }

    .floating-year span {
        font-size: 6px;
    }

    .achievement-hero-visual::after {
        width: 280px;
        height: 280px;
    }

    .achievement-hero-visual::before {
        width: 250px;
        height: 250px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .achievement-hero::after,
    .hero-badge,
    .hero-badge-icon,
    .hero-content h1 span,
    .hero-content h1 span::after,
    .achievement-hero-visual,
    .achievement-hero-visual::before,
    .achievement-hero-visual::after,
    .hero-image-card::before,
    .hero-image-card::after,
    .hero-event-label,
    .hero-event-icon i,
    .floating-award,
    .floating-card-icon i,
    .floating-year,
    .hero-decoration-one,
    .hero-decoration-two,
    .hero-decoration-one::before,
    .hero-decoration-two::before {
        animation: none !important;
    }
}


/* =========================================================
   STATISTICS
========================================================= */

.achievement-stat-section {
    position: relative;

    z-index: 5;

    margin-top: -55px;
}

.achievement-stat-wrapper {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    padding: 25px;

    border-radius: 28px;

    background: white;

    box-shadow:
        0 22px 55px rgba(30, 71, 94, .11);
}

.achievement-stat-box {
    display: flex;

    align-items: center;

    gap: 14px;

    padding: 14px 22px;

    border-right: 1px solid #e5eff3;
}

.achievement-stat-box:last-child {
    border-right: 0;
}

.achievement-stat-icon {
    width: 52px;
    height: 52px;

    flex-shrink: 0;

    border-radius: 15px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #eef9fc;

    color: var(--achievement-blue);

    font-size: 19px;
}

.achievement-stat-box h3 {
    font-size: 25px;

    line-height: 1.2;
}

.achievement-stat-box p {
    margin-top: 4px;

    color: #748693;

    font-size: 11px;
}


/* =========================================================
   COMMON SECTION HEADING
========================================================= */

.achievement-section-heading {
    max-width: 760px;

    margin: 0 auto;

    text-align: center;
}

.achievement-section-label {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    color: var(--achievement-blue);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.8px;
}

.achievement-section-label span {
    width: 27px;
    height: 2px;

    border-radius: 10px;

    background: var(--achievement-teal);
}

.achievement-section-heading h2 {
    margin-top: 12px;

    font-size: clamp(31px, 4vw, 43px);

    line-height: 1.25;

    letter-spacing: -.8px;
}

.achievement-section-heading h2 span {
    color: var(--achievement-blue);
}

.achievement-section-heading p {
    margin-top: 14px;

    color: var(--achievement-text);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   EVENTS
========================================================= */

.achievement-events-section {
    padding: 125px 0;
}

.achievement-filter-wrapper {
    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap: 9px;

    margin: 45px auto 50px;
}

.achievement-filter {
    padding: 11px 20px;

    border: 1px solid #dbeaf0;

    border-radius: 50px;

    background: white;

    color: var(--achievement-text);

    cursor: pointer;

    font-size: 12px;

    font-weight: 500;

    transition: .3s ease;
}

.achievement-filter:hover {
    color: var(--achievement-blue);

    border-color: var(--achievement-blue);

    transform: translateY(-2px);
}

.achievement-filter.active {
    color: white;

    background: var(--achievement-blue);

    border-color: var(--achievement-blue);

    box-shadow:
        0 10px 25px rgba(7, 141, 204, .20);
}


/* =========================================================
   EVENT GRID
========================================================= */

.achievement-event-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 24px;
}

.achievement-event-card {
    overflow: hidden;

    border: 1px solid #e5eff4;

    border-radius: 27px;

    background: white;

    box-shadow:
        0 12px 35px rgba(25, 65, 85, .07);

    transition:
        transform .4s ease,
        box-shadow .4s ease,
        opacity .3s ease;
}

.achievement-event-card:hover {
    transform: translateY(-9px);

    box-shadow:
        0 28px 60px rgba(25, 65, 85, .14);
}

.achievement-event-card.filtered-out {
    display: none;
}

.achievement-event-image {
    position: relative;

    height: 235px;

    overflow: hidden;
}

.achievement-event-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .7s ease;
}

.achievement-event-card:hover .achievement-event-image img {
    transform: scale(1.08);
}

.achievement-event-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(180deg,
            transparent 45%,
            rgba(4, 30, 42, .55));
}

.achievement-event-tag {
    position: absolute;

    left: 16px;
    top: 16px;

    padding: 8px 12px;

    border-radius: 50px;

    background: rgba(255, 255, 255, .94);

    color: var(--achievement-blue);

    font-size: 10px;

    font-weight: 600;
}

.achievement-event-tag i {
    margin-right: 4px;
}

.achievement-event-content {
    padding: 23px;
}

.achievement-event-number {
    color: var(--achievement-teal);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;
}

.achievement-event-content h3 {
    margin-top: 7px;

    font-size: 19px;

    line-height: 1.4;
}

.achievement-event-content p {
    margin-top: 9px;

    color: #71828e;

    font-size: 12px;

    line-height: 1.75;
}

.achievement-view-gallery {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    margin-top: 17px;

    padding: 0;

    border: 0;

    background: transparent;

    color: var(--achievement-blue);

    cursor: pointer;

    font-size: 12px;

    font-weight: 600;

    transition: gap .3s ease;
}

.achievement-view-gallery:hover {
    gap: 12px;
}


/* =========================================================
   FEATURED EVENT
========================================================= */

.achievement-featured-card {
    grid-column: span 2;

    display: grid;

    grid-template-columns: 1.1fr 1fr;
}

.achievement-featured-card .achievement-event-image {
    height: 100%;

    min-height: 340px;
}

.achievement-featured-card .achievement-event-content {
    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 38px;
}

.achievement-featured-card .achievement-event-content h3 {
    font-size: 27px;
}

.achievement-featured-card .achievement-event-content p {
    max-width: 430px;

    font-size: 13px;
}


/* =========================================================
   AWARDS
========================================================= */

.achievement-awards-section {
    padding: 120px 0;

    background: white;
}

.certificate-showcase {
    display: grid;

    grid-template-columns: 1.05fr 1fr;

    gap: 25px;

    margin-top: 60px;
}

.certificate-featured {
    padding: 20px;

    border-radius: 28px;

    background: #f7fafc;

    border: 1px solid #e5eff4;
}

.certificate-featured-image {
    position: relative;

    height: 470px;

    overflow: hidden;

    border-radius: 20px;

    background: #eef4f7;
}

.certificate-featured-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    transition: transform .6s ease;
}

.certificate-featured:hover .certificate-featured-image img {
    transform: scale(1.03);
}

.certificate-featured-content {
    padding: 22px 5px 5px;
}

.certificate-featured-content>span {
    color: var(--achievement-blue);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.5px;
}

.certificate-featured-content h3 {
    margin-top: 7px;

    font-size: 22px;
}

.certificate-featured-content p {
    margin-top: 8px;

    color: var(--achievement-text);

    font-size: 12px;

    line-height: 1.7;
}

.certificate-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}

.certificate-card {
    padding: 10px;

    border-radius: 20px;

    background: #f7fafc;

    border: 1px solid #e5eff4;

    transition: .35s ease;
}

.certificate-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 20px 40px rgba(30, 70, 90, .10);
}

.certificate-image {
    position: relative;

    height: 225px;

    overflow: hidden;

    border-radius: 14px;

    background: white;
}

.certificate-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    transition: transform .5s ease;
}

.certificate-card:hover .certificate-image img {
    transform: scale(1.04);
}

.certificate-view-btn {
    position: absolute;

    right: 10px;
    bottom: 10px;

    width: 38px;
    height: 38px;

    border: 0;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, .94);

    color: var(--achievement-blue);

    cursor: pointer;

    box-shadow:
        0 8px 20px rgba(20, 60, 80, .12);

    transition: .3s ease;
}

.certificate-view-btn:hover {
    transform: scale(1.1);

    background: var(--achievement-blue);

    color: white;
}

/* =========================================================
   MEMORY - MODERN EDITORIAL PHOTO GALLERY
========================================================= */

.achievement-memory-section {
    position: relative;

    padding: 125px 0 135px;

    background:
        linear-gradient(180deg,
            #f5f8fb 0%,
            #f8fbfd 100%);

    overflow: hidden;
}


/* =========================================================
   MEMORY BACKGROUND DECORATION
========================================================= */

.achievement-memory-section::before {
    content: "";

    position: absolute;

    width: 430px;
    height: 430px;

    left: -250px;
    top: 80px;

    border-radius: 50%;

    border: 70px solid rgba(80, 199, 190, .055);

    pointer-events: none;
}

.achievement-memory-section::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: -170px;
    bottom: -100px;

    border-radius: 50%;

    border: 55px solid rgba(7, 141, 204, .05);

    pointer-events: none;
}


/* =========================================================
   MEMORY HEADING
========================================================= */

.achievement-memory-heading {
    position: relative;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 60px;

    margin-bottom: 55px;

    z-index: 2;
}

.left-label {
    justify-content: flex-start;
}

.achievement-memory-heading h2 {
    position: relative;

    margin-top: 13px;

    font-size: clamp(34px, 4vw, 48px);

    line-height: 1.15;

    letter-spacing: -1.2px;

    font-weight: 800;

    color: var(--achievement-dark);
}

.achievement-memory-heading h2 span {
    position: relative;

    color: var(--achievement-blue);
}

.achievement-memory-heading h2 span::after {
    content: "";

    position: absolute;

    left: 2px;
    right: 0;

    bottom: -7px;

    height: 4px;

    border-radius: 20px;

    background:
        linear-gradient(90deg,
            var(--achievement-teal),
            transparent);

    opacity: .8;
}

.achievement-memory-heading>p {
    position: relative;

    max-width: 400px;

    margin-bottom: 3px;

    color: var(--achievement-text);

    font-size: 13px;

    line-height: 1.9;
}


/* =========================================================
   MEMORY GALLERY
========================================================= */

.achievement-memory-grid {
    position: relative;

    display: grid;

    grid-template-columns: 1.25fr .75fr .75fr;

    grid-template-rows: 255px 255px;

    gap: 18px;

    z-index: 2;
}


/* =========================================================
   MEMORY ITEM BASE
========================================================= */

.memory-item {
    position: relative;

    overflow: hidden;

    border-radius: 28px;

    background: #dfeaf0;

    border: 5px solid rgba(255, 255, 255, .95);

    box-shadow:
        0 18px 45px rgba(24, 65, 84, .10);

    isolation: isolate;

    cursor: pointer;

    transition:
        transform .45s cubic-bezier(.2, .8, .2, 1),
        box-shadow .45s ease;
}

.memory-item::before {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(180deg,
            transparent 48%,
            rgba(5, 30, 42, .48) 100%);

    opacity: .65;

    pointer-events: none;

    transition: opacity .4s ease;
}

.memory-item::after {
    content: "";

    position: absolute;

    width: 100px;
    height: 100px;

    right: -35px;
    bottom: -35px;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, .35);

    z-index: 2;

    transition:
        transform .5s ease,
        opacity .5s ease;

    opacity: .65;

    pointer-events: none;
}

.memory-item:hover {
    transform: translateY(-8px);

    box-shadow:
        0 30px 65px rgba(24, 65, 84, .17);
}

.memory-item:hover::before {
    opacity: .85;
}

.memory-item:hover::after {
    transform: scale(1.7);

    opacity: 0;
}


/* =========================================================
   MEMORY IMAGES
========================================================= */

.memory-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .8s cubic-bezier(.2, .8, .2, 1),
        filter .5s ease;
}

.memory-item:hover img {
    transform: scale(1.08);

    filter: saturate(1.08);
}


/* =========================================================
   FEATURED MEMORY
========================================================= */

.memory-one {
    position: relative;

    grid-row: span 2;

    border-radius: 32px;
}

.memory-one::before {
    background:
        linear-gradient(180deg,
            rgba(5, 30, 42, .02) 35%,
            rgba(5, 30, 42, .68) 100%);
}


/* =========================================================
   MEMORY 2
========================================================= */

.memory-two {
    grid-column: 2;

    grid-row: 1;

    border-radius: 26px;
}


/* =========================================================
   MEMORY 3
========================================================= */

.memory-three {
    grid-column: 3;

    grid-row: 1;

    border-radius: 26px;
}


/* =========================================================
   MEMORY 4 - WIDE BOTTOM IMAGE
========================================================= */

.memory-four {
    grid-column: 2 / 4;

    grid-row: 2;

    border-radius: 26px;
}


/* =========================================================
   MEMORY NUMBER LABELS
   Generated using existing HTML only
========================================================= */

.memory-item:nth-child(1)::after {
    content: "01";

    width: auto;
    height: auto;

    right: 20px;
    bottom: 18px;

    padding: 8px 12px;

    border: 1px solid rgba(255, 255, 255, .45);

    border-radius: 10px;

    background: rgba(255, 255, 255, .12);

    backdrop-filter: blur(8px);

    color: white;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.5px;

    opacity: .95;
}

.memory-item:nth-child(2)::after {
    content: "02";

    width: auto;
    height: auto;

    right: 15px;
    bottom: 15px;

    padding: 7px 10px;

    border: 1px solid rgba(255, 255, 255, .45);

    border-radius: 9px;

    background: rgba(255, 255, 255, .12);

    backdrop-filter: blur(8px);

    color: white;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.2px;

    opacity: .95;
}

.memory-item:nth-child(3)::after {
    content: "03";

    width: auto;
    height: auto;

    right: 15px;
    bottom: 15px;

    padding: 7px 10px;

    border: 1px solid rgba(255, 255, 255, .45);

    border-radius: 9px;

    background: rgba(255, 255, 255, .12);

    backdrop-filter: blur(8px);

    color: white;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.2px;

    opacity: .95;
}

.memory-item:nth-child(4)::after {
    content: "04";

    width: auto;
    height: auto;

    right: 18px;
    bottom: 15px;

    padding: 7px 11px;

    border: 1px solid rgba(255, 255, 255, .45);

    border-radius: 9px;

    background: rgba(255, 255, 255, .12);

    backdrop-filter: blur(8px);

    color: white;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.2px;

    opacity: .95;
}


/* =========================================================
   MEMORY TOP LABEL
   Generated without HTML modification
========================================================= */

.memory-one::before {
    content: "FEATURED MEMORY";

    display: block;

    position: absolute;

    left: 22px;
    top: 20px;

    right: auto;
    bottom: auto;

    width: auto;
    height: auto;

    padding: 8px 13px;

    border-radius: 50px;

    background: rgba(255, 255, 255, .90);

    backdrop-filter: blur(10px);

    color: var(--achievement-blue);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.4px;

    z-index: 3;

    opacity: 1;

    transition: none;
}


/* =========================================================
   FEATURED MEMORY DECORATIVE CORNER
========================================================= */

.memory-one {
    box-shadow:
        0 22px 55px rgba(24, 65, 84, .13);
}

.memory-one img {
    transform-origin: center;
}

.memory-one:hover {
    transform:
        translateY(-10px) rotate(-.3deg);

    box-shadow:
        0 35px 75px rgba(24, 65, 84, .20);
}


/* =========================================================
   SMALL MEMORY CARDS
========================================================= */

.memory-two,
.memory-three {
    transform-origin: center;
}

.memory-two:hover,
.memory-three:hover {
    transform:
        translateY(-8px) scale(1.015);
}


/* =========================================================
   BOTTOM WIDE MEMORY
========================================================= */

.memory-four:hover {
    transform:
        translateY(-8px) scale(1.008);
}


/* =========================================================
   RESPONSIVE - 1100px
========================================================= */

@media (max-width: 1100px) {

    .achievement-memory-heading {
        gap: 35px;
    }

    .achievement-memory-grid {
        grid-template-columns: 1.15fr .85fr;

        grid-template-rows:
            270px 220px 220px;
    }

    .memory-one {
        grid-column: 1;

        grid-row: span 2;
    }

    .memory-two {
        grid-column: 2;

        grid-row: 1;
    }

    .memory-three {
        grid-column: 2;

        grid-row: 2;
    }

    .memory-four {
        grid-column: 1 / 3;

        grid-row: 3;
    }
}


/* =========================================================
   RESPONSIVE - 800px
========================================================= */

@media (max-width: 800px) {

    .achievement-memory-section {
        padding: 95px 0 105px;
    }

    .achievement-memory-heading {
        align-items: flex-start;

        flex-direction: column;

        gap: 18px;

        margin-bottom: 40px;
    }

    .achievement-memory-heading>p {
        max-width: 550px;

        margin: 0;
    }

    .achievement-memory-grid {
        grid-template-columns: 1fr 1fr;

        grid-template-rows:
            280px 220px 220px;

        gap: 15px;
    }

    .memory-one {
        grid-column: 1 / 3;

        grid-row: 1;

        border-radius: 28px;
    }

    .memory-two {
        grid-column: 1;

        grid-row: 2;

        border-radius: 23px;
    }

    .memory-three {
        grid-column: 2;

        grid-row: 2;

        border-radius: 23px;
    }

    .memory-four {
        grid-column: 1 / 3;

        grid-row: 3;

        border-radius: 23px;
    }
}


/* =========================================================
   RESPONSIVE - 600px
========================================================= */

@media (max-width: 600px) {

    .achievement-memory-section {
        padding: 80px 0 90px;
    }

    .achievement-memory-heading {
        margin-bottom: 32px;
    }

    .achievement-memory-heading h2 {
        font-size: 34px;

        letter-spacing: -.8px;
    }

    .achievement-memory-heading>p {
        font-size: 12.5px;

        line-height: 1.8;
    }

    .achievement-memory-grid {
        grid-template-columns: 1fr;

        grid-template-rows:
            280px 220px 220px 250px;

        gap: 14px;
    }

    .memory-one {
        grid-column: 1;

        grid-row: 1;

        border-radius: 24px;
    }

    .memory-two {
        grid-column: 1;

        grid-row: 2;

        border-radius: 22px;
    }

    .memory-three {
        grid-column: 1;

        grid-row: 3;

        border-radius: 22px;
    }

    .memory-four {
        grid-column: 1;

        grid-row: 4;

        border-radius: 22px;
    }

    .memory-one::before {
        left: 16px;
        top: 16px;

        padding: 7px 11px;

        font-size: 8px;
    }

    .memory-item:nth-child(1)::after {
        right: 14px;
        bottom: 14px;
    }

    .memory-item:nth-child(2)::after,
    .memory-item:nth-child(3)::after,
    .memory-item:nth-child(4)::after {
        right: 13px;
        bottom: 13px;
    }
}


/* =========================================================
   RESPONSIVE - 400px
========================================================= */

@media (max-width: 400px) {

    .achievement-memory-section {
        padding: 65px 0 75px;
    }

    .achievement-memory-heading h2 {
        font-size: 30px;
    }

    .achievement-memory-grid {
        grid-template-rows:
            245px 200px 200px 220px;

        gap: 12px;
    }

    .memory-item {
        border-width: 4px;

        border-radius: 20px;
    }

    .memory-one {
        border-radius: 22px;
    }
}

/* =========================================================
   MODERN ACHIEVEMENT CTA
========================================================= */

.achievement-cta {
    position: relative;

    width: 100%;

    padding: 95px 0;

    overflow: hidden;

    background:
        radial-gradient(circle at 12% 50%,
            rgba(80, 199, 190, .13),
            transparent 30%),
        radial-gradient(circle at 90% 30%,
            rgba(7, 141, 204, .11),
            transparent 32%),
        #f3f9fc;

    color: var(--achievement-dark);

    text-align: left;
}


/* =========================================================
   CTA CONTAINER
========================================================= */

.achievement-cta .achievement-container {
    position: relative;

    z-index: 3;
}


/* =========================================================
   CTA CARD
========================================================= */

.achievement-cta-card {
    position: relative;

    display: grid;

    grid-template-columns: 260px 1fr 190px;

    align-items: center;

    min-height: 390px;

    padding: 55px 60px;

    overflow: hidden;

    border-radius: 34px;

    background:
        linear-gradient(135deg,
            #ffffff 0%,
            #f9fdff 55%,
            #eef9fc 100%);

    border: 1px solid rgba(7, 141, 204, .12);

    box-shadow:
        0 28px 75px rgba(16, 45, 61, .12),
        0 10px 30px rgba(7, 141, 204, .06);

    isolation: isolate;
}


/* Left colored edge */

.achievement-cta-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    width: 6px;

    border-radius: 10px;

    background:
        linear-gradient(to bottom,
            var(--achievement-teal),
            var(--achievement-blue),
            var(--achievement-orange));
}


/* Soft internal glow */

.achievement-cta-card::after {
    content: "";

    position: absolute;

    width: 440px;
    height: 440px;

    left: -150px;
    top: -130px;

    border-radius: 50%;

    background:
        rgba(80, 199, 190, .055);

    z-index: -1;
}


/* =========================================================
   CTA VISUAL
========================================================= */

.achievement-cta-visual {
    position: relative;

    width: 220px;
    height: 270px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: auto;
}


/* =========================================================
   TROPHY
========================================================= */

.achievement-trophy {
    position: relative;

    width: 125px;
    height: 125px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(145deg,
            #ffffff,
            #e9f8fa);

    border: 1px solid rgba(80, 199, 190, .28);

    box-shadow:
        0 18px 48px rgba(7, 141, 204, .16),
        inset 0 0 25px rgba(80, 199, 190, .08);

    z-index: 4;

    animation:
        trophyFloat 4s ease-in-out infinite;
}

.achievement-trophy i {
    font-size: 58px;

    background:
        linear-gradient(135deg,
            #ffb43c,
            var(--achievement-orange));

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;

    filter:
        drop-shadow(0 7px 10px rgba(255, 102, 53, .18));
}


/* =========================================================
   TROPHY GLOW
========================================================= */

.achievement-trophy-glow {
    position: absolute;

    width: 150px;
    height: 150px;

    border-radius: 50%;

    background:
        rgba(80, 199, 190, .13);

    filter: blur(18px);

    animation:
        achievementPulse 3.5s ease-in-out infinite;
}


/* =========================================================
   ORBIT RINGS
========================================================= */

.achievement-orbit {
    position: absolute;

    border-radius: 50%;

    border: 1px dashed rgba(7, 141, 204, .23);

    animation:
        orbitRotate 15s linear infinite;
}

.orbit-one {
    width: 190px;
    height: 190px;
}

.orbit-two {
    width: 230px;
    height: 230px;

    border-color:
        rgba(80, 199, 190, .20);

    animation-duration: 20s;

    animation-direction: reverse;
}


/* =========================================================
   FLOATING STARS
========================================================= */

.achievement-star {
    position: absolute;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #ffb43c;

    filter:
        drop-shadow(0 5px 10px rgba(255, 102, 53, .18));

    animation:
        starFloat 3s ease-in-out infinite;
}

.achievement-star i {
    font-size: 17px;
}

.star-one {
    top: 18px;
    right: 30px;
}

.star-two {
    left: 8px;
    top: 105px;

    animation-delay: .8s;
}

.star-three {
    right: 8px;
    bottom: 45px;

    animation-delay: 1.5s;
}


/* =========================================================
   CTA CONTENT
========================================================= */

.achievement-cta-content {
    position: relative;

    padding: 10px 20px 10px 35px;

    z-index: 5;
}


/* =========================================================
   CTA MINI LABEL
========================================================= */

.achievement-mini-label {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 18px;

    color: var(--achievement-blue);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.8px;
}

.mini-label-line {
    width: 28px;
    height: 2px;

    border-radius: 20px;

    background: var(--achievement-teal);
}

.achievement-mini-label .mini-label-line:last-child {
    width: 12px;
}


/* =========================================================
   CTA HEADING
========================================================= */

.achievement-cta-content h2 {
    margin: 0 0 18px;

    color: var(--achievement-dark);

    font-size: clamp(36px, 4vw, 54px);

    line-height: 1.08;

    font-weight: 800;

    letter-spacing: -1.5px;
}

.achievement-cta-content h2 span {
    display: block;

    background:
        linear-gradient(90deg,
            var(--achievement-blue),
            var(--achievement-teal));

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}


/* =========================================================
   CTA DESCRIPTION
========================================================= */

.achievement-cta-content p {
    max-width: 650px;

    margin: 0;

    color: var(--achievement-text);

    font-size: 14px;

    line-height: 1.85;

    font-weight: 400;
}


/* =========================================================
   CTA ACTION AREA
========================================================= */

.achievement-cta-actions {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 24px;

    margin-top: 30px;
}


/* =========================================================
   CTA BUTTON
========================================================= */

.achievement-cta-button {
    display: inline-flex;

    align-items: center;

    gap: 14px;

    padding: 6px 7px 6px 23px;

    border: 0;

    border-radius: 50px;

    color: #ffffff;

    background:
        linear-gradient(135deg,
            var(--achievement-blue),
            #0785bb);

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;

    cursor: pointer;

    box-shadow:
        0 13px 28px rgba(7, 141, 204, .23);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease;
}

.achievement-cta-button:hover {
    color: white;

    transform: translateY(-4px);

    box-shadow:
        0 18px 35px rgba(7, 141, 204, .30);

    background:
        linear-gradient(135deg,
            #0785bb,
            var(--achievement-teal));
}


/* =========================================================
   CTA BUTTON ICON
========================================================= */

.achievement-button-icon {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: var(--achievement-blue);

    background: white;

    transition:
        transform .3s ease;
}

.achievement-cta-button:hover .achievement-button-icon {
    transform:
        translateX(4px) rotate(-5deg);
}


/* =========================================================
   CTA TRUST TEXT
========================================================= */

.achievement-trust-text {
    display: flex;

    align-items: center;

    gap: 8px;

    color: #607786;

    font-size: 11px;

    font-weight: 500;
}

.achievement-trust-text i {
    color: var(--achievement-teal);

    font-size: 15px;
}


/* =========================================================
   CTA MILESTONE BADGE
========================================================= */

.achievement-cta-badge {
    display: flex;

    align-items: center;

    justify-content: center;
}


/* Outer rotating ring */

.achievement-badge-ring {
    position: relative;

    width: 150px;
    height: 150px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        conic-gradient(var(--achievement-teal),
            var(--achievement-blue),
            var(--achievement-teal),
            var(--achievement-blue),
            var(--achievement-teal));

    animation:
        badgeRotate 12s linear infinite;

    box-shadow:
        0 18px 40px rgba(7, 141, 204, .12);
}


/* White separation */

.achievement-badge-ring::before {
    content: "";

    position: absolute;

    inset: 5px;

    border-radius: 50%;

    background: white;
}


/* Inner badge */

.achievement-badge-inner {
    position: relative;

    z-index: 2;

    width: 120px;
    height: 120px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(145deg,
            #f5fcfd,
            #ffffff);

    box-shadow:
        inset 0 0 20px rgba(7, 141, 204, .06);
}

.achievement-badge-inner i {
    margin-bottom: 5px;

    color: var(--achievement-orange);

    font-size: 27px;
}

.achievement-badge-inner strong {
    color: var(--achievement-dark);

    font-size: 14px;

    line-height: 1;
}

.achievement-badge-inner span {
    margin-top: 4px;

    color: var(--achievement-blue);

    font-size: 11px;

    font-weight: 700;
}


/* =========================================================
   CTA BACKGROUND DECORATIONS
========================================================= */

.cta-decoration {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    z-index: 1;
}

.cta-decoration-one {
    width: 390px;
    height: 390px;

    left: -175px;
    top: -170px;

    border: 65px solid rgba(80, 199, 190, .08);

    animation:
        achievementFloat 8s ease-in-out infinite;
}

.cta-decoration-two {
    width: 330px;
    height: 330px;

    right: -150px;
    bottom: -180px;

    border: 55px solid rgba(7, 141, 204, .07);

    animation:
        achievementFloatReverse 9s ease-in-out infinite;
}


/* Additional CTA decoration */

.achievement-bg-shape {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    z-index: 1;
}

.achievement-bg-shape-1 {
    width: 300px;
    height: 300px;

    left: -150px;
    top: 30px;

    border: 1px solid rgba(80, 199, 190, .15);

    background:
        rgba(80, 199, 190, .035);

    animation:
        achievementFloat 7s ease-in-out infinite;
}

.achievement-bg-shape-2 {
    width: 220px;
    height: 220px;

    right: -70px;
    bottom: -60px;

    border: 1px solid rgba(7, 141, 204, .14);

    background:
        rgba(7, 141, 204, .035);

    animation:
        achievementFloatReverse 8s ease-in-out infinite;
}

.achievement-bg-shape-3 {
    width: 75px;
    height: 75px;

    right: 18%;
    top: 15%;

    background:
        rgba(255, 102, 53, .07);

    animation:
        achievementPulse 4s ease-in-out infinite;
}


/* =========================================================
   CTA ANIMATIONS
========================================================= */

@keyframes trophyFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes achievementPulse {

    0%,
    100% {
        transform: scale(1);

        opacity: .6;
    }

    50% {
        transform: scale(1.12);

        opacity: 1;
    }
}

@keyframes orbitRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes starFloat {

    0%,
    100% {
        transform:
            translateY(0) scale(1);
    }

    50% {
        transform:
            translateY(-8px) scale(1.08);
    }
}

@keyframes badgeRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes achievementFloatReverse {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-18px, 12px);
    }
}


/* =========================================================
   LIGHTBOX
========================================================= */

.achievement-lightbox {
    position: fixed;

    inset: 0;

    z-index: 9999;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 40px;

    background:
        rgba(5, 20, 29, .94);

    backdrop-filter: blur(12px);

    opacity: 0;

    visibility: hidden;

    transition: .35s ease;
}

.achievement-lightbox.active {
    opacity: 1;

    visibility: visible;
}

.achievement-lightbox-content {
    max-width: 1000px;

    max-height: 88vh;

    position: relative;
}

.achievement-lightbox-content img {
    width: auto;

    max-width: 100%;

    max-height: 78vh;

    margin: auto;

    border-radius: 15px;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, .4);
}

.achievement-lightbox-caption {
    margin-top: 13px;

    color: white;

    text-align: center;
}

.achievement-lightbox-caption h3 {
    font-size: 15px;
}

.achievement-lightbox-close,
.achievement-lightbox-prev,
.achievement-lightbox-next {
    position: fixed;

    width: 50px;
    height: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, .2);

    background:
        rgba(255, 255, 255, .10);

    color: white;

    cursor: pointer;

    transition: .3s ease;
}

.achievement-lightbox-close {
    right: 28px;
    top: 28px;
}

.achievement-lightbox-prev {
    left: 28px;
    top: 50%;

    transform:
        translateY(-50%);
}

.achievement-lightbox-next {
    right: 28px;
    top: 50%;

    transform:
        translateY(-50%);
}

.achievement-lightbox-close:hover,
.achievement-lightbox-prev:hover,
.achievement-lightbox-next:hover {
    background: white;

    color: var(--achievement-blue);
}

.achievement-lightbox-prev:hover,
.achievement-lightbox-next:hover {
    transform:
        translateY(-50%) scale(1.08);
}


/* =========================================================
   REVEAL ANIMATION
========================================================= */

.achievement-reveal {
    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity .75s ease,
        transform .75s ease;
}

.achievement-reveal.show,
.achievement-reveal.active {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   RESPONSIVE - 1100px
========================================================= */

@media (max-width: 1100px) {

    .hero-container {
        gap: 40px;
    }

    .achievement-stat-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .achievement-stat-box:nth-child(2) {
        border-right: 0;
    }

    .achievement-stat-box:nth-child(-n+2) {
        border-bottom: 1px solid #e5eff3;
    }

    .achievement-event-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .achievement-featured-card {
        grid-column: span 2;
    }

    .certificate-showcase {
        grid-template-columns: 1fr;
    }


    /* CTA */

    .achievement-cta-card {
        grid-template-columns: 200px 1fr;

        padding: 48px 45px;
    }

    .achievement-cta-badge {
        display: none;
    }

    .achievement-cta-visual {
        width: 185px;
    }

    .orbit-one {
        width: 160px;
        height: 160px;
    }

    .orbit-two {
        width: 195px;
        height: 195px;
    }

    .achievement-cta-content {
        padding-left: 20px;
    }
}


/* =========================================================
   RESPONSIVE - 800px
========================================================= */

@media (max-width: 800px) {

    .achievement-hero {
        padding: 75px 0 100px;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-content {
        max-width: 700px;

        margin: auto;

        text-align: center;
    }

    .hero-badge {
        margin: auto;
    }

    .hero-content p {
        margin-left: auto;

        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .achievement-hero-visual {
        max-width: 700px;

        width: 100%;

        margin: auto;
    }

    .achievement-memory-heading {
        align-items: flex-start;

        flex-direction: column;
    }

    .achievement-memory-grid {
        grid-template-columns: 1fr 1fr;

        grid-template-rows:
            220px 220px 220px;
    }

    .memory-one {
        grid-row: span 2;
    }

    .memory-four {
        grid-column: span 2;
    }


    /* CTA */

    .achievement-cta {
        padding: 80px 0;
    }

    .achievement-cta-card {
        grid-template-columns: 1fr;

        min-height: auto;

        padding: 50px 35px;

        text-align: center;

        border-radius: 30px;
    }

    .achievement-cta-card::before {
        left: 0;
        right: 0;
        top: 0;
        bottom: auto;

        width: 100%;
        height: 5px;

        border-radius: 0;
    }

    .achievement-cta-visual {
        width: 210px;

        height: 230px;

        margin:
            0 auto 15px;
    }

    .achievement-cta-content {
        padding: 0;
    }

    .achievement-mini-label {
        justify-content: center;
    }

    .achievement-cta-content p {
        margin-left: auto;

        margin-right: auto;
    }

    .achievement-cta-actions {
        justify-content: center;
    }

    .achievement-cta-badge {
        display: none;
    }
}


/* =========================================================
   RESPONSIVE - 600px
========================================================= */

@media (max-width: 600px) {

    .achievement-container {
        width: 92%;
    }

    .achievement-hero {
        padding: 65px 0 80px;
    }

    .hero-content h1 {
        font-size: 40px;

        letter-spacing: -1px;
    }

    .hero-content p {
        font-size: 13px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .achievement-primary-btn,
    .achievement-secondary-btn {
        width: 100%;
    }

    .hero-image-card {
        height: 350px;

        border-radius: 26px;

        border-width: 7px;
    }

    .floating-award {
        right: 8px;

        top: 18px;
    }

    .floating-year {
        right: 8px;

        bottom: 18px;
    }

    .achievement-stat-section {
        margin-top: -30px;
    }

    .achievement-stat-wrapper {
        grid-template-columns: 1fr;

        padding: 18px;
    }

    .achievement-stat-box {
        border-right: 0 !important;

        border-bottom: 1px solid #e5eff3;

        padding: 14px 5px;
    }

    .achievement-stat-box:last-child {
        border-bottom: 0;
    }

    .achievement-events-section,
    .achievement-awards-section,
    .achievement-memory-section {
        padding: 80px 0;
    }

    .achievement-event-grid {
        grid-template-columns: 1fr;
    }

    .achievement-featured-card {
        grid-column: span 1;

        display: block;
    }

    .achievement-featured-card .achievement-event-image {
        min-height: 0;

        height: 250px;
    }

    .achievement-featured-card .achievement-event-content {
        padding: 25px;
    }

    .achievement-featured-card .achievement-event-content h3 {
        font-size: 22px;
    }

    .certificate-featured-image {
        height: 330px;
    }

    .certificate-grid {
        grid-template-columns: 1fr 1fr;
    }

    .certificate-image {
        height: 180px;
    }

    .achievement-memory-grid {
        grid-template-columns: 1fr;

        grid-template-rows:
            repeat(4, 220px);
    }

    .memory-one,
    .memory-four {
        grid-column: span 1;

        grid-row: span 1;
    }


    /* =====================================================
       CTA MOBILE
    ===================================================== */

    .achievement-cta {
        padding: 65px 0;
    }

    .achievement-cta-card {
        padding: 42px 22px;

        border-radius: 27px;
    }

    .achievement-cta-visual {
        width: 190px;

        height: 200px;
    }

    .achievement-trophy {
        width: 110px;
        height: 110px;
    }

    .achievement-trophy i {
        font-size: 50px;
    }

    .achievement-trophy-glow {
        width: 125px;
        height: 125px;
    }

    .orbit-one {
        width: 160px;
        height: 160px;
    }

    .orbit-two {
        width: 185px;
        height: 185px;
    }

    .achievement-cta-content h2 {
        font-size: 34px;

        letter-spacing: -1px;
    }

    .achievement-cta-content p {
        font-size: 13px;

        line-height: 1.75;
    }

    .achievement-cta-actions {
        flex-direction: column;

        gap: 17px;

        margin-top: 25px;
    }

    .achievement-cta-button {
        margin: auto;
    }

    .achievement-trust-text {
        justify-content: center;

        text-align: center;
    }

    .achievement-bg-shape-1 {
        width: 200px;
        height: 200px;

        left: -100px;
    }

    .achievement-bg-shape-2 {
        width: 160px;
        height: 160px;

        right: -80px;
    }


    /* LIGHTBOX */

    .achievement-lightbox {
        padding: 15px;
    }

    .achievement-lightbox-close {
        right: 15px;

        top: 15px;
    }

    .achievement-lightbox-prev {
        left: 10px;
    }

    .achievement-lightbox-next {
        right: 10px;
    }
}


/* =========================================================
   RESPONSIVE - 400px
========================================================= */

@media (max-width: 400px) {

    .hero-content h1 {
        font-size: 34px;
    }

    .certificate-grid {
        grid-template-columns: 1fr;
    }

    .certificate-image {
        height: 250px;
    }

    .achievement-filter-wrapper {
        justify-content: flex-start;
    }

    .achievement-filter {
        padding: 9px 14px;

        font-size: 10px;
    }


    /* CTA */

    .achievement-cta {
        padding: 50px 0;
    }

    .achievement-cta-card {
        padding:
            38px 17px;
    }

    .achievement-cta-visual {
        width: 175px;

        height: 185px;
    }

    .achievement-trophy {
        width: 100px;
        height: 100px;
    }

    .achievement-trophy i {
        font-size: 45px;
    }

    .orbit-one {
        width: 145px;
        height: 145px;
    }

    .orbit-two {
        width: 170px;
        height: 170px;
    }

    .achievement-cta-content h2 {
        font-size: 30px;
    }

    .achievement-cta-content p {
        font-size: 12.5px;
    }

    .achievement-mini-label {
        font-size: 9px;

        letter-spacing: 1.2px;
    }

    .achievement-cta-button {
        font-size: 12px;
    }

    .achievement-button-icon {
        width: 39px;
        height: 39px;
    }
}


/* =========================================================
   ACCESSIBILITY / REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    .achievement-trophy,
    .achievement-orbit,
    .achievement-star,
    .achievement-badge-ring,
    .achievement-bg-shape,
    .achievement-trophy-glow,
    .cta-decoration-one,
    .cta-decoration-two,
    .floating-award,
    .floating-year {
        animation: none;
    }

    .achievement-reveal {
        opacity: 1;

        transform: none;

        transition: none;
    }
}

/* =========================================
   IMAGE VIEWER MODAL
========================================== */

.achievement-image-modal {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    z-index: 99999;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.achievement-image-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.achievement-modal-overlay {
    position: absolute;
    inset: 0;
    cursor: pointer;
}

.achievement-modal-content {
    position: relative;
    max-width: 1100px;
    width: 90%;
    max-height: 90vh;
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.achievement-modal-content img {
    display: block;
    max-width: 100%;
    max-height: 75vh;
    width: auto;
    height: auto;

    object-fit: contain;

    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.achievement-modal-close {
    position: absolute;
    top: -50px;
    right: -10px;

    width: 42px;
    height: 42px;

    border: none;
    border-radius: 50%;

    background: #ffffff;
    color: #011e6d;

    font-size: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    transition: all 0.3s ease;

    z-index: 5;
}

.achievement-modal-close:hover {
    background: #ff7b00;
    color: #ffffff;
    transform: rotate(90deg);
}

.achievement-modal-caption {
    margin-top: 18px;
    text-align: center;
}

.achievement-modal-caption h3 {
    margin: 0;
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
}


/* =========================================
   MOBILE
========================================== */

@media screen and (max-width: 768px) {

    .achievement-image-modal {
        padding: 20px;
    }

    .achievement-modal-content {
        width: 95%;
    }

    .achievement-modal-content img {
        max-height: 70vh;
    }

    .achievement-modal-close {
        top: -50px;
        right: 0;
    }

    .achievement-modal-caption h3 {
        font-size: 17px;
    }

}