.card-custom {
    background-size: cover;
    background-position: center;
    color: white;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.card-custom:hover {
    opacity: 0.8;
}

.card {
    border: none;
    /* Optional: Remove border from cards */
}

.card img {
    width: 100%;
    height: 200px;
    /* Set a fixed height for images */
    object-fit: cover;
    /* Crop and center the image */
    object-position: center;
    /* Ensure the image is centered */
}

.card {
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.p {
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.button-link {
    margin-right: 15px;
    letter-spacing: 1.2px;
    font-size: 18px;
    color: rgb(85, 136, 143) !important;
    text-decoration: none;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

/* Hover state – glow effect */
.button-link:hover {
    color: #7291b6 !important;
    text-shadow:
        0 0 6px #7291b6,
        0 0 12px #7291b6;
}