/* ==========================================================================
   FOOTER SECTION CENTRAL CSS (MATCHED WITH HEADER & MAIN WRAPPER)
   ========================================================================== */

.m_sms_footer_section {
    position: relative;
    background-color: #004d26; /* আপনার হেডারের টপবারের কালারের সাথে ম্যাচ করা */
    color: #ffffff;
    width: 100%;
    font-family: 'Noto Sans Bengali', sans-serif;
}

/* --------------------------------------------------------------------------
   1. Footer Top Section
   -------------------------------------------------------------------------- */
.m_sms_footer_top {
    padding: 30px 20px;
    border-top: 3px solid #ffc107; /* হেডারের অ্যাক্টিভ বর্ডারের মতো ইয়েলো টাচ */
}

.m_sms_footer_logo {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.m_sms_footer_title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.m_sms_footer_about {
    font-size: 13px;
    line-height: 1.6;
    color: #e2e8f0;
}

/* Social Media Icons */
.m_sms_social_icon {
    width: 32px;
    height: 32px;
    background-color: #14532d;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s ease;
}

.m_sms_social_icon:hover {
    background-color: #ffc107;
    color: #000000;
}

/* Widget Headings */
.m_sms_footer_widget_title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 6px;
}

.m_sms_footer_widget_title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 2px;
    background-color: #ffc107;
}

/* Links List */
.m_sms_footer_links li {
    margin-bottom: 8px;
}

.m_sms_footer_links a {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s ease;
    display: inline-block;
}

.m_sms_footer_links a i {
    font-size: 10px;
    color: #ffc107;
}

.m_sms_footer_links a:hover {
    color: #ffc107;
    padding-left: 4px;
}

/* Contact Details */
.m_sms_footer_contact li {
    font-size: 13px;
    color: #e2e8f0;
}

.m_sms_footer_contact i {
    color: #ffc107;
}

/* Map Styling */
.m_sms_footer_map {
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.m_sms_footer_map iframe {
    display: block;
}

/* --------------------------------------------------------------------------
   2. Footer Bottom Bar
   -------------------------------------------------------------------------- */
.m_sms_footer_bottom {
    background-color: #052e16;
    padding: 12px 20px;
    font-size: 12px;
    color: #cbd5e1;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.m_sms_developer_credit a {
    color: #ffc107;
    text-decoration: none;
    font-weight: 600;
}

.m_sms_developer_credit a:hover {
    text-decoration: underline;
}

/* Responsive adjustments matching Header Breakpoints */
@media (max-width: 991px) {
    .m_sms_footer_top {
        padding: 20px 15px;
    }
}



/* Footer Bottom Dynamic Stats Styling */
/* Footer Stats Wrapper Styling */
.m_sms_stats_wrapper {
    background: rgba(255, 255, 255, 0.06);
    padding: 5px 14px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* Individual Stat Item */
.m_sms_stat_item {
    font-size: 13px;
    color: #e2e8f0;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
}

/* Icons inside Stats */
.m_sms_stat_item i {
    color: #818cf8; /* Soft Indigo/Purple Color */
    font-size: 12px;
}

/* Number Highlights */
.m_sms_stat_item strong {
    color: #38bdf8; /* Soft Cyan/Sky Blue Highlight */
    font-weight: 600;
    margin-left: 3px;
    margin-right: 2px;
}

/* Divider Line Between Two Stats */
.m_sms_stat_divider {
    color: rgba(255, 255, 255, 0.25);
    font-size: 12px;
    user-select: none;
}

/* Responsive adjustments for mobile screens */
@media (max-width: 576px) {
    .m_sms_stats_wrapper {
        flex-direction: column;
        border-radius: 12px;
        padding: 8px 12px;
        gap: 6px !important;
        width: 100%;
    }
    .m_sms_stat_divider {
        display: none; /* Hide vertical divider line on mobile */
    }
}

/* Footer Widget Title with Orange Underline */
.m_sms_footer_col .widget-title {
    position: relative;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff; /* আপনার ব্যাকগ্রাউন্ড অনুযায়ী টেক্সট কালার */
    padding-bottom: 10px;
    margin-bottom: 20px !important;
}

.m_sms_footer_col .widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 45px;          /* কমলা দাগের দৈর্ঘ্য */
    height: 3px;          /* দাগের পুরুত্ব */
    background-color: #ff6b00; /* সুন্দর কমলা (Orange) কালার */
    border-radius: 2px;
}