/* 
   This CSS file ensures all cards redirect to the contact-inquiry page 
   Created: May 19, 2025
*/

.feature-card .btn {
    background-color: #6c757d !important;
    border-color: #6c757d !important;
    color: white !important;
    transition: all 0.3s ease;
    position: relative; /* Required for the overlay effect */
}

.feature-card .btn:hover {
    background-color: #5a6268 !important;
    border-color: #5a6268 !important;
}

/* Create overlay to catch all card clicks */
.feature-card {
    position: relative;
}

.feature-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    cursor: pointer;
}

/* This will redirect all cards to the contact page using JS */
.feature-card {
    cursor: pointer;
}