.ehc-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
    cursor: pointer;
}

.ehc-img {
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.ehc-title-bar {
    width: 100%;
    text-align: center;
    background: rgba(0,0,0,0.45);
    color: #fff;
    padding: 15px;
    font-size: 20px;
    font-weight: 600;
}

.ehc-overlay {
    position: absolute;
    inset: 0;
    padding: 30px;
    background: rgba(0,0,0,0.60);
    color: #fff;
    opacity: 0;
    transition: 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ehc-card:hover .ehc-overlay {
    opacity: 1;
}

.ehc-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 18px;
    background: #fff;
    color: #333;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
}

.ehc-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.ehc-btn {
    padding: 10px 18px;
    background: #ffffff;
    color: #333;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.ehc-btn.secondary {
    background: #00AEEF;
    color: #fff;
}

.ehc-btn-one{
    color:#ffffff;
    background:transparent;
    border: solid 2px #ffffff;
}