/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/


@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}
/* Ensure all columns and banners are the same height */
.equal-height-cards {
    display: flex;
    flex-wrap: wrap;
}
.equal-height-cards > .col {
    display: flex;
}
.dcpc-service-banner {
    height: 100% !important;
    min-height: 320px; /* Adjust based on your text length */
    transition: background-color 0.3s, border-color 0.3s !important;
}

/* Hover State: Background changes to DCPC Dark */
.dcpc-service-banner:hover {
    background-color: #0d1117 !important;
    border-color: #00d4aa !important;
}

/* Hover State: Text changes to White */
.dcpc-service-banner:hover .service-title {
    color: #ffffff !important;
}
.dcpc-service-banner:hover .service-desc {
    color: rgba(255,255,255,0.7) !important;
}

/* Optional: Make the icon grow on hover */
.dcpc-service-banner:hover .icon-box img {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Typography Defaults for the boxes */
.service-title {
    font-family: "Instrument Sans", sans-serif;
    font-weight: 700;
    margin-top: 15px;
    transition: color 0.3s;
}
.service-desc {
    font-size: 0.95rem;
    transition: color 0.3s;
}