/* Service Cards */
.service-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    top: 0;
}

.service-card:hover {
    top: -10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: #ff9999;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .icon-wrapper {
    background: #ff6b6b;
    transform: rotateY(180deg);
}

.icon-wrapper i {
    font-size: 2rem;
    color: #fff;
    transition: all 0.3s ease;
}

.service-card:hover .icon-wrapper i {
    color: #ffffff;
    transform: rotateY(180deg);
}

.service-card h3 {
    font-size: 1.5rem;
    color: #212529;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .section-header .title {
        font-size: 2rem;
    }
    
    .service-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 767.98px) {
    .section-header .title {
        font-size: 1.8rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .icon-wrapper i {
        font-size: 1.5rem;
    }
}