@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Open+Sans:wght@300;400;600;700&display=swap");

/* Nouvelle palette de couleurs */
:root {
  --primary-color: #3498db;
  /* Bleu principal - remplace orange/rouge */
  --secondary-color: #2c3e50;
  /* Bleu foncé pour accent */
  --accent-color: #1abc9c;
  /* Vert turquoise pour mise en évidence */
  --dark-bg: #1a202c;
  /* Fond sombre plus moderne */
  --light-text: #ecf0f1;
  /* Texte clair */
  --medium-bg: #2d3748;
  /* Fond intermédiaire */
  --gradient-start: #2c3e50;
  /* Début du dégradé de fond */
  --gradient-end: #1a202c;
  /* Fin du dégradé de fond */
  --button-hover: #2980b9;
  /* Couleur de survol des boutons */
  --border-color: #4a5568;
  /* Couleur des bordures */
}

p {
  color: var(--light-text);
}

/* Appliquer une taille spécifique à toutes les images dans .custom-img */
.annotate {
  padding-top: 100px;
}

.opacity_backgraund {
  background: rgba(44, 62, 80, 0.1);
}

.custom-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  border: 3px solid var(--border-color);
  border-radius: 12px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

/* Si vous souhaitez une taille uniforme pour toutes les images, ajustez aussi la hauteur de la colonne */
.annotate .col-md-6 .img-box {
  height: 300px;
}

.annotate_background {
  background: var(--medium-bg);
}

.annotate-heading-container {
  background: var(--primary-color);
  color: var(--light-text);
  padding: 70px 0;
  border-radius: 12px;
  margin-bottom: 50px;
}

.round-custom-img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.round-custom-img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  border: 3px solid var(--border-color);
  border-radius: 50%;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
}

/* Appliquer une forme hexagonale à l'image */
.polygon-img {
  margin: 20px;
  clip-path: polygon(50% 0%, 100% 30%, 80% 100%, 20% 100%, 0% 30%);
}

.blog-content .card {
  border: 1px solid var(--border-color);
  background: transparent;
}

.blog-content .card-title {
  color: var(--light-text);
}

.blog-content .card-img-top {
  border-radius: 0.5rem 0.5rem 0 0;
}

.blog-content .card-text {
  color: var(--light-text);
}

.finance-card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.finance-card img {
  border-radius: 15px;
  object-fit: cover;
  height: 100%;
}

.finance-card-body {
  background-color: var(--medium-bg);
  padding: 20px;
  border-radius: 0 0 15px 15px;
  color: var(--light-text);
}

@media (max-width: 768px) {
  .finance-heading-container h2 {
    font-size: 2rem;
  }
}

.subtitle-heading-container {
  padding: 70px 0;
  margin: 0;
}

.subtitle-heading-container h2 {
  font-weight: bold;
  background: linear-gradient(60deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  color: transparent;
  display: inline;
}

@media (max-width: 768px) {
  .subtitle-heading-container {
    padding: 50px 20px;
    margin: 30px 50px;
  }
}

@media (max-width: 480px) {
  .subtitle-heading-container {
    padding: 30px 15px;
    margin: 20px 15px;
    font-size: 14px;
  }
}

.subtitle-heading-container h2 {
  font-size: 2.5rem;
  font-weight: bold;
}

@media (max-width: 768px) {
  .subtitle-heading-container h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .subtitle-heading-container h2 {
    font-size: 1.5rem;
  }
}

.subtitle h3 {
  font-weight: bold;
  color: var(--accent-color);
  display: inline;
}

.subtitle p {
  color: var(--light-text);
}

.title {
  font-weight: bold;
  color: var(--accent-color);
}

.orange-btn-custom {
  background: var(--primary-color);
  color: var(--light-text);
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-subcrire {
  background: var(--primary-color) !important;
  color: var(--light-text)  !important;
  border: none  !important;
  padding: 12px 25px  !important;
  font-size: 16px  !important;
  font-weight: bold;
  cursor: pointer;
  border-radius: 30px  !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2)  !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease  !important;
}

.btn-subcrire:hover {
  background: var(--button-hover);
  color: var(--light-text);
  transform: scale(1.05);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.orange-btn-custom:hover {
  background: var(--button-hover);
  color: var(--light-text);
  transform: scale(1.05);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.btn-link-blok {
  color: var(--primary-color);
  background: none;
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  cursor: pointer;
  text-decoration: underline;
  display: inline-block;
  box-shadow: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-link-blok:hover {
  color: var(--accent-color);
  transform: scale(1.05);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.annotate_background {
  background: radial-gradient(circle, var(--gradient-start), var(--gradient-end));
}

/* Limiter le texte à des lignes spécifiques et ajouter des points de suspension si le texte dépasse */
.limited-text {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.limited-text2 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.limited-text3 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.limited-text4 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.service_section .heading_container p {
  font-size: 1rem;
  color: var(--light-text);
}

.service_section .service-card {
  background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
  border-radius: 10px;
  color: var(--light-text);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service_section .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service_section .service-card img {
  filter: drop-shadow(0px 5px 10px rgba(255, 255, 255, 0.5));
}

.service_section .service-card .card-title {
  font-size: 1.25rem;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--light-text);
}

.service_section .service-card .card-text {
  font-size: 1rem;
  color: var(--light-text);
}

.service_section .service-card .btn {
  background-color: var(--accent-color);
}

.carousel.slide2 .client {
  padding: 1em;
}

.carousel.slide2 .client .card {
  padding: 1em;
  border-radius: 25px;
  margin: 2.5em;
  box-shadow: 2px 6px 8px 0 rgba(22, 22, 26, 0.18);
  border: none;
  background-color: var(--medium-bg);
  color: var(--light-text);
}

.carousel.slide2 .client .card .card-head .card-image {
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.carousel.slide2 .client .card .card-head span {
  font-size: 0.9rem;
  color: var(--light-text);
}

.carousel.slide2 .client .card .card-body {
  padding: 1rem;
}

.carousel.slide2 .client .card .card-body .card-text {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--light-text);
  font-style: italic;
}

.carousel.slide2 .client .card p {
  font-size: 0.9em;
  color: var(--light-text);
}

@media (min-width: 768px) {
  .carousel.slide2 .client .card {
    max-width: 400px;
  }

  .carousel.slide2 .client .card-body .card-text {
    font-size: 1.1rem;
  }
}

@media (min-width: 1024px) {
  .carousel.slide2 .client .card {
    max-width: 450px;
  }

  .carousel.slide3 .card {
    max-width: 32rem !important;
    width: 100% !important;
  }
}

.carousel.slide2 .carousel-control-prev,
.carousel.slide2 .carousel-control-next {
  background-color: var(--border-color);
  width: 6vh;
  height: 6vh;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

@media (min-width: 768px) {
  .carousel.slide2 .carousel-inner {
    display: flex;
  }

  .carousel.slide2 .carousel-item {
    margin-right: 0;
    flex: 0 0 33.333333%;
    display: block;
  }
}

.carousel.slide3 .card {
  padding: 1em;
  border-radius: 25px;
  margin: 2.5em;
  box-shadow: 2px 6px 8px 0 rgba(22, 22, 26, 0.18);
  border: none;
  background-color: var(--medium-bg);
  color: var(--light-text);
}

.carousel.slide3 .client .card .card-head p {
  font-size: 0.9rem;
  color: var(--light-text);
}

.carousel.slide3 .client .card .card-body .card-text {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--light-text);
  font-style: italic;
}

.process-section {
  padding: 3rem 0;
}

.process-section .text-gradient {
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.process-section .row {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.step-card {
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  background-color: var(--medium-bg);
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.step-card .step-icon {
  width: 200px;
  height: 90px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-text);
  font-size: 1.5rem;
}

.step-card .step-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: var(--accent-color);
}

.step-card .step-description {
  color: var(--light-text);
  text-align: center;
  font-style: italic;
}

body {
  font-family: "Cabinetgrotesk", sans-serif;
  color: var(--light-text);
  background: radial-gradient(circle, var(--gradient-start), var(--gradient-end));
  overflow-x: hidden;
}

.layout_padding {
  padding: 90px 0;
}

.layout_padding2 {
  padding: 75px 0;
}

.layout_padding2-top {
  padding-top: 75px;
}

.layout_padding2-bottom {
  padding-bottom: 75px;
}

.layout_padding-top {
  padding-top: 90px;
}

.layout_padding-bottom {
  padding-bottom: 90px;
}

.heading_container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.heading_container h2 {
  position: relative;
  font-weight: bold;
  margin-bottom: 0;
  color: var(--light-text);
}

.heading_container h2 span {
  color: var(--accent-color);
}

.heading_container p {
  margin-top: 10px;
  margin-bottom: 0;
  color: var(--light-text);
}

.heading_container.heading_center {
  align-items: center;
  text-align: center;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--accent-color);
}

.btn,
.btn:focus {
  outline: none !important;
  box-shadow: none;
}

/*header section*/
.hero_area {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero_area .hero_bg_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;
  z-index: -1;
}

.hero_area .hero_bg_box .bg_img_box {
  min-width: 100%;
  min-height: 100%;
}

.hero_area .hero_bg_box img {
  min-width: 100%;
  min-height: 100%;
}

.sub_page .hero_area {
  min-height: auto;
}

.sub_page .hero_area .hero_bg_box {
  display: none;
}

.header_section {
  padding: 15px 0;
}

.header_section .container-fluid {
  padding-right: 25px;
  padding-left: 25px;
}

.navbar-brand span {
  font-weight: bold;
  font-size: 24px;
  color: var(--light-text);
}

.custom_nav-container {
  padding: 0;
}

.custom_nav-container .navbar-nav {
  font-size: 12px;
  margin-left: auto;
}

.custom_nav-container .navbar-nav .nav-item.dropdown .dropdown-menu {
  background: var(--light-text);
  border: transparent;
  color: var(--light-text);
  display: none;
  opacity: 0;
  transform: translateY(-100000px);
  transition: all 0.8s ease;
}

.custom_nav-container .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:hover {
  color: var(--accent-color);
  background-color: transparent;
}

.custom_nav-container .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
  opacity: 1;
  transform: translateY(0);
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
  padding: 5px 20px;
  color: var(--light-text);
  text-align: center;
  text-transform: uppercase;
  border-radius: 5px;
  transition: all 0.3s;
}

.custom_nav-container .navbar-nav .nav-item:hover .nav-link,
.custom_nav-container .navbar-nav .nav-item.active .nav-link {
  color: var(--primary-color);
  cursor: pointer;
}

.custom_nav-container .navbar-nav .nav-item.active .nav-link {
  font-weight: 600;
}

.custom_nav-container .nav_search-btn {
  width: 35px;
  height: 35px;
  padding: 0;
  border: none;
  color: var(--light-text);
}

.custom_nav-container .nav_search-btn:hover {
  color: var(--primary-color);
}

.custom_nav-container .navbar-toggler {
  outline: none;
}

.custom_nav-container .navbar-toggler {
  padding: 0;
  width: 37px;
  height: 42px;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span {
  display: block;
  width: 35px;
  height: 4px;
  background-color: var(--light-text);
  margin: 7px 0;
  transition: all 0.3s;
  position: relative;
  border-radius: 5px;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::before,
.custom_nav-container .navbar-toggler span::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--light-text);
  top: -10px;
  border-radius: 5px;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::after {
  top: 10px;
}

.custom_nav-container .navbar-toggler[aria-expanded=true] {
  transform: rotate(360deg);
}

.custom_nav-container .navbar-toggler[aria-expanded=true] span {
  transform: rotate(45deg);
}

.custom_nav-container .navbar-toggler[aria-expanded=true] span::before,
.custom_nav-container .navbar-toggler[aria-expanded=true] span::after {
  transform: rotate(90deg);
  top: 0;
}

/*end header section*/
/* slider section */
.slider_section {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  padding: 45px 0 145px 0;
}

.slider_section .row {
  align-items: center;
}

.slider_section #customCarousel1 {
  width: 100%;
  position: unset;
}

.slider_section .detail-box {
  color: var(--light-text);
}

.slider_section .detail-box h1 {
  font-size: 3rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: var(--light-text);
}

.slider_section .detail-box p {
  color: var(--light-text);
  font-size: 14px;
}

.slider_section .detail-box .btn-box {
  display: flex;
  margin: 0 -5px;
  margin-top: 25px;
}

.slider_section .detail-box .btn-box a {
  margin: 5px;
  text-align: center;
  width: 165px;
}

.slider_section .detail-box .btn-box .btn1 {
  display: inline-block;
  padding: 10px 15px;
  background-color: var(--primary-color);
  color: var(--light-text);
  border-radius: 0;
  transition: all 0.3s;
  border: none;
}

.slider_section .detail-box .btn-box .btn1:hover {
  background-color: var(--button-hover);
}

.slider_section .detail-box .btn-box .btn2 {
  display: inline-block;
  padding: 10px 15px;
  background-color: var(--secondary-color);
  color: var(--light-text);
  border-radius: 0;
  transition: all 0.3s;
  border: none;
}

.slider_section .detail-box .btn-box .btn2:hover {
  background-color: var(--dark-bg);
}

.slider_section .img-box {
  margin: 45px 0;
}

.slider_section .img-box img {
  width: 100%;
  animation: upDown 5s infinite;
}

@keyframes upDown {
  0% {
    transform: translateY(-45px);
  }

  50% {
    transform: translateY(45px);
  }

  100% {
    transform: translateY(-45px);
  }
}

.slider_section .carousel-indicators {
  position: unset;
  margin: 0;
  justify-content: center;
  align-items: center;
}

.slider_section .carousel-indicators li {
  background-color: var(--light-text);
  width: 12px;
  height: 12px;
  border-radius: 100%;
  opacity: 1;
}

.slider_section .carousel-indicators li.active {
  width: 20px;
  height: 20px;
  background-color: var(--primary-color);
}

.service_section {
  position: relative;
}

.service_section .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 45px;
  background-color: var(--medium-bg);
  padding: 20px;
  border-radius: 5px;
}

.service_section .box .img-box {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 125px;
  min-width: 75px;
  height: 75px;
  margin-bottom: 15px;
}

.service_section .box .img-box img {
  max-width: 100%;
  max-height: 100%;
  transition: all 0.3s;
}

.service_section .box .detail-box h5 {
  font-weight: bold;
  text-transform: uppercase;
  color: var(--light-text);
}

.service_section .box .detail-box a {
  color: var(--accent-color);
  font-weight: 600;
}

.service_section .box .detail-box a:hover {
  color: var(--primary-color);
}

.service_section .btn-box {
  display: flex;
  justify-content: center;
  margin-top: 45px;
}

.service_section .btn-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: var(--primary-color);
  color: var(--light-text);
  border-radius: 0;
  transition: all 0.3s;
  border: none;
}

.service_section .btn-box a:hover {
  background-color: var(--button-hover);
}

.about_section {
  color: var(--light-text);
}

.about_section .heading_container {
  margin-bottom: 45px;
}

.about_section .row {
  align-items: center;
}

.about_section .img-box img {
  max-width: 100%;
}

.about_section .detail-box h3 {
  font-weight: bold;
  color: var(--light-text);
}

.about_section .detail-box p {
  margin-top: 15px;
  color: var(--light-text);
}

.about_section .detail-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: var(--primary-color);
  color: var(--light-text);
  border-radius: 0px;
  transition: all 0.3s;
  border: none;
  margin-top: 15px;
}

.about_section .detail-box a:hover {
  background-color: var(--button-hover);
}

.why_section .card {
  background-color: var(--medium-bg);
  border: 1px solid var(--primary-color);
  color: var(--light-text);
  box-shadow: -15px -9px 55px -8px rgba(0, 0, 0, 0.82);
  border-radius: 10px;
}

.why_section .card .list-group li {
  color: var(--light-text) !important;
  background-color: var(--medium-bg);
}

.why_section .box {
  margin-top: 45px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.why_section .box .img-box {
  margin-bottom: 20px;
  width: 120px;
  height: 120px;
  min-width: 120px;
  min-height: 120px;
  border-radius: 100%;
  border: 5px solid var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

.why_section .box .img-box img {
  width: 55px;
  height: auto;
  fill: var(--primary-color);
}

.why_section .box h5 {
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--light-text);
}

.why_section .box p {
  margin-bottom: 0;
  color: var(--light-text);
}

.why_section .btn-box {
  display: flex;
  justify-content: center;
  margin-top: 45px;
}

.why_section .btn-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: var(--primary-color);
  color: var(--light-text);
  border-radius: 0;
  transition: all 0.3s;
  border: none;
}

.why_section .btn-box a:hover {
  background-color: var(--button-hover);
}

/* chatbot section */
.chatbox-image {
  display: flex;
  width: 75px;
  height: 75px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  flex-direction: column;
  z-index: 9999;
}


/* chatbot section */
.chatbox-image {
  display: flex;
  /* Caché par défaut */
  width: 75px;
  height: 75px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  flex-direction: column;
  z-index: 9999;
  /* Une valeur élevée pour être au-dessus des autres */
}

.chatbox {
  display: none;
  /* Caché par défaut */
  width: 350px;
  height: 500px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--light-text);
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 9999;
  /* Une valeur élevée pour être au-dessus des autres */
}

.chat-header {
  background: var(--primary-color);
  border: var(--accent-color);
  color: var(--light-text);
}

.chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 15px;
  background: var(--light-text);
}

.chat-footer {
  padding: 10px;
  border-top: 1px solid #ddd;
  display: flex;
  align-items: center;
  background: var(--light-text);
}

.chat-footer input {
  flex: 1;
  border: none;
  border-radius: 20px;
  outline: none;
  background: var(--light-text);
}

.chat-footer button {
  background: var(--primary-color);
  border: none;
  color: var(--light-text);
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.chat-footer button:hover {
  background: var(--accent-color);
}

.message {
  margin-bottom: 10px;
  display: flex;
}

.message.sent {
  justify-content: flex-end;
}

.message .bubble {
  max-width: 70%;
  padding: 12px;
  border-radius: 15px;
  font-size: 14px;
  line-height: 1.4;
  word-wrap: break-word;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.message.received .bubble {
  background: var(--light-text);
  color: var(--medium-bg);
}

.message.sent .bubble {
  background: var(--primary-color);
  color: var(--light-text);
  text-align: right;
}

.loading {
  font-style: italic;
  opacity: 0.6;
}

.typing-indicator {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px;
  background: var(--light-text);
  border-radius: 20px;
  width: fit-content;
}

.dot {
  width: 8px;
  height: 8px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  animation: typing 1.5s infinite ease-in-out;
}

.dot:nth-child(1) {
  animation-delay: 0s;
}

.dot:nth-child(2) {
  animation-delay: 0.2s;
}

.dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing {

  0%,
  80%,
  100% {
    transform: translateY(0);
    opacity: 0.3;
  }

  40% {
    transform: translateY(-5px);
    opacity: 1;
  }
}

/* Temoignage section */
.choix-secteur-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
}

.choix-secteur {
  display: flex;
  animation: scroll 10s linear infinite;
}

.choix-secteur-content {
  display: flex;
}

.choix-secteur-item {
  display: inline-block;
  padding: 15px;
  font-size: 1.2em;
}

@keyframes scroll {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

/*team section */
.team_section {
  text-align: center;
  color: var(--light-text);
}

.team_section .heading_container {
  justify-content: center;
}

.team_section .team_container {
  padding: 0 15px;
}

.team_section .team_container .box {
  padding: 35px 0 0 0;
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.1s;
  margin-top: 45px;
  background: var(--medium-bg);
  border: 1px solid var(--light-text);
}

.team_section .team_container .box .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.team_section .team_container .box .img-box img {
  width: 120px;
  border-radius: 100%;
  border: 5px solid var(--light-text);
}

.team_section .team_container .box .detail-box {
  margin: 25px 0;
}

.team_section .team_container .box .detail-box h5 {
  color: var(--accent-color);
  font-weight: 600;
  position: relative;
}

.team_section .team_container .box .detail-box p {
  color: var(--light-text);
}

.team_section .team_container .box .social_box {
  padding: 10px 45px 20px 45px;
  display: flex;
  justify-content: space-between;
}

.team_section .team_container .box .social_box a {
  color: var(--light-text);
  font-size: 22px;
}

.team_section .team_container .box .social_box a i {
  color: var(--primary-color);
}

.team_section .team_container .box .social_box a:hover {
  color: var(--primary-color);
}

/*team section end*/
/* client section start */
.client_section .heading_container {
  margin-bottom: 30px;
}

.client_section .box {
  display: flex;
  flex-direction: column;
  margin: 15px;
}

.client_section .box .img-box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  margin-bottom: -50px;
  margin-left: 25px;
}

.client_section .box .img-box img {
  border-radius: 100%;
}

.client_section .box .client_id {
  display: flex;
  justify-content: space-between;
}

.client_section .box .client_id .client_info h6 {
  font-weight: 600;
  margin-bottom: 5px;
}

.client_section .box .client_id .client_info p {
  margin-bottom: 0;
  font-size: 15px;
  font-size: 14px;
  margin-bottom: 10px;
}

.client_section .box .detail-box {
  background-color: var(--light-text);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
  padding: 75px 25px 25px 25px;
}

.client_section .box .detail-box i {
  color: var(--gradient-start);
  margin-bottom: 10px;
}

.client_section .owl-carousel .owl-nav {
  display: flex;
  justify-content: center;
  margin-top: 45px;
}

.client_section .owl-carousel .owl-nav .owl-prev,
.client_section .owl-carousel .owl-nav .owl-next {
  width: 55px;
  height: 55px;
  background-color: var(--light-text);
  color: var(--dark-bg);
  outline: none;
  bottom: 0px;
  font-size: 24px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
}

.client_section .owl-carousel .owl-nav .owl-prev:hover,
.client_section .owl-carousel .owl-nav .owl-next:hover {
  color: var(--dark-bg);
}

/* client section end */
.info_section {
  color: var(--light-text);
  padding: 45px 0 15px 0;
}

.info_section h4 {
  font-weight: 600;
  margin-bottom: 20px;
}

.info_section .info_col {
  margin-bottom: 30px;
}

.info_section .info_contact .contact_link_box {
  display: flex;
  flex-direction: column;
}

.info_section .info_contact .contact_link_box a {
  margin: 5px 0;
  color: var(--light-text);
}

.info_section .info_contact .contact_link_box a i {
  margin-right: 5px;
}

.info_section .info_contact .contact_link_box a:hover {
  color: var(--accent-color);
}

.info_section .info_social {
  display: flex;
  margin-top: 20px;
  margin-bottom: 10px;
}

.info_section .info_social a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--light-text);
  border-radius: 100%;
  margin-right: 10px;
  font-size: 24px;
}

.info_section .info_social a:hover {
  color: var(--accent-color);
}

.info_section .info_links {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

.info_section .info_links a {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: var(--light-text);
}

.info_section .info_links a:hover {
  color: var(--button-hover);
}

.info_section form input {
  border: none;
  border-bottom: 1px solid var(--light-text);
  background-color: transparent;
  width: 100%;
  height: 45px;
  color: var(--light-text);
  outline: none;
}

.info_section form input::placeholder {
  color: var(--light-text);
}

.info_section form button {
  width: 100%;
  text-align: center;
  display: inline-block;
  padding: 10px 55px;
  background-color: var(--button-hover);
  color: var(--light-text);
  border-radius: 0;
  transition: all 0.3s;
  border: none;
  margin-top: 15px;
}

.info_section form button:hover {
  background-color: rgb(0, 127.39375, 163.5);
}

/* footer section*/
.footer_section {
  z-index: -9999;
  text-align: center;
}

.footer_section p {
  color: var(--light-text);
  padding: 25px 0;
  margin: 0;
}

.footer_section p a {
  color: inherit;
}

.why-choose-databoost {
  text-align: center;
}

.why-choose-databoost .container-fluid {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.why-choose-databoost .container-fluid .carousel .carousel-inner .carousel-item .cards {
  height: 100%;
  display: flex;
}

.why-choose-databoost .container-fluid .carousel .carousel-inner .carousel-item .cards .texte {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-choose-databoost .container-fluid .carousel .carousel-inner .carousel-item .cards .texte .text-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 10%;
}

.why-choose-databoost .container-fluid .carousel .carousel-inner .carousel-item .cards .texte .text-left p {
  text-align: justify;
  font-size: 1rem;
  line-height: 1.8;
  color: #f5f5f5;
  margin-bottom: 2rem;
}

/* Styles pour le carrousel avec la classe .slide-custom */
.carousel.slide-custom .carousel-item {
  position: relative;
}

/* Style pour le slide custom */
.carousel.slide-custom .carousel-item:nth-child(2) {
  background-color: var(--light-text);
  /* Couleur de fond personnalisée */
  color: var(--medium-bg);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
  /* Taille du slide */
}

.carousel.slide-custom .carousel-custom-content {
  text-align: center;
  padding: 20px;
  max-width: 80%;
  background-color: rgba(0, 0, 0, 0.6);
  /* Fond sombre pour la lisibilité */
  border-radius: 15px;
}

.carousel.slide-custom .carousel-custom-content h2 {
  font-size: 2.5rem;
  color: var(--light-text);
  margin-bottom: 20px;
}

.carousel.slide-custom .carousel-custom-content p {
  font-size: 1.2rem;
  color: var(--light-text);
}

/* Styles des flèches de navigation */
.carousel.slide-custom .carousel-control-prev-icon,
.carousel.slide-custom .carousel-control-next-icon {
  filter: invert(1);
  /* Flèches blanches */
}

/* Réactivité pour appareils mobiles */
@media (max-width: 768px) {
  .carousel.slide-custom .carousel-custom-content h2 {
    font-size: 2rem;
  }

  .carousel.slide-custom .carousel-custom-content p {
    font-size: 1rem;
  }
}


/* bloge detail */

.detail_blog-section {
  background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
  padding: 2rem 0;
  min-height: 100vh;
}

.detail_blog-card {
  background: rgba(32, 35, 42, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.detail_blog-title {
  color: #00D8FF;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.detail_blog-image {
  object-fit: cover;
  max-height: 400px;
  width: 100%;
  border-radius: 8px;
}

.detail_blog-meta {
  color: #8892B0;
}

.detail_blog-meta .detail_blog-date,
.detail_blog-meta .detail_blog-author {
  color: #00D8FF;
  font-weight: bold;
}

.detail_blog-content {
  color: #CCD6F6;
  line-height: 1.7;
  text-align: justify;
}

.detail_blog-comments-title {
  color: #00D8FF;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 10px;
}

.detail_blog-comment-item {
  background-color: rgba(45, 57, 82, 0.5);
  border-left: 4px solid #00D8FF;
  transition: transform 0.3s ease;
}

.detail_blog-comment-item:hover {
  transform: translateX(10px);
}

.detail_blog-comment-author {
  color: #00D8FF;
}

.detail_blog-comment-content {
  color: #E6F1FF;
}

.detail_blog-no-comments {
  color: #8892B0;
}

.detail_blog-load-more {
  color: #00D8FF;
  border-color: #00D8FF;
  transition: all 0.3s ease;
}

.detail_blog-load-more:hover {
  background-color: rgba(0, 216, 255, 0.1);
  transform: scale(1.05);
}

.detail_blog-comment-form {
  background-color: rgba(45, 57, 82, 0.3);
  border-radius: 10px;
}

.detail_blog-comment-form-title {
  color: #00D8FF;
}

.detail_blog-comment-textarea {
  background-color: rgba(32, 35, 42, 0.7);
  color: #E6F1FF;
  border-color: #00D8FF;
}

.detail_blog-comment-submit {
  background-color: #00D8FF;
  border-color: #00D8FF;
  color: #0A192F;
  transition: transform 0.3s ease;
}

.detail_blog-comment-submit:hover {
  transform: scale(1.05);
}

.detail_blog-back-button {
  border-color: #00D8FF;
  color: #00D8FF;
  transition: all 0.3s ease;
}

.detail_blog-back-button:hover {
  background-color: rgba(0, 216, 255, 0.1);
  transform: translateX(-5px);
}

.detail_blog_h2 {
  font-size: 30px;
}

@media(max-width: 768px) {
  .lead {
    font-size: 15px;
  }

  .detail_blog_h2 {
    font-size: 20px;
  }

  .detail_blog-section {
    padding: 1rem 0;
  }

  .detail_blog-card {
    border-radius: 0;
  }

  .detail_blog-image {
    max-height: 250px;
  }
}


/* ressource dataset */

.ressource_dataset-main {
  background: linear-gradient(135deg, #0A192F 0%, #20232A 100%);
  min-height: 100vh;
  padding: 2rem 0;
  width: 100%;
}

.ressource_dataset-title {
  color: #00D8FF;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.ressource_dataset-card {
  background: rgba(32, 35, 42, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.ressource_dataset-dataset-title {
  color: #00D8FF;
}

.ressource_dataset-usecase-badge {
  background-color: rgba(0, 216, 255, 0.2);
  color: #00D8FF;
}

.ressource_dataset-dataset-text {
  color: #CCD6F6;
  line-height: 1.6;
}

.ressource_dataset-dataset-description {
  color: #E6F1FF;
  line-height: 1.7;
}

.ressource_dataset-download-btn {
  background-color: #00D8FF;
  border-color: #00D8FF;
  color: #0A192F;
}

.ressource_dataset-doc-btn {
  color: #00D8FF;
  border-color: #00D8FF;
}

.ressource_dataset-sidebar-card {
  background: rgba(45, 57, 82, 0.5);
  border-radius: 8px;
}

.ressource_dataset-sidebar-card-title {
  color: #00D8FF;
}

.ressource_dataset-sidebar-btn {
  color: #00D8FF;
  border-color: #00D8FF;
}

.ressource_dataset-no-dataset-alert {
  background-color: rgba(0, 216, 255, 0.1);
  color: #00D8FF;
  border: 1px solid #00D8FF;
}


/* nav bar responseve medium */
@media (max-width: 1137px) and (min-width: 984px) {
  .responsive-nav-databoost {
    font-size: 14px;
  }

  .custom_nav-container .navbar-nav .nav-item .nav-link {
    padding: 14px;
  }
}