/* Services/css/style.css */

/* Services Grid */
.services-block {
    background-color: #fff;
}

.service-card {
    background: #f9f9f9;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid transparent;
}

.service-card:hover {
    background: #fff;
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: #f0f0f0;
}

.service-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: #a02f7f;
    color: #fff;
    font-size: 32px;
    border-radius: 50%;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
    background: #333;
}

.service-card h3 {
    color: #444;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}