.elementor-304 .elementor-element.elementor-element-90600fb{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-38948a2 */:root {
    --f-primary: #003366;   /* School Blue */
    --f-secondary: #d32f2f; /* School Red */
    --f-text: #ecf0f1;
    --f-bg: #1a1a1a;        /* Dark Background */
}

.school-footer {
    background-color: var(--f-bg);
    color: var(--f-text);
    padding-top: 60px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-col {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
    padding-right: 20px;
}

.footer-title {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--f-secondary);
}

.school-desc {
    line-height: 1.6;
    font-size: 14px;
    color: #bdc3c7;
}

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

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

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 8px;
}

/* Contact Items */
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
    color: #bdc3c7;
}

.contact-item i {
    color: var(--f-secondary);
    margin-right: 12px;
    width: 15px;
}

/* Social Icons */
.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: #333;
    color: #fff;
    text-align: center;
    line-height: 35px;
    border-radius: 4px;
    margin-right: 10px;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--f-secondary);
    transform: translateY(-3px);
}

/* Footer Bottom Bar */
.footer-bottom {
    background-color: #111;
    padding: 20px 0;
    border-top: 1px solid #222;
    margin-top: 30px;
    font-size: 13px;
    color: #7f8c8d;
}

.footer-bottom .footer-container {
    justify-content: space-between;
    align-items: center;
}

.designer-info a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.designer-info a:hover {
    color: var(--f-secondary);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .footer-col {
        flex: 100%;
        text-align: center;
        padding-right: 0;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .footer-bottom .footer-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}/* End custom CSS */