.elementor-5058 .elementor-element.elementor-element-258ca71{--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;}/* Start custom CSS for html, class: .elementor-element-f077aaa *//* --- বেসিক ভেরিয়েবল --- */
:root {
    --primary-color: #ff6b00; /* আপনার ব্র্যান্ডের কালার এখানে দিন */
    --footer-bg: #1a1a1a;
    --text-color: #b3b3b3;
    --white: #ffffff;
}

/* --- ফুটার মেইন স্টাইল --- */
.sukran-footer {
    background-color: var(--footer-bg);
    color: var(--text-color);
    padding: 60px 0 20px;
    font-family: 'Arial', sans-serif; /* অথবা আপনার ফন্ট */
    line-height: 1.6;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

/* --- কলাম স্টাইল --- */
.footer-col {
    flex: 1;
    min-width: 250px; /* রেসপন্সিভ ব্রেকিং পয়েন্ট */
}

.footer-logo {
    color: var(--white);
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: bold;
}

.footer-col h3 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

/* টাইটেলের নিচে ছোট লাইন */
.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

/* --- লিংক স্টাইল --- */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-color);
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px; /* হোভার করলে একটু ডানে সরবে */
}

/* --- সোশ্যাল আইকন --- */
.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: #333;
    color: var(--white);
    margin-right: 10px;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--primary-color);
}

/* --- নিউজলেটার ফর্ম --- */
.newsletter-form {
    display: flex;
    margin-bottom: 15px;
}

.newsletter-form input {
    width: 100%;
    padding: 10px;
    border: none;
    outline: none;
    background: #333;
    color: #fff;
    border-radius: 4px 0 0 4px;
}

.newsletter-form button {
    padding: 10px 15px;
    border: none;
    background: var(--primary-color);
    color: #fff;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
    transition: 0.3s;
}

.newsletter-form button:hover {
    background: #e65c00;
}

.contact-info p i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* --- ডিভাইডার এবং বটম পার্ট --- */
hr {
    border: 0;
    border-top: 1px solid #333;
    margin: 40px 0 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 14px;
}

.payment-icons span {
    margin-left: 10px;
    font-size: 20px;
    color: var(--white);
}

/* --- মোবাইল রেসপনসিভ --- */
@media (max-width: 768px) {
    .footer-row {
        flex-direction: column; /* মোবাইলে কলামগুলো নিচে নিচে আসবে */
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}/* End custom CSS */