/* =========================
    SERVICE DETAILS SECTION
========================= */

.service-details-section{
    padding: 100px 0;
    background: #fff;
}

.service-details-flex{
    display: flex;
    align-items: center;
    gap: 70px;
}

.service-details-image{
    width: 50%;
}

.service-details-image img{
    width: 100%;
    border-radius: 22px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: .4s;
}

.service-details-image img:hover{
    transform: scale(1.03);
}

.service-details-content{
    width: 50%;
}

.service-details-content h5{
    color: #00aaff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.service-details-content h2{
    font-size: 48px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 25px;
}

.service-details-content p{
    font-size: 16px;
    line-height: 30px;
    color: #64748b;
    margin-bottom: 20px;
}

.service-feature-list{
    list-style: none;
    padding: 0;
    margin: 35px 0;
}

.service-feature-list li{
    font-size: 16px;
    color: #0f172a;
    margin-bottom: 15px;
    font-weight: 500;
    transition: .3s;
}

.service-feature-list li:hover{
    transform: translateX(6px);
}

.service-feature-list i{
    color: #00aaff;
    margin-right: 12px;
    font-size: 18px;
}

.service-btn-group{
    display: flex;
    gap: 18px;
    margin-top: 30px;
}

.service-btn{
    display: inline-block;
    padding: 14px 34px;
    background: linear-gradient(135deg,#00aaff,#0077cc);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.service-btn:hover{
    transform: translateY(-3px);
    color: #fff;
}

.service-btn-outline{
    display: inline-block;
    padding: 14px 34px;
    border: 2px solid #00aaff;
    color: #00aaff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.service-btn-outline:hover{
    background: #00aaff;
    color: #fff;
}


/* RESPONSIVE */

@media(max-width:991px){

    .service-details-flex{
        flex-direction: column;
    }

    .service-details-image,
    .service-details-content{
        width: 100%;
    }

    .service-details-content h2{
        font-size: 38px;
    }
}

@media(max-width:767px){

    .service-details-section{
        padding: 70px 0;
    }

    .service-details-content h2{
        font-size: 30px;
    }

    .service-btn-group{
        flex-direction: column;
    }

    .service-btn,
    .service-btn-outline{
        text-align: center;
    }
}
/* =========================
    SIMPLE FRESH ANIMATION
========================= */

/* SMOOTH SECTION LOOK */

.service-details-section{
    position: relative;
    overflow: hidden;
}

/* IMAGE ANIMATION ONLY */

.service-details-image img{
    animation: floatImage 4s ease-in-out infinite;
}


/* KEYFRAMES */

@keyframes floatImage{

    0%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(-12px);
    }

    100%{
        transform: translateY(0px);
    }

}
/* CONTENT ENTRY */

.service-details-image{
    animation: simpleFadeLeft 1s ease;
}

.service-details-content{
    animation: simpleFadeRight 1s ease;
}


/* LIST HOVER */

.service-feature-list li{
    transition: 0.3s ease;
}

.service-feature-list li:hover{
    transform: translateX(5px);
    color: #00aaff;
}


/* BUTTON SIMPLE EFFECT */

.service-btn,
.service-btn-outline{
    transition: 0.3s ease;
}

.service-btn:hover{
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,170,255,0.18);
}

.service-btn-outline:hover{
    transform: translateY(-3px);
}


/* SIMPLE KEYFRAMES */

@keyframes simpleFadeLeft{
    from{
        opacity: 0;
        transform: translateX(-40px);
    }
    to{
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes simpleFadeRight{
    from{
        opacity: 0;
        transform: translateX(40px);
    }
    to{
        opacity: 1;
        transform: translateX(0);
    }
}


.footer {
    background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
}

.footer .widget-title {
    color: #fff;
    font-weight: 600;
}

.footer p,
.footer a {
    color: #cbd5e1;
}

.footer a:hover {
    color: #4267B2;
}

.footer-widget-col-1,
.footer-widget-col-2,
.footer-widget-col-3,
.footer-widget-col-4 {
    transition: 0.3s;
}

.footer-widget-col-1:hover,
.footer-widget-col-2:hover,
.footer-widget-col-3:hover,
.footer-widget-col-4:hover {
    transform: translateY(-5px);
}

.footer .menu li a {
    position: relative;
    transition: 0.3s;
}

.footer .menu li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 2px;
    /* background: #f97316; */
    transition: 0.3s;
}

.footer .menu li a:hover::after {
    width: 100%;
}
