body {
  font-family: Arial, sans-serif;
}
.logo {
  max-height: 180px;
  max-width: 180px;
  border-radius: 40%;
  border: 1px solid red;
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 1;
}
.btn-inscription {
  background-color: #ed5555; /* ton rouge principal */
  color: #fff;
  border: none;
  padding: 5px 25px;
  font-size: 18px;
  border-radius: 8px;
  transition: background 0.3s;
}
.btn-inscription:hover {
  background-color: #800505; /* rouge plus foncé */
}

.hero {
  background: url('../../uploads/images/coaching.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 131px; /*120px 20px;*/
}
.hero h1 {
  font-size: 3rem;
  font-weight: bold;
  /*background-color: #5c545457;
  width: max-content;*/
  margin: auto;  font-size: 3rem;
  font-weight: bold;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  /*background-color: #5c545457;
  width: max-content;*/
  margin: auto;
  margin-bottom: 30px;
}

header {
  text-align: center;
  padding: 30px;
  background: linear-gradient(135deg, #0d6efd, #00b894);
  color: white;
}

header h1 {
  margin: 0;
}

.services .card {
  border: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
.services .card:hover {
  transform: scale(1.05);
}

.cta-section {
  background: linear-gradient(135deg, #AC0707 0%, #d31a1a 100%);
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  border-radius: 12px;
}
.cta-section .btn {
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 8px;
}
.btn-cta {
  background-color: #AC0707;
  color: #fff;
  padding: 12px 30px;
  font-size: 1.2rem;
  border-radius: 5px;
  text-decoration: none;
}

.testimonials {
  padding: 40px;
  background: #f9f9f9;
  text-align: center;
  position: relative;
}
.testimonials h2 {
  font-size: 24px;
  margin-bottom: 20px;
}
.testimonials-container {
  position: relative;
  overflow: hidden;
  width: 90%;
  margin: 0 auto;
}
.testimonials-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.testimonial {
  flex: 0 0 calc(33.333% - 20px);
  margin: 0 10px;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.testimonial img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}
.testimonial p {
  font-size: 14px;
  margin-bottom: 10px;
}
.testimonial h4 {
  color: #AC0707;
  font-weight: bold;
}
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.5);
  color: white;
  border: none;
  font-size: 30px;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
}
.nav-btn:hover {
  background-color: rgba(0,0,0,0.8);
}
.prev {
  left: 10px;
}
.next {
  right: 10px;
}
/* Responsive */
@media (max-width: 992px) {
  .testimonial {
    flex: 0 0 calc(50% - 20px);
  }
}
@media (max-width: 600px) {
  .testimonial {
    flex: 0 0 calc(100% - 20px);
  }
}
/* Pause animation au hover */
.testimonials-wrapper:hover .testimonial {
  animation-play-state: paused;
}

footer {
  background:#111;
  color:#fff; 
  padding:50px 0; 
  font-family:Arial, sans-serif;
}
.footer_content {
  max-width:1200px; 
  margin:auto; 
  display:flex; 
  flex-wrap:wrap; 
  justify-content:space-between;
}
.form-container {
  max-width: 400px;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

/* Flèche pour indiquer sous-menu */
    .dropdown-submenu > .dropdown-toggle::after {
      content: "▶";
      float: right;
      margin-left: 0.5rem;
      font-size: 0.7rem;
    }

    /* Animation dropdown */
    .dropdown-menu {
      display: block;
      opacity: 0;
      transform: translateY(10px);
      transition: all 0.2s ease-in-out;
      visibility: hidden;
    }

    .dropdown-menu.show {
      opacity: 1;
      transform: translateY(0);
      visibility: visible;
    }

    /* Position du sous-menu */
    .dropdown-submenu { position: relative; }
    .dropdown-submenu > .dropdown-menu {
      top: 0;
      left: 95%;
      margin-left: .1rem;
      margin-right: .1rem;
    }

.detail{
    font-size: 15px;
    text-decoration: none;
    color: brown;
    font-family: cursive;
}

.text-3d {
    font-size: 30px;
    font-weight: bold;
    color: white;
    transform: perspective(500px) rotateX(15deg);
    text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
    background: linear-gradient(to top, #f00, #900);
    -webkit-background-clip: text;
    color: transparent;
  }
