
.service-card-items {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-items:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-cotent {
    padding: 25px;
    flex-grow: 1;
}

.service-cotent h3 {
    margin-bottom: 15px;
    font-size: 22px;
    color: #2c3e50;
}

.service-cotent h3 a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-cotent h3 a:hover {
    color: #e74c3c;
}

.service-cotent p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-image {
    padding: 0 20px 20px;
    text-align: center;
}

.service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.service-card-items:hover .service-image img {
    transform: scale(1.05);
}

.service-btn {
    padding: 0 25px 25px;
}

.link-btn {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.link-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.link-btn:hover {
    color: #c0392b;
}

.link-btn:hover i {
    transform: translateX(5px);
}


.row.g-4 {
    display: flex;
    flex-wrap: wrap;
}

.row.g-4 > div {
    display: flex;
}

