/* Services (Our Comprehensive IT Solutions) Enhanced Styles */

.services-section-modern {
    background: #f8fafc;
    position: relative;
    z-index: 1;
}

.service-card-modern {
    background: #ffffff;
    padding: 45px 35px;
    border-radius: 24px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card-modern:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px -12px rgba(15, 23, 42, 0.12);
    border-color: rgba(59, 130, 246, 0.2);
}

/* Hover Accent Line */
.service-card-modern::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    transition: width 0.4s ease;
}

.service-card-modern:hover::before {
    width: 100%;
}

/* Icon Container */
.service-icon-box-modern {
    width: 64px;
    height: 64px;
    background: #f0f7ff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all 0.4s ease;
}

.service-icon-box-modern i {
    font-size: 1.6rem;
    color: #3b82f6;
    transition: all 0.4s ease;
}

.service-card-modern:hover .service-icon-box-modern {
    background: #3b82f6;
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
}

.service-card-modern:hover .service-icon-box-modern i {
    color: #ffffff;
}

/* Typography */
.service-card-modern h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 18px;
    line-height: 1.3;
}

.service-card-modern h3 a {
    color: inherit;
    transition: color 0.3s ease;
}

.service-card-modern:hover h3 a {
    color: #3b82f6;
}

.service-card-modern p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}

/* Link Button */
.service-link-modern {
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    gap: 10px;
}

.service-link-modern i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.service-card-modern:hover .service-link-modern {
    color: #3b82f6;
}

.service-card-modern:hover .service-link-modern i {
    transform: translateX(5px);
}

/* Background Decoration */
.service-card-modern::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: rgba(59, 130, 246, 0.03);
    border-radius: 50%;
    z-index: -1;
    transition: all 0.4s ease;
}

.service-card-modern:hover::after {
    transform: scale(2.5);
    background: rgba(59, 130, 246, 0.05);
}
