footer {
    padding: 60px 0 40px;
    color: #d6d6d6;
    background-color: #0d2b4b;
    border-top: 1px solid #fff;
}

/* Grid layout */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* Column headings */
.footer-col h3 {
    color: #d69e2e;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

/* Links */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #d3d3d3;
    transition: .3s;
}

.footer-col ul li a:hover {
    color: #d69e2e;
}

/* Social links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg);
    color: var(--brand);
    transition: .3s;
}

.social-links a:hover {
    background: var(--brand);
    color: #f38830;
    transform: translateY(-3px);
}

/* Bottom footer section */
.foot {
    
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 0.2px solid #fff !important;
    flex-wrap: wrap;
   
}





/* ===================== */
/* 📱 Responsive Queries */
/* ===================== */

/* Tablet (<= 992px) */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .foot {
        flex-direction: column;
        text-align: center;
    }
}

/* Mobile (<= 576px) */
@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-col h3 {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .social-links {
        justify-content: center;
    }

    .foot {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

  
}
