﻿

.whatsapp-button {
    position: fixed;
    bottom: 75px;
    left: 30px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    font-size: 32px;
    color: white;
    text-decoration: none;
    animation: scaleUpDown 2s infinite ease-in-out; /* Büyüyüp küçülme animasyonu */
    transition: transform 0.3s ease;
}

/* Büyüyüp küçülme animasyonu */
@keyframes scaleUpDown {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
    /* Yarıda en büyük boyut */
    100% {
        transform: scale(1);
    }
}

/* Hover efekti */
.whatsapp-button:hover {
    background-color: #1ebe5d;
    transform: scale(1.3); /* Hoverda biraz daha büyük */
}
.banner_main .carousel-item {
    height: 650px;
}

    .banner_main .carousel-item img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

/* Mobil için */
@media (max-width: 768px) {
    .banner_main .carousel-item {
        height: 350px;
    }
}