/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

	a {
	  color: #006067;
	  text-decoration: none;
	}

	#cookie-banner {
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		z-index: 9999;
		background-color: #2d3748; /* Couleur de fond */
		color: white;
		padding: 1rem; /* Espacement */
		box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2); /* Ombre pour plus de style */
		animation: slideIn 0.5s ease-out;
	}

	@keyframes slideIn {
		from {
			transform: translateY(100%);
		}
		to {
			transform: translateY(0);
		}
	}

	#cookie-banner a {
		color: #63b3ed; /* Couleur du lien */
		text-decoration: underline;
	}

	#cookie-banner a:hover {
		color: #4299e1; /* Couleur au survol */
	}

	#cookie-banner button {
		background-color: #006067; /* Couleur de fond du bouton */
		color: white; /* Couleur du texte */
		border: none;
		padding: 0.5rem 1rem;
		border-radius: 5px;
		cursor: pointer;
		transition: background-color 0.3s ease;
	}

	#cookie-banner button:hover {
		background-color: #004d52; /* Couleur au survol */
	}

	/*--------------------------------------------------------------
	# Sections General
	--------------------------------------------------------------*/
	section {
	  padding: 60px 0;
	  overflow: hidden;
	}

	.section-bg {
	  background-color: #f3f5f8;;
	}

	.section-title {
	  text-align: center;
	  padding-bottom: 30px;
	}
	.section-title h2 {
	  font-size: 32px;
	  font-weight: bold;
	  margin-bottom: 20px;
	  padding-bottom: 20px;
	  position: relative;
	  color: #006067;
	}
	.section-title h2::before {
	  content: "";
	  position: absolute;
	  display: block;
	  width: 120px;
	  height: 1px;
	  background: #ddd;
	  bottom: 1px;
	  left: calc(50% - 60px);
	}
	.section-title h2::after {
	  content: "";
	  position: absolute;
	  display: block;
	  width: 40px;
	  height: 3px;
	  background: #006067;
	  bottom: 0;
	  left: calc(50% - 20px);
	}
	.section-title p {
	  margin-bottom: 0;
	}

	#hero {
	  width: 100%;
	  height: 90vh;
	  background: url("{{ $sliders->slider_image }}") top center;
	  background-size: cover;
	  margin-bottom: -200px;
	}
	#hero .container {
	  position: relative;
	}
	#hero h1 {
	  margin: 0;
	  font-size: 48px;
	  font-weight: 700;
	  line-height: 56px;
	  text-transform: uppercase;
	  color: #006067;
	}
	#hero h2 {
		margin: 5px 0 0 0;
		font-size: 40px;
		font-family: "Roboto Flex", sans-serif;
		position: relative;
		z-index: 1; /* Place le texte au-dessus du fond */
		background: rgba(255, 255, 255, 0.8); /* Fond semi-transparent */
		padding: 0.2em 0.4em; /* Pour éviter que le flou soit trop serré */
		border-radius: 5px; /* Coins arrondis pour un effet plus esthétique */
		backdrop-filter: blur(8px); /* Applique le flou au fond */
		-webkit-backdrop-filter: blur(8px);

		color: #006067;
	}


	/* Texte avec fond flouté */
	.blurred-background {
		position: relative;
		z-index: 1; /* Place le texte au-dessus du fond */
		color: #006067;
		font-size: 40px;
		font-family: "Roboto Flex", sans-serif;
		font-weight: bold;
		background: rgba(255, 255, 255, 0.7); /* Fond semi-transparent */
		/*padding: 0.2em 0.4em;  Pour éviter que le flou soit trop serré */
		border-radius: 5px; /* Coins arrondis pour un effet plus esthétique */
		backdrop-filter: blur(1px); /* Applique le flou au fond */
		-webkit-backdrop-filter: blur(2px); /* Support pour Safari */
	}


	#hero .btn-get-started {
	  font-family: "Raleway", sans-serif;
	  text-transform: uppercase;
	  font-weight: 500;
	  font-size: 14px;
	  letter-spacing: 1px;
	  display: inline-block;
	  padding: 12px 35px;
	  margin-top: 30px;
	  border-radius: 50px;
	  transition: 0.5s;
	  color: #fff;
	  background: #006067;
	}
	#hero .btn-get-started:hover {
	  background: #338085;
	}
	@media (min-width: 1024px) {
	  #hero {
		background-attachment: fixed;
	  }
	}
	@media (max-width: 992px) {
	  #hero {
		background: url("/assets/image/hero-bg-m.png") top center;
		background-repeat: no-repeat;
		/*margin-bottom: 0;
		height: 100vh;*/
		height: 70vh;
	  }
	  #hero .container {
		padding-bottom: 63px;
	  }
	  #hero h1 {
		font-size: 28px;
		line-height: 36px;
	  }
	  #hero h2 {
		font-size: 18px;
		line-height: 24px;
	  }
	  .blurred-background {
		font-size: 18px;
		line-height: 24px;
	  }
	}
	@media (max-height: 600px) {
	  #hero {
		height: 110vh;
	  }
	}
	/*--------------------------------------------------------------
	# Why Us
	--------------------------------------------------------------*/
	.why-us .content {
	  padding: 30px;
	  background: #006067;
	  border-radius: 10px;
	  color: #fff;
	}
	.why-us .content h3 {
	  font-weight: 700;
	  font-size: 34px;
	  margin-bottom: 30px;
	}
	.why-us .content p {
	  margin-bottom: 30px;
	}
	.why-us .content .more-btn {
	  display: inline-block;
	  background: rgba(255, 255, 255, 0.2);
	  padding: 6px 30px 8px 30px;
	  color: #fff;
	  border-radius: 50px;
	  transition: all ease-in-out 0.4s;
	}
	.why-us .content .more-btn i {
	  font-size: 14px;
	}
	.why-us .content .more-btn:hover {
	  color: #006067;
	  background: #fff;
	}
	.why-us .icon-boxes .icon-box {
	  text-align: center;
	  border-radius: 10px;
	  background: #fff;
	  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
	  padding: 40px 30px;
	  width: 100%;
	}
	.why-us .icon-boxes .icon-box i {
	  font-size: 40px;
	  color: #006067;
	  margin-bottom: 30px;
	}
	.why-us .icon-boxes .icon-box h4 {
	  font-size: 20px;
	  font-weight: 700;
	  margin: 0 0 30px 0;
	}
	.why-us .icon-boxes .icon-box p {
	  font-size: 15px;
	  color: #848484;
	}
	/*--------------------------------------------------------------
	# About
	--------------------------------------------------------------*/
	.about .icon-boxes h4 {
	  font-size: 18px;
	  color: #4b7dab;
	  margin-bottom: 15px;
	}
	.about .icon-boxes h3 {
	  font-size: 28px;
	  font-weight: 700;
	  color: #006067;
	  margin-bottom: 15px;
	}
	.about .icon-box {
	  margin-top: 40px;
	}
	.about .icon-box .icon {
	  float: left;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  width: 64px;
	  height: 64px;
	  border: 2px solid #8dc2f1;
	  border-radius: 50px;
	  transition: 0.5s;
	}
	.about .icon-box .icon i {
	  color: #006067;
	  font-size: 32px;
	}
	.about .icon-box:hover .icon {
	  background: #006067;
	  border-color: #006067;
	}
	.about .icon-box:hover .icon i {
	  color: #fff;
	}
	.about .icon-box .title {
	  margin-left: 85px;
	  font-weight: 700;
	  margin-bottom: 10px;
	  font-size: 18px;
	}
	.about .icon-box .title a {
	  color: #343a40;
	  transition: 0.3s;
	}
	.about .icon-box .title a:hover {
	  color: #006067;
	}
	.about .icon-box .description {
	  margin-left: 85px;
	  line-height: 24px;
	  font-size: 14px;
	}
	.about .video-box {
	  background: url("../img/about.jpg") center center no-repeat;
	  background-size: cover;
	  min-height: 500px;
	}
	.about .play-btn {
	  width: 94px;
	  height: 94px;
	  background: radial-gradient(#006067 50%, rgba(25, 119, 204, 0.4) 52%);
	  border-radius: 50%;
	  display: block;
	  position: absolute;
	  left: calc(50% - 47px);
	  top: calc(50% - 47px);
	  overflow: hidden;
	}
	.about .play-btn::after {
	  content: "";
	  position: absolute;
	  left: 50%;
	  top: 50%;
	  transform: translateX(-40%) translateY(-50%);
	  width: 0;
	  height: 0;
	  border-top: 10px solid transparent;
	  border-bottom: 10px solid transparent;
	  border-left: 15px solid #fff;
	  z-index: 100;
	  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	.about .play-btn::before {
	  content: "";
	  position: absolute;
	  width: 120px;
	  height: 120px;
	  -webkit-animation-delay: 0s;
	  animation-delay: 0s;
	  -webkit-animation: pulsate-btn 2s;
	  animation: pulsate-btn 2s;
	  -webkit-animation-direction: forwards;
	  animation-direction: forwards;
	  -webkit-animation-iteration-count: infinite;
	  animation-iteration-count: infinite;
	  -webkit-animation-timing-function: steps;
	  animation-timing-function: steps;
	  opacity: 1;
	  border-radius: 50%;
	  border: 5px solid rgba(25, 119, 204, 0.7);
	  top: -15%;
	  left: -15%;
	  background: rgba(198, 16, 0, 0);
	}
	.about .play-btn:hover::after {
	  border-left: 15px solid #006067;
	  transform: scale(20);
	}
	.about .play-btn:hover::before {
	  content: "";
	  position: absolute;
	  left: 50%;
	  top: 50%;
	  transform: translateX(-40%) translateY(-50%);
	  width: 0;
	  height: 0;
	  border: none;
	  border-top: 10px solid transparent;
	  border-bottom: 10px solid transparent;
	  border-left: 15px solid #fff;
	  z-index: 200;
	  -webkit-animation: none;
	  animation: none;
	  border-radius: 0;
	}
	/*--------------------------------------------------------------
	# Frequently Asked Questions
	--------------------------------------------------------------*/
	.faq .faq-list {
	  padding: 0 100px;
	}
	.faq .faq-list ul {
	  padding: 0;
	  list-style: none;
	}
	.faq .faq-list li + li {
	  margin-top: 15px;
	}
	.faq .faq-list li {
	  padding: 20px;
	  background: #fff;
	  border-radius: 4px;
	  position: relative;
	}
	.faq .faq-list a {
	  display: block;
	  position: relative;
	  font-family: "Poppins", sans-serif;
	  font-size: 16px;
	  line-height: 24px;
	  font-weight: 500;
	  padding: 0 30px;
	  outline: none;
	  cursor: pointer;
	}
	.faq .faq-list .icon-help {
	  font-size: 24px;
	  position: absolute;
	  right: 0;
	  left: 20px;
	  color: #76b5ee;
	}
	.faq .faq-list .icon-show, .faq .faq-list .icon-close {
	  font-size: 24px;
	  position: absolute;
	  right: 0;
	  top: 0;
	}
	.faq .faq-list p {
	  margin-bottom: 0;
	  padding: 10px 0 0 0;
	}
	.faq .faq-list .icon-show {
	  display: none;
	}
	.faq .faq-list a.collapsed {
	  color: #343a40;
	}
	.faq .faq-list a.collapsed:hover {
	  color: #1977cc;
	}
	.faq .faq-list a.collapsed .icon-show {
	  display: inline-block;
	}
	.faq .faq-list a.collapsed .icon-close {
	  display: none;
	}
	@media (max-width: 1200px) {
	  .faq .faq-list {
		padding: 0;
	  }
	}
/*--------------------------------------------------------------
# ChatBot
--------------------------------------------------------------*/
    .chat-widget {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 350px;
        max-width: 90%;
        box-shadow: 0 5px 20px rgba(0,0,0,0.2);
        border-radius: 15px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        font-family: Arial, sans-serif;
        display: none; /* Caché par défaut */
        z-index: 1000;
    }
    .chat-widget.open {
        display: flex;
    }
    .chat-header {
        background-color: #006067;
        color: white;
        padding: 15px;
        font-weight: bold;
        text-align: center;
		position: relative;
    }
    .chat-body {
        flex-grow: 1;
        background-color: #f9f9f9;
        padding: 15px;
        height: 300px;
        overflow-y: auto;
    }
    .chat-message {
        margin-bottom: 10px;
        padding: 8px 12px;
        border-radius: 18px;
        max-width: 80%;
    }
    .bot-message {
        background-color: #e9e9eb;
        align-self: flex-start;
        text-align: left;
    }
    .user-message {
        background-color: #006067;
        color: white;
        align-self: flex-end;
        margin-left: auto; /* Aligne à droite */
        text-align: left;
    }
    .chat-input {
        display: flex;
        border-top: 1px solid #ddd;
    }
    .chat-input input {
        flex-grow: 1;
        border: none;
        padding: 15px;
        outline: none;
    }
    .chat-input button {
        border: none;
        background-color: #006067;
        color: white;
        padding: 0 20px;
        cursor: pointer;
    }

    /* Le bouton pour ouvrir/fermer le chat */
    .chat-toggle-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #006067;
        color: white;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        border: none;
        cursor: pointer;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        font-size: 24px;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1001;
    }
	#chat-close-btn {
		position: absolute;
		top: 50%;
		right: 15px;
		transform: translateY(-50%);
		background: none;
		border: none;
		color: white;
		font-size: 24px;
		cursor: pointer;
	}
	.chat-buttons-container {
		margin-top: 10px;
		display: flex;
		flex-wrap: wrap;
		gap: 5px;
	}
	.chat-reply-button {
		background-color: white;
		border: 1px solid #1977cc;
		color: #1977cc;
		padding: 5px 10px;
		border-radius: 15px;
		cursor: pointer;
		font-size: 14px;
		transition: all 0.2s;
	}
	.chat-reply-button:hover {
		background-color: #1977cc;
		color: white;
	}