/* General Container */
.service-cards-container {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); */
    grid-template-columns: repeat(3, minmax(300px, 1fr));
    gap: 25px;
    padding: 20px;
    margin-top: 2em;
}

/* Individual Card */
.service-card {
    /* background-color: #fff; */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    /* border: 1px solid #cecece; */

}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

/* Card Content (Horizontal Layout) */
.card-content {
    display: flex;
    height: 100%; /* Ensures full card height usage */
    align-items: center;
}

/* Card Image (Left Section) */
.card-image {
    width: 110px; /* Adjust as needed */
    height: 110px;
    padding: 10px;
    border-right: 1px solid #cecece;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px; /* Rounded corners for the image */
    border-right: 1px solid #cecece;

}

/* Card Icon (Left Section) */
.card-icon {
    width: 40%;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    /* border-right: 1px solid #cecece; */

}

.card-icon i {
    font-size: 5em; /* Adjust icon size as needed */
    color: #cdcdcd; /* Adjust icon color as needed */
}

/* Card Body (Right Section - Title & Content) */
.card-body {
    width: 50%; /* Adjust as needed */
    padding: 20px;
    display: flex;
    flex-direction: column; /* Title and Content stacked vertically */
    justify-content: center; /* Center content vertically */
}

/* Card Title */
.card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px; /* Spacing between title and text */
}

/* Card Text */
.card-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #cdcdcd;
}