.footer {
    background: var(--Neutral-900, #1A1A1A);
    align-items: center;
    color:#fff;
}

    .footer p {
        color: var(--Neutral-600, #999);
        font-size: clamp(14px, 2vw, 16px);
        font-style: normal;
        font-weight: 500;
        line-height: 180%;
        margin: 0px;
    }
.LocationDiv {
    margin: 0px;
    padding: 0px;
    background: var(--Neutral-900, #1A1A1A);
    border:0px;
    
}
.social-icon {
    display: inline-block;
    font-size: 24px;
    transition: transform 0.4s ease-in-out, color 0.4s ease-in-out;
}

    .social-icon:hover {
        transform: rotate(360deg);
    }

.short-links a {
    text-decoration: none;
    transition: color 0.2s;
    color: #fff !important;
    font-size: clamp(14px, 1.5vw, 16px);
    font-style: normal;
    font-weight: 500;
    line-height: 180%;
    transition: .3s all;
    cursor: pointer;
}

    .short-links a:hover {
        color: #bc852b !important;
    }
.footer a:hover, .footer a:focus {
    color: inherit; /* Prevent color change on hover/focus */
    text-decoration: none; /* Prevent underline on hover/focus */
}