.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    
    background-color: #25D366;
    color: white;
    padding: 12px 18px;
    border-radius: 50px;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 1000; /* Ensures it stays above other elements */
    transition: transform 0.3s ease-in-out;
}

.whatsapp-btn:hover {
    transform: scale(1.1); /* Small zoom effect on hover */
}


.carousel-inner {
    display: flex;
}

.carousel-item {
    flex: 0 0 auto;
    width: 100%;
    transition: transform 0.5s ease-in-out;
}