.footer {
    width: 100%;
    padding: clamp(2rem, 5vw, 6rem);
    /* Responsive padding */
    background-color: #01396f;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo_Company .img-container {
    position: relative;
    display: inline-block;
}

.logo_Company img {
    object-fit: cover;
    max-width: clamp(100px, 10vw, 200px);
    display: block;
    position: relative;
}

.logo_Company .img-container::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    /* background-color: white; */
    opacity: 1;
    z-index: 0;
    border-radius: 20px;
}


@media (max-width: 768px) {
    .logo_Company {
        display: none;
    }
}


.footer h1 {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    /* Responsive heading */
    font-weight: 1000;
    text-transform: uppercase;
    color: white;
    display: inline-block;
    position: relative;
    z-index: 2;
    text-align: left;
}

.footer p,
.footer .sales p,
.footer a {
    font-size: clamp(1rem, 3vw, 1.5rem);
    /* Responsive text size */
    color: white;
    text-align: left;
}

@media (max-width: 768px) {

    .footer p,
    .footer .sales p,
    .footer a {
        text-align: center;
    }

    .footer-nav-links {
        display: none !important;

    }

    .sales {
        padding-top: 1rem;
    }
}


.footer a {
    text-decoration: none;
}

.footer .socials {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer .socials img {
    max-width: clamp(30px, 6vw, 50px);
}

.footer-nav-links {
    list-style: none;
    display: block;
    margin: 0;
    padding: 0;
    text-align: left;
}



.footer-nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: bold;
}

.footer-nav-links a:hover {
    color: #e6dddd;
    font-weight: 900;
}


.designed_by_unique {
    width: 100%;
    background: #000;
    color: #fff;
    text-align: center;
    padding: 15px 10px;
    font-size: clamp(1rem, 3vw, 1.8rem);
    white-space: nowrap;
}

.designed_by_unique a {
    color: #1fa3ff;
    text-decoration: none;
    font-weight: 600;
    margin-left: 8px;
}

.designed_by_unique a:hover {
    text-decoration: underline;
}



/* Responsive Scroll-to-top Button */
.scrollTopBtnfooter {
    position: fixed;
    bottom: clamp(10px, 2vw, 20px);
    right: clamp(10px, 2vw, 20px);
    background: linear-gradient(145deg, #1a1a1a, #333333);
    color: white;
    border: none;
    padding: clamp(10px, 2vw, 15px) clamp(16px, 4vw, 25px);
    border-radius: 12px;
    font-size: clamp(16px, 2.5vw, 24px);
    font-weight: bold;
    cursor: pointer;
    display: none;
    z-index: 1000;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.scrollTopBtnfooter:hover {
    background: linear-gradient(145deg, #333333, #1a1a1a);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(-5px);
}


@media (max-width: 768px) {
    .footer .row {
        flex-direction: column;
        align-items: center;
    }

    .footer .col,
    .footer .col-3 {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .footer-nav-links {
        text-align: center;
    }

    .footer .socials {
        justify-content: center;
    }
}


.sales img {
    max-width: 40px;
    padding-right: 10px;
}



/* ========== WhatsApp Floating Widget (Bottom-Left Peek-a-Boo) ========== */
.whatsapp-widget {
    position: fixed;
    left: -220px;
    /* start hidden off-screen */
    bottom: 20px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 9999;
    overflow: visible;
    animation: peekaboo-left 6s ease-in-out infinite;
    transition: transform 0.3s ease;
}

/* White base for better icon visibility */
.whatsapp-icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    position: relative;
}

.whatsapp-logo {
    width: 42px;
    height: 42px;
    pointer-events: none;
}

/* Floating chat bubble text */
.whatsapp-bubble {
    position: absolute;
    left: 80px;
    bottom: 14px;
    background: #25D366;
    color: #fff;
    font-size: 15px;
    padding: 8px 14px;
    border-radius: 20px;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
}

.whatsapp-widget:hover .whatsapp-bubble {
    opacity: 1;
    transform: translateY(0);
}

/* Pulse glow */
.whatsapp-icon-wrap::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.4);
    animation: pulse 2.5s infinite ease-out;
    z-index: -1;
}

/* Peek from left animation */
@keyframes peekaboo-left {

    0%,
    100% {
        left: -180px;
    }

    10%,
    50% {
        left: 20px;
    }

    55%,
    95% {
        left: 20px;
    }
}

/* Pulse animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    70% {
        transform: scale(1.7);
        opacity: 0;
    }

    100% {
        transform: scale(1.7);
        opacity: 0;
    }
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .whatsapp-widget {
        width: 60px;
        height: 60px;
    }

    .whatsapp-icon-wrap {
        width: 60px;
        height: 60px;
    }

    .whatsapp-logo {
        width: 36px;
        height: 36px;
    }

    .whatsapp-bubble {
        font-size: 13px;
        left: 70px;
    }
}

@media (max-width: 480px) {
    .whatsapp-bubble {
        display: none;
    }

    /* hide bubble text on very small screens */
}