/* Styles spécifiques pour la page des services */

/* Hero Section for Services Page */
.hero-services {
    position: relative;
    padding-top: 115px;
    padding-bottom: 50px;
    background: url('../images/about-service.jpg') no-repeat center center/cover;
    text-align: center;
    color: #fff;
}

.hero-services-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(132, 143, 154, 0.8), rgba(0, 78, 152, 0.7));
    z-index: 1;
}

.hero-services .container {
    justify-content: center;
    align-items: center;
    display: flex;
    position: relative;
    z-index: 2;
}

.hero-services .hero-content h1 {
    text-align: center;
    color: #fff;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-services .hero-content p {
    text-align: center;
    color: #fff;
    font-family: "Gill Sans Bold" !important;
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

/* La section des services utilise les styles de style.css */
/* Aucun style supplémentaire n'est nécessaire si la structure est identique */

/* CTA Section on Services Page */
#particles-js-services {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.service-cta-button{
    background-color: var('--secondary-color') !important;
}

/* Assurer que le contenu du CTA est au-dessus des particules */
.cta-section .container {
    position: relative;
    z-index: 1;
}

/* Responsive adjustments for services page */
@media (max-width: 768px) {
    .hero-services {
        padding: 100px 0;
    }

    .hero-services .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-services .hero-content p {
        font-size: 1.1rem;
    }
}
