/* Services Page Styles */
.project-hero {
    height: 60vh;
    background: url('../IMG/17511.jpg') no-repeat center bottom;
    background-attachment: fixed;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    font-family: 'Cairo', sans-serif;
    font-size: 3rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
}

.breadcrumb {
    background: transparent;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 500;
}

.breadcrumb-item a {
    color: white;
}

.breadcrumb-item.active {
    color: var(--secondary-color);
}

.breadcrumb-item+.breadcrumb-item::before {
    content: '\f104';
    font-family: 'Font Awesome 5 Pro';
    color: white;
    padding: 0 0.8rem;
    font-weight: 900;
    font-size: 1.2rem;
}

@media (min-width:992px) {
    .Projects-section {
    overflow: visible !important;
}

}
.project-filter {
    position: sticky;
    top: 100px;
}

h5.text-primary {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
}

.project-filter .nav-pills .nav-link {
    color: #666;
    padding: 10px 15px;
    margin: 5px 0;
    border-radius: 5px;
    transition: all 0.3s;
    font-weight: 500;
}

.project-filter .nav-pills .nav-link.active,
.project-filter .nav-pills .nav-link:hover {
    background: rgba(46, 62, 168, 0.1);
    color: var(--secondary-color);
}

.project-details-box {
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-details-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    font-family: 'Cairo', sans-serif;
}

.project-details-box p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.project-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.project-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.project-img-container img {
    height: 375px;
    object-fit: cover;
    transition: transform 0.5s;
}

.project-item .project-img-container:hover img {
    transform: scale(1.03);
}

.project-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 6px 15px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.project-feature-list li {
    position: relative;
    margin-bottom: 12px;
    color: #555;
}

.project-gallery .col-sm-4 {
    padding: 10px;
}

.project-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    /* z-index: 5; */
    filter: brightness(0.95) contrast(1.1) sepia(0.4) hue-rotate(-15deg) saturate(1.3);
}

.image-wrapper {
    position: relative;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.project-gallery .image-wrapper:hover {
    transform: scale(1.03);
}


@media (max-width: 767px) {
    

    .project-hero h1 {
        font-size: 2rem;
    }
}

.modal {
    width: 100%;
    overflow: hidden;
}