                        .causes-img {
    overflow: hidden;
    border-radius: 10px; /* optional */
}

.causes-img img {
    width: 100%;
    transition: transform 0.5s ease;
}

/* Zoom when hovering the whole card */
.col-lg-4:hover .causes-img img {
    transform: scale(1.1);
}
.causes {
    padding: 20px 0;
    /*margin-top: -40px;*/
    margin-bottom: 10px;
}

.causes .row {
    margin-top: 0;
}

.custom-card {
    position: relative;
    margin-bottom: 60px;
    text-align: center;
    overflow: hidden;
}

.custom-card img {
    width: 100%;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

/* Zoom effect */
.custom-card:hover img {
    transform: scale(1.05);
}

/* Floating label box */
.label-box {
    position: absolute;
    bottom: 1px;
    left: 50%;
    transform: translateX(-50%);
    
    background: #f1f1f1;
    padding: 12px 20px;
    border-radius: 10px;
    width: 75%;
    
    font-weight: 500;
    font-size: 16px;
    color: #333;

    box-shadow: 0 8px 20px rgba(54, 52, 48, 0.15);
    transition: 0.3s;
}

/* Lift effect on hover */
.custom-card:hover .label-box {
    transform: translate(-50%, -5px);
}
/* Center the section */
.package-section {
    display: flex;
    justify-content: center;
}

/* Box container (NOT full width) */
.custom-container {
    background: #f5e2cf;
    padding: 25px;
    border-radius: 12px;
    width: 80%;
    max-width: 1100px;
}

/* Card */
.package-card,h6 {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    color: rgb(125, 102, 146);
}

.package-card:hover {
    transform: translateY(-5px);
}

/* Image */
.img-box {
    position: relative;
}

.img-box img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

/* Badge */
.badge-off {
    position: absolute;
    top: 8px;
    right: 8px;
    background: orange;
    color: #fff;
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 20px;
}

/* Price */
.price .new {
    color: purple;
    font-weight: bold;
    font-size: 16px;
    margin-right: 6px;
}

.price .old {
    text-decoration: line-through;
    color: #777;
    font-size: 13px;
}
.h6{
    color: rgba(194, 178, 209, 0.562);
}            