.servicesection{ margin-top: 44px;}


 

.servicesection{
    position: relative;
    background: #f5f7fb;
    overflow: hidden;
}

/*=====================================
PAGE TITLE AREA
=====================================*/

.page-title-area{
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 220px;
    padding-bottom: 130px;
    z-index: 1;
}

.page-title-area::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(8,15,52,0.75);
    z-index: -1;
}

.page-title-content{
    text-align: center;
}

.page-title-content h2{
    color: #ffffff;
    font-size: 54px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
}

.page-title-content p{
    color: #f1f1f1;
    font-size: 18px;
    max-width: 850px;
    margin: auto;
    line-height: 1.9;
}

/*=====================================
SECTION TITLE
=====================================*/

 
 
/*=====================================
CATEGORY DESCRIPTION
=====================================*/

.category_desc{
    background: #ffffff;
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.08);
    margin-bottom: 80px;
    position: relative;
}

 

.category_desc p{
    color: #141515;
    font-size: 16px;
    line-height: 2;
    margin-bottom: 7px;
    font-weight: 500;
}

.category_desc ul{
    padding-left: 20px;
    margin-bottom: 25px;
}

.category_desc ul li{
    position: relative;
    color: #1f2937;
    font-size: 15px;
    line-height: 2; 
    font-weight: 600;
}
 

/*====================================
SERVICE ATTRIBUTE SECTION
====================================*/

.service_attribute_manager{
    position: relative;
    background: #ffffff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    margin-bottom: 40px;
    overflow: hidden;
}

/* Top Shape */

.service_attribute_manager::before{
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(255,33,79,0.08);
    border-radius: 50%;
    top: -40px;
    right: -40px;
}

/* Heading */

.service_attribute_manager h4{
    position: relative;
    font-size: 28px;
    font-weight: 800;
    color: #0b0f3c;
    margin-bottom: 30px;
    padding-bottom: 15px;
}

.service_attribute_manager h4::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 4px;
    border-radius: 10px;
    background: #ff214f;
}

/*====================================
ATTRIBUTE ITEM
====================================*/

.services-category{
    margin-bottom: 18px;
}

.services-category ul{
    padding: 0;
    margin: 0;
    list-style: none;
}

 

/* Link */

.services-category ul li a{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;

    background: #f8f9fc;
    color: #0b0f3c;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;

    padding: 16px 22px;
    border-radius: 14px;

    transition: all 0.4s ease;
    overflow: hidden;
}

/* Left Border Animation */

.services-category ul li a::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: #ff214f;
    transform: scaleY(0);
    transition: 0.4s;
}

/* Hover */

.services-category ul li a:hover{
    background: #ffffff;
    color: #ff214f;
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.services-category ul li a:hover::before{
    transform: scaleY(1);
}

/* Icon */

.services-category ul li a i{
    font-size: 20px;
    color: #ff214f;
    transition: 0.4s;
}

.services-category ul li a:hover i{
    transform: translateX(6px);
}

/*====================================
RESPONSIVE
====================================*/

@media only screen and (max-width: 767px){

    .service_attribute_manager{
        padding: 25px;
        border-radius: 14px;
    }

    .service_attribute_manager h4{
        font-size: 24px;
    }

    .services-category ul li a{
        font-size: 15px;
        padding: 14px 18px;
    }

}