/* ===== FOOTER START ===== */

.ms-footer {
    text-align: center;
    padding: 40px 20px;
    background: #ffffff;
    color: #1f2a44;
    font-family: 'Montserrat', sans-serif;
}

.ms-footer-logo img {
    max-width: 250px;
    margin-bottom: 18px;
}

.ms-footer-address {
    font-size: 16px;
    margin-bottom: 12px;
    color: #000;
    line-height: 1.6;
}

.ms-footer-contact {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.ms-footer-contact a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

.ms-footer-contact a:hover {
    text-decoration: underline;
}

.ms-footer-apps {
    margin: 22px 0;
}

.ms-footer-apps img {
    height: 65px;
    margin: 6px;
    transition: transform 0.2s ease;
}

.ms-footer-apps img:hover {
    transform: scale(1.05);
}

.ms-footer-social {
    margin-top: 18px;
}

.ms-footer-social span {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.ms-footer-social a {
    margin: 0 10px;
    text-decoration: none;
    color: #2b3179;
    font-size: 16px;
    font-weight: 500;
}

.ms-footer-social a:hover {
    text-decoration: underline;
}

.ms-footer-bottom {
    margin-top: 25px;
    font-size: 16px;
    color: #000;
    line-height: 1.6;
}

.ms-footer-bottom a {
    color: #000;
    text-decoration: none;
    margin: 0 6px;
}

.ms-footer-bottom a:hover {
    text-decoration: underline;
}

.ms-social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 8px;
}

.ms-social-icons a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f1f4fb;
    color: #2b3179;
    font-size: 16px;
    transition: all 0.3s ease;
}

.ms-social-icons a:hover {
    background: #2b3179;
    color: #fff;
    transform: translateY(-3px);
}
.ms-social-icons a {
    background: none;
    font-size: 20px;
	color:#000;
}

.ms-social-icons a:hover {
    background: none;
    color: #000;
    transform: scale(1.1);
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 768px) {
    .ms-footer {
        padding: 30px 15px;
    }

    .ms-footer-logo img {
        max-width: 180px;
    }

    .ms-footer-apps img {
        height: 42px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .ms-footer {
        padding: 25px 12px;
    }

    .ms-footer-logo img {
        max-width: 150px;
    }

    .ms-footer-address,
    .ms-footer-contact,
    .ms-footer-social a {
        font-size: 13px;
    }

    .ms-footer-apps img {
        height: 38px;
        display: block;
        margin: 8px auto;
    }

    .ms-footer-social a {
        display: inline-block;
        margin: 5px;
    }

    .ms-footer-bottom {
        font-size: 12px;
    }
}

/* ===== FOOTER END ===== */