.footer {
    background-color: #081520;
    color: #cbd5e1;
}

.newsletter {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #1e3a36;
    padding: 40px 20px;
}
.brand img{
    width: 200px;
    margin-bottom: 1rem;
}

.newsletter-left {
    display: flex;
    align-items: center;
    gap: 15px;
}


.icon-circle i {
    background-color: #fff;
    color: var(--main-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    font-size: 35px;
}

.newsletter-text h3 {
    font-size: 26px;
    text-transform: capitalize;
    color: #fff;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    background-color: #fff;
    border-radius: 50px;
    padding: 8px 12px;
    max-width: 400px;
    width: 100%;
    margin-top: 20px;
}

.newsletter-form input {
    border: none;
    background: transparent;
    color: #fff;
    flex: 1;
    padding: 10px;
    outline: none;
}

.newsletter-form button {
    background: linear-gradient(135deg, #64ffda, #00c6ff);
    border: none;
    color: #000;
    font-size: 20px;
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;

    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 40px 20px;
    gap: 30px;
}

.footer-box {
    flex: 1 1 200px;
}

.footer-box h4 {
    margin-bottom: 15px !important;
    color: #fff;
}

.footer-box ul {
    list-style: none;
}

.footer-box ul li {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-box ul li a {
    color: #cbd5e1;
    text-decoration: none;
}

.footer-box ul li a:hover {
    color: #64ffda;
}

.brand .logo {
    width: 200px;
    margin-bottom: 15px;
}

.brand p {
    font-size: 14px;
    margin-bottom: 20px !important;
}

.social-icons a {
    background-color: #fff;
    padding: 8px;
    border-radius: 50%;
}

.social-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-icons a {
    color: var(--main-color);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-info a {
    display: flex;
    gap: 5px;

}

.contact-info i {
    width: 16px;
    margin-top: 5px;
    color: var(--main-color);
    vertical-align: middle;
}

.footer-bottom {
    background-color: var(--main-color);
    text-align: center;
    padding: 12px 10px;
    font-size: 16px;
    color: #000;
}

/* Responsive */
@media (max-width: 768px) {
    .newsletter {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-box {
        flex: 1 1 0;
    }

    .newsletter-form {
        margin-top: 15px;
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
        padding: 0;
    }

    .footer-box {
        width: 100%;
    }

    .icon-circle i {
        height: 45px;
        width: 45px;
    }

    .icon-circle i {
        font-size: 20px;
    }

    .newsletter-text h3 {
        font-size: 18px;
    }
    .footer-bottom{
        font-size: 12px;
        padding: 5px;
    }
    
}