.site-footer {
    background-color: #056EB6;
    /* Using Primary Blue */
    color: #eaf2ff;
    padding: 60px 0 20px 0;
    font-family: 'Hind Siliguri', sans-serif;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo {
    height: 50px;

}

.footer-column .logo-text h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #fff;
    font-weight: 600;
}

.footer-column .logo-text p {
    margin: 0;
    font-size: 0.9rem;
    color: #cce5f7;
}

.about-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #cce5f7;
}

.footer-title {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    font-weight: 600;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
}

.links-column ul,
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.links-column ul li,
.contact-list li {
    margin-bottom: 12px;
}

.links-column ul li a,
.contact-list li span {
    color: #cce5f7;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.links-column ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

.social-icons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #fff;
    color: var(--primary-blue);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: #cce5f7;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-column .logo {
        justify-content: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-list li {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }
}