.school-footer {
    background: linear-gradient(180deg, #0f172a, #111827);
    padding-top: 90px;
    color: #cbd5e1;
    position: relative;
}

.footer-logo img {
    height: 110px;
    width: auto;
    margin-bottom: 25px;
}

.footer-about {
    font-size: 15px;
    line-height: 30px;
    color: #cbd5e1;
    margin-bottom: 25px;
}

.footer-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
}

.footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 3px;
    background: #2563eb;
    border-radius: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.3s ease;
    font-size: 15px;
}

.footer-links li a:hover {
    color: #60a5fa;
    padding-left: 6px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-item i {
    color: #60a5fa;
    font-size: 18px;
    margin-top: 5px;
    min-width: 20px;
}

.contact-item span {
    line-height: 28px;
    font-size: 15px;
}

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

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: #2563eb;
    transform: translateY(-4px);
}

.footer-bottom {
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 0;
}

.footer-bottom p {
    margin: 0;
    color: #cbd5e1;
    font-size: 15px;
}

@media (max-width: 991px) {
    .footer-title {
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .school-footer {
        padding-top: 70px;
    }

    .footer-logo img {
        height: 90px;
    }

    .footer-title {
        font-size: 22px;
    }

    .footer-about {
        line-height: 28px;
    }
}
