* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
  }
  
  :root {
    --primary: #eae200;
    --secondary: #030304;
    --gray: #c6c6c6;
  }
  
  body {
    background-color: #f8f8f8;
    overflow-x: hidden;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
 
  /* Hero Carousel */
  .hero-carousel {
    height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
  }
  
  .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
  }
  
  .slide.active {
    opacity: 1;
  }
  
  .slide-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.3); /* Darkened more */
  }
  .slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
  
    background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.95) 0%,
      rgba(0, 0, 0, 0.75) 50%,
      rgba(0, 0, 0, 0.75) 50%,
      rgba(0, 0, 0, 0.75) 50%,
      rgba(0, 0, 0, 0) 100%
    );
    z-index: 0;
  }
  
  .slide-content {
    width: 100%;
    padding: 0 50px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .slide-title {
    font-weight: 900;
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 15px; /* Reduced line spacing */
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease 0.3s;
    max-width: 60%;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2; /* Reduced line height */
  }
  
  .slide-text {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 25px;
    max-width: 50%;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease 0.5s;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  }
  
  .slide-btn {
    background-color: var(--primary);
    color: var(--secondary);
    font-weight: 700;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease 0.7s;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  
  .slide-btn i {
    margin-right: 8px;
  }
  
  .slide-btn:hover {
    background-color: var(--secondary);
    color: var(--primary);
    transform: translateY(26px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  }
  
  .slide.active .slide-title,
  .slide.active .slide-text,
  .slide.active .slide-btn {
    transform: translateY(0);
    opacity: 1;
  }
  
  .carousel-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 2;
  }
  
  .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    margin: 0 8px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .dot.active {
    background-color: var(--primary);
    width: 25px;
    border-radius: 6px;
  }
  
  /* About section */
  .about-section {
    padding: 100px 0;
    background-color: white;
    position: relative;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .section-title {
    font-weight: 900;
    font-size: 2.5rem;
    color: var(--secondary);
    position: relative;
    display: inline-block;
    padding: 0 20px;
  }
  
  .section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary);
  }
  
  .about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
  
  .about-text {
    flex: 0 0 55%;
    padding-right: 40px;
  }
  
  .about-text h3 {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 20px;
  }
  
  .about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
  }
  
  .about-image {
    flex: 0 0 40%;
    position: relative;
  }
  
  .about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
  }
  
  .about-image::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary);
    border-radius: 10px;
    top: 20px;
    left: 20px;
    z-index: -1;
  }
  
  /* Objectives section */
  .objectives-section {
    padding: 100px 0;
    background-color: var(--secondary);
    color: white;
    position: relative;
    overflow: hidden;
  }
  
  .objectives-section .section-title {
    color: var(--primary);
    position: relative;
    z-index: 3;
  }
  
  .objectives-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    position: relative;
    z-index: 3;
  }
  
  .background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15; /* Semi-transparent */
    filter: blur(8px); /* Blurred background */
    z-index: 1;
  }
  
  .objective-card {
    flex: 0 0 calc(50% - 20px);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.4s ease;
    border-left: 4px solid var(--primary);
    position: relative;
    overflow: hidden;
    z-index: 3;
  }
  
  .objective-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
  }
  
  .objective-card::before {
    content: "";
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    border-radius: 50%;
    top: -20px;
    right: -20px;
    opacity: 0.2;
    transition: all 0.4s ease;
  }
  
  .objective-card:hover::before {
    width: 120px;
    height: 120px;
    opacity: 0.3;
  }
  
  .objective-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: var(--secondary);
    transition: all 0.3s ease;
  }
  
  .objective-card:hover .objective-icon {
    background-color: var(--secondary);
    color: var(--primary);
    box-shadow: 0 0 0 5px rgba(234, 226, 0, 0.3);
  }
  
  .objective-card h3 {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
  
  .objective-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray);
    text-align: justify;
  }
  
  .bg-shape {
    position: absolute;
    width: 500px;
    height: 500px;
    background-color: rgba(234, 226, 0, 0.03);
    border-radius: 50%;
    z-index: 2;
  }
  
  .shape-1 {
    top: -200px;
    right: -100px;
  }
  
  .shape-2 {
    bottom: -200px;
    left: -100px;
  }
  .offers-section {
    padding: 100px 0;
    background-color: #f8f8f8;
    position: relative;
  }
  
  .offers-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
  }
  
  .tab-btn {
    padding: 12px 30px;
    background-color: white;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    color: var(--secondary);
    margin: 0 10px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  
  .tab-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--primary);
    transition: all 0.3s ease;
    z-index: -1;
  }
  
  .tab-btn:hover::before,
  .tab-btn.active::before {
    width: 100%;
  }
  
  .tab-btn:hover,
  .tab-btn.active {
    color: var(--secondary);
    font-weight: 700;
  }
  
  .tab-content {
    display: none;
  }
  
  .tab-content.active {
    display: block;
    animation: fadeIn 0.8s ease;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .benefits-circle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 40px;
  }
  
  .benefit-circle {
    position: relative;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: linear-gradient(145deg, #ffffff, #e6e9ee);
    box-shadow: 
      10px 10px 20px #d1d4da, 
      -10px -10px 20px #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    overflow: hidden;
  }
  
  .benefit-circle:hover {
    transform: scale(1.05);
    box-shadow: 
      15px 15px 25px #d1d4da, 
      -15px -15px 25px #ffffff;
  }
  
  .circle-content {
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 2;
  }
  
  .circle-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(234, 226, 0, 0.3);
  }
  
  .benefit-circle p {
    color: #2c3e50;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 30px;
  }
  
  .button-container {
    display: flex;
    justify-content: center;
  }
  
  .slide-btn {
    padding: 15px 30px;
    background-color: var(--primary);
    color: var(--secondary);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .slide-btn:hover {
    background-color: #d4cc00;
    transform: translateY(-3px);
  }
  
  .slide-btn i {
    margin-right: 10px;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .benefits-circle-container {
      flex-direction: column;
      align-items: center;
    }
  
    .benefit-circle {
      width: 220px;
      height: 220px;
    }
  }
  /* Forcer l'affichage du bouton */
  .slide-btn {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  /* S'assurer que le conteneur du bouton est visible */
  .text-center {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .volunteer-benefits {
    background-color: #f4f7f9;
    padding: 80px 0;
  }
  
  .benefits-circle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 40px;
  }
  
  .button-container {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .benefit-circle {
    position: relative;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: linear-gradient(145deg, #ffffff, #e6e9ee);
    box-shadow: 
      10px 10px 20px #d1d4da, 
      -10px -10px 20px #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 1s ease;
    overflow: hidden;
  }
  
  .benefit-circle:hover {
    transform: scale(1.05);
    box-shadow: 
      15px 15px 25px #d1d4da, 
      -15px -15px 25px #ffffff;
  }
  
  .circle-content {
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 2;
  }
  
  .circle-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background-color: #eae200;
    color: #030304;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(234, 226, 0, 0.3);
  }
  
  .benefit-circle p {
    color: #030304;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 30px;
  }
  
  .slide-btn {
    padding: 15px 30px;
    background-color: #eae200;
    color: #030304;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .slide-btn:hover {
    background-color: #eae200;
    transform: translateY(-3px);
    transition: 2s;
  }
  
  .slide-btn i {
    margin-right: 10px;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .benefits-circle-container {
      flex-direction: column;
      align-items: center;
    }
  
    .benefit-circle {
      width: 220px;
      height: 220px;
    }
  }
  
  
  /* Nos partenaires */
.carousel-container {
  max-width: 100%;
  padding: 0;
  position: relative;
  overflow: hidden;
  background-color: var(--white); /* si tu veux que les gradients se fondent bien */
}

.logos-track {
  display: flex;
  width: max-content;
  animation: scroll 40s linear infinite;
}

.logo-slide {
  width: 250px;
  height: 250px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.logo-slide img {
  max-width:200px;
  max-height: 80px;
  opacity: 0.7;
  transition: all 0.3s ease;
  filter: none;
}

.logo-slide:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.2);
}

/* Animation fluide */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Gradients à gauche et à droite */
.carousel-container::before,
.carousel-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.carousel-container::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}

.carousel-container::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}

  /*end*/
  /* Testimonials section */
  .testimonials-section {
    padding: 100px 0;
    background-color: white;
    position: relative;
    overflow: hidden;
  }
  
  .testimonials-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("/api/placeholder/1200/800");
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    filter: blur(5px);
  }
  
  .testimonials-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
  }
  
  .testimonial-slide {
    display: none;
  }
  
  .testimonial-slide.active {
    display: block;
    animation: fadeIn 0.8s ease;
  }
  
  .testimonial-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border-top: 5px solid var(--primary);
    position: relative;
  }
  
  .testimonial-card::before {
    content: "\201C";
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 80px;
    color: var(--primary);
    opacity: 0.2;
    font-family: serif;
  }
  
  .testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
  }
  
  .author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid var(--primary);
  }
  
  .author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .author-info h4 {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 5px;
  }
  
  .author-info p {
    font-size: 0.9rem;
    color: #666;
  }
  
  .testimonial-arrows {
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }
  
  .arrow-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 0 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .arrow-btn:hover {
    background-color: var(--secondary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }
  
  /* Impact section */
  .impact-section {
    padding: 100px 0;
    background-color: var(--secondary);
    position: relative;
  }
  
  .impact-section .section-title {
    color: var(--primary);
  }
  
  .impact-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
  }
  
  .stat-card {
    flex: 0 0 calc(25% - 30px);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
  }
  
  .stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
  }
  
  .stat-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }
  
  .stat-card:hover::before {
    transform: scaleX(1);
  }
  
  .stat-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: var(--secondary);
    transition: all 0.3s ease;
  }
  
  .stat-card:hover .stat-icon {
    background-color: var(--secondary);
    color: var(--primary);
    box-shadow: 0 0 0 5px rgba(234, 226, 0, 0.3);
    transform: rotateY(180deg);
  }
  
  .stat-number {
    font-weight: 900;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
  }
  
  .stat-text {
    font-size: 1rem;
    color: white;
    font-weight: 500;
  }
  
  /* CTA section */
  .cta-section {
    padding: 80px 0;
    background-color: white;
    position: relative;
  }
  
  .cta-container {
    background-color: var(--primary);
    border-radius: 15px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .cta-container::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background-color: rgba(3, 3, 4, 0.05);
    border-radius: 50%;
    transform: translate(100px, -100px);
  }
  
  .cta-container::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background-color: rgba(3, 3, 4, 0.05);
    border-radius: 50%;
    transform: translate(-50px, 50px);
  }
  
  .cta-content {
    flex: 0 0 60%;
    position: relative;
    z-index: 1;
  }
  
  .cta-title {
    font-weight: 900;
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
  }
  
  .cta-text {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 0;
    opacity: 0.9;
  }
  
  .cta-btn {
    flex: 0 0 auto;
    position: relative;
    z-index: 1;
  }
  
  .cta-button {
    background-color: var(--secondary);
    color: var(--primary);
    font-weight: 700;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .cta-button i {
    margin-right: 10px;
    font-size: 1.2rem;
  }
  
  .cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
  }
  
  
  /* Style pour le texte d'introduction */
  .intro-text {
    text-align: center;
    margin-bottom: 100px;
  }
  
  .intro-text p {
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .slide-title {
      font-size: 2.5rem;
      max-width: 80%;
    }
  
    .slide-text {
      max-width: 70%;
    }
  
    .objective-card,
    .offer-card {
      flex: 0 0 100%;
    }
  
    .stat-card {
      flex: 0 0 calc(50% - 20px);
    }
 
    .cta-container {
      flex-direction: column;
      text-align: center;
      padding: 40px;
    }
  
    .cta-content {
      flex: 0 0 100%;
      margin-bottom: 30px;
    }
  }
  
  @media (max-width: 768px) {
   
  
    .slide-title {
      font-size: 2rem;
      max-width: 100%;
    }
  
    .slide-text {
      max-width: 100%;
      font-size: 1rem;
    }
  
    .about-content {
      flex-direction: column;
    }
  
    .about-text {
      flex: 0 0 100%;
      padding-right: 0;
      margin-bottom: 40px;
    }
  
    .about-image {
      flex: 0 0 100%;
    }
  
    .stat-card {
      flex: 0 0 100%;
    }
  

  }
  