.footer {
    background-color: #d6ebff;
    padding: 40px 0;
    font-family: "Mukta", sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.5fr;
    gap: 30px;
}

.footer-logo {
    width: 220px;
    margin-bottom: 15px;
    object-fit: contain;
}

.social-section p {
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: #666;
}

.footer-social-icon {
    display: flex;
    gap: 12px;
}

.footer-social-icon img {
    width: 32px;
    height: 32px;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 5px;
}

.footer-val {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.mt-20 {
    margin-top: 20px;
}

.team-link {
    color: #3973b7;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
}

.contact-col ul {
    list-style: none;
    padding: 0;
}

.contact-col li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #666;
    font-size: 0.95rem;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 6px 0;
    color: grey;
}

.footer-bottom p {
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
}

.footer-bottom .powered span {
    color: #d32f2f;
    font-weight: bold;
}
.powered-by {
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
}

.copyright {
    font-size: 1rem;
    font-weight: 400;
}
.cl {
    color: #3973b7;
}
.tech {
    color: #b11f3e;
}
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        padding: 0 20px;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-social-icon {
        justify-content: center;
    }
    .contact-col li {
        justify-content: center;
    }
}
