.footer {
    background: linear-gradient(135deg, #1D4ED8 0%, #1D4ED8 100%);
    color: #ddd;
    /* margin-top: 60px; */
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    padding: 60px 50px;
}

.footer-section h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.footer-section h3 i {
    color: white;
    font-size: 24px;
}

/* About Section */
.about-section p,
.solidarity-section p {
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 14px;
    color: #fff;
}

.solidarity-section h3 i {
    color: #F59E0B;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #F59E0B;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 18px;
}

.social-links a:hover {
    background: #2563eb;
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(37, 99, 235, 0.22);
}

/* Quick Links & Other Sections */
.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.footer-section ul li a:hover {
    color: #F59E0B;
    padding-left: 8px;
}

/* Contact Info */
.info-item {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 14px;
}

.info-item i {
    color: #F59E0B;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.info-item p {
    margin: 0;
    line-height: 1.6;
    color: #fff;
}

.info-item strong {
    color: #fff;
    display: block;
    margin-bottom: 5px;
}

/* Divider */
.footer-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #555, transparent);
    margin: 0 50px;
}

/* Footer Bottom */
.footer-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 30px 50px;
    background: rgba(0, 0, 0, 0.4);
    text-align: center;
    font-size: 14px;
}

.copyright {
    color: #aaa;
    border-right: 1px solid #555;
    padding-right: 30px;
}

.footer-credits {
    color: #F59E0B;
    padding-left: 30px;
    display: flex;
    flex-direction: row;
}

.footer-credits .credit-name {
    color: #ffffff;
    font-weight: bold;
}

.footer-credits strong {
    color: #fff;
}

.toka-logo {
    margin-left: 10px;
    width: 20px;
    height: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {

    .quick-links,
    .for-students {
        display: none;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 20px;
    }

    .footer-divider {
        margin: 0 20px;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 15px;
    }

    .copyright {
        border-right: none;
        border-bottom: 1px solid #555;
        padding-right: 0;
        padding-bottom: 15px;
    }

    .footer-credits {
        padding-left: 0;
    }

    .social-links {
        justify-content: center;
    }
}




