/*==================================================
SERVICES PAGE
==================================================*/


/*==================================================
Page Hero
==================================================*/

.services-hero{

    background:
        linear-gradient(
            rgba(91,44,131,.92),
            rgba(91,44,131,.92)
        ),
        url("../images/services/services-banner.jpg")
        center center/cover;

    color:#fff;

    padding:120px 0 100px;

}

.services-hero h1{

    color:#fff;

    font-size:56px;

    font-weight:800;

}

.services-hero p{

    color:#f5f5f5;

}


/*==================================================
Services Section
==================================================*/

.services{

    background:#fff;

}


/*==================================================
Service Card
==================================================*/

.service-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    height:100%;

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}


/*==================================================
Image Version
==================================================*/

.service-card img{

    width:100%;

    height:260px;

    object-fit:cover;

}


/*==================================================
Icon Version
==================================================*/

.service-icon{

    width:80px;

    height:80px;

    border-radius:50%;

    background:#F4ECFB;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:35px auto 25px;

}

.service-icon i{

    font-size:36px;

    color:var(--primary);

}


/*==================================================
Content
==================================================*/

.service-content{

    padding:30px;

    text-align:center;

}

.service-content h4{

    color:var(--primary);

    font-weight:700;

    margin-bottom:15px;

}

.service-content h5{

    color:var(--primary);

    font-weight:700;

    margin-bottom:15px;

}

.service-content p{

    margin-bottom:20px;

}

.service-content ul{

    padding:0;

    margin:0;

}

.service-content li{

    margin-bottom:10px;

    color:var(--gray);

}


/*==================================================
Feature List
==================================================*/

.service-features{

    margin-top:20px;

}

.service-features li{

    display:flex;

    align-items:center;

    gap:10px;

    margin-bottom:12px;

}

.service-features i{

    color:var(--gold);

}


/*==================================================
Pricing Box
==================================================*/

.service-price{

    color:var(--primary);

    font-size:2rem;

    font-weight:700;

    margin:20px 0;

}


/*==================================================
Call To Action
==================================================*/

.services-cta{

    background:var(--light);

}


/*==================================================
Animation
==================================================*/

.service-card{

    animation:fadeUp .8s ease;

}