.login-modal-main .otp-input-wrapper {
    display: flex;
    gap: 10px;
}

.login-modal-main .otp-input {
    width: 45px;
    height: 45px;
    margin: 0;
    font-size: 22px;
    text-align: center;
    outline: none;
    transition: border-color 0.2s;
}

.whatsapp-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-link {
    background-color: #25d366;
    color: white;
    font-size: 28px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.whatsapp-link:hover {
    transform: scale(1.1);
}

/* Animation for moving text */
@keyframes moveText {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.moving-text {
    display: inline-block;
    white-space: nowrap;
    animation: moveText 10s linear infinite alternate;
}

.card-img-top, .slider-card-img-top {
    height: 370px;
    width: 100%;
    border-top-left-radius: calc(.25rem - 1px);
    border-top-right-radius: calc(.25rem - 1px);
    object-fit: cover;
    object-position: center;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) { /* Tablets and smaller screens */
    .card-img-top {
        height: 250px; /* Reduce height */
    }
}

@media (max-width: 576px) {
    .card-img-top {
        height: 170px;
    }
}

@media (max-width: 576px) {
    .card-img-top-slider {
        height: 200px !important;
        width: 50% !important;
    }
}
