/* =========================================
   Modern & Cute Footer Design (Updated)
   ========================================= */

/* গুগল ফন্ট ইম্পোর্ট */
@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@400;500;600;700&display=swap');

.main-footer {
    background-color: #ffffff; /* একদম সাদা */
    padding: 40px 0 20px 0;
    margin-top: 40px;
    border-top: 1px solid #f0f0f0;
    color: #444;
    font-family: 'Hind Siliguri', sans-serif; /* বাংলা ফন্ট */
}

.footer-container {
    width: 90%;
    max-width: 1100px; /* একটু কম্প্রেস করা হলো */
    margin: 0 auto;
    display: grid;
    /* ৪ কলাম: লোগো বড়, বাকিগুলো ছোট */
    grid-template-columns: 2fr 1fr 1fr 1.5fr; 
    gap: 30px;
}

/* ফুটার টাইটেল (বোল্ড ও কিউট) */
h3.footer-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
    letter-spacing: 0.3px;
}

/* ১. সম্পর্কে (লোগো ডিজাইন) */
.footer-about h2 {
    color: #007bff; /* নীল কালার (স্ক্রিনশটের মতো) */
    font-size: 26px;
    font-weight: 800; /* এক্সট্রা বোল্ড */
    margin-bottom: 12px;
    font-family: 'Hind Siliguri', sans-serif;
}

.footer-about p {
    line-height: 1.6;
    color: #555;
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: 500;
}

/* সোশ্যাল আইকন (ধূসর ও সিম্পল) */
.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    font-size: 18px;
    color: #666;
    transition: 0.3s;
}

.social-link:hover {
    color: #007bff; /* হোভার করলে নীল */
    transform: scale(1.1);
}

/* ২. লিংক তালিকা (বোল্ড ও পরিষ্কার) */
.footer-links ul {
    list-style: none; padding: 0; margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none; color: #666;
    font-size: 14px; transition: 0.2s;
    font-weight: 500;
}

.footer-links a:hover {
    color: #007bff;
    padding-left: 3px;
}

/* ৩. নিউজলেটার (ইনপুট ডিজাইন) */
.footer-newsletter p {
    font-size: 13px; margin-bottom: 12px; color: #666; font-weight: 500;
}

.newsletter-form {
    display: flex; flex-direction: column; gap: 10px;
}

.newsletter-input {
    width: 100%; padding: 10px 12px;
    border: 1px solid #ddd; border-radius: 6px;
    outline: none; font-size: 13px; font-family: 'Hind Siliguri', sans-serif;
}

.newsletter-btn {
    background: #007bff; /* নীল বাটন */
    color: white; border: none; padding: 10px;
    border-radius: 6px; font-weight: 700;
    cursor: pointer; transition: 0.3s; font-size: 14px;
    font-family: 'Hind Siliguri', sans-serif;
}

.newsletter-btn:hover { background: #0056b3; }

/* ৪. কপিরাইট */
.footer-bottom {
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #777;
    font-weight: 500;
}

.footer-bottom-links a {
    text-decoration: none; color: #777; margin-left: 15px;
}

/* =========================================
   মোবাইল রেসপন্সিভ (Mobile View - Compressed)
   ========================================= */
@media (max-width: 768px) {
    .main-footer {
        padding: 30px 0 100px 0; /* নিচে স্পেস */
        text-align: left; /* মোবাইলে বামে এলাইন */
    }

    .footer-container {
        grid-template-columns: 1fr; /* এক কলাম */
        gap: 30px;
        width: 90%;
    }

    /* মোবাইলেও ফন্ট সাইজ ঠিক রাখা */
    h3.footer-title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    /* লিংকগুলো দুই কলামে না দেখিয়ে নিচে নিচে দেখানো (Clean Look) */
    .footer-links ul {
        display: block;
    }
    
    .footer-links li {
        margin-bottom: 10px;
    }

    /* নিউজলেটার বাটন ফুল উইডথ */
    .newsletter-btn {
        width: 100%;
    }

    /* কপিরাইট */
    .footer-bottom {
        flex-direction: column; 
        gap: 10px;
        text-align: center;
        margin-top: 20px;
        padding-bottom: 0;
    }
    
    .footer-bottom-links a {
        margin: 0 10px;
    }
}