
body{overflow-x:hidden}
.hero-logo{max-width:180px}
.card,.service-box{border:none;box-shadow:0 10px 25px rgba(0,0,0,.08);border-radius:15px;overflow:hidden}
.service-box{padding:15px;text-align:center;background:#fff;height:100%}
.gallery-img{width:100%;height:220px;object-fit:cover;border-radius:10px}


.call-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
   padding: 8px 15px 9px;
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
    overflow: visible;
    z-index: 1;
}

/* Wave 1 */
.call-btn::before,
.call-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 8px;
    background: rgba(139, 92, 246, 0.5);
    z-index: -1;
    animation: wave 2s infinite;
}

/* Wave 2 */
.call-btn::after {
    animation-delay: 1s;
}

@keyframes wave {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Hover effect */
.call-btn:hover {
    transform: translateY(-2px);
    transition: .3s;
}
@media(max-width:768px){
.hero-logo{max-width:120px}
.gallery-img{height:140px}
.call-btn{position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    border-radius: 0;
    margin: 0;
    border: 0;
    left: 0;}
    footer{margin-bottom: 45px !important;}
    #navMenu{
    position: absolute;
    right: 0;
    background: #212529;
    width: 150px;        top: 70px;
    padding: 0 20px;
}
}
.stats h2{color:#ffc107}