.section-services {
    font-family: "Poppins", sans-serif;
    background-color: #ffffff;
    color: #202020;
    padding-top: 60px;
    padding-bottom: 60px;
}

.services-carousel {
    width: 100%;
}


.section-services .header-section {
    margin-bottom: 34px;
}

.section-services .header-section .title {
    position: relative;
    padding-bottom: 14px;
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 32px;
}

.section-services .header-section .title:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #b7f7ff;
    border-radius: 3px;
}

.section-services .header-section .title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(30px);
    width: 10px;
    height: 3px;
    background-color: #504f93;
    border-radius: 3px;
}

.section-services .header-section .description {
    font-size: 14px;
    color: #282828;
}

.section-services .single-service {
    position: relative;
    margin-top: 30px;

    /* Surface */
    background: linear-gradient(180deg,
            #ffffff 0%,
            #f9fafb 100%);

    /* Shape */
    border-radius: 16px;
    padding: 28px 25px;
    overflow: hidden;

    /* Depth */
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);

    /* Interaction */
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.section-services .single-service .content {
    position: relative;
    z-index: 20;
}

.section-services .single-service .circle-before {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(40%, -40%);
    width: 150px;
    height: 150px;

    /* Gradient background */
    background: linear-gradient(135deg,
            rgba(56, 189, 248, 0.9),
            rgba(99, 101, 241, 0.61));

    border: 3px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    opacity: 0.55;
    z-index: 10;
    transition: all 0.6s ease;
}

.section-services .single-service:hover .circle-before {
    width: 100%;
    height: 100%;
    transform: none;
    border: 0;
    border-radius: 0;
    opacity: 1;
}

.section-services .single-service .icon {
    display: inline-block;
    margin-bottom: 26px;
    width: 110px;
    height: 110px;
    background-color: #70d6ff8a;
    border-radius: 50%;
    line-height: 70px;
    text-align: center;
    color: #fff;
    font-size: 30px;
    transition: all .3s;
}

.section-services .single-service img {
    display: inline-block;
    margin-top: 20px;
    width: 80px;
    height: 70px;
    transition: all .3s;
}

.section-services .single-service:hover .icon {
    background-color: #fff;
    color: #ff4500;
}

.section-services .single-service .title {
    margin-bottom: 18px;
    font-weight: 700;
    font-size: 23px;
    transition: color .3s;
}

.section-services .single-service:hover .title {
    color: #fff;
}

.section-services .single-service .description {
    margin-bottom: 20px;
    font-size: 14px;
    transition: color .3s;
}

.section-services .single-service:hover .description {
    color: #fff;
}

.section-services .single-service a {
    position: relative;
    font-size: 18px;
    color: #202020;
    text-decoration: none;
    font-weight: 500;
    transition: color .3s;
}

.section-services .single-service:hover a {
    color: #fff;
}

.section-services .single-service a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #b5f4ff;
    transition: background-color .3s;
}

.section-services .single-service:hover a:after {
    background-color: #fff;
}

.section-services {
    background: linear-gradient(180deg, #f7f7f7 0%, #fafbfd 100%);
}

.section-services .single-service {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.section-services .single-service:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.section-services .icon {
    transition: transform 0.4s ease;
}

.section-services .single-service:hover .icon {
    transform: rotate(-6deg) scale(1.05);
}

@media (max-height: 720px) {
    .section-services .single-service {
        padding: 20px 20px;
    }

}


@media (max-width: 768px) and (max-height: 720px) {
    .services-carousel .single-service {
        flex: 0 0 90%;
        max-width: 90%;
        padding: 20px;
    }
}