/* Footer Styling */
.footer-area {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    position: relative;
    overflow: hidden;
}

.footer-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23ffffff" opacity="0.03"><polygon points="1000,100 1000,0 0,100"/></svg>');
    background-size: cover;
}

.school-name {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.school-name a:hover {
    color: #4dabf7 !important;
}

.footer-description {
    color: #b8d4ff;
    line-height: 1.8;
    font-size: 15px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
    transform: translateY(-3px);
    background: #fff;
}

.social-icon.facebook:hover { color: #1877f2; }
.social-icon.youtube:hover { color: #ff0000; }
.social-icon.twitter:hover { color: #1da1f2; }
.social-icon.instagram:hover { color: #e4405f; }

/* Contact Info */
.footer-widget-title {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #4dabf7;
    border-radius: 2px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: #4dabf7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-icon i {
    color: #fff;
    font-size: 18px;
}

.contact-details {
    flex: 1;
}

.contact-label {
    display: block;
    color: #b8d4ff;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.contact-value {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: #4dabf7;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-link {
    color: #b8d4ff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 8px 0;
}

.footer-link:hover {
    color: #4dabf7;
    transform: translateX(5px);
}

/* Newsletter */
.newsletter-form .input-group {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-form .form-control {
    background: transparent;
    border: none;
    color: #fff;
    padding: 12px 15px;
}

.newsletter-form .form-control::placeholder {
    color: #b8d4ff;
}

.newsletter-form .form-control:focus {
    background: transparent;
    color: #fff;
    box-shadow: none;
    border-color: #4dabf7;
}

.newsletter-form .btn {
    background: #4dabf7;
    border: none;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.newsletter-form .btn:hover {
    background: #339af0;
}

/* Copyright */
.copyright-area {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-area p {
    color: #b8d4ff;
    margin: 0;
}

.policy-link {
    color: #b8d4ff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.policy-link:hover {
    color: #4dabf7;
}

/* Go Top Button */
.go-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #4dabf7;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(77, 171, 247, 0.4);
}

.go-top:hover {
    background: #339af0;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(77, 171, 247, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-widget-title {
        font-size: 20px;
    }
    
    .contact-item {
        padding: 12px;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .copyright-area-content .row {
        text-align: center;
    }
    
    .footer-policies {
        margin-top: 10px;
    }
}