.page-banner {
    background: linear-gradient(105deg, rgba(91,104,235,0.9) 0%, rgba(40,225,253,0.9) 100%);
    padding: 150px 0 80px;
    text-align: center;
    margin-bottom: 80px;
}

.page-banner h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.page-banner p {
    font-size: 18px;
    opacity: 0.9;
}

.services-content {
    padding: 100px 0;
}

.service-item {
    position: relative;
    z-index: 1;
    padding: 30px;
    box-shadow: 0px 0px 15px rgba(0,0,0,0.1);
    background-color: #fff;
    border-radius: 10px;
    border-top-right-radius: 50px;
    transition: all .3s;
    margin-bottom: 30px;
    margin-bottom: 80px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(105deg, rgba(91,104,235,0.95) 0%, rgba(40,225,253,0.95) 100%);
    z-index: -1;
    opacity: 0;
    transition: all 0.5s ease;
    border-radius: 10px;
    border-top-right-radius: 50px;
}

.service-item:hover:before {
    opacity: 1;
}

.service-item .icon {
    margin-left: 0px;
    margin-bottom: 30px;
    background-repeat: no-repeat;
    width: 50px;
    height: 50px;
    transition: all .3s;
}

.service-item h4 {
    transition: all .3s;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-item p {
    transition: all .3s;
    font-size: 15px;
    margin-bottom: 20px;
}

.service-item:hover h4,
.service-item:hover p,
.service-item:hover .text-button a {
    color: #fff;
}

.first-service .icon {
    background-image: url(../images/service-icon-01.png);
}

.first-service:hover .icon {
    background-image: url(../images/service-icon-hover-01.png);
}

.second-service .icon {
    background-image: url(../images/service-icon-02.png);
}

.second-service:hover .icon {
    background-image: url(../images/service-icon-hover-02.png);
}

.third-service .icon {
    background-image: url(../images/service-icon-03.png);
}

.third-service:hover .icon {
    background-image: url(../images/service-icon-hover-03.png);
}

.text-button {
    transition: all .3s;
}

.text-button a {
    font-size: 15px;
    color: #2a2a2a;
    transition: all .3s;
    position: relative;
    display: inline-block;
}

.text-button a i {
    margin-left: 5px;
    font-size: 14px;
    transition: all .3s;
}

.service-item:hover .text-button a i {
    margin-left: 8px;
    color: #fff;
}

.service-text {
    padding: 40px;
}

.service-text h3 {
    color: #2a2a2a;
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-text p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-text ul {
    margin-bottom: 30px;
}

.service-text ul li {
    color: #666;
    font-size: 15px;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.service-text ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: rgba(91,104,235,1);
    font-weight: bold;
}

.service-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 100%;
}

.service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-item:hover .service-image img {
    transform: scale(1.05);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(91,104,235,0.2);
}

.gradient-button {
    text-align: left;
}

/* Animation keyframes */
@keyframes serviceFloat {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.service-item:hover .icon {
    animation: serviceFloat 2s ease-in-out infinite;
}

@media (max-width: 991px) {
    .service-item {
        padding: 40px 0;
    }
    
    .service-text {
        text-align: center;
        padding: 15px;
        margin-bottom: 30px;
    }

    .service-image {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .page-banner {
        padding: 120px 0 60px;
    }

    .page-banner h1 {
        font-size: 36px;
    }

    .service-image img {
        height: 300px;
    }
}
