.footer {
    background: black;
    color: white;
    padding: 30px 0;
}

.footer-container {
    max-width: 1400px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
}

.footer-logo-section {
    width: 25%;
}

.footer-logo {
    width: 200px;
    margin: 1rem 0;
}

.footer-social-icon {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.footer-col h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 400;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    line-height: 1.9;
}

.footer-col ul li,
.footer-col ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 400;
    text-decoration: none;
    color: white;
}

.footer-col ul img {
    width: 26px;
    height: 26px;
}

.footer-col ul li:hover,
.footer-col ul li a:hover {
    color: var(--primary-color);
}

.footer-col ul li img {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

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

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

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

.copyright {
    font-size: 1rem;
    font-weight: 400;
}
.cl {
    color: #3973b7;
}
.tech {
    color: #b11f3e;
}

@media (max-width: 1024px) {
    .footer-container {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: left;
    }
}
