/* Footer */
.footer-section {
    background: #111;
    color: #ccc;
    padding: 60px 0 25px;
    font-size: 14px;
}

/* Logo */
.footer-logo {
    width: 60px;
    height: 60px;
    background: #d87a00;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.footer-title {
    font-weight: 600;
    color: #fff;
}

/* Text */
.footer-text {
    line-height: 1.6;
}

/* Headings */
.footer-heading {
    color: #fff;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #d87a00;
}

/* Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 10px;
}

/* Newsletter */
.newsletter-box {
    display: flex;
    background: #1a1a1a;
    border-radius: 6px;
    overflow: hidden;
}

.newsletter-box input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 10px;
    color: #fff;
    outline: none;
}

.newsletter-box button {
    background: #d87a00;
    border: none;
    color: #fff;
    padding: -1px 16px;
    font-weight: 700;
}

/* Bottom */
.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 15px;
    margin-top: 40px;
    color: #888;
    font-size: 13px;
}
.saasaro-link{
    color:#fff;
    text-decoration: none;
}
.saasaro-link:hover{
    color: #d87a00;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 576px) {
    .footer-section {
        text-align: center;
    }

    .newsletter-box {
        max-width: 320px;
        margin: auto;
    }
}