.contain_service .contain_service_header{
    width: 100%;
    height: 300px;
    position: relative;
    background-image: url("http://localhost/hello/wp-content/uploads/2025/04/banner.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding-left: 250px;
}
.contain_service .contain_service_header::before{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: transparent;
  --background-overlay: '';
  background-image: linear-gradient(90deg, #032e36e2 0%,  #25594639 100%);
  content: "";
  
}
.contain_service .contain_service_header .contain_element_texte{
    position: relative;
    color: white;
    font-family: Inter;
}
.contain_service .contain_service_header .contain_element_texte .line_breadcrum {
    display: flex;
    align-items: center;

}
.contain_service .contain_service_header .contain_element_texte .line_breadcrum span{
    margin-right: 15px;
}

.contain_service .contain_service_header .contain_element_texte .line_breadcrum span.separate {
    height: 22px;
    width: 1px;
    background-color: white;
    display: inline-block;
    padding: 0;
}
.contain_service .contain_service_header .contain_element_texte .title{
    font-size: 32px;
    font-weight: 600;
    margin-top: 15px;
}

.contain_service .contain_service_content {
    width: 100%;
    max-width: 1250px;
    margin: 80px auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contain_service .contain_service_content .content_texte {
    max-width: 750px;
    width: 60%;
    text-align: justify;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 153, 255, 0.08);
}

.contain_service .contain_service_content .title p {
    font-size: 26px;
    font-weight: 700;
    font-family: 'Inter';
    margin-bottom: 35px;
    line-height: 1.3;
    color: #0099ff;
    position: relative;
    padding-bottom: 15px;
}

.contain_service .contain_service_content .title p::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: #36bf7c;
    border-radius: 2px;
}

.contain_service .contain_service_content .content_img {
    margin: 25px 0 35px;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(54, 191, 124, 0.15);
    transition: transform 0.3s ease;
}

.contain_service .contain_service_content .content_img:hover {
    transform: translateY(-5px);
}

.contain_service .contain_service_content .content_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.contain_service .contain_service_content .content_img:hover img {
    transform: scale(1.05);
}

.contain_service .contain_service_content .texte h2 {
    font-size: 22px;
    font-weight: 600;
    color: #36bf7c;
    margin: 30px 0 20px;
    padding: 10px 15px;
    background: rgba(54, 191, 124, 0.1);
    border-radius: 6px;
    position: relative;
}

.contain_service .contain_service_content .texte h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: #36bf7c;
    border-radius: 0 2px 2px 0;
}

.contain_service .contain_service_content .texte ul {
    list-style: none;
    padding-left: 20px;
    margin: 15px 0;
}

.contain_service .contain_service_content .texte ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    line-height: 1.5;
    color: #555;
}

.contain_service .contain_service_content .texte ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: #36bf7c;
    border-radius: 50%;
}

.contain_service .contain_service_content .texte ul li:hover::before {
    background: #0099ff;
    transform: scale(1.2);
    transition: all 0.3s ease;
}

.contain_service .contain_service_content .texte ol {
    padding-left: 20px;
    margin: 15px 0;
    counter-reset: item;
    list-style: none;
}

.contain_service .contain_service_content .texte ol li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    line-height: 1.5;
    color: #555;
    counter-increment: item;
}

.contain_service .contain_service_content .texte ol li::before {
    content: counter(item) ".";
    position: absolute;
    left: 0;
    color: #36bf7c;
    font-weight: 600;
}





.contain_service .contain_service_content .contain_contact{
    width: 350px;
}

.contain_service .contain_service_content .contain_contact .contain_element {
    border: none;
    min-width: 150px;
    min-height: 150px;
    border-radius: 8px;
    margin-left: 25px;
    padding: 25px 30px;
    margin-bottom: 25px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.contain_service .contain_service_content .contain_contact .contain_element:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(54, 191, 124, 0.15);
}

.contain_service .contain_service_content .contain_contact .contain_element .contain_title {
    border-bottom: 2px solid #f5f5f5;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.contain_service .contain_service_content .contain_contact .contain_element .contain_title p {
    margin: 0px;
    text-align: left;
    font-size: 22px;
    font-weight: 700;
    color: #36bf7c;
}

.contain_service .contain_service_content .contain_contact .contain_element ul {
    list-style-type: none;
    padding-top: 15px;
}

.contain_service .contain_service_content .contain_contact .contain_element ul hr {
    padding: 0;
    border: none;
    height: 1px;
    background-color: #f5f5f5;
    margin: 15px 0;
}

.contain_service .contain_service_content .contain_contact .contain_element ul p a {
    color: #0099ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contain_service .contain_service_content .contain_contact .contain_element ul p a:hover {
    color: #36bf7c;
}

.contain_service .contain_service_content .contain_contact .contain_element ul p {
    color: #444;
    font-size: 15px;
    margin: 0;
}

.contain_service .contain_service_content .contain_contact .contain_element ul li .contain_line_contact {
    display: flex;
    align-items: center;
}

.contain_service .contain_service_content .contain_contact .contain_element ul li .contain_line_contact span {
    padding-right: 15px;
    color: #36bf7c;
    font-size: 18px;
}

.contain_service .contain_service_content .contain_contact .contain_element .texte_description {
    font-size: 15px;
    color: #666;
    margin-top: 15px;
    font-weight: 500;
    margin-bottom: 25px;
    line-height: 1.6;
}

.contain_service .contain_service_content .contain_contact .contain_element .line_contact_input {
    margin-bottom: 20px;
}

.contain_service .contain_service_content .contain_contact .contain_element .line_contact_input label {
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #444;
    display: block;
}

.contain_service .contain_service_content .contain_contact .contain_element .line_contact_input input,
.contain_service .contain_service_content .contain_contact .contain_element .line_contact_input textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #f0f0f0;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.contain_service .contain_service_content .contain_contact .contain_element .line_contact_input input:focus,
.contain_service .contain_service_content .contain_contact .contain_element .line_contact_input textarea:focus {
    border-color: #36bf7c;
    outline: none;
    box-shadow: 0 0 0 3px rgba(54, 191, 124, 0.1);
}

.contain_service .contain_service_content .contain_contact .contain_element .line_contact_input .btn_contact {
    background: linear-gradient(135deg, #36bf7c 0%, #0099ff 100%);
    color: #fff;
    border: none;
    padding: 14px 30px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contain_service .contain_service_content .contain_contact .contain_element .line_contact_input .btn_contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(54, 191, 124, 0.3);
}


