/* Footer Styling */
.site-footer {
    background-color: var(--footerColor);
    padding: 40px 20px;
    font-family: Arial, sans-serif;
    color: var(--primaryColor);
}

.site-footer .container {
    max-width: 1200px;
    margin: auto;
}

.site-footer .logo-footer {
    max-width: 180px; /* Increased the logo width */
    margin-bottom: 20px;
}

.site-footer .footer-content {
    font-size: 14px;
    line-height: 1.6;
    color: var(--secondryColor);
}

.site-footer .footer-menu-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--black);
}

.site-footer .footer-menu-heading:hover{
    cursor: pointer;
    color:var(--primaryColor);
}

.site-footer .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer .footer-menu li {
    margin-bottom: 8px;
}

.site-footer .footer-menu a {
    font-size: 14px;
    color: var(--primaryColor);
    text-decoration: none;
}

.site-footer .footer-menu a:hover {
    color: var(--secondryColor);
    opacity: 0.8;
}

.site-footer .footer-social-links {
    list-style-type: none;
    padding: 0;
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.site-footer .footer-social-links li a {
    font-size: 18px;
    color: var(--primaryColor); /* Set social links icons to white */
    text-decoration: none;
    transition: color 0.3s, opacity 0.3s;
}

.site-footer .footer-social-links li a:hover {
    opacity: 0.8;
    color:var(--black);
}

.site-footer .address-ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer .address-ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.site-footer .address-ul .ftr-img img {
    max-width: 20px;
    margin-right: 10px;
}

.site-footer .address-ul .ftr-link {
    text-decoration: none;
    color: var(--black);
    font-size: 14px;
}

.site-footer .address-ul .ftr-link p {
    margin: 0;
}

.site-footer .address-ul .ftr-link:hover {
    opacity: 0.8;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .site-footer .col-md-3 {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .site-footer .footer-menu-heading {
        font-size: 16px;
    }

    .site-footer .footer-menu a {
        font-size: 12px;
    }

    .site-footer .footer-content {
        font-size: 12px;
    }
}
