/* Responsive Animated Banner */
.banner-slide {
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    position: relative;
}

@media (min-width: 768px) {
    .banner-slide {
        height: 420px;
    }
}

.banner-content {
    text-shadow: 0 3px 10px rgba(0,0,0,0.6);
    color: white;
    animation: fadeUp 1.2s ease-out;
}

.banner-content h2 {
    font-size: 2rem;
    font-weight: 700;
}
.banner-content p {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .banner-content h2 { font-size: 3rem; }
    .banner-content p { font-size: 1.3rem; }
}

/* Fade-Up Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease-in-out;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #1ebe5d;
    color: white;
}
