.section-padding {
    padding: 47px 0;
}

.footer-bottom {
    position: relative;
    display: block;
    background-color: #eff9ff;
    padding: 4px 0;
}


/* Container */
.sticky-contact {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

/* Common Button Style */
.sticky-contact a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

/* Call Button (Blue) */
.call-btn {
    background: #1b365a;
}

.call-btn:hover {
    background: #0f253f;
    transform: scale(1.1);
}

/* WhatsApp Button (Green) */
.whatsapp-btn {
    background: #25D366;
}

.whatsapp-btn:hover {
    background: #1ebe5d;
    transform: scale(1.1);
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .sticky-contact {
        right: 15px;
        bottom: 15px;
    }

    .sticky-contact a {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
}


.footer .footer-bottom .links ul li {
    display: inline-block;
    margin: 8px;
    font-size: 14px;
}

/* Card Design */
.vm-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.vm-card:hover {
    transform: translateY(-8px);
}

/* Icon */
.vm-card .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: #f28826;
    /* Orange */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
}

/* Title */
.vm-card h4 {
    margin-bottom: 10px;
    color: #1b365a;
    /* Blue */
}

/* Text */
.vm-card p {
    color: #555;
    font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .vm-card {
        padding: 20px;
    }
}