/* footer.css */
/* Dhaka Education Board Style Footer */

.footer-section {
    background: linear-gradient(135deg, #2c5c1c 0%, #1e3f14 100%);
    color: white;
    padding: 30px 0 0 0;
    margin-top: 40px;
    border-top: 3px solid #4a7519;
}

.contact-head,
.feature-head {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ffd700;
    font-family: 'Siyam Rupali', Arial, sans-serif;
    border-bottom: 2px solid #4a7519;
    padding-bottom: 5px;
}

.contacts-item {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.5;
    font-family: 'Siyam Rupali', Arial, sans-serif;
}

.feature-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-body li {
    margin-bottom: 8px;
}

.feature-body a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-family: 'Siyam Rupali', Arial, sans-serif;
    transition: all 0.3s ease;
    display: block;
    padding: 3px 0;
}

.feature-body a:hover {
    color: #ffd700;
    padding-left: 5px;
    text-decoration: none;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 0;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    font-family: 'Siyam Rupali', Arial, sans-serif;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-section {
        padding: 20px 0 0 0;
    }
    
    .contact-head,
    .feature-head {
        font-size: 16px;
        margin-top: 20px;
    }
    
    .footer-bottom .text-start,
    .footer-bottom .text-end {
        text-align: center !important;
    }
    
    .footer-bottom .col-md-6 {
        margin-bottom: 10px;
    }
}