/* Start custom CSS for html, class: .elementor-element-f0e4360 *//* Font and Icon Setup */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');

.custom-footer {
    background-color: #071e11; /* ডিপ গ্রিন ব্যাকগ্রাউন্ড */
    color: #e0e0e0;
    padding: 60px 0 0 0;
    font-family: 'Arial', sans-serif;
    font-size: 15px;
    line-height: 1.6;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding: 0 20px;
}

.footer-col h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* লিংকের নিচে ছোট আন্ডারলাইন এফেক্ট */
.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 35px;
    height: 2px;
    background-color: #c61a1a; /* থিম রেড কালার */
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #b0b8b4;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Hover Effect */
.footer-col ul li a:hover {
    color: #ff3333;
    padding-left: 5px;
}

/* Brand Column Styles */
.brand-info .footer-logo {
    max-width: 160px;
    margin-bottom: 20px;
}

.brand-desc {
    color: #b0b8b4;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #c61a1a;
    transform: translateY(-3px);
}

/* Contact Info Icons */
.contact-info ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #b0b8b4;
}

.contact-info ul li i {
    color: #c61a1a;
    width: 16px;
}

/* Footer Bottom Bar */
.footer-bottom {
    background-color: #04140b;
    padding: 20px 0;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    font-size: 13px;
    color: #8c9690;
}

.heart {
    color: #c61a1a;
    animation: pulse 1.5s infinite;
    display: inline-block;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}/* End custom CSS */