/* Hero Banner */
.service-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8)), url('../IMG/01.jpg');
    background-size: cover;
    background-position: center;
    padding: 140px 0 90px;
    color: white;
    text-align: center;
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
}

.service-hero 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-hero .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(--secondary-color);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
}

.breadcrumb-item a:hover {
    color: #f8f8f8;
    transform: translateX(-3px);
}

.breadcrumb-item.active {
    color: white;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: '\f104';
    font-family: 'Font Awesome 5 Pro';
    color: white;
    padding: 0 0.8rem;
    font-weight: 900;
}

@media (max-width: 768px) {
    .service-hero h1 {
        font-size: 2.2rem;
    }

    .service-hero .lead {
        font-size: 1.1rem;
    }

    .breadcrumb {
        padding: 0.5rem 1rem;
    }

    .breadcrumb-item {
        font-size: 0.9rem;
    }
}

/* Service Content */
.service-content{
    background-color: var(--section-bg);
}

.service-content .carousel-container {
    float: left;
    width: 48%;
    margin-right: 2%;
    position: relative;
    z-index: 5;
}

@media (max-width: 992px){
    .service-content .carousel-container {
        width: 100%;
    }
}

.list-unstyled i{
    color: var(--primary-color);
}

/* Carousel Overrides */

.service-content .carousel-indicators [data-bs-target] {
    background-color: var(--secondary-color);
    opacity: 0.7;
}

.service-content .carousel-indicators .active {
    background-color: var(--primary-color);
    opacity: 1;
}

.service-content .carousel-control-prev-icon,
.service-content .carousel-control-next-icon {
    visibility: hidden;
}


.service-content .carousel-container .carousel-inner,
.service-content .carousel-container .carousel-item img {
    border-radius: 0.5rem;
}





/* CTA Section */
.cta-section {
    padding: 90px 0;
    position: relative;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
    color: #fff;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../IMG/5.jpg) no-repeat center center;
}
.cta-section h2,
.cta-section p {
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}


/* Responsive */
@media (max-width: 768px) {
    .service-hero {
        height: 50vh;
    }

    .service-hero h1 {
        font-size: 2.5rem;
    }
    
}





