/********** Template CSS **********/
:root {
  --primary: #f9b800;
  --light: #f8fff3;
  --dark: #111a24;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semi-bold {
  font-weight: 600 !important;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  font-weight: 500;
  text-transform: uppercase;
  transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
  color: #ffffff;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 2px;
}

/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
  margin-right: 30px;
  padding: 25px 0;
  color: #ffffff;
  font-size: 15px;
  text-transform: uppercase;
  outline: none;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--primary);
}

@media (max-width: 991.98px) {
  .navbar-dark .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }
}

/*** Header ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: rgba(135, 80, 109, 0.6); */
  z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
  width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
}

@media (max-width: 768px) {
  #header-carousel .carousel-item {
    position: relative;
    min-height: 450px;
  }

  #header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.page-header {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-header-inner {
  background: rgba(15, 23, 43, 0.7);
}

.breadcrumb-item+.breadcrumb-item::before {
  color: var(--light);
}

.booking {
  position: relative;
  margin-top: -100px !important;
  z-index: 1;
}

/*** Section Title ***/
.section-title {
  position: relative;
  display: inline-block;
}


/*** Service ***/
.service-item {
  min-height: 220px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  text-align: center;
  /* background: #f3ffec; */
  border: 1px solid #111a24;
  border-radius: 10px;
  /* box-shadow: 0 0 45px rgba(0, 0, 0, 0.08); */
  transition: 0.5s;
}

.service-item:hover {
  background: var(--primary);
}

.service-item .service-icon {
  margin: 0 auto 30px auto;
  width: 65px;
  height: 65px;
  transition: 0.5s;
}

.service-item i,
.service-item h5,
.service-item p {
  transition: 0.5s;
}

.service-item:hover i,
.service-item:hover h5,
.service-item:hover p {
  color: #ffffff !important;
}

/*** Youtube Video ***/
.video {
  position: relative;
  height: 100%;
  min-height: 500px;
  background: linear-gradient(rgba(15, 23, 43, 0.1), rgba(15, 23, 43, 0.1)),
    url(../img/video.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.video .btn-play img {
  position: relative;
  z-index: 3;
  max-width: 100%;
  width: auto;
  height: auto;
}

.video .btn-play span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 32px solid var(--dark);
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

#videoModal {
  z-index: 99999;
}

#videoModal .modal-dialog {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0 auto;
}

#videoModal .modal-body {
  position: relative;
  padding: 0px;
}

#videoModal .close {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 0px;
  top: -30px;
  z-index: 999;
  font-size: 30px;
  font-weight: normal;
  color: #ffffff;
  background: #000000;
  opacity: 1;
}

/*** Testimonial ***/
.testimonial {}

.testimonial-carousel {
  padding-left: 65px;
  padding-right: 65px;
}

.testimonial-carousel .testimonial-item {
  padding: 30px;
}

.testimonial-item img {
  object-fit: cover;
}

.testimonial-carousel .owl-nav {
  position: absolute;
  width: 100%;
  height: 40px;
  top: calc(50% - 20px);
  left: 0;
  display: flex;
  justify-content: space-between;
  z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--primary);
  border-radius: 2px;
  font-size: 18px;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  color: var(--primary);
  background: #ffffff;
}

/*** Team ***/
.team-item,
.team-item .bg-primary,
.team-item .bg-primary i {
  transition: 0.5s;
}

.team-item:hover {
  border-color: var(--secondary) !important;
}

.team-item:hover .bg-primary {
  background: var(--secondary) !important;
}

.team-item:hover .bg-primary i {
  color: var(--secondary) !important;
}

.team-container {}

.team-itemmy {
  background: #fff;
}

/*** Footer ***/
.newsletter {
  position: relative;
  z-index: 1;
}

.footer {
  position: relative;
  /* margin-top: -110px;
    padding-top: 180px; */
}

.footer .btn.btn-social {
  margin-right: 5px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  border: 1px solid #ffffff;
  border-radius: 35px;
  transition: 0.3s;
}

.footer .btn.btn-social:hover {
  color: var(--primary);
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #ffffff;
  font-size: 15px;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}


.footer .btn.btn-link:hover {
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: var(--light);
}

.footer .footer-menu a {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.footer .footer-menu a:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

/* Google Fonts - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

@media (max-width: 700px) {
  .cookie-wrapper {
    width: 100%;
  }
}

.cookie-wrapper {
  position: fixed;
  bottom: 0px;
  right: 0;
  width: 40%;
  background: #fff;
  padding: 15px 25px 22px;
  transition: right 0.3s ease;
  box-shadow: 0 5px 10px rgb(0, 0, 0);
  z-index: 999;

  @media (max-width: 600px) {
    width: 100%;
  }
}

.cookie-wrapper .show {
  right: 20px;
}

.hidden {
  display: none;
}

header i {
  color: #f9b800;
  font-size: 32px;
  text-align: center;
}

header h2 {
  color: #f9b800;
  font-weight: 500;
  text-align: center;
}

.data {
  text-align: center;
}

.data p a {
  color: #f9b800;
  text-decoration: none;
  text-align: center !important;
}

.data p a:hover {
  text-decoration: underline;
}

.buttons {
  padding: 20px 0px;
  text-align: center;
}

.buttons .cookie-button {
  border: 2px solid #f9b800;
  color: #fff;
  padding: 8px 0;
  background: #f9b800;
  cursor: pointer;
  width: calc(100% / 2 - 10px);
  transition: all 0.5s ease;
  max-width: 150px;
  border-radius: 0;
}

.buttons #acceptBtn:hover {
  background-color: transparent;
  color: #f9b800;
}

#declineBtn {
  background-color: #fff;
  color: #f9b800;
}

#declineBtn:hover {
  background-color: #f9b800;
  color: #fff;
}

/* Footer Style */
.topics {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.topic_item {
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: center;
}

.topic_item .card-text {}

.topic__img {
  max-width: 240px;
  min-height: 240px;
  object-fit: cover;
}

.topic__name {
  font-size: 18px;
}

.topic__descr {
  max-width: 287px;
}

.topic__right {
  height: 911px;
}

@media (max-width: 1020px) {
  .topic__right {
    width: 100%;
    object-fit: cover;
  }
}

.about_1 {}

.pluses {
  display: flex;
  flex-direction: row;
  gap: 50px;
}

@media (max-width: 680px) {
  .pluses {
    flex-wrap: wrap;
    /* flex-direction: column
    ; */
  }
}

.about__descr {
  max-width: 1200px;
  margin: 0 auto;
}

.news__block .topic__name {
  color: #000000;
}

.news__block .card-text {
  color: #111a24;
}

.news__block .topics {
  display: flex;
  flex-direction: row;
}

@media (max-width: 680px) {
  .news__block .topics {
    flex-direction: column;
  }
}

.news__block .topic_item {
  align-items: start;
}

@media (max-width: 990px) {
  .mobile-no {
    display: none;
  }

  .topic_item {
    flex-direction: column;
  }

  .service-item {
    /* height: 460px; */
  }

  .testimonial-item div {
    flex-direction: column;
  }

  .testimonial-carousel .testimonial-item {
    padding: 30px 2px;
  }
}
/* old styles  */


.news-block .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
}

.news-block .section-subtitle {
  font-size: 1.1rem;
}

.news-card .card-img-top {
  object-fit: cover;
  height: 200px;
}

.news-card .card-title {
  font-weight: 600;
  margin-bottom: 1rem;
}

.news-card .card-text {
  font-size: 0.95rem;
}

/* Приклад hover-ефекту */
.news-card:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
}

/* Заголовок секції */
.impact-block .impact-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0;
}

/* Стилі для карток статистики */
.impact-stats .stat-card {
  background-color: #120a2f;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.impact-stats .stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.impact-stats .stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
}

.impact-stats .stat-text {
  font-size: 0.95rem;
  margin-top: 1rem;
  color: #fff;
}

/* Заголовок блоку */
.advantages-title {
  font-size: 2.2rem;
  font-weight: 700;
}

/* Картки переваг */
.advantage-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
}

/* Заголовки в картках */
.advantage-title {
  font-size: 1.25rem;
  font-weight: 600;
}

/* Текст в картках */
.advantage-text {
  font-size: 0.95rem;
  line-height: 1.5;
}


  /* Заголовок секції */
  .avenir-ia-title {
    font-size: 2.3rem;
    font-weight: 700;
  }

  /* Підзаголовок для кожної частини тексту */
  .avenir-ia-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* Основний текст */
  .avenir-ia-text {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* Заголовок перед списком ключових пунктів */
  .avenir-ia-points-title {
    font-size: 1.4rem;
    font-weight: 600;
  }

  /* Картки у списку пунктів */
  .avenir-ia-points .card-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }

  /* Іконки у списку пунктів */
  .avenir-ia-points .icon i {
    transition: transform 0.3s ease;
  }
  .avenir-ia-points .card:hover .icon i {
    transform: scale(1.1);
  }

  /* Hover-ефект для карток */
  .avenir-ia-points .advantage-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
  }
  .avenir-ia-points .advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.4);
  }

  /* Додаткові кольори для тексту */
  .text-white-70 {
    color: rgba(255, 255, 255, 0.7) !important;
  }


  /* Заголовок секції */
  .analytique-title {
    font-size: 2.3rem;
  }

  /* Текстові блоки */
  .analytique-text {
    font-size: 1rem;
    line-height: 1.6;
  }

  /* Список ключових пунктів */
  .analytique-points-title {
    font-size: 1.5rem;
  }
  .analytique-list {
    border-top: 2px solid #eee;
  }
  .analytique-item {
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-bottom: 0.5rem;
  }
  .analytique-item:hover {
    background-color: #eaeaea;
    transform: translateX(5px);
  }

  /* Зображення */
  .analytique-img {
    transition: transform 0.3s ease;
  }
  .analytique-img:hover {
    transform: scale(1.05);
  }

  /* Додаткове вирівнювання для списку фактів */
  .analytique-facts li {
    margin-bottom: 0.5rem;
  }


    /* Загальний заголовок блоку */
    .blog-histoires-title {
      font-size: 2.3rem;
      margin-bottom: 1rem;
    }
    
    /* Стили для кожної історії */
    .blog-story {
      border-bottom: 1px solid #eee;
      padding-bottom: 2rem;
    }
    .blog-story:last-child {
      border-bottom: none;
    }
    
    .blog-story-title {
      font-size: 1.75rem;
      margin-bottom: 1rem;
    }
    
    .blog-story-text {
      font-size: 1rem;
      line-height: 1.6;
    }
    
    .blog-story-facts {
      margin-top: 1rem;
      font-size: 0.95rem;
    }
    
    .blog-story-testimonial {
      margin-top: 1rem;
      font-size: 1rem;
    }
    
    /* Додаткові стилі для зображень */
    .blog-story-img {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .blog-story-img:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 15px rgba(0,0,0,0.2);
    }
    
    /* Адаптивне вирівнювання тексту */
    @media (max-width: 767.98px) {
      .blog-story {
        text-align: center;
      }
      .blog-story .col-md-5,
      .blog-story .col-md-7 {
        margin-bottom: 1rem;
      }
    }
  


  /* Заголовок секції */
  .contacts-title {
    font-size: 2.3rem;
  }
  
  /* Блок контактної інформації */
  .contact-info {
    /* background-color: #fafafa; */
  }
  
  .contact-info-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
  
  .contact-info-item {
    margin-bottom: 0.5rem;
  }
  
  /* Блок контактної форми */
  .contact-form-section {
    background-color: #fafafa;
  }
  
  .form-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
  }
  
  .form-subtitle {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  
  .form-description {
    margin-bottom: 1.5rem;
  }
  
  /* Додаткове оформлення для iframe карти */
  .contact-map iframe {
    transition: transform 0.3s ease;
  }
  
  .contact-map iframe:hover {
    transform: scale(1.02);
  }


  /* new styles  */

  :root {
    --dark-bg: #3f2b42;
    --light-bg: #F8F9FA;
    --accent: #f9b800;
    --accent-hover: #df9a07;
    --auxiliary: #934cbf;
    --light-text: #E1E1E1;
    --dark-text: #3a2b42;
    --white: #FFFFFF;
    --light-gray: #ECECEC;
}
  /* Стилі для секції "À propos de nous" */
  .about-section {
      background-color: #F8F9FA;
      padding: 100px 0;
      position: relative;
  }
  
  h2 {
      color: #2B2D42;
      font-weight: 700;
      position: relative;
      display: inline-block;
      padding-bottom: 15px;
      font-size: 3rem;
  }

  
  .about-section h3 {
      color: #2B2D42;
      font-weight: 600;
      margin-bottom: 15px;
      position: relative;
      padding-left: 15px;
  }
  
  .about-section h3:before {
      content: '';
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 5px;
      height: 20px;
      background-color: #f9b800;
      border-radius: 2px;
  }
  
  .about-section p {
      color: #2B2D42;
      line-height: 1.7;
  }
  
  .about-image-wrapper {
      position: relative;
  }
  
  .about-image {
      position: relative;
      z-index: 2;
      border: 6px solid white;
      height: 580px;
      object-fit: cover;
      width: 100%;
  }
  
  .accent-square {
      position: absolute;
      width: 120px;
      height: 120px;
      background-color: rgba(249, 115, 22, 0.2);
      bottom: -20px;
      left: -20px;
      z-index: 1;
      border-radius: 4px;
  }
  
  @media (max-width: 992px) {
      .about-section {
          padding: 80px 0;
      }
      
      .about-image-wrapper {
          margin-bottom: 40px;
      }
  }


  
  .approach-section {
    background-color: #F8F9FA;
    padding: 100px 0;
    color: #2B2D42;
}

.approach-content h2 {
    color: #2B2D42;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}


.approach-content h3 {
    color: #2B2D42;
    font-weight: 600;
    margin-bottom: 15px;
}

.approach-content h4 {
    color: #2B2D42;
    font-weight: 600;
    margin-bottom: 10px;
}

.approach-content p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.approach-image-wrapper {
    position: relative;
}

.approach-image {
    position: relative;
    z-index: 2;
    border: 6px solid white;
}

.approach-shape {
    position: absolute;
    width: 40%;
    height: 70%;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(76, 81, 191, 0.15));
    top: -20px;
    right: -20px;
    z-index: 1;
    border-radius: 4px;
}

.approach-steps {
    margin-top: 30px;
}

.approach-step {
    display: flex;
    margin-bottom: 25px;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f9b800;
    color: white;
    font-weight: 700;
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-content {
    flex-grow: 1;
}

@media (max-width: 992px) {
    .approach-section {
        padding: 80px 0;
    }
    
    .approach-image-col {
        margin-bottom: 50px;
        order: 2;
    }
    
    .approach-content-col {
        order: 1;
    }
}

    
  .section-piliers {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.section-title {
    color: var(--dark-bg);
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}



.pilier-card {
    height: 100%;
    border: none;
    border-radius: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    margin-bottom: 2rem;
    position: relative;
}



.pilier-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.pilier-card .card-img-container {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.pilier-card .card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pilier-card:hover .card-img-top {
    transform: scale(1.05);
}

.pilier-card .card-body {
    padding: 2rem;
    background-color: var(--white);
}

.pilier-card .card-title {
    color: var(--dark-bg);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.pilier-card .card-text {
    color: var(--dark-text);
    line-height: 1.6;
}

.pilier-number {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background-color: var(--dark-bg);
    color: var(--white);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 2;
}

.btn-contact {
    background-color: var(--dark-bg);
    color: var(--white);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--accent);
    transition: all 0.3s ease;
    z-index: 0;
}

.btn-contact:hover::before {
    left: 0;
}

.btn-contact span {
    position: relative;
    z-index: 1;
}

.btn-contact:hover {
    color: var(--white);
}

.btn-icon {
    margin-left: 8px;
    vertical-align: middle;
}

@media (max-width: 991.98px) {
    .pilier-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767.98px) {
    .section-piliers {
        padding: 3rem 0;
    }
    
    .section-title {
        margin-bottom: 2rem;
    }
    
    .pilier-card .card-img-container {
        height: 180px;
    }
    
    .pilier-card .card-body {
        padding: 1.5rem;
    }
}

 /* Section générale */
 .section {
  padding: 5rem 0;
}

.section:nth-child(odd) {
  background-color: var(--light-bg);
}

.section:nth-child(even) {
  background-color: var(--white);
}



/* Cartes générales */
.card {
  height: 100%;
  border: 1px solid var(--light-gray);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 2rem;
  position: relative;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card .card-img-container {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.card .card-img-top {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-img-top {
  transform: scale(1.05);
}

.card .card-body {
  padding: 2rem;
  background-color: var(--white);
}

.card .card-title {
  color: var(--dark-bg);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.card .card-text {
  color: var(--dark-text);
  line-height: 1.6;
}

.number-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background-color: var(--dark-bg);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  z-index: 2;
}

/* Boutons */
.btn-custom {
  background-color: var(--dark-bg);
  color: var(--white);
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-custom::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--accent);
  transition: all 0.3s ease;
  z-index: 0;
}

.btn-custom:hover::before {
  left: 0;
}

.btn-custom span {
  position: relative;
  z-index: 1;
}

.btn-custom:hover {
  color: var(--white);
}

.btn-icon {
  margin-left: 8px;
  vertical-align: middle;
}

/* Cours et Ateliers */


.cours-card .card-title {
  color: var(--auxiliary);
}

/* Témoignages */
.testimonial-card {
  border: none;
  background-color: var(--white);
  padding: 2rem;
  border: 1px solid var(--accent);
  position: relative;
  min-height: 280px;
}

.testimonial-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 5rem;
  color: var(--light-gray);
  z-index: 0;
  opacity: 0.3;
}

.testimonial-content {
  position: relative;
  z-index: 1;
}
.testimonial-content p {
  color: #525252;
}

.testimonial-author {
  font-weight: 600;
  color: var(--dark-bg);
  margin-top: 1rem;
  font-style: italic;
}

/* Plans Tarifaires */
.pricing-card {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--light-gray);
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: var(--accent);
}

.pricing-header {
  background-color: var(--dark-bg);
  padding: 2rem;
  color: var(--white);
}

.pricing-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0;
  color: var(--accent);
}

.pricing-period {
  opacity: 0.8;
  font-size: 0.9rem;
}

.pricing-features {
  padding: 2rem;
  text-align: left;
  color: #000;
  min-height: 400px;
}

.pricing-features ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.pricing-features li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.pricing-features li::before {
  content: 'check';
  font-family: 'Material Icons';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.pricing-popular {
  position: absolute;
  top: 0;
  right: 1rem;
  background-color: var(--accent);
  color: var(--white);
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 1;
}

/* Responsive */
@media (max-width: 991.98px) {
  .card {
      margin-bottom: 2rem;
  }
}

@media (max-width: 767.98px) {
  .section {
      padding: 3rem 0;
  }

  
  .card .card-img-container {
      height: 180px;
  }
  
  .card .card-body {
      padding: 1.5rem;
  }
  
  .pricing-card {
      margin-bottom: 2rem;
  }
}

  /* Section générale */
  .section {
    padding: 5rem 0;
}

.section-light {
    background-color: var(--light-bg);
}

.section-white {
    background-color: var(--white);
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--auxiliary);
    padding-left: 1.5rem;
    transition: transform 0.3s ease;
}
.faq-item:hover {
  transform: translateX(5px);
}

.faq-question {
  font-weight: 600;
  color: var(--dark-bg);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
}

.faq-question-icon {
  color: var(--auxiliary);
  margin-right: 10px;
}

/* Contact Section */
.contact-section {
  background-color: var(--light-bg);
}

.contact-info {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.contact-email {
  font-weight: 600;
  color: var(--auxiliary);
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

.contact-email:hover {
  color: var(--accent);
}

.contact-email::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--auxiliary);
  transition: all 0.3s ease;
}

.contact-email:hover::after {
  background-color: var(--accent);
}

.contact-hours {
  margin-top: 1.5rem;
  padding: 1rem;
  background-color: var(--white);
  border-left: 3px solid var(--accent);
}

/* Form Section */
.form-section {
  background-color: var(--white);
}

.form-container {
  max-width: 900px;
  margin: 0 auto;
  background-color: var(--white);
  padding: 2rem;
  border: 1px solid var(--light-gray);
  position: relative;
}


.form-description {
  margin-bottom: 2rem;
  line-height: 1.6;
}

.form-floating {
  margin-bottom: 1.5rem;
}

.form-control:focus {
  border-color: var(--auxiliary);
  box-shadow: 0 0 0 0.25rem rgba(147, 76, 191, 0.25);
}

.btn-primary {
  background-color: var(--dark-bg);
  border-color: var(--dark-bg);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--auxiliary);
  border-color: var(--auxiliary);
}

/* Responsive styles */
@media (max-width: 767.98px) {
  .section {
      padding: 3rem 0;
  }
  
  .form-container {
      padding: 1.5rem;
  }
}
 /* Footer styles */
 .footer {
  padding-top: 4rem;
  background-color: var(--dark-bg) !important;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--accent), var(--auxiliary));
}

.footer .brand-link {
  font-size: 26px;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}

.footer .brand-link:hover {
  color: var(--accent);
}

.footer .brand-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

.footer .brand-link:hover::after {
  width: 100%;
}

.footer .btn-link {
  display: block;
  text-align: left;
  color: var(--light-text);
  text-decoration: none;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer .btn-link::before {
  content: '';
  position: absolute;
  bottom: 0.3rem;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

.footer .btn-link:hover {
  color: var(--white);
  transform: translateX(5px);
}

.footer .btn-link:hover::before {
  width: 20px;
}

.footer .contact-email {
  color: var(--light-text);
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}

.footer .contact-email:hover {
  color: var(--accent);
}

.footer .copyright {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
}

@media (max-width: 767.98px) {
  .footer {
      padding-top: 3rem;
  }
  
  .footer .brand-link {
      margin-bottom: 1.5rem;
      display: inline-block;
  }
  
  .footer .contact-info {
      margin-top: 1.5rem;
  }
}