/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: #f8f9fa; /* Light background, can use #637395 for glaucous */
    position: relative;
    overflow: hidden;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4C53A1; /* violet-blue */
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #637395; /* glaucous */
    max-width: 600px;
    margin: 0 auto;
}

.service-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3rem;
    color: #FBF10A; /* aureolin */
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #4C53A1; /* violet-blue */
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    text-align: left;
}

.service-features li {
    font-size: 0.9rem;
    color: #637395; /* glaucous */
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 20px;
}

.service-features li::before {
    content: '\f058'; /* Font Awesome check-circle */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #F49F2A; /* gamboge */
    position: absolute;
    left: 0;
    top: 2px;
}

.service-cta {
    display: inline-block;
    background-color: #C35EA0; /* mulberry */
    color: #ffffff;
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: 25px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.service-cta:hover {
    background-color: #F49F2A; /* gamboge */
    transform: scale(1.05);
}

/* Floating Background Icons */
.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" viewBox="0 0 24 24"><path fill="%23FBF10A" fill-opacity="0.2" d="M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20zm0 18a8 8 0 1 1 0-16 8 8 0 0 1 0 16zm-1-9h2v6h-2zm0-2h2v2h-2z"/></svg>') repeat;
    background-size: 50px 50px;
    animation: floatIcons 15s linear infinite;
    opacity: 0.1;
}

@keyframes floatIcons {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 50px;
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .services-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .service-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .services-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .service-card {
        padding: 15px;
    }

    .service-icon {
        font-size: 2rem;
    }

    .service-features li {
        font-size: 0.8rem;
    }
}