

 .footer {
    background-color: var(--gray-bg);
    padding-top: 20px;
}

.footer-center{
    display: flex;
    justify-content: center;
}
.footer-menu li {
    margin-bottom: 10px;
}
.footer-menu a {
    text-decoration: none;
    font-size: 15px;
    font-weight: 300;
}
.footer-menu a:hover {
    color: var(--orange);
    
}

.footer-left,
.footer-right {
    position: relative;
}


.footer-left img,
.footer-right img {
    max-width: 120px;
}


.social-icon {
    width: 32px;
    height: auto;
    border-radius: 50%;
}


.text-orange {
    color: var(--orange);
    font-weight: 500;
}


.footer-copyright {
    color: white;
    background-color: #008ae7  ;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 20px;
}

.logo-grid img {
    width: 100%;
    /* max-width: 120px;  */
    margin: auto;
    object-fit: contain;
}
