.projects-header {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
        url('../IMG/pexels-gustavo-fring-4254165.jpg') no-repeat center center;
    background-size: cover;
    background-position: top;
    padding: 120px 0 80px;
    color: white;
    text-align: center;
}

.projects-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);
}

.projects-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) {
    .projects-header h1 {
        font-size: 2.2rem;
    }

    .projects-header .lead {
        font-size: 1.1rem;
    }

    .breadcrumb {
        padding: 0.5rem 1rem;
    }

    .breadcrumb-item {
        font-size: 0.9rem;
    }
}

.service-detail-section {
    padding: 20px 0;
}

.project-card-expanded {
    border-radius: 20px;
    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;
}

.project-card-expanded:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.project-img-expanded {
    height: 300px;
    overflow: hidden;
}

.project-img-expanded img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card-expanded:hover .project-img-expanded img {
    transform: scale(1.1);
}

.project-content-expanded {
    padding: 10px 30px 30px;
    background: white;
}

.project-badge {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 50px;
    margin-left: 10px;
}

.project-features {
    margin-top: 20px;
}

.feature-item {
    display: flex;
    margin-bottom: 15px;
}

.feature-icon {
    font-size: 1.2rem;
    color: var(--primary-color) !important;
}


.btn-primary-custom i {
    transition: transform 0.3s ease;
}

.btn-primary-custom:hover i {
    transform: translateX(-5px);
}

.service-overview {
    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) {
    .projects-header {
        padding: 100px 0 30px;
    }

    .project-img-expanded {
        height: 200px;
    }
}