/* 사업 분야 섹션 */
.section-2 {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.section-2 .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #444;
    text-transform: uppercase;
    position: relative;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.service-card .icon-container {
    font-size: 3rem;
    color: #2A2A8E; /* 강렬한 보라색 */
    margin-bottom: 20px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.service-card:hover .icon-container {
    transform: rotate(20deg) scale(1.1);
    color: #003366; /* Hover 시 어두운 보라색 */
}

.service-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.service-card p {
    font-size: 1.1rem;
    color: #666;
}

/* 애니메이션 효과 */
.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, #8A2BE2, transparent);
    transition: opacity 0.6s ease, transform 0.6s ease;
    opacity: 0;
    transform: scale(0);
    z-index: 0;
}

.service-card:hover::before {
    opacity: 0.15;
    transform: scale(1);
}

.service-card h3, .service-card p {
    position: relative;
    z-index: 1;
}
