/* 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;
}

.service-intro {
    position: relative;
    overflow: hidden;
    background-color: var(--sectoin-color);
}
.service-intro  h2{
    color: var(--blue-color);
}

.img-container {
    /* box-shadow: 0 15px 30px rgba(0,0,0,0.1); */
    transition: all 0.3s ease;
    max-width: 40%;
    float: left;
}

@media (max-width: 768px){
    .img-container {
        max-width: 100%;
    }
}

.img-container:hover {
    transform: translateY(-5px);
}


.service-details ul li {
    position: relative;
    padding-right: 25px;
    margin-bottom: 10px;
}

.service-details ul li i {
    position: absolute;
    right: 0;
    top: 3px;
}


.cta-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: 
        url('../IMG/img07.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    
}

.cta-section .btn{
    padding: 0.55rem 2rem;
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-section .d-flex {
        flex-direction: column;
        gap: 15px !important;
    }
    
    .cta-section .btn {
        width: 100%;
    }
}