.services-section {
    padding: 100px 0;
    background: #f9f9f9;
}

.section-title h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-title p {
    color: #777;
    margin-bottom: 50px;
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #ff512f, #dd2476);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatIcon 3s ease-in-out infinite;
}

.service-icon i {
    font-size: 32px;
    color: #fff;
}

.service-card h4 {
    font-size: 20px;
    font-weight: 600;
}

/* Floating Animation */
@keyframes floatIcon {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}