/* ১. বেসিক ফুটার সেটআপ */
#footer {
    background: transparent !important;
    padding: 0 !important;
}

.footer-top-section {
    background-color: #f8f9fa;
    padding: 60px 0 40px 0;
    color: #333333;
}

.footer-bottom-section {
    background-color: #1a1a1a;
    padding: 50px 0 40px 0;
    color: #ffffff;
}

/* ২. উইজেট টাইটেল ও বর্ডার */
.footer-top-section .widget-title, 
.footer-bottom-section .widget-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-top-section .widget-title { color: #111111; }
.footer-bottom-section .widget-title { color: #ffffff; }

.footer-top-section .widget-title::after, 
.footer-bottom-section .widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #007bff;
}

@media (max-width: 991px) {
    .footer-top-section .widget-title::after, 
    .footer-bottom-section .widget-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* ৩. সোশ্যাল মিডিয়া আইকন (৩০x৩০ ফ্রেম) */
.footer-social-links ul {
    list-style: none;
    display: flex;
    margin: 10px 0 0 0;
    padding: 0;
    justify-content: flex-start;
    align-items: center;
}

.footer-social-links a {
    color: #777;
    margin: 0 5px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px !important;
    height: 30px;
    width: 30px;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-decoration: none;
}

.footer-social-links a:hover {
    color: #000;
    border-color: #000;
    background-color: #f0f0f0;
}

/* ৪. নিউজলেটার ও অন্যান্য এলিমেন্ট */
.footer-widget p, .footer-widget div { 
    font-size: 14px; 
    line-height: 1.8; 
}

.footer-bottom-section .footer-widget { 
    color: #cccccc; 
}

.footer-bottom-section b { 
    color: #ffffff; 
}

.custom-newsletter-box {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    max-width: 600px;
    margin: 0 auto;
}

/* ৫. রেসপন্সিভ সেটিংস */
@media (max-width: 991px) {
    .footer-social-links ul { 
        justify-content: center; 
    }
}