


.footer_1 {
    position: relative;

    overflow: hidden;
}



.footer_1::before {
    content: "";

    width: 100%;
    height: 4px;

    position: absolute;
    top: 0;
    left: 0;

    background:
        linear-gradient(
            90deg,
            #2563eb,
            #7c3aed,
            #06b6d4
        );

    background-size: 200% 200%;

    animation: footerGradient 10s ease infinite;
}

@keyframes footerGradient {

    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }

}

.footer_1-wrapper {
    position: relative;

    padding: 5rem 0 2rem;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.95),
            rgba(248,250,252,0.92)
        );

    backdrop-filter: blur(30px);
}

[data-bs-theme=dark] .footer_1-wrapper {
    background:
        linear-gradient(
            180deg,
            rgba(15,23,42,0.96),
            rgba(17,24,39,0.92)
        );
}


.footer_1-newsletter {
    padding: 2rem;

    border-radius: 32px;

    background: linear-gradient( 135deg, #2563eb, #7c3aed ) !important;

    border: 1px solid rgba(255,255,255,0.4);

    box-shadow: 0 20px 50px rgba(15,23,42,0.06);

    margin-bottom: 5rem;
}

[data-bs-theme=dark] .footer_1-newsletter {
    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.04),
            rgba(255,255,255,0.02)
        );

    border-color: rgba(255,255,255,0.06);
}

.footer_1-newsletter-title {
    font-size: 1.6rem;
    font-weight: 900;

    color: #fff;

    margin-bottom: 0.75rem;
}

[data-bs-theme=dark] .footer_1-newsletter-title {
    color: #fff;
}

.footer_1-newsletter-desc {
    color: #fff;

    line-height: 2;
}

[data-bs-theme=dark] .footer_1-newsletter-desc {
    color: rgba(255,255,255,0.65);
}



.footer_1 .form-control {
    height: 62px;

    border-radius: 18px !important;

    border: none;

    background: rgba(255,255,255,0.75);

    padding-inline: 1rem;
}

[data-bs-theme=dark] .footer_1 .form-control {
    background: rgba(255,255,255,0.04);

    color: white;
}

.footer_1 .form-floating label {
    padding-inline: 1rem;
}

.footer_1-submit {
    min-width: 120px;

    border: none !important;

    border-radius: 18px !important;

    background: #363636;

    color: white !important;

    font-weight: 800;

    transition: 0.3s ease;
}

.footer_1-submit:hover {
    transform: translateY(-3px);

    box-shadow:
        0 14px 30px rgba(37,99,235,0.3);
}



.footer_1-logo {
    display: flex;
    align-items: center;
    gap: 0.85rem;

    margin-bottom: 1.5rem;
}

.footer_1-logo h1 {
    font-size: 1.5rem;
    font-weight: 900;

    margin: 0;
}



.footer_1 p,
.footer_1 .link,
.footer_1 div {
    transition: 0.25s ease;
}

.footer_1 .link {
    text-decoration: none;

    color: #334155;
}

[data-bs-theme=dark] .footer_1 .link {
    color: rgba(255,255,255,0.82);
}

.footer_1 .link:hover {
    color: #2563eb;

    transform: translateX(-4px);
}



.footer_1-badge {
    width: 110px;
    height: 110px;

    border-radius: 24px;

    background: rgba(255,255,255,0.8);

    border: 1px solid rgba(255,255,255,0.5);

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

    transition: 0.3s ease;
}

[data-bs-theme=dark] .footer_1-badge {
    background: rgba(255,255,255,0.03);

    border-color: rgba(255,255,255,0.06);
}

.footer_1-badge:hover {
    transform: translateY(-6px);
}

.footer_1-badge img {
    max-width: 70px;
}

/* titles */

.footer_1-title {
    font-size: 1.1rem;
    font-weight: 900;

    margin-bottom: 1.5rem;

    color: #0f172a;
}

[data-bs-theme=dark] .footer_1-title {
    color: white;
}



.footer_1-social {
    width: 54px;
    height: 54px;

    border-radius: 18px;

    background: rgba(255,255,255,0.7);

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

    font-size: 1.35rem;

    transition: 0.3s ease;
}

[data-bs-theme=dark] .footer_1-social {
    background: rgba(255,255,255,0.05);
}

.footer_1-social:hover {
    transform: translateY(-5px);

    background: #2563eb !important;
    color: white !important;
}



.footer_1-copyright {
    margin-top: 4rem;

    padding-top: 2rem;

    border-top: 1px solid rgba(148,163,184,0.15);
}



@media (max-width: 768px) {

    .footer_1-wrapper {
        padding-top: 3rem;
    }

    .footer_1-newsletter {
        border-radius: 24px;

        padding: 1.5rem;
    }

    .footer_1-newsletter-title {
        font-size: 1.2rem;
    }

    .footer_1-badge {
        width: 90px;
        height: 90px;
    }

}

/**************************/
/**************************/
/**************************/
/**************************/

.footer_2 {
    position: relative;

    overflow: hidden;
}



.footer_2::before {
    content: "";

    width: 100%;
    height: 4px;

    position: absolute;
    top: 0;
    left: 0;

    background:
        linear-gradient(
            90deg,
            #2563eb,
            #7c3aed,
            #06b6d4
        );

    background-size: 200% 200%;

    animation: footerGradient 10s ease infinite;
}

@keyframes footerGradient {

    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }

}
.footer_2-wrapper *{
    color: #fff !important;
}
.footer_2-wrapper img
{
    background: #ffffffdb;
    padding: 5px;
    border-radius: 5px;
}
.footer_2-wrapper {
    position: relative;

    padding: 5rem 0 2rem;

    background: #0f172a;

    backdrop-filter: blur(30px);
}

[data-bs-theme=dark] .footer_2-wrapper {
    background:
        linear-gradient(
            180deg,
            rgba(15,23,42,0.96),
            rgba(17,24,39,0.92)
        );
}


.footer_2-newsletter {
    padding: 2rem;

    border-radius: 32px;

    background: linear-gradient( 135deg, #2563eb, #7c3aed ) !important;

    border: 1px solid rgba(255,255,255,0.4);

    box-shadow: 0 20px 50px rgba(15,23,42,0.06);

    margin-bottom: 5rem;
}

[data-bs-theme=dark] .footer_2-newsletter {
    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.04),
            rgba(255,255,255,0.02)
        );

    border-color: rgba(255,255,255,0.06);
}

.footer_2-newsletter-title {
    font-size: 1.6rem;
    font-weight: 900;

    color: #fff;

    margin-bottom: 0.75rem;
}

[data-bs-theme=dark] .footer_2-newsletter-title {
    color: #fff;
}

.footer_2-newsletter-desc {
    color: #fff;

    line-height: 2;
}

[data-bs-theme=dark] .footer_2-newsletter-desc {
    color: rgba(255,255,255,0.65);
}



.footer_2 .form-control {
    height: 62px;

    border-radius: 18px !important;

    border: none;

    background: rgba(255,255,255,0.75);

    padding-inline: 1rem;
}

[data-bs-theme=dark] .footer_2 .form-control {
    background: rgba(255,255,255,0.04);

    color: white;
}

.footer_2 .form-floating label {
    padding-inline: 1rem;
}

.footer_2-submit {
    min-width: 120px;

    border: none !important;

    border-radius: 18px !important;

    background: #363636;

    color: white !important;

    font-weight: 800;

    transition: 0.3s ease;
}

.footer_2-submit:hover {
    transform: translateY(-3px);

    box-shadow:
        0 14px 30px rgba(37,99,235,0.3);
}



.footer_2-logo {
    display: flex;
    align-items: center;
    gap: 0.85rem;

    margin-bottom: 1.5rem;
}

.footer_2-logo h1 {
    font-size: 1.5rem;
    font-weight: 900;

    margin: 0;
}



.footer_2 p,
.footer_2 .link,
.footer_2 div {
    transition: 0.25s ease;
}

.footer_2 .link {
    text-decoration: none;

    color: #334155;
}

[data-bs-theme=dark] .footer_2 .link {
    color: rgba(255,255,255,0.82);
}

.footer_2 .link:hover {
    color: #2563eb;

    transform: translateX(-4px);
}



.footer_2-badge {
    width: 110px;
    height: 110px;

    border-radius: 24px;

    background: rgba(255,255,255,0.8);

    border: 1px solid rgba(255,255,255,0.5);

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

    transition: 0.3s ease;
}

[data-bs-theme=dark] .footer_2-badge {
    background: rgba(255,255,255,0.03);

    border-color: rgba(255,255,255,0.06);
}

.footer_2-badge:hover {
    transform: translateY(-6px);
}

.footer_2-badge img {
    max-width: 70px;
}

/* titles */

.footer_2-title {
    font-size: 1.1rem;
    font-weight: 900;

    margin-bottom: 1.5rem;

    color: #0f172a;
}

[data-bs-theme=dark] .footer_2-title {
    color: white;
}



.footer_2-social {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: #202f52;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    transition: 0.3s ease;
}

[data-bs-theme=dark] .footer_2-social {
    background: rgba(255,255,255,0.05);
}

.footer_2-social:hover {
    transform: translateY(-5px);

    background: #2563eb !important;
    color: white !important;
}



.footer_2-copyright {
    margin-top: 4rem;

    padding-top: 2rem;

    border-top: 1px solid rgba(148,163,184,0.15);
}



@media (max-width: 768px) {

    .footer_2-wrapper {
        padding-top: 3rem;
    }

    .footer_2-newsletter {
        border-radius: 24px;

        padding: 1.5rem;
    }

    .footer_2-newsletter-title {
        font-size: 1.2rem;
    }

    .footer_2-badge {
        width: 90px;
        height: 90px;
    }

}

