.footer {
    color: #fff;
    padding: 40px 20px 20px;
    font-family: Arial, sans-serif;
    background: #2E2C64;
}

h5.heading {
    font-weight: bold;
    margin-bottom: 15px;
    color: #fff;
    font-size: 24px;
}

.footer p {
    font-size: 16px;
    color: white;
    margin-bottom: 8px;
}

.footer .icon-line {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.footer .icon-line span {
    display: inline-block;
    height: 2px;
    margin-right: 5px;
    background: #F44310;
    width: 20px;
}

.footer a {
    color: white !important;
    font-size: 14px;
    text-decoration: none;
}

.footer a:hover {
    color: #ff0000 !important;
}
span.text:hover {
    color: #F9461D;
}
.footer .social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.footer .social-icons a i {
    color: #fff;
    font-size: 16px;
    padding: 8px;
    border-radius: 22px;
    transition: 0.3s;
    background: #F44310;
}

.footer .social-icons a i:hover {
    background: #2E2C64;
    color: white;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    margin-top: 20px;
    text-align: center;
}

.footer-bottom .row > div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    flex-direction: column;
    text-align: center;
}

h5.heading:hover {
    color: white;
}

.footer-bottom .test {
    font-size: 12px;
    color: #fff9f9;
}

/* Responsive Layout */

/* Tablet View */
@media (min-width: 576px) {
     h5.heading {
        font-size: 26px;
    }

    .footer .social-icons {
        justify-content: flex-start;
    }
}

/* Desktop View */
@media (min-width: 768px) {
    .footer-bottom .row > div {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
    }

    .footer-bottom .text {
        text-align: left;
    }

    h5.heading {
        font-size: 30px;
    }
}

/* Larger Desktops */
@media (min-width: 992px) {
    .footer {
        padding: 60px 80px 30px;
    }

    .footer-bottom {
        padding-top: 30px;
        margin-top: 30px;
    }
}
