/* Footer Styles */
footer {
    background: #f8f8f8;
    padding: 20px 0;
    font-family: Arial, sans-serif;
    color: #333;
}

.footer-container {
    display: flex;
    justify-content: space-between; /* Space-between দিলে বাম পাশে থাকবে */
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    align-items: flex-start;
}

.footer-section {
    width: 22%;
    min-width: 200px;
}

.footer-section h3,
.footer-section h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 5px;
}

.footer-section ul li a {
    text-decoration: none;
    color: #333;
}

.footer-section ul li a:hover {
    color: green;
}

.footer-phone {
    font-size: 20px;
    font-weight: bold;
    color: green;
}
/*-----------------------------------------------------------------------------------------------*/
/* Social Icons */
.footer-social {
    margin-top: 15px;
    display: flex;
    justify-content: flex-start; /* বাম পাশে রাখার জন্য */
    gap: 10px; /* আইকনের মধ্যে গ্যাপ */
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    color: white;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.social-icon.facebook {
    background-color: #1877F2;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
}

.social-icon:hover {
    transform: scale(1.1);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding: 10px;
    background: #e8e8e8;
    margin-top: 20px;
}

.footer-bottom p {
    margin: 5px 0;
    font-weight: bold;
    color: green;
}

.footer-bottom a {
    text-decoration: none;
    color: #333;
}

.footer-bottom a:hover {
    color: green;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-section {
        width: 100%;
    }

    .footer-social {
        justify-content: flex-start; /* মোবাইলেও বামে থাকবে */
        width: 100%;
        display: flex;
        padding-left: 10px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}
