﻿/* ===== Footer Section ===== */
.site-footer {
    width: 100%;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364); /* New gradient */
    color: #fff;
    font-family: 'Roboto', sans-serif;
    padding: 60px 0 20px 0;
}

.footer-container {
    max-width: 1200px;
    width: 90%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

/* Logo & About */
.footer-about {
    flex: 1 1 300px;
}

    .footer-about .footer-logo {
        width: 150px;
        margin-bottom: 15px;
        transition: transform 0.3s ease, filter 0.3s ease;
    }

        .footer-about .footer-logo:hover {
            transform: scale(1.15) rotate(-5deg);
            filter: brightness(1.2);
        }

    .footer-about h3 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .footer-about p {
        font-size: 15px;
        line-height: 1.6;
    }

/* Services & Products */
.footer-services-products {
    flex: 1 1 300px;
}

    .footer-services-products h4 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 15px;
        color: #ffeb3b;
    }

    .footer-services-products ul {
        list-style: none;
        padding: 0;
    }

        .footer-services-products ul li {
            margin-bottom: 8px;
        }

            .footer-services-products ul li a {
                color: #fff;
                text-decoration: none;
                font-weight: 500;
                transition: all 0.3s ease;
            }

                .footer-services-products ul li a:hover {
                    color: #4caf50;
                    transform: translateX(5px);
                    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
                }

/* Contact Info */
.footer-contact {
    flex: 1 1 250px;
}

    .footer-contact h4 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 15px;
        color: #ffeb3b;
    }

    .footer-contact p {
        font-size: 15px;
        margin-bottom: 8px;
    }

.btn-location {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4caf50;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    transition: 0.3s;
}

    .btn-location:hover {
        background-color: #81c784;
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
}

    .footer-bottom a.arbsoftech {
        color: #ffeb3b;
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .footer-bottom a.arbsoftech:hover {
            color: #4caf50;
            text-decoration: underline;
            transform: scale(1.05);
        }

/* Cursor hover animation for all links */
.site-footer a:hover {
    transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-about, .footer-services-products, .footer-contact {
        flex: 1 1 100%;
        margin-bottom: 30px;
    }
}
