    /* =========================
        FUTURE AI FOOTER
    ========================== */

    /* Main Wrapper */
    .footer-shell {
        position: relative;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 34px;
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(20px);
        overflow: hidden;
        padding: 60px 20px 35px;
    }

    .footer-brand-bg {
        position: absolute;
        left: 50%;
        top: 54%;
        transform: translate(-50%, -48%);
        font-size: 180px;
        font-weight: 800;
        letter-spacing: 3px;
        line-height: 1;
        white-space: nowrap;
        background: linear-gradient(309.43deg, rgb(30 161 50 / 40%) -0.88%, rgba(1, 57, 130, 0.18) 81%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        pointer-events: none;
        user-select: none;
    }

    /* Contact Grid */
    .footer-contact-grid {
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    /* Contact Item */
    .footer-contact-card {
        position: relative;
        display: flex;
        align-items: flex-start;
        gap: 18px;
    }

    /* Icon */
    .footer-icon {
        min-width: 56px;
        width: 56px;
        height: 56px;
        border-radius: 18px;
        background:#2fc23e;
        display: flex;
        align-items: center;
        justify-content: center;

        box-shadow:
            0 10px 30px rgba(1, 57, 130, 0.25),
            0 0 30px rgba(34, 171, 55, 0.18);
    }

    .footer-icon i {
        color: #fff;
        font-size: 18px;
    }

    /* Text */
    .footer-contact-card span {
        display: block;
        color: rgb(255 255 255);
        font-size: 12px;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        margin-bottom: 8px;
    }

    .footer-contact-card a,
    .footer-contact-card p {
        margin: 0;
        color: #fff;
        text-decoration: none;
        line-height: 1.8;
        font-size: 16px;
        transition: 0.3s ease;
    }

    .footer-contact-card a:hover {
        /* background:
            linear-gradient(309.43deg,
                #22AB37 26.12%,
                #ffffff 102%); */
                background: #2fc23e;

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

    /* Bottom Area */
    .footer-bottom {
        position: relative;
        z-index: 2;
        /* margin-top: 165px; */
        margin-top: 20px;
        padding-top: 28px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 25px;
        flex-wrap: wrap;
    }

    .footer-bottom p,
    .footer-bottom a,
    .footer-bottom span {
        margin: 0;
        color: rgb(255 255 255);
        font-size: 14px;
        text-decoration: none;
        transition: 0.3s ease;
    }

    .footer-bottom a:hover {
        color: #fff;
    }

    /* Responsive */
    @media (max-width: 1200px) {

        .footer-brand-bg {
            font-size: 130px;
        }
    }

    @media (max-width: 991px) {

        .footer-shell {
            padding: 40px 25px 30px;
        }

        .footer-contact-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .footer-brand-bg {
            font-size: 54px !important;
            top: 56%;
            letter-spacing: 0px;
        }

        .footer-bottom {
            margin-top: 80px;
            flex-direction: column;
            align-items: flex-start;
        }
    }

    @media (max-width: 575px) {

        .footer-brand-bg {
            font-size: 54px;
        }

        .footer-contact-card a,
        .footer-contact-card p {
            font-size: 15px;
        }
    }