/*
===========================================
FOOTER STYLING FIXES - Pathshala The Iconic School
===========================================
Ensures all footer text is white and properly styled
*/

/* Footer Area Background */
.footer-area {
    background: #2c3e50;
    color: #ffffff;
}

.footer-top {
    background: #2c3e50;
    padding: 60px 0 40px;
}

.footer-bottom {
    background: #1a252f;
    padding: 20px 0;
}

/* Footer Text Colors */
.footer-area,
.footer-area p,
.footer-area h3,
.footer-area h4,
.footer-area h5,
.footer-area span {
    color: #ffffff !important;
}

/* Footer Links */
.footer-area a {
    color: #ffffff !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-area a:hover {
    color: #3498db !important;
    text-decoration: none;
}

/* Footer Menu Links */
.footer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu ul li {
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-menu ul li:last-child {
    border-bottom: none;
}

.footer-menu ul li a {
    color: #ecf0f1 !important;
    font-size: 14px;
    display: block;
    padding: 5px 0;
    transition: all 0.3s ease;
}

.footer-menu ul li a:hover {
    color: #3498db !important;
    padding-left: 10px;
}

/* Footer Contact Info */
.footer-contact-info p {
    color: #ecf0f1 !important;
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-contact-info p i {
    color: #3498db !important;
    margin-right: 10px;
    width: 20px;
}

/* Footer Social Links */
.footer-social-link a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    color: #ffffff !important;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-social-link a:hover {
    background: #3498db;
    color: #ffffff !important;
    transform: translateY(-3px);
}

/* Footer Logo */
.footer-logo img {
    max-height: 60px;
    margin-bottom: 20px;
}

/* Footer Text */
.footer-text p {
    color: #bdc3c7 !important;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Footer Bottom Links */
.footer-bottom-text,
.footer-bottom-links {
    color: #bdc3c7 !important;
}

.footer-bottom-links a {
    color: #bdc3c7 !important;
    font-size: 13px;
    margin: 0 5px;
}

.footer-bottom-links a:hover {
    color: #3498db !important;
}

/* Footer Widget Headings */
.single-footer-widget h3 {
    color: #ffffff !important;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}

.single-footer-widget h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #3498db;
}

/* Pay Fees Button Styling */
.pay-fees-btn {
    background: #27ae60 !important;
    color: #ffffff !important;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-right: 10px;
    text-decoration: none;
}

.pay-fees-btn:hover {
    background: #2ecc71 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(39, 174, 96, 0.3);
}

/* Header Login Register */
.header-login-register ul.login {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.header-login-register ul.login li {
    margin-left: 15px;
}

.header-login-register ul.login li a {
    color: #333;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.header-login-register ul.login li a:hover {
    color: #3498db;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-bottom-text,
    .footer-bottom-links {
        text-align: center !important;
        margin-bottom: 10px;
    }
    
    .footer-bottom-links {
        margin-top: 10px;
    }
    
    .single-footer-widget {
        margin-bottom: 40px;
    }
    
    .pay-fees-btn {
        display: block;
        text-align: center;
        margin: 5px 0;
    }
}

/* Ensure Override */
.footer-area * {
    color: inherit;
}

.footer-area .single-footer-widget * {
    color: #ffffff;
}

.footer-area .footer-menu a,
.footer-area .footer-contact-info a,
.footer-area .footer-social-link a,
.footer-area .footer-bottom-links a {
    color: #ffffff !important;
}