/* Footer Styles */
.edu-footer {
    background-color: #1B1B1B;
    padding: 80px 0 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Logo Section */
.edu-footer .logo {
    margin-bottom: 30px;
}

.edu-footer .logo img {
    max-width: 150px;
    transition: transform 0.3s ease;
}

.edu-footer .logo img:hover {
    transform: scale(1.05);
}

/* Description */
.edu-footer .description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.6;
    font-size: 15px;
}

/* Widget Titles */
.edu-footer .widget-title,
.edu-footer .font-20 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Links */
.edu-footer .footer-link {
    list-style: none;
    padding: 0;
    margin: 0;
}

.edu-footer .footer-link li {
    margin-bottom: 12px;
}

.edu-footer .footer-link a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.edu-footer .footer-link a:hover {
    color: #ff3f3f;
    transform: translateX(5px);
}

/* Contact Info */
.contact-info .bg-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-info .bg-icon:hover {
    background: rgba(255, 63, 63, 0.2);
    transform: translateY(-3px);
}

.contact-info a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

/* Copyright Area */
.copyright-area {
    margin-top: 60px;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-area .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* Social Icons */
.social-icons,
.d-flex.align-items-center {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icons p,
.me-2.font-16 {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
}

.social-icons .bg-icon,
.list-unstyled .bg-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin: 0 5px;
}

.social-icons .bg-icon:hover,
.list-unstyled .bg-icon:hover {
    background: rgba(255, 63, 63, 0.2);
    transform: translateY(-3px);
}

.social-icons .bg-icon a,
.list-unstyled .bg-icon a {
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.list-unstyled.d-flex.align-items-center {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

/* Copyright Text */
.credits-p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.credits-p .primary-color {
    color: #ff3f3f;
}

/* Responsive Design */
@media (max-width: 991px) {
    .edu-footer {
        padding: 60px 0 0;
    }
    
    .edu-footer .explore-widget {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .copyright-area .container {
        flex-direction: column;
        text-align: center;
    }
    
    .social-icons,
    .d-flex.align-items-center {
        justify-content: center;
        width: 100%;
    }

    .list-unstyled.d-flex.align-items-center {
        justify-content: center;
        margin-top: 10px;
    }
    
    .social-icons .bg-icon,
    .list-unstyled .bg-icon {
        width: 32px;
        height: 32px;
    }
    
    .edu-footer .widget-title,
    .edu-footer .font-20 {
        margin-top: 30px;
    }

    .me-2.font-16 {
        margin-bottom: 10px;
        display: block;
        text-align: center;
        width: 100%;
    }
} 