/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: 0.6s;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Testimonials */
.testimonials {
    padding: 60px 20px;
    text-align: center;
    background: #fff;
}

.testimonial-box {
    margin: 20px auto;
    max-width: 400px;
    padding: 20px;
    border-radius: 10px;
    background: #f1f1f1;
}

/* WhatsApp Button */
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    font-size: 24px;
    padding: 12px 15px;
    border-radius: 50%;
    text-decoration: none;
}
/* Services Section Images Fix */
.services img {
    max-width: 150px; /* Aap isay 100px bhi kar sakti hain agar aur chota chahiye */
    height: auto;
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

