/* =====================================================
   AIM SECTION
===================================================== */

.aim-section {
    background:
        radial-gradient(circle at 10% 20%,
            rgba(22, 163, 74, 0.08),
            transparent 28%),
        radial-gradient(circle at 90% 80%,
            rgba(16, 185, 129, 0.07),
            transparent 30%),
        #f8fafc;
}


/* Background Shapes */

.aim-bg-shape {
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(2px);
}

.aim-bg-shape-1 {
    width: 260px;
    height: 260px;
    background: rgba(34, 197, 94, 0.07);
    top: 80px;
    left: -130px;
}

.aim-bg-shape-2 {
    width: 320px;
    height: 320px;
    background: rgba(16, 185, 129, 0.06);
    right: -160px;
    bottom: 80px;
}


/* =====================================================
   MAIN AIM CARD
===================================================== */

.aim-main-card {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 28px;
    box-shadow:
        0 10px 30px rgba(15, 23, 42, 0.06);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.aim-main-card:hover {
    transform: translateY(-3px);
    box-shadow:
        0 18px 40px rgba(15, 23, 42, 0.09);
}


/* =====================================================
   MINI AIM CARDS
===================================================== */

.aim-mini-card {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 14px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #f8fafc;
    transition: all 0.3s ease;
}

.aim-mini-card:hover {
    background: #ffffff;
    border-color: #bbf7d0;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.aim-mini-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #dcfce7;
    color: #15803d;
    font-size: 17px;
}

.aim-mini-card h3 {
    color: #0f172a;
    font-size: 14px;
    font-weight: 800;
}

.aim-mini-card p {
    margin-top: 2px;
    color: #64748b;
    font-size: 11px;
    line-height: 1.5;
}


/* =====================================================
   RIGHT VISUAL
===================================================== */

.aim-visual {
    position: relative;
    min-height: 390px;
    overflow: hidden;
    border-radius: 24px;
    padding: 40px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

    background:
        radial-gradient(circle at center,
            rgba(74, 222, 128, 0.22),
            transparent 40%),
        linear-gradient(
            145deg,
            #064e3b,
            #0b4335
        );

    color: white;
}


/* Visual Circle */

.aim-visual-circle {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.20);

    color: #86efac;
    font-size: 35px;

    box-shadow:
        0 0 0 14px rgba(255,255,255,0.035),
        0 0 0 28px rgba(255,255,255,0.02);

    margin-bottom: 28px;
}


.aim-visual-small {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 700;
    color: #86efac;
}


.aim-visual h3 {
    margin-top: 8px;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 800;
}

.aim-visual h3 span {
    color: #86efac;
}


.aim-visual p {
    margin-top: 12px;
    max-width: 260px;
    color: rgba(236, 253, 245, 0.75);
    font-size: 14px;
    line-height: 1.7;
}


/* Floating Icons */

.aim-floating-icon {
    position: absolute;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;

    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);

    color: #bbf7d0;
    font-size: 17px;

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

.aim-icon-1 {
    top: 45px;
    left: 35px;
}

.aim-icon-2 {
    top: 90px;
    right: 35px;
    animation-delay: 1s;
}

.aim-icon-3 {
    bottom: 45px;
    left: 45px;
    animation-delay: 2s;
}


@keyframes aimFloat {

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

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


/* =====================================================
   VISION CARD
===================================================== */

.aim-vision-card {
    display: flex;
    align-items: center;
    gap: 20px;

    padding: 22px 24px;

    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;

    box-shadow:
        0 8px 25px rgba(15, 23, 42, 0.05);

    transition: all 0.3s ease;
}

.aim-vision-card:hover {
    border-color: #bbf7d0;
    transform: translateY(-2px);
}


.aim-vision-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;

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

    border-radius: 16px;

    background: #dcfce7;
    color: #15803d;

    font-size: 21px;
}


/* =====================================================
   OBJECTIVE CARDS
===================================================== */

.aim-objective-card {
    position: relative;
    overflow: hidden;

    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;

    padding: 23px;

    transition: all 0.3s ease;
}

.aim-objective-card:hover {
    transform: translateY(-5px);
    border-color: #bbf7d0;

    box-shadow:
        0 14px 30px rgba(15, 23, 42, 0.08);
}


.aim-objective-number {
    position: absolute;
    right: 18px;
    top: 15px;

    color: #e2e8f0;

    font-size: 32px;
    font-weight: 900;
}


.aim-objective-icon {
    width: 48px;
    height: 48px;

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

    border-radius: 14px;

    background: #ecfdf5;
    color: #15803d;

    font-size: 19px;

    margin-bottom: 18px;
}


.aim-objective-card h3 {
    color: #0f172a;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.4;
}


.aim-objective-card p {
    margin-top: 8px;

    color: #64748b;
    font-size: 13px;
    line-height: 1.7;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1023px) {

    .aim-main-card {
        padding: 22px;
    }

    .aim-visual {
        min-height: 330px;
    }

}


@media (max-width: 640px) {

    .aim-section {
        padding-top: 10px;
    }

    .aim-main-card {
        padding: 18px;
        border-radius: 18px;
    }

    .aim-visual {
        min-height: 300px;
        border-radius: 18px;
        padding: 30px 20px;
    }

    .aim-visual h3 {
        font-size: 25px;
    }

    .aim-visual-circle {
        width: 72px;
        height: 72px;
        font-size: 28px;
        margin-bottom: 22px;
    }

    .aim-floating-icon {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .aim-icon-1 {
        left: 20px;
        top: 25px;
    }

    .aim-icon-2 {
        right: 20px;
        top: 50px;
    }

    .aim-icon-3 {
        left: 25px;
        bottom: 25px;
    }

    .aim-vision-card {
        align-items: flex-start;
        padding: 18px;
        gap: 14px;
        border-radius: 16px;
    }

    .aim-vision-icon {
        width: 46px;
        height: 46px;
        min-width: 46px;
        border-radius: 13px;
    }

    .aim-objective-card {
        padding: 20px;
    }

}