/* =========================
   Social Icon Buttons (Footer)
   ========================= */

.icon-btn {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    font-size: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    text-decoration: none;
    color: #fff !important;
}

/* Hover effect like Deshapran page */
.icon-btn:hover {
    transform: scale(1.15);
}

/* Color variants */
.btn-call { background: linear-gradient(90deg, #0065ff, #004bb5); }
.btn-wa   { background: #25D366; }
.btn-fb   { background: #1877F2; }
.btn-insta{ background: #FFC107; }
.btn-mail { background: #343a40; }
.btn-map  { background: #17a2b8; }

/* Label text under icons */
.footer-social-label {
    font-size: 13px;
}

/* =========================
   Main Footer Area
   ========================= */

footer {
    background: #111;          /* Deshapran style কালো ব্যাকগ্রাউন্ড */
    color: #ccc;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 14px;
}

footer a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

footer a:hover {
    color: #fff;
    padding-left: 5px;
}

.developer-link {
    color: #ffc107;
    font-weight: bold;
}

/* =========================
   Floating Call / WhatsApp Buttons
   ========================= */

.floating-btn {
    position: fixed;
    bottom: 20px;
    z-index: 9999;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 28px;
    box-shadow: 0 5px 12px rgba(0,0,0,.3);
}

/* একদম Deshapran page-এর মত পজিশনিং */
.call-float {
    left: 18px;
    background: #0078FF;
}

.whatsapp-float {
    right: 18px;
    background: #25D366;
}

/* Hover এ হালকা zoom */
.floating-btn:hover {
    transform: scale(1.1);
}

/* =========================
   Mobile Responsive
   ========================= */

@media (max-width: 768px) {
    .icon-btn {
        width: 64px;
        height: 64px;
        font-size: 28px;
    }
    .footer-social-label {
        font-size: 12px;
    }
    .floating-btn {
        width: 56px;
        height: 56px;
        font-size: 26px;
        bottom: 18px;
    }
}