.card-banner {
    position: relative;
    overflow: hidden;
    border-radius: 12px; /* Increased from 8px to 12px */
    height: 300px; /* Fixed height for consistency */
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Added subtle shadow */
}

.card-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 15px; /* Match parent radius */
}

.card-banner:hover img {
    transform: scale(1.05); /* Added zoom effect on hover */
}
.up-title {
    font-family: 'Poppins-Regular';
    /* margin: 0 0 10px 0; */
    color: white;
    font-size: 28px;
    font-weight: bold;
}

.bt_des {
    font-size: 11px;
    color: #ffffff;
    line-height: 2;
    letter-spacing: 1px;
    font-family: Poppins-Regular;
    text-align: center;
    margin: 16px 0px;
    font-weight: 700;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .card-title {
        font-size: 1.1rem;
    }
    .overlay-meta span {
        font-size: 0.8rem;
    }
    .card-banner {
        border-radius: 10px; /* Slightly smaller on tablet */
    }
    .card-banner img {
        border-radius: 10px;
    }
}

@media (max-width: 767.98px) {
    .card-banner {
        height: 250px;
        border-radius: 8px; /* Standard radius on mobile */
    }
    .card-banner img {
        border-radius: 8px;
    }
}


/* 
<style>
    .destination-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
        margin-top: 30px;
    }
    
    .destination-card {
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
    }
    
    .destination-card:hover {
        transform: translateY(-5px);
    }
    
    .destination-banner img {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }
    
    .destination-title {
        padding: 15px;
        text-align: center;
        margin: 0;
        font-size: 1.1rem;
        color: #333;
    }
</style> */


