body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header nav {
    width: 100%;
    background-color: #043b3d;
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 10px;
    margin: 0;
    flex-wrap: wrap;
}

header nav ul li {
    margin: 0 15px;
    position: relative;
    padding: 10px 0;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2em;
    padding: 10px;
}

/* Menu déroulant */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #043b3d;
    padding: 10px 0;
    min-width: 200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* Styles responsive */
@media screen and (max-width: 768px) {
    header nav ul {
        flex-direction: column;
        align-items: center;
        padding: 0;
    }

    header nav ul li {
        width: 100%;
        text-align: center;
        margin: 0;
        padding: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        display: none;
        box-shadow: none;
        background-color: rgba(4, 59, 61, 0.9);
    }

    .dropdown-menu li {
        border-bottom: none;
    }

    .dropdown:hover .dropdown-menu {
        display: block;
    }

    /* Bouton hamburger */
    .menu-toggle {
        display: block;
        cursor: pointer;
        padding: 15px;
        background: none;
        border: none;
        position: absolute;
        right: 10px;
        top: 10px;
    }

    .menu-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: white;
        margin: 5px 0;
        transition: 0.3s;
    }

    /* Menu mobile fermé par défaut */
    header nav ul {
        display: none;
    }

    /* Menu mobile ouvert */
    header nav ul.show {
        display: flex;
    }
}

/* Ajustements pour les très petits écrans */
@media screen and (max-width: 480px) {
    header nav ul li a {
        font-size: 1em;
    }

    .dropdown-menu {
        width: 100%;
    }
}

/* Ajout d'un effet de survol sur les éléments du menu */
header nav ul li a:hover {
    border-bottom: 2px solid #0FB9AF;
}

/* Style du menu déroulant */
.dropdown:hover .dropdown-menu {
    display: block; /* Affiche le sous-menu lors du survol */
}

.dropdown-menu li {
    padding: 10px 20px;
}

.dropdown-menu li a {
    color: white;
    text-decoration: none;
    display: block;
}

/* Changer la couleur des liens lorsqu'on les survole */
.dropdown-menu li a:hover {
    background-color: #0FB9AF;
}

main {
    padding-top: 20px; /* Petit padding par défaut */
}

/* Section services */
.services {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.services h1 {
    text-align: center;
    color: #043b3d;
    font-size: 2.5em;
    margin-bottom: 50px;
    position: relative;
}

.services h1::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: #0FB9AF;
    margin: 20px auto;
}

/* Conteneur principal avec effet apaisant */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 40px;
    position: relative;
    margin: 20px;
    border-radius: 25px;
}

/* Bordure apaisante */
.service-grid::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 25px;
    background: linear-gradient(135deg, 
        rgba(4, 59, 61, 0.3),
        rgba(15, 185, 175, 0.3),
        rgba(4, 59, 61, 0.3)
    );
    opacity: 0.4;
    animation: gentlePulse 6s ease-in-out infinite;
}

/* Fond intérieur */
.service-grid::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background: #f4f4f4;
    border-radius: 24px;
    z-index: -1;
}

@keyframes gentlePulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.5;
    }
}

/* Style doux pour les cartes */
.service-card {
    background: linear-gradient(165deg, #005f6bb0, #043b3d);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.5s ease;
    position: relative;
    box-shadow: 0 8px 15px rgba(0,0,0,0.08);
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.12);
}

/* Ajout d'un effet subtil de "monitoring" sur les cartes */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #0FB9AF, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card a {
    text-decoration: none;
    color: white;
    display: block;
    padding: 30px;
    height: 100%;
    position: relative;
    z-index: 1;
}

.service-card h2 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: white;
    position: relative;
    padding-bottom: 15px;
}

.service-card h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #0FB9AF;
}

.service-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95em;
}

/* Icônes pour chaque service */
.service-card::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 20px;
    color: rgba(255, 255, 255, 0.1);
    font-size: 40px;
    z-index: 0;
}

.service-card:nth-child(1)::before { content: '\f201'; } /* Bilan */
.service-card:nth-child(2)::before { content: '\f007'; } /* Séance individuelle */
.service-card:nth-child(3)::before { content: '\f015'; } /* Domicile */
.service-card:nth-child(4)::before { content: '\f0c0'; } /* Groupe */
.service-card:nth-child(5)::before { content: '\f577'; } /* Massage */
.service-card:nth-child(6)::before { content: '\f0f1'; } /* Structures */

/* Media Queries */
@media screen and (max-width: 991px) {
    main {
        padding-top: 80px; /* Plus grand padding uniquement en responsive */
    }

    .services h1 {
        margin-top: 20px;
        margin-bottom: 30px;
    }

    .services-banner {
        margin-top: 20px;
    }

    .banner-image {
        margin-bottom: 20px;
    }

    .banner-text {
        padding: 15px;
    }

    .service-grid {
        margin-top: 30px;
    }

    .service-card {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 768px) {
    .services {
        padding: 40px 15px;
    }

    .services h1 {
        font-size: 2em;
        margin-bottom: 30px;
    }

    .service-card a {
        padding: 25px;
    }

    .service-grid {
        padding: 20px;
        margin: 10px;
    }
}

@media screen and (max-width: 480px) {
    .service-card::before {
        font-size: 30px;
        top: 15px;
        right: 15px;
    }

    .service-card h2 {
        font-size: 1.3em;
    }
}

/* Style pour l'image et le texte côte à côte */
.content-with-image {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
    margin: 0 auto;
}

/* Style pour le texte */
.text-content {
    background: #043b3d;
    padding: 60px;
    border-radius: 25px;
    color: white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin-right: auto;
}

/* Style de l'image */
.section-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    height: 700px;
    width: 100%;
    max-width: 700px;
    margin-left: auto;
}

.section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.section-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 70%, rgba(4, 59, 61, 0.4));
}

.section-image:hover img {
    transform: scale(1.05);
}

/* Style du bouton Prendre rendez-vous */
.btn-rendezvous {
    display: inline-block;
    background-color: #0FB9AF;
    color: white;
    padding: 15px 30px;
    font-size: 1.2em;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 20px;
    text-align: center;
}

.btn-rendezvous:hover {
    background-color: #043b3d;
    transition: background-color 0.3s ease;
}

/* Styles pour la section Interventions en Structures */
.service-details.interventions {
    margin-top: 60px;
    padding: 40px;
    background: #f9f9f9;
    border-radius: 10px;
}

.service-intro {
    text-align: center;
    margin-bottom: 40px;
}

.highlight {
    color: #0FB9AF;
    font-weight: 600;
}

.structures-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    padding: 0;
    list-style: none;
}

.structures-list li {
    background: #0FB9AF;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9em;
}

.services-container {
    margin: 40px 0;
}

.services-container h3 {
    text-align: center;
    color: #043b3d;
    margin-bottom: 30px;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.engagement-section {
    background: white;
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
    text-align: center;
    line-height: 1.6;
}

.cta-container {
    text-align: center;
    margin-top: 40px;
}

/* Media Queries */
@media screen and (max-width: 768px) {
    .service-details.interventions {
        padding: 20px;
        margin-top: 40px;
    }

    .structures-list {
        gap: 10px;
    }

    .structures-list li {
        font-size: 0.8em;
        padding: 6px 12px;
    }

    .service-cards {
        grid-template-columns: 1fr;
    }
}

/* Styles pour la page séances en groupe */
.group-session {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* En-tête de la section */
.session-header {
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(45deg, #043b3d, #0FB9AF);
    padding: 40px 20px;
    border-radius: 15px;
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.session-header h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
    position: relative;
}

.session-header h1::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: white;
    margin: 20px auto;
}

.subtitle {
    font-size: 1.2em;
    font-weight: 500;
    opacity: 0.9;
}

/* Conteneur principal */
.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Cartes d'information */
.workshop-card, 
.benefits-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(15, 185, 175, 0.1);
}

.workshop-card:hover, 
.benefits-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* En-têtes des cartes */
.workshop-card h2, 
.benefits-card h2 {
    color: #043b3d;
    font-size: 1.5em;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #0FB9AF;
}

.workshop-card i, 
.benefits-card i {
    color: #0FB9AF;
    font-size: 1.2em;
}

/* Liste des ateliers */
.workshop-list {
    list-style: none;
    padding: 0;
}

.workshop-list li {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(15, 185, 175, 0.05);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.workshop-list li:hover {
    background: rgba(15, 185, 175, 0.1);
}

.workshop-title {
    color: #0FB9AF;
    font-weight: 600;
    font-size: 1.2em;
    display: block;
    margin-bottom: 10px;
}

/* Liste des avantages */
.benefits-card ul {
    list-style: none;
    padding: 0;
}

.benefits-card li {
    padding: 15px 15px 15px 35px;
    position: relative;
    margin-bottom: 15px;
    background: rgba(15, 185, 175, 0.05);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.benefits-card li:hover {
    background: rgba(15, 185, 175, 0.1);
}

.benefits-card li::before {
    content: '✓';
    color: #0FB9AF;
    position: absolute;
    left: 15px;
    font-weight: bold;
}

/* Image et légende */
.image-content {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.session-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.image-content:hover .session-image {
    transform: scale(1.05);
}

.image-caption {
    background: rgba(4, 59, 61, 0.9);
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 0.9em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: absolute;
    bottom: 0;
    width: 100%;
}

/* Bouton CTA */
.cta-container {
    text-align: center;
    margin-top: 40px;
}

.btn-reservation {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(45deg, #0FB9AF, #043b3d);
    color: white;
    padding: 18px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(15, 185, 175, 0.3);
}

.btn-reservation:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 185, 175, 0.4);
}

/* Media Queries */
@media screen and (max-width: 991px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        max-width: 700px; /* Limite la largeur en responsive */
        margin: 0 auto; /* Centre le contenu */
    }

    .image-content {
        order: -1;
        margin-bottom: 30px;
        max-width: 600px; /* Limite la largeur de l'image */
        margin-left: auto;
        margin-right: auto;
    }

    .text-content {
        max-width: 600px; /* Limite la largeur du texte */
        margin-left: auto;
        margin-right: auto;
    }

    .workshop-card, 
    .benefits-card {
        text-align: center;
        padding: 25px;
    }

    .workshop-card h2, 
    .benefits-card h2 {
        justify-content: center;
    }

    .benefits-card li {
        text-align: left; /* Garde l'alignement à gauche pour la liste */
    }

    .workshop-list li {
        text-align: left; /* Garde l'alignement à gauche pour la liste */
    }
}

@media screen and (max-width: 768px) {
    .group-session {
        padding: 30px 15px;
    }

    .session-header h1 {
        font-size: 2em;
    }

    .image-content,
    .text-content {
        max-width: 100%; /* Utilise toute la largeur disponible */
    }

    .workshop-card, 
    .benefits-card {
        padding: 20px;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 480px) {
    .session-header h1 {
        font-size: 1.8em;
    }

    .subtitle {
        font-size: 1em;
    }

    .btn-reservation {
        width: 100%;
        justify-content: center;
    }

    .workshop-card, 
    .benefits-card {
        padding: 15px;
    }
}

/* Section massage */
.section {
    max-width: 1600px;
    margin: 0 auto;
    padding: 80px 40px;
    background: #f9f9f9;
}

.section-title {
    text-align: center;
    color: #043b3d;
    font-size: 2.8em;
    margin-bottom: 60px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    display: block;
    width: 150px;
    height: 4px;
    background: linear-gradient(to right, #043b3d, #0FB9AF);
    margin: 25px auto;
    border-radius: 2px;
}

.text-content p {
    line-height: 1.9;
    margin-bottom: 30px;
    font-size: 1.1em;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.3px;
}

.keyword {
    color: #0FB9AF;
    font-weight: 700;
    font-size: 1.1em;
}

.text-content ul {
    list-style: none;
    padding: 0;
    margin: 35px 0;
}

.text-content ul li {
    padding: 20px 25px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.text-content ul li:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(10px);
    border-color: rgba(15, 185, 175, 0.3);
}

.text-content ul li::before {
    content: '•';
    color: #0FB9AF;
    font-size: 1.8em;
    margin-right: 15px;
}

.btn-rendezvous {
    display: inline-block;
    background: linear-gradient(45deg, #0FB9AF, #043b3d);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    margin-top: 40px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(15, 185, 175, 0.3);
    letter-spacing: 0.5px;
}

.btn-rendezvous:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(15, 185, 175, 0.4);
    background: linear-gradient(45deg, #043b3d, #0FB9AF);
}

/* Media Queries */
@media screen and (min-width: 1400px) {
    .section {
        max-width: 1600px;
    }

    .content-with-image {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }

    .section-image {
        height: 800px;
    }
}

@media screen and (max-width: 1200px) {
    .content-with-image {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .section-image {
        height: 600px;
    }
}

@media screen and (max-width: 991px) {
    .content-with-image {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-image {
        order: -1;
        max-height: 400px;
        margin-bottom: 30px;
    }

    .text-content {
        padding: 30px;
    }

    .section-title {
        font-size: 2.4em;
    }
}

@media screen and (max-width: 768px) {
    .section {
        padding: 40px 20px;
    }

    .section-title {
        font-size: 2em;
        margin-bottom: 30px;
    }

    .text-content {
        padding: 25px;
    }

    .text-content p {
        font-size: 1em;
        line-height: 1.7;
    }

    .text-content ul li {
        padding: 15px 20px;
        margin-bottom: 10px;
    }

    .section-image {
        height: 350px;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 480px) {
    .section {
        padding: 30px 15px;
    }

    .section-title {
        font-size: 1.8em;
        margin-bottom: 25px;
    }

    .text-content {
        padding: 20px;
    }

    .text-content ul li {
        padding: 12px 15px;
        font-size: 0.95em;
    }

    .section-image {
        height: 300px;
        margin-bottom: 15px;
    }

    .btn-rendezvous {
        width: 100%;
        text-align: center;
        padding: 15px 30px;
        font-size: 1em;
    }

    .keyword {
        font-size: 1em;
    }
}

/* Style pour la carte sans lien */
.service-info {
    padding: 30px;
    color: white;
    position: relative;
}

/* Badge d'information */
.info-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.9);  /* Fond blanc plus opaque */
    color: #043b3d;  /* Couleur du texte en vert foncé */
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    margin-top: 15px;
    font-weight: 500;  /* Texte un peu plus gras */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);  /* Légère ombre pour le contraste */
    border: 1px solid rgba(15, 185, 175, 0.3);
}

/* Au survol */
.info-badge:hover {
    background: #ffffff;  /* Fond blanc pur au survol */
    transform: translateY(-1px);  /* Léger effet de survol */
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

/* Ajout d'une section d'images en bannière */
.services-banner {
    display: block;
    max-width: 1000px;
    margin: 30px auto;
    padding: 0 20px;
}

.banner-images {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.banner-image {
    position: relative;
    flex: 1;
    max-width: 450px;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.banner-image:hover {
    transform: translateY(-3px);
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.banner-image:hover img {
    transform: scale(1.03);
}

.banner-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(4, 59, 61, 0.8));
}

.banner-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: white;
    z-index: 1;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.banner-image:hover .banner-text {
    opacity: 1;
    transform: translateY(0);
}

.banner-text h3 {
    font-size: 1.3em;
    margin-bottom: 5px;
    color: white;
}

.banner-text p {
    font-size: 1em;
    opacity: 0.9;
}

/* Media Queries pour la bannière */
@media screen and (max-width: 991px) {
    .services-banner {
        padding: 0 15px;
    }
    
    .banner-images {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .banner-image {
        width: 100%;
        max-width: 500px;
        height: 250px;
    }
}

@media screen and (max-width: 768px) {
    .banner-image {
        height: 220px;
    }
}

@media screen and (max-width: 480px) {
    .services-banner {
        padding: 0 10px;
    }
    
    .banner-image {
        height: 200px;
    }

    .banner-text h3 {
        font-size: 1.2em;
    }

    .banner-text p {
        font-size: 0.9em;
    }
}

.banner-animation {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 220px;
    background: linear-gradient(135deg, #043b3d, #0FB9AF);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
}

.circle-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.7;
}

.circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    animation: pulse 4s infinite;
}

.circle-1 {
    width: 60px;
    height: 60px;
    border-color: rgba(255, 255, 255, 0.2);
    animation-delay: 0s;
}

.circle-2 {
    width: 90px;
    height: 90px;
    border-color: rgba(255, 255, 255, 0.15);
    animation-delay: 1.3s;
}

.circle-3 {
    width: 120px;
    height: 120px;
    border-color: rgba(255, 255, 255, 0.1);
    animation-delay: 2.6s;
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        transform: scale(1.1);
        opacity: 0;
    }
}

.banner-text {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    color: white;
    z-index: 2;
    text-align: center;
}

.banner-text h3 {
    font-size: 1.4em;
    margin-bottom: 8px;
    font-weight: 500;
}

.banner-text p {
    font-size: 0.95em;
    opacity: 0.85;
}

/* Media Queries */
@media screen and (max-width: 768px) {
    .banner-animation {
        height: 180px;
    }
    
    .circle-1 { width: 50px; height: 50px; }
    .circle-2 { width: 75px; height: 75px; }
    .circle-3 { width: 100px; height: 100px; }
    
    .banner-text h3 { font-size: 1.2em; }
    .banner-text p { font-size: 0.9em; }
}

.line-animation {
    position: relative;
    width: 100%;
    max-width: 300px;
    margin: 30px auto;
    text-align: center;
}

.moving-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, #0FB9AF, #043b3d, transparent);
    position: relative;
    animation: moveLine 3s ease-in-out infinite;
}

@keyframes moveLine {
    0% {
        transform: scaleX(0.3);
        opacity: 0.5;
    }
    50% {
        transform: scaleX(1);
        opacity: 1;
    }
    100% {
        transform: scaleX(0.3);
        opacity: 0.5;
    }
}

.banner-text {
    margin-top: 20px;
}

.banner-text h3 {
    font-size: 1.2em;
    color: #043b3d;
    margin-bottom: 8px;
}

.banner-text p {
    font-size: 0.9em;
    color: #666;
}

/* Media Queries */
@media (max-width: 1200px) {
    .service-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 991px) {
    .services {
        padding: 30px 15px;
    }

    .services h1 {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 20px 10px;
    }

    .services h1 {
        font-size: 2em;
    }

    .service-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 30px auto;
    }

    .service-card {
        min-height: 180px;
    }
}

@media (max-width: 480px) {
    .services h1 {
        font-size: 1.8em;
    }

    .service-card {
        min-height: 160px;
    }
}