@charset 'UTF-8';

*button:focus {
    box-shadow: none !important;
}

img {
    max-width: 100%;
}

.services-section {
    padding: 80px 0;
    background-color: #ffffff;
    background: linear-gradient(180deg, #eeeeff 0%, white 100%);
    position: relative;
    overflow: hidden;
}

.services-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0%;
    display: block;
    width: 100%;
    height: 350px;
    background-image: radial-gradient(circle at 95% 20%, rgb(230 101 103 / 20%) 0%, transparent 10%);
    z-index: 0;
}

.services-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0%;
    display: block;
    width: 100%;
    height: 410px;
    background-image: radial-gradient(circle at 0% 40%, rgba(124, 58, 237, 0.2) 0%, transparent 10%);
    z-index: 0;
}

.services-section .section-title {
    text-align: center;
    margin-bottom: 20px;
}

.services-section .section-title h2 {
    font-size: 25px;
    font-weight: 700;
    color: #441EAC;
    margin-bottom: 0;
    display: inline-block;
    position: relative;
    letter-spacing: 4px;
}

.services-section .section-title h2::before,
.services-section .section-title h2::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: #DCDCDC;
}

.services-section .section-title h2::before {
    right: calc(100% + 15px);
}

.services-section .section-title h2::after {
    left: calc(100% + 15px);
}

.services-section .section-subtitle {
    text-align: center;
    margin-bottom: 15px;
}

.services-section .section-subtitle h3 {
    font-size: 22px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 0;
    letter-spacing: 2px;
}

.services-section .section-desc {
    text-align: center;
    margin-bottom: 30px;
}

.services-section .section-desc p {
    font-size: 16px;
    color: #999999;
    margin-bottom: 0;
    letter-spacing: 2px;
}

.services-list {
    z-index: 1;
    position: relative;
    margin: 0 2rem;
}

.service-card {
    background-color: #ffffff;
    border-radius: 30px;
    padding: 30px 25px;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px #f1f5f9 solid;
}

.service-card .service-number {
    font-size: 32px;
    font-weight: 700;
    color: #4C82D2;
    margin-bottom: 15px;
    line-height: 1;
}

.service-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.service-card p {
    font-size: 16px;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 0;
}

.services-deco {
    position: absolute;
    right: 50px;
    top: 20%;
    transform: translateY(-50%);
    width: 100px;
    height: 100px;
    background-color: #F8ADAD;
    border-radius: 24px;
    z-index: 0;
    transform: rotate(15deg);
    animation: bounceRotate 6s ease-in-out infinite;
}

.services-deco::before {
    content: '';
    position: absolute;
    top: 50px;
    right: 50px;
    width: 65px;
    height: 65px;
    background: transparent;
    border: 1px solid #BF4E4E;
    border-radius: 16px;
}

.services-deco_2 {
    position: absolute;
    left: 50px;
    bottom: 6%;
    transform: translateY(-50%);
    width: 100px;
    height: 100px;
    background-color: #C5CAE9;
    border-radius: 24px;
    z-index: 0;
    transform: rotate(15deg);
    animation: bounceRotate 6s ease-in-out infinite;
}

.services-deco_2::before {
    content: '';
    position: absolute;
    top: 55px;
    left: 50px;
    width: 65px;
    height: 65px;
    background: transparent;
    border: 1px solid #5C6BC0;
    border-radius: 16px;
}

@keyframes bounceRotate {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-10px) rotate(5deg);
    }

    75% {
        transform: translateY(-5px) rotate(-3deg);
    }
}