/* Global Styles */
/* Applique un style de base universel pour tout le site */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    line-height: 1.6;
	
}

html, body {
    width: 100%;
    overflow-x: hidden; /* Empêche le défilement horizontal */
}

/* Liens : Style par défaut et au survol */

a {
    text-decoration: none;
    color: #333;
}

a:hover {
    color: #0056b3;
}

/* Header */


.header-contact {
    font-size: 18px; /* Taille du texte ajustée */
    font-weight: 400;
    min-height: 50px;
    display: flex; /* Assure un alignement correct */
    align-items: center;
    justify-content: left;
    position: fixed;

    width: 100%;
    z-index: 500;
    background: linear-gradient(to right, #0a2540, #002f6c); /* Couleurs sobres */
    padding-left: 10px;
    text-align: center;
		padding-bottom:10px;

}

.header-contact a {
    color: white;
    text-decoration: none;
}
.header-contact p {
    color: white;
    text-decoration: none;
}



															/* ===== Navigation ===== */
													/* Conteneur des onglets de navigation */
.et-hero-tabs,
.et-slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background: #eee;
    text-align: center;
	margin-top:5%;
    font-family: 'Roboto', sans-serif;
	font-weight: 400; /* Applique la variante de poids */
}

.et-hero-tabs-container {
	min-height:5%;
	font-size:1rem;
    display: flex;
    flex-direction: row;
    position: fixed; /* Positionne en haut */
    top: 0; 
    width: 100%;
    height: 40px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
    background: #F0EDE8; /* Couleur marine foncée et unie pour une esthétique plus épurée */
    z-index: 500;
		margin-top:40px;

}

.et-hero-tab {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    color: #000;
    letter-spacing: 0.1rem;
    transition: all 0.5s ease;
	font-style:bold;
	
	
}
.et-hero-tabR {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    color: white;
		background-color:black;
    cursor: pointer; /* Change le curseur en pointeur pour indiquer que c'est cliquable */

    letter-spacing: 0.1rem;
    transition: all 0.5s ease;
	font-style:bold;
	
	
}

.et-hero-tab:hover {
    color: white;
    background: black;
}
.et-hero-tabR:hover {
    color: black;
    background: #F0EDE8;
}
.et-hero-tab-slider {
    position: absolute;
    bottom: 0;
    width: 0;
    height: 6px;
    background: #66B1F1;
    transition: left 0.3s ease;

}









                                                                /* ===== Menu Smartphone ===== */
                                                             /* =====                      ===== */









summary::after {
  content: "";
  display: inline-block;
  text-align: center;
  letter-spacing: -1px;
  margin: 0 auto;
}

summary::before,
summary::after {
  position: static;
  top: 0;
  left: 0;
}
summary::before {
  content: "";
}

summary:hover {
  transform: scale(1.1);
}
summary::marker {
  font-size: 0;
}
summary::-webkit-details-marker {
  display: none;
}
details[open] .menu {
  animation-name: menuAnim;
}
details[open] summary::before {
  content: "";
}
details[open] summary::after {
  content: "";
}


.menu a:nth-of-type(1) {
  padding-top: 24px;
}
.menu a:nth-last-of-type(1) {
  border-bottom: none;
}



/* Styles pour le conteneur */
.menu-container {
	    display: none; /* Caché par défaut */

    position: fixed;
    top: 1px;
    right: 10px;
    z-index: 700;
}

/* Styles pour le bouton Summary */
summary {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 11px 20px;
    background-color: black; /* Couleur de fond du bouton */
    color: #fff; /* Couleur du texte */
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    transition: transform 0.2s ease, background-color 0.3s ease;
}

summary:hover {
    background-color: #0056b3; /* Couleur de survol */
    transform: scale(1.05); /* Zoom léger */
}

/* Styles pour le menu */
.menu {
    display: none; /* Caché par défaut */
    position: absolute;
    top: 49px; /* Positionné sous le bouton summary */
    right: 0px;
    background-color: #fff; /* Fond blanc pour contraste */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* Ombre portée */
    overflow: hidden;
    z-index: 1000;
    flex-direction: column;
	
}

.menu a {
    padding: 11px 20px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #ddd; /* Ligne de séparation */
    text-align: left;
    transition: background-color 0.3s ease;
}

.menu a:hover {
    background-color: #f0f0f0; /* Couleur de survol des liens */
}

/* Afficher le menu lorsque details est ouvert */
details[open] .menu {
    display: flex;
}


@keyframes menuAnim {
  0% {
    height: 0;
  }
  100% {
    height: 312px;
  }
}
@keyframes fadeMe {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 0;
  }
}














															/* ===== Acceuil ===== */
															/* Section d'accueil */













@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');

.hero-title {
    font-family: 'Roboto', sans-serif; /* Application de la police Roboto */
    font-weight: 300; /* Style Light */
    font-style: italic; /* Italique */
    font-size: 1.4rem; /* Taille du texte */
    color: black; /* Couleur du texte */
    white-space: nowrap; /* Empêche le texte de passer à la ligne */
    overflow: hidden; /* Cache les lettres en dehors du conteneur */
    width: 0; /* Largeur initiale à 0 */
    animation: typing 6s steps(200, end) forwards; /* Animation d'écriture */
    margin-bottom: 20px; /* Espace entre le texte et le logo */
}

@keyframes typing {
    to {
        width: 100%; /* Largeur finale pour révéler tout le texte */
    }
}
	



@keyframes typing {
    from {
        width: 0; /* Commence avec rien visible */
    }
    to {
        width: 100%; /* Affiche tout le texte */
    }
}


#accueil {
	
    position: relative;
    width: 100vw;
    min-height: 100vh; /* Assure une hauteur minimum pour tout le contenu */
    overflow: hidden; /* Évite tout débordement visuel */
    background: linear-gradient(to bottom, #FFD700, #FFA500, #FF8C00, #1E3A5F);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* Les éléments commencent en haut */
    padding: 2rem 1rem; /* Ajoute un peu de respiration */
}



.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	Position:absolute;
    text-align: center;
	width:100%;
}
.logo img {
	padding-top:2%;

				/* Ajusté pour une taille plus compacte */
    position: relative;
    opacity: 0; /* Initialement invisible */
    animation: fadeIn 2s ease forwards;
    margin-bottom: 1rem; /* Ajout d'espace sous le logo */
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}



.search-container {
	    cursor: pointer; /* Change le curseur en pointeur pour indiquer que c'est cliquable */

	z-index:300;
  text-align: center;
    opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
    transition: all 0.3s ease; /* Transition fluide pour le changement de position */
	Position:relative;
}


/* Style après animation : le conteneur devient visible et revient à sa place */
#search-container.visible {
  opacity: 1;
  transform: translateY(0);

}

.search-bar {
  background-color: #F0EDE8;
  border: 1px solid #dcdcdc;
  border-radius: 24px;
  display: flex;
  align-items: center;
  padding: 5px 5px;
  width: 235px;
  box-shadow: 0 5px 12px rgba(0, 1, 12, 1);
}

#search-container.sticky {
  position: fixed; /* Position sticky en haut de l'écran */
  top: 15%;
   transition: opacity 0.5s ease; /* Transition pour le fondu */
  left: auto;
  opacity:0;
  z-index: 500; /* Priorité d'affichage par rapport aux autres éléments */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Facultatif : ajoute une ombre pour le contraste */
}
#search-container.sticky.visible {
  opacity: 0.8; /* L'opacité finale */
}

.typed-text {
  font-size: 16px;
  color: black;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
}

.cursor {
  font-size: 16px;
  color: black;
  animation: blink 0.6s steps(2, start) infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}




.hero-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.3rem; /* Taille adaptée pour l'accessibilité */
    color: black;
    text-align: center;
		font-weight: 400; /* Applique la variante de poids */
	margin:0;
}

.part1,
.part2 {
	
    display: inline-block; /* Nécessaire pour l'animation typing */
    white-space: nowrap;
	font-weight:400;
	color:white;
	
    overflow: hidden; /* Cache le texte débordant */
    width: 0; /* Initialement masqué */
}

.part1 {
    animation: typing-part1 2s steps(100, end) forwards; /* Animation pour "Chaque trajet," */
	
}

.part2 {
	  font-family: 'Roboto', sans-serif; /* Application de la police Roboto */
    font-weight: 300; /* Style Light */
    font-style: italic; /* Italique */
    font-size: 1.4rem; /* Taille du texte */

    animation: typing-part2 2s steps(100, end) forwards; /* Animation pour "une promesse de qualité." */
    animation-delay: 1s; /* Délai pour commencer après "Chaque trajet," */
		font-weight:390;

}

/* Animations */
@keyframes typing-part1 {
    from {
        width: 0; /* Commence avec rien visible */
    }
    to {
        width: 100%; /* Affiche tout le texte */
    }
}

@keyframes typing-part2 {
    from {
        width: 0; /* Commence avec rien visible */
    }
    to {
        width: 100%; /* Affiche tout le texte */
    }
}

.avis {
    margin: 2rem ;
    z-index: 50;
	margin-bottom:1%;
}
.avis img {
    max-width: 150px; /* Ajusté pour une taille compacte */
    height: auto;
    display: inline-block;
    opacity: 0; /* Initialement invisible */
    transition: opacity 1.5s ease-in-out; /* Transition fluide pour le fondu */
}

.avis img.visible {
    opacity: 1; /* Rendre visible après l'animation */
}

#avis-client {
	
    font-size: 1rem;
    font-weight: 400;
    text-align: center;
    color: white;
    line-height: 1.5;
    word-wrap: break-word;
    opacity: 0; /* Initialement invisible */
    transition: opacity 1.5s ease-in-out;
	z-index:100;
}


















																/* ===== BOUTON STICKY ===== */
															/* =====                       ===== */
















#sticky-reservation-button {
    position: fixed;
    top: 10px; /* Ajustez la position verticale */
    right: 10px; /* Ajustez la position horizontale */
    z-index: 1000;
    cursor: pointer; /* Change le curseur en pointeur pour indiquer que c'est cliquable */
}

#sticky-reservation-button img {
    width: 100px; /* Ajustez la taille de l'image */
    height: 100px;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Animation au survol */

}

#sticky-reservation-button img:hover {
    transform: scale(1.1); /* Zoom léger au survol */
}



/* Conteneur du bouton sticky WA */
.alt-taxi-niort-whatsapp-btn {
    position: fixed; /* Fixe le bouton à un endroit spécifique */
    left: -5px; /* Distance depuis le côté droit */
    top: 52.5%; /* Distance depuis le bas */
    z-index: 1000; /* Assure que le bouton soit au-dessus des autres éléments */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%; /* Forme circulaire */
    width: 45px;
    height: 45px;
    transition: transform 0.3s, background-color 0.3s, opacity 0.3s; /* Ajoute une transition pour l'opacité */
    opacity: 0.6; /* Transparence par défaut */
}

.alt-taxi-niort-whatsapp-btn:hover {
    transform: scale(1.1); /* Agrandit légèrement au survol */
    opacity: 1; /* Pleine opacité au survol */
}

/* Style pour l'icône à l'intérieur */
.alt-taxi-niort-whatsapp-btn img {
    width: 40px; /* Taille de l'icône */
    height: 40px;
    object-fit: contain;
}

/* Conteneur du bouton sticky Facebook */
.alt-taxi-niort-facebook-btn {
    position: fixed; /* Fixe le bouton à un endroit spécifique */
    left: -5px; /* Distance depuis le côté droit */
    top: 59%; /* Distance depuis le bas */
    z-index: 1000; /* Assure que le bouton soit au-dessus des autres éléments */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%; /* Forme circulaire */
    width: 45px;
    height: 45px;
    transition: transform 0.3s, background-color 0.3s, opacity 0.3s; /* Ajoute une transition pour l'opacité */
    opacity: 0.6; /* Transparence par défaut */
}

.alt-taxi-niort-facebook-btn:hover {
    transform: scale(1.1); /* Agrandit légèrement au survol */
    opacity: 1; /* Pleine opacité au survol */
}

/* Style pour l'icône à l'intérieur */
.alt-taxi-niort-facebook-btn img {
    width: 40px; /* Taille de l'icône */
    height: 40px;
    object-fit: contain;
}

/* Conteneur du bouton sticky INSTA */
.alt-taxi-niort-instagram-btn {
    position: fixed; /* Fixe le bouton à un endroit spécifique */
    left: -5px; /* Distance depuis le côté droit */
    top: 65.5%; /* Distance depuis le bas */
    z-index: 1000; /* Assure que le bouton soit au-dessus des autres éléments */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%; /* Forme circulaire */
    width: 45px;
    height: 45px;
    transition: transform 0.3s, background-color 0.3s, opacity 0.3s; /* Ajoute une transition pour l'opacité */
    opacity: 0.6; /* Transparence par défaut */
}

.alt-taxi-niort-instagram-btn:hover {
    transform: scale(1.1); /* Agrandit légèrement au survol */
    opacity: 1; /* Pleine opacité au survol */
}

/* Style pour l'icône à l'intérieur */
.alt-taxi-niort-instagram-btn img {
    width: 40px; /* Taille de l'icône */
    height: 40px;
    object-fit: contain;
}

















                                                            /* ===== Partenaires ===== */
                                                          /* =====                ===== */
   










.partenaires {
	padding-top:2%;
    display: flex;
    height: auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    text-align: center;
    position: relative;
    z-index: 10;
}

.partenaires h3 {
    font-size: 2rem;
    color: black;
	margin:5%;
    margin-bottom: 20px;
    font-weight: 600;
}

.logo-container {
	
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: nowrap; /* Empêche l'enroulement */
    overflow-x: none; /* Ajoute un défilement horizontal si nécessaire */
    gap: 20px; /* Espace entre les logos */
    z-index: 200;
    width: 100%; /* Utilisation maximale de l'espace disponible */
}

.logo-partenaire {
    max-height: 200px;
    max-width: 15%; /* Ajuste la taille des logos */
    margin: 0;
    transition: transform 0.3s ease; /* Animation au survol */
    flex-shrink: 0; /* Empêche les logos de rétrécir */
}

.logo-partenaire:hover {
    transform: scale(1.1); /* Effet de zoom au survol */
}








                                                                /* ===== Services ===== */
                                                            /* =====     Services     ===== */












.service-container {
    display: flex;
    flex-wrap: wrap; /* Permet d'adapter la disposition en cas de manque d'espace */
    width: 90%;
	margin:auto;
    max-width: 1200px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.9); /* Couleur blanche semi-transparente */
    overflow: hidden;
}
.services{
	background: linear-gradient(to bottom, #1E3A5F, #134571, #005792, #008bb5);
padding-bottom:2%;
}
.service-left-section,
.service-right-section {
    flex: 1;
    box-sizing: border-box;
}

.service-left-section {
    color: #ffffff; /* Texte blanc */
    text-align: center;
}

.service-left-section h1, 
.service-left-section p {
    margin: 20px 0;
}

.service-image {
    width: 100%;
	
    height: auto;
    display: block;
}

.service-right-section {
    background-color: rgba(255, 255, 255, 0.8); /* Blanc semi-transparente */
    color: #003f82; /* Texte bleu foncé */
}

h1, h2 {
    margin: 0 0 20px;
    color: #ffffff; /* Texte blanc */
}

.service-accordion {
    margin-top: 10px;
}

.service-accordion-item {
    margin-bottom: 10px;
    border: 1px solid #0078d4; /* Bleu clair */
    overflow: hidden;
}

.service-accordion-header {
    width: 100%;
    background: rgba(0, 63, 130, 0.8); /* Bleu sombre semi-transparent */
    color: #ffffff; /* Texte blanc */
    padding: 10px;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 16px;
    outline: none;
}

.service-accordion-header:hover {
    background-color: #005bb5; /* Bleu plus clair */
}

.service-accordion-content {
    display: none;
    padding: 10px;
    background: rgba(255, 255, 255, 0.9); /* Blanc semi-transparente */
    border-top: 1px solid #0078d4; /* Bleu clair */
    color: #003f82; /* Texte bleu foncé */
}

/* === RESPONSIVE DESIGN === */
@media screen and (max-width: 768px) {
    .service-container {
        flex-direction: column; /* Place les sections en colonne */
        width: 95%; /* Réduit légèrement la largeur sur mobile */
    }

    .service-left-section,
    .service-right-section {
        flex: none;
        width: 100%;
    }

    .service-image {
display:none;    }

    .service-accordion-header {
        font-size: 14px; /* Réduit légèrement la taille du texte pour mieux tenir sur les petits écrans */
        padding: 8px;
    }

    .service-accordion-content {
        font-size: 14px; /* Réduit la taille du texte pour une meilleure lisibilité sur mobile */
    }
}

@media screen and (max-width: 480px) {
    .service-image {
        max-width: 150px; /* Réduit encore la taille de l'image sur très petits écrans */
    }

    h1 {
        font-size: 20px; /* Réduit la taille du titre principal */
    }

    .service-accordion-header {
        font-size: 12px; /* Taille du texte réduite pour petits écrans */
    }

    .service-accordion-content {
        font-size: 12px;
        padding: 6px; /* Réduit l'espacement intérieur pour les petits écrans */
    }
}
/* Service Section Styling */
.service-right-section {
    background-color: rgba(255, 255, 255, 0.9); /* Blanc léger */
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.service-title {
    font-size: 24px;
    color: #003f82;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 2px solid #0078d4;
    display: inline-block;
    padding-bottom: 5px;
}

.service-accordion {
    margin-top: 20px;
}

.service-accordion-item {
    margin-bottom: 15px;
    border: 1px solid #0078d4;
    overflow: hidden;
}

.service-accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #0078d4;
    color: white;
    padding: 15px;
    font-size: 18px;
    cursor: pointer;
    border: none;
    width: 100%;
    outline: none;
    transition: background 0.3s ease;
}

.service-accordion-header:hover {
    background: #005bb5;
}

.service-icon {
    margin-right: 10px;
    font-size: 20px;
}

.service-accordion-content {
    display: none;
    background: rgba(255, 255, 255, 0.9);
    color: #003f82;
    padding: 15px;
    font-size: 16px;
    border-top: 1px solid #0078d4;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .service-title {
        font-size: 20px;
    }

    .service-accordion-header {
        font-size: 16px;
        padding: 12px;
    }

    .service-accordion-content {
        font-size: 14px;
        padding: 12px;
    }
}



/* tete seciton service 
/* Styling for Services Intro Section */
.services-intro {
    display: flex;
    flex-wrap: wrap; /* Adjust for smaller screens */
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    color: white;
    margin-bottom: 20px;
    border-radius: 8px; /* Soft corners */
}

.services-intro .intro-content {
    flex: 1 1 60%; /* Occupies more space on larger screens */
    padding: 20px;
    text-align: left;
}

.services-intro .intro-content h1 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.services-intro .intro-content p {
    font-size: 1.2rem;
    line-height: 1.6;
}

.services-intro .intro-image {
    flex: 1 1 35%;
    text-align: center;
    padding: 20px;
	z-index:200;
}

.services-intro .intro-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Call-to-Action Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    color: white;
    background: #005792;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
	z-index:200;
}

.cta-buttons .btn-primary:hover {
    background: #008bb5;
}

.cta-buttons .btn-secondary {
    background: #008bb5;
}

.cta-buttons .btn-secondary:hover {
    background: #005792;
}

/* Separator */
.separator {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.separator .line {
    width: 30%;
    height: 2px;
    background: white;
    margin: 0 10px;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-intro {
        flex-direction: column;
        text-align: center;
    }

    .services-intro .intro-content,
    .services-intro .intro-image {
        flex: 1 1 100%;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .separator .line {
        width: 40%;
    }
}






























                                                                /* ===== Voiture ===== */
                                                                /* ===== Voiture ===== */

















#vehicles-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: absolute;
    z-index: 200;
	padding-top:5%;

    /* Combine image et dégradé */
}


/* Section principale */
.car-section {
    padding: 80px 20px;
    background-size: cover;
    background:linear-gradient(to bottom, #008bb5, #00aaff, #008bb5); /* Dégradé */
padding-top:10%;
    color: white;
}

.car-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 40px;
}

/* Grille des véhicules */
.car-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    justify-items: center;
}

/* Carte véhicule */
.car-vehicle {
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    max-width: 400px;
}

.car-vehicle:hover {
    transform: scale(1.05);
}

.car-vehicle img {
    width: 100%;
    height: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Info véhicule */
.car-info {
    padding: 20px;
    color: #fff;
    text-align: left;
    background: rgba(0, 0, 0, 0.6);
}

.car-info h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.car-info ul {
    padding-left: 20px;
    list-style: none;
}

.car-info ul li {
    margin-bottom: 5px;
    position: relative;
}

.car-info ul li::before {
    content: "✔";
    position: absolute;
    left: -15px;
    color: #4CAF50;
}

/* Galerie (diaporama) */
/* Gallerie (car-gallery) améliorée */
.car-gallery {
    display: flex;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    width: 90%;
    height: auto;
    background: rgba(0, 0, 0, 0.85); /* Fond sombre pour contraster */
    padding: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    opacity: 0;
    transition: all 0.5s ease; /* Animation d'apparition fluide */
    z-index: 20;
    overflow-x: auto; /* Permet de scroller horizontalement si nécessaire */
}

/* Animation d'apparition */
.car-vehicle:hover .car-gallery {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* Images dans la galerie */
.car-gallery img {
    width: 100px;
    height: 100px;
    margin: 0 5px;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    opacity: 0.9; /* Légère transparence */
}

.car-gallery img:hover {
    transform: scale(1.2); /* Zoom au survol */
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.7);
    opacity: 1; /* Retirer la transparence */
}

/* Scrolling pour appareils mobiles */
.car-gallery::-webkit-scrollbar {
    height: 8px;
}



.car-gallery::-webkit-scrollbar-track {
    background: transparent;
}



/* Lightbox */
.lightbox {
    display: none; /* Masqué par défaut */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9); /* Fond sombre */
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeIn 0.5s ease;
}

.lightbox-content {
    position: relative;
    max-width: 90%; /* Réduit la taille maximum */
    max-height: 90%; /* Ajuste pour l'écran */
    text-align: center;
    display: flex;
    justify-content: center; /* Centre horizontalement */
    align-items: center; /* Centre verticalement */
}

.lightbox-image {
    max-width: 80vw; /* Limite la largeur de l'image à 80% de la largeur de la fenêtre */
    max-height: 80vh; /* Limite la hauteur de l'image à 80% de la hauteur de la fenêtre */
    border-radius: 10px; /* Ajoute des coins arrondis */
    transition: transform 0.3s ease;
    object-fit: contain; /* Assure que l'image garde ses proportions */
    margin: auto; /* Centre l'image */
}


.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: background 0.3s ease;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: #f1c40f; /* Couleur dorée au survol */
}

.lightbox-close {
    top: 10px;
    right: 10px;
}

.lightbox-prev {
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
}

.lightbox-next {
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}




/* Dots */
.dots-container {
    text-align: center;
    margin-top: 10px;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.dot.active, .dot:hover {
    background-color: #333;
}

/* Fade Animation */
.fade {
    animation-name: fade;
    animation-duration: 1s;
}

@keyframes fade {
    from {opacity: 0.4;}
    to {opacity: 1;}
}












                                                                /* ===== Why Choose ===== */
                                                                /* ===== Why Choose ===== */









/* Section Why Choose avec fond sombre et élégant */
.why-choose-section {
    padding: 5% 2%;
    background: linear-gradient(to bottom, #008bb5, #87cefa);
    color: #ffffff;
    text-align: center;
	position:relative;
		z-index:200;

}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.intro-text {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.advantages-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: stretch; /* Aligne tous les items à la même hauteur */
}

.advantage-item {
    flex: 1 1 calc(25% - 20px); /* Ajuste la taille pour 4 éléments par ligne, avec un espace */
    max-width: calc(25% - 20px); /* Empêche l'expansion au-delà de 4 par ligne */
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    text-align: left;
    height: 100%; /* S'assure que toutes les cartes soient de la même hauteur */
    display: flex;
    flex-direction: column; /* Aligne le contenu verticalement */
    justify-content: space-between; /* Équilibre le contenu */
}

.advantage-item .icon {
    font-size: 2rem;
    color: #00d4ff;
    margin-bottom: 10px;
}

.advantages-list img {
    max-width: 100%;
    border-radius: 8px;
}


.advantage-item:hover {
    transform: translateY(-10px);
}



.advantage-item h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #00d4ff;
}

.advantage-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #e0e0e0;
}


.advantages h1 {
    font-size: 2.8rem;
    color: #00d4ff; /* Bleu lumineux pour le titre */
    margin-bottom: 25px;
    text-shadow: 0px 3px 8px rgba(0, 0, 0, 0.7); /* Accentuation subtile */
}

.advantages .intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #f8f8f8; /* Blanc cassé pour meilleure lisibilité */
}

.advantages ul {
    list-style-type: none;
    padding: 0;
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: 20px;
}

.advantages li {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
    color: #e0e0e0;
}

.advantages li:before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #00d4ff;
    font-size: 1.5rem;
}

/* Liens et Appel à l'action */
.advantages a.cta-link {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    color: white;
    background-color: #00d4ff;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.advantages a.cta-link:hover {
    background-color: #009fcc;
    transform: scale(1.05);
	
}

/* Image Styling */
.image-containerchoose {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;

}

.image-containerchoose img {
    width: 100%;
    max-width: 500px;
    height: auto;
	
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-containerchoose img:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 1);
}













                                                                /* ===== Section Contact CSS ===== */
                                                                /* ===== Section Contact CSS ===== */













.contact-section {
    background: linear-gradient(to bottom, #87cefa, #ffc0cb, #ff8c00);
  padding: 40px 20px;
  padding-top:10%;
  text-align: center;
  	position:relative;

}

.contact-container {
  max-width: 600px;
  margin: auto;
}

.contact-container h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #333;
}

.contact-container p {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}

.contact-info p a {
  color: #0056b3;
  text-decoration: none;
}

.contact-info p a:hover {
  text-decoration: underline;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  width: 100%;
}

.contact-form button {
  background-color: #0056b3;
  color: white;
  font-size: 16px;
  padding: 12px;
  border: none;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #004494;
}



.availability {
  margin: 20px 0;
  font-size: 16px;
  color: #333;
}

.social-links {
  margin-top: 20px;
}

.social-links a {
  color: #666;
  font-size: 24px;
  margin: 0 10px;
  text-decoration: none;
}

.social-links a:hover {
  color: #0056b3;
}

.privacy-policy {
  margin-top: 20px;
  z-index:1000;
}

.privacy-policy a {
  color: #666;
  font-size: 14px;
  text-decoration: none;
}

.privacy-policy a:hover {
  color: #0056b3;
  text-decoration: underline;
}












/* Footer */
footer {
    padding: 15px; /* Réduire le padding */
    background-color: #333;
    background: linear-gradient(to top, #1e3a5f, #333); /* Dégradé du bleu foncé vers le gris pour une transition douce et professionnelle */
    text-align: center;
}











/* FOND line */
.lines {
 position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%; /* Occupe toute la largeur */
  z-index: 5;
  display: flex; /* Utilise Flexbox pour une répartition automatique */
  justify-content: space-between; /* Espace égal entre les lignes */
}

.line {

  position: absolute; /* Position absolue pour chaque ligne, afin de les positionner précisément */
  width: 1px; /* Largeur très fine pour créer une ligne verticale */
  height: 100%; /* Fait en sorte que chaque ligne prenne la hauteur totale de l'élément .lines */
  top: 0; /* Positionne la ligne au début de son parent */
  left: 50%; /* Positionne la ligne au centre horizontalement du conteneur parent */
  background: rgba(255, 255, 255, 0.1); /* Applique une couleur de fond légèrement translucide à la ligne */
  overflow: hidden; /* Cache tout débordement en dehors de l'élément */

  &::after {
    content: ''; /* Crée un élément après chaque ligne pour appliquer l'effet de gradient */
    display: block; /* Rend l'élément visible */
    position: absolute; /* Positionne cet élément absolument à l'intérieur de la ligne */
    height: 15vh; /* Hauteur de l'élément après la ligne, définie par rapport à la hauteur de la fenêtre */
    width: 100%; /* Prend toute la largeur de l'élément parent */
    top: -50%; /* Le fait apparaître au-dessus de la ligne */
    left: 0; /* Positionne l'élément à gauche */
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 75%, #ffffff 100%); /* Applique un gradient pour simuler un effet de chute */
    animation: drop 7s 0s infinite; /* Applique l'animation de chute de la ligne */
    animation-fill-mode: forwards; /* Garde l'état final de l'animation une fois terminée */
    animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97); /* Animation fluide */
  }

  /* Définition des positions spécifiques des lignes */
  &:nth-child(1) {
    margin-left: -25%; /* Décale la première ligne vers la gauche */
    
    &::after {
      animation-delay: 2s; /* Retarde le début de l'animation de la première ligne */
    }
  }

  &:nth-child(3) {
    margin-left: 25%; /* Décale la troisième ligne vers la droite */
    
    &::after {
      animation-delay: 2.5s; /* Retarde le début de l'animation de la troisième ligne */
    }
  }
}

/* Animation de chute des lignes */
@keyframes drop {
  0% {
    top: -50%; /* Au début, les lignes sont en haut */
  }
  100% {
    top: 110%; /* À la fin, les lignes descendent complètement */
  }
}









                                                                /* ===== Section CONDITION CSS ===== */
                                                                /* ===== Section CONDITION CSS ===== */





















.condi-section {
  font-family: Arial, sans-serif;
  margin: 20px auto;
  padding: 20px;
  max-width: 900px;
  background-color: #f8f9fa;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.condi-accordion-item {
	
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
}

.condi-accordion-header {
  background-color: #0056b3;
  color: #fff;
  padding: 15px;
  font-size: 16px;
  text-align: left;
  border: none;
  width: 100%;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s;
}

.condi-accordion-header:hover {
  background-color: #003d80;
}

.condi-accordion-content {
  display: block;
  padding: 15px;
  background-color: #fff;
  border-top: 1px solid #ddd;
}

.condi-accordion-content p {
  margin: 0 0 10px;
  font-size: 14px;
  color: #333;
}

.mediation-section {

  font-family: Arial, sans-serif;
  margin: 100px auto;
  padding: 20px;
  max-width: 900px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  color: #333;
}

.mediation-section h2 {
  font-size: 24px;
  color: #0056b3;
  margin-bottom: 15px;
}

.mediation-section h3 {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
}

.mediation-section p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.mediation-section ul {
  list-style: disc;
  margin-left: 20px;
}

.mediation-section ul li {
  margin-bottom: 5px;
}

.mediation-section a {
  color: #0056b3;
  text-decoration: none;
}

.mediation-section a:hover {
  text-decoration: underline;
}























/* Déclaration de variables pour une maintenance facilitée */
:root {
  --primary-color: #007bff;
  --primary-hover: #0056b3;
  --overlay-color: rgba(255, 255, 255, 0.8);
  --text-color: #333;
  --text-muted: #555;
  --benefit-bg: #e0e0e0;
  --font-family-base: 'Roboto', sans-serif;
  /* Chemin de l'image d'arrière-plan */
  --background-image: url('final/reservation-seminaire-seminaire-rapide-nouveauté.png');
}

/* Section promotionnelle avec image d'arrière-plan et overlay */
.promo-section {
  position: relative;
  padding: 4rem 1rem;
  background: var(--background-image) center center/cover no-repeat;
  text-align: center;
  font-family: var(--font-family-base);
  color: var(--text-color);
  overflow: hidden;
}

/* Overlay pour améliorer la lisibilité du texte */
.promo-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--overlay-color);
  z-index: 1;
}

/* Conteneur interne, positionné au-dessus de l'overlay */
.promo-container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Titre de la section */
.promo-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color:#0074F0;
  
  font-weight: 700;
}

/* Description de la section */
.promo-description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* Liste des avantages */
.promo-benefits {
  list-style: none;
  padding: 0;
  margin: 0 auto 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.promo-benefit-item {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--benefit-bg);
  border-radius: 20px;
  padding: 0.5rem 1rem;
  margin: 0.3rem;
}

/* Bouton d'appel à l'action */
.promo-btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: var(--primary-color);
  color: #fff;
  text-decoration: none;
  font-size: 1.125rem;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

/* États survol et focus du bouton */
.promo-btn:hover,
.promo-btn:focus {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Adaptations pour les petits écrans */
@media (max-width: 768px) {
  .promo-title {
    font-size: 2rem;
  }
  
  .promo-description {
    font-size: 1rem;
  }
  
  .promo-btn {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
  }
}

















































/* En-tête */
/* Global */
/* Global */
/* Global */






/* En-tête */
.blog-header {
    background: linear-gradient(to bottom, #0056b3, #008bb5);
    color: white;
    text-align: center;
    padding: 3rem 1rem;
}

.blog-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.blog-header p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}


.blog-header .btn-cta {
    padding: 1rem 2rem;
    background: white;
    color: #0056b3;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    transition: background 0.3s ease;
}

.blog-header .btn-cta:hover {
    background: #f8f8f8;
}

/* Navigation des catégories */
.categories-nav {
    background: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 200;
	padding-top:5%;

}

.categories-nav ul {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 1rem 0;
    margin: 0;
    list-style: none;
}

.categories-nav a {
    color: #0056b3;
    font-size: 1rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

.categories-nav a:hover {
    color: #003a80;
}

/* Section Articles */
.articles-section {
    padding: 3rem 1rem;
    background: #f8f8f8;
}

.articles-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-post {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-10px);
}

.blog-post img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-content {
    padding: 1rem;
    text-align: center;
}

.post-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #0056b3;
}

.post-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #666;
}

.btn-read-more {
    padding: 0.5rem 1rem;
    background: #0056b3;
    color: white;
    border-radius: 5px;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-read-more:hover {
    background: #003a80;
}

/* Section Horoscope */
/* Section Horoscope */
.horoscope-section {
    padding: 3rem 1rem;
    background: linear-gradient(to bottom, #008bb5, #0056b3);
    color: white;
    text-align: center;
}

.horoscope-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

/* Carousel Container */
.horoscope-carousel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Masque les éléments en dehors de la zone visible */
    max-width: 100%;
    margin: 0 auto;
}

/* Carousel Track */
.carousel-track {
    display: flex;
    transition: transform 0.3s ease-in-out;
    gap: 20px; /* Espacement entre les articles */
}

/* Section Horoscope */
/* Section Horoscope */
.horoscope-section {
    padding: 3rem 1rem;
    background: linear-gradient(to bottom, #008bb5, #0056b3);
    color: white;
    text-align: center;
}

.horoscope-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

/* Carousel Container */
.carousel-container {
    overflow: hidden; /* Cache les éléments en dehors du cadre */
    width: 900px; /* Largeur pour afficher trois cartes de 300px chacune */
    margin: 0 auto;
    position: relative;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out; /* Smooth animation for carousel movement */
    transform: translateX(0); /* Start position */
}

.horoscope-post {
    min-width: 300px; /* Largeur de chaque carte */
    max-width: 300px;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    margin: 0 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: left;
}

.horoscope-post h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.horoscope-post p {
    font-size: 1rem;
}

/* Carousel Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    z-index: 100;
    transition: background 0.3s ease;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.4);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}






/* Appel à l'action */
.cta-section {
	
    text-align: center;
    padding: 3rem 1rem;
    background: linear-gradient(to bottom, #008bb5, #0056b3);
    color: white;
}

.cta-section .btn-cta {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    background: white;
    color: #0056b3;
    border-radius: 5px;
}

.btn-blog{
	padding-top:30px;
}

.cta-section .btn-cta:hover {
    background: #f8f8f8;
}

/* Pied de page */
footer {
    background: #333;
    color: white;
    padding: 1rem;
    text-align: center;
}

footer a {
    color: #00aaff;
}

footer a:hover {
    color: #008bb5;
}





/* FAQ */

/* FAQ Section Styling */

/* FAQ Section Styling */
.faq-section {
    width: 80%;
    max-width: 1200px;
    margin: 0px auto ;
    background-color: #f9f9f9;
	padding:20px 20px 20px 10px ;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column; /* Forces items into a column */
    gap: 1rem; /* Adds spacing between FAQ items */
}
.faq-section1 {
    width: 80%;
    max-width: 1200px;
    margin: 0px auto ;
	margin-bottom:10px;
    background-color: #f9f9f9;
	padding:20px 20px 20px 10px ;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column; /* Forces items into a column */
    gap: 1rem; /* Adds spacing between FAQ items */
}
.fondfaq{
	background-color:#87CEFA;
	padding:0px;
	margin:0px;
	height:100%:
}

/* FAQ Text Section */
.faq-text {
    flex: 1 1 50%;
    padding: 20px;
}

.faq-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

.faq-text p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* FAQ Image Section */
.faq-image {
    flex: 1 1 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.faq-image img {
    max-width: 50%;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* FAQ Items */
.faq-item {
    display: flex;
    flex-direction: column; /* Ensures questions and answers stack */
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.faq-question {
    padding: 1rem;
    background-color: #07284D;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.faq-question:hover {
    background-color: #003d80;
}
/* FAQ Answer */
.faq-answer {
    display: none; /* Hidden by default */
    padding: 1rem;
    background-color: #e9e9e9;
    color: #333;
    font-size: 0.9rem;
    border-left: 3px solid #0056b3;
}
/* Active Answer Display */
.faq-question.active + .faq-answer {
    display: block; /* Shows the answer when the question is active */
    animation: fadeIn 0.3s ease-in-out;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FAQ Form Styling */
.faq-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 1rem;
}

.faq-form input {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
}

.faq-form button {
    padding: 10px;
    font-size: 1rem;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.faq-form button:hover {
    background-color: #0056b3;
}

/* Add Spacing and Alignment for Section */
.faq-section h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2rem;
    color: #333;
}