 .service-header {
     background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
         url('../IMG/pexels-gustavo-fr516ing-4254164.jpg');
     background-size: cover;
     background-position: center;
     /* background-attachment: fixed; */
     padding: 120px 0 80px;
     color: white;
     text-align: center;
 }

 .service-header h1 {
    font-family: 'Changa', sans-serif;
    font-weight: 500;
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.service-header .lead {
    font-size: 1.4rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

 /*Breadcrumb */
 .breadcrumb {
     background-color: transparent;
     padding: 0.5rem 1rem;
     font-family: 'Changa', sans-serif;
 }

.breadcrumb-item {
    font-size: 1.1rem;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
}

 .breadcrumb-item a:hover {
     color: #0e7d3e;
     transform: translateX(-3px);
 }

 .breadcrumb-item.active {
     color: var(--secondary-color);
     font-weight: 600;
     display: inline-flex;
     align-items: center;
 }

 .breadcrumb-item+.breadcrumb-item::before {
     content: '\f104';
     /* FontAwesome arrow icon */
     font-family: 'Font Awesome 5 Pro';
     color: var(--secondary-color);
     padding: 0 0.8rem;
     font-weight: 900;
 }


 @media (max-width: 768px) {
    .service-header h1 {
        font-size: 2.2rem;
    }

    .service-header .lead {
        font-size: 1.1rem;
    }

    .breadcrumb {
        padding: 0.5rem 1rem;
    }

    .breadcrumb-item {
        font-size: 0.9rem;
    }
}

 /* Service Section */
 .service-detail-section {
     padding: 20px 0;
 }

 .service-card-expanded {
     border-radius: 5px;
     overflow: hidden;
     box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
     transition: all 0.4s ease;
     margin-bottom: 30px;
     border: 1px solid #eee;
 }

 .service-card-expanded:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
 }

 .service-img-expanded {
     height: 300px;
     object-fit: cover;
     width: 100%;
 }

 .service-content-expanded {
     padding: 30px;
 }

 .service-features {
     margin-top: 20px;
 }

 .feature-item {
     display: flex;
     margin-bottom: 15px;
 }

 .feature-icon {
     font-size: 1.2rem;
     color: var(--gold-color) !important;
 }

 .service-process {
     width: 100%;
     overflow: hidden;
     padding: 70px 0;
     background: url('../IMG/img07.png') no-repeat center center;
     background-size: cover;
     position: relative;
 }

 .process-step {
     text-align: center;
     padding: 20px;
     position: relative;
 }

 .process-step:not(:last-child):after {
     content: '';
     position: absolute;
     top: 50%;
     left: -15%;
     width: 30%;
     height: 2px;
     background: var(--primary-color);
     z-index: 1;
 }

 .process-icon {
     width: 80px;
     height: 80px;
     background: var(--primary-color);
     color: white;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 2rem;
     margin: 0 auto 20px;
     position: relative;
     z-index: 2;
 }

 @media (max-width: 768px) {
     .process-step:not(:last-child):after {
         display: none;
     }

     .service-header {
         padding: 100px 0 30px;
     }

     .service-img-expanded {
         height: 200px;
     }
 }