/* MAIN WRAPPER */
.newsletter-footer-wrapper {
    background: #0a0f3a;
    padding-top: 80px;
    padding-bottom: 50px;
    /* font-family: 'Poppins', sans-serif; */
}

/* ============================
        NEWSLETTER BOX
============================ */
.newsletter-box {
    background: #2962ff;
    padding: 50px;
    border-top-left-radius: 35px;
    border-bottom-right-radius: 35px;

    /* Sharp corners */
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;

    margin-bottom: 70px;
}

.newsletter-title {
    font-size: 36px;
    font-weight: 600;
    color: white;
    line-height: 1.3;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
}

.newsletter-input {
    flex: 1;
    padding: 12px 17px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    outline: none;
    height: 45px;
}

.newsletter-btn {
    background: #003efc;
    border: none;
    padding: 12px 22px;
    border-radius: 6px;
    color: white;
    font-weight: 600;
    height: 45px;
    cursor: pointer;
}

.newsletter-btn:hover {
    background: #0029b8;
}

/* ============================
        FOOTER CONTENT
============================ */
.footer-main {
    color: #dcdcdc;
    font-size: 16px;
}

/* Logo */
.footer-logo {
    width: 150px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.footer-about p {
    margin-bottom: 12px;
}

/* Footer Columns */
.footer-links h4 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 18px;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li a {
    font-size: 16px;
    color: #d5d5d5;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.footer-links ul li a:hover {
    color: #ffffff;
}

/* Bottom Line */
.footer-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.2);
    margin: 35px 0;
}

/* Bottom Row */

.footer-social a {
    width: 40px;
    height: 40px;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: #0A165E; /* icon color */
    font-size: 18px;
    text-decoration: none;

    /* Two sides curved, two sides sharp */
    border-radius: 12px 0 12px 0;

    transition: 0.3s ease;
}

.footer-social a:hover {
    background: #2B4DFF;
    color: #ffffff;
}
/* Desktop - left aligned (default) */


.footer-social {
        text-align: right;
        /* margin-top: 15px; */
    }
/* ============================
         RESPONSIVE
============================ */
@media (max-width: 767px) {
    .newsletter-form {
        flex-direction: column;
        justify-content: center;
        gap: 12px;
    }
    .newsletter-input,
    .newsletter-btn {
        width: 100%;
    }

    .footer-social {
        text-align: center;
        margin-top: 15px;
    }

    .footer-copy {
        text-align: center;
        margin-bottom: 10px;
    }
}