.oh-services-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)) !important;
    grid-gap: 25px !important;
    padding: 20px 0;
}

.oh-service-card {
    position: relative;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.4s ease;
}

.oh-card-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
    z-index: 1;
}

.oh-service-card:hover .oh-card-bg {
    transform: scale(1.1);
}

.oh-service-card:hover {
    transform: translateY(-10px);
}

.oh-badge {
    position: absolute;
    top: 20px; left: 20px;
    background: #fff;
    color: #333;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    z-index: 3;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.oh-info-box {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    margin: 20px;
    padding: 20px;
    border-radius: 12px;
    z-index: 2;
    transition: background 0.3s ease;
}

.oh-service-card:hover .oh-info-box {
    background: rgba(255, 255, 255, 1);
}

.oh-info-box h3 {
    margin: 0 0 10px 0;
    color: #222;
    font-size: 1.2rem;
}

.oh-info-box p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}