.btbl {
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem;
}

.btbr {
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
}

.vtImg {
    width: 100%;
    aspect-ratio: 3/1.8 !important;
}

.amenCard {
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
        rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    transition: all 0.7s ease-in-out;
}

.amenCard:hover img {
    transform: scale(1.1);
}

.amenCard img {
    width: 100%;
    display: block;
    transition: all 0.8s ease;
    aspect-ratio: 3/2;
}

@media (max-width: 768px) {
    .btbl,
    .btbr {
        border-radius: 0.5rem;
    }
}

/* Whatsapp & Call Floating Button CSS */

.floating-buttons {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-buttons2 {
    position: fixed;
    bottom: 100px;
    left: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* .float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease;
} */

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 255, 98, 0.819);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(0, 255, 26, 0);
    }
    100% {
        transform: scale(1);
    }
}

.float-btn:hover {
    transform: scale(1.1);
    color: #fff;
}


.float-btn2 {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    animation: pulse2 2s infinite;
}

@keyframes pulse2 {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(21, 86, 142, 0.773);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(0, 123, 255, 0);
    }
    100% {
        transform: scale(1);
    }
}

.float-btn2:hover {
    transform: scale(1.1);
    color: #fff;
}


.whatsapp {
    background-color: #25d366;
}

.call {
    background-color: #0f4473;
}

@media (max-width: 768px) {
    .float-btn {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

     .float-btn2 {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .floating-buttons {
        bottom: 80px;
        right: 23px;
    }
    .floating-buttons2 {
        bottom: 40px;
        right: 23px;
    }
}
