/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body, html {
  background-color: #ffffff; /* Couleur blanche globale */
  margin: 0;
  padding: 0;
}


/* Header */
.en-mine-dor {
  /*position: relative;*/
  height: 70vh;
  background: url('image/picture/mine3.jpg') no-repeat center center/cover;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.en-mine-dor::before {
  content: ""; /* Pseudo-élément pour l'overlay */
  position: absolute; /* Se place par-dessus le background */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background-color: rgba(36, 36, 147, 0.5); /* Bleu transparent (RGBA) */
  z-index: -1; /* Envoie l'overlay derrière le contenu */
}


/*-----------------------------------------------------------*/
.hero-mine h1 {
  font-size: 6rem; /* Taille initiale */
  color: #002d62; /* Couleur de base du texte */
  font-weight: bold;
  text-align: center; /* Centre le texte horizontalement */
  transition: transform 0.3s ease, color 0.3s ease; /* Ajoute une transition douce */
}

.hero-mine h1 .titre-en-couleur {
  color: #ffc107; /* Couleur différente pour le mot "d'or" */
  transition: transform 0.3s ease, color 0.3s ease; /* Transition douce */
}

/* Effet au survol */
.hero-mine h1:hover {
  transform: scale(1.2); /* Agrandit le texte au survol */
  color: #0056b3; /* Change la couleur du texte entier */
}

.hero-mine h1:hover .titre-en-couleur {
  color: #ff9800; /* Change également la couleur du mot en surbrillance */
}

/*-----------------------------------------------------------*/

/*--------Section Styles------------------------------------ */

.gold-mines-section {
  background-color: #fff;
  padding: 4rem 2rem;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Ajoute l'ombrage au bas de la section */
  margin-bottom: 2rem;
}

.gold-mines-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.text-section {
  flex: 1;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Centrer verticalement */
  align-items: flex-start; /* Aligner à gauche */
  gap: 1rem; /* Espacement entre les éléments */
}

.icon-and-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0; /* Évite un décalage vers le haut */
  margin-left: 0;
}

.play-icon {
  background-color: #adc9f5;
  color: #002d62;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  margin-left: -5%;
}

.text-section h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #002d62;
}

.text-section .highlight {
  color: #ffc107;
}

.text-section h2 {
  font-size: 1.8rem;
  color: #002d62;
  margin: 1rem 0;
}

.text-section p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 2rem;
}

.contact-btn {
  background-color: #ffc107;
  color: #fff;
  border: none;
  padding: 0.8rem 1.5rem;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.contact-btn:hover {
  background-color: #e6ac00;
  transform: scale(1.05);
}

.image-section {
  flex: 1;
  position: relative;
}

.image-section img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.experience-label {
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
  background-color: #ffc107;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  writing-mode: vertical-rl;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .gold-mines-content {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }

  .text-section, .image-section {
      flex: unset;
      width: 100%;
  }

  .experience-label {
      position: static;
      transform: translateY(0);
      margin-top: 1rem;
      writing-mode: horizontal-tb;
  }
}

/*--------Mining-------------------------------------------------*/
/*---------------------------------------------------------------*/

/* Section Styles */
.mining-section {
  position: relative;
  width: 100%;
  height: 500px; /* Ajustez selon vos besoins */
  overflow: hidden;
}

.mining-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('image/picture/mine7.jpg') no-repeat center center/cover; /* Remplacez par le chemin de votre image */
  filter: brightness(0.7); /* Ajoute un effet assombri à l'image */
}

.mining-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 20px;
}

.mining-content p {
  font-size: 1.5rem;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 2rem auto;
}

.play-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  background-color: #ffc107;
  color: #002d62;
  border-radius: 50%;
  font-size: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.play-button:hover {
  transform: scale(1.1);
  transition: all 0.3s ease;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .mining-content p {
    font-size: 1.2rem;
  }

  .play-button {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .mining-content p {
    font-size: 1rem;
  }

  .play-button {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

/*-----------------------------------------------------------------*/

/* Section Styles */
.why-choose-us {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background-color: #f4f4f4;
}

.container {
  display: flex;
  max-width: 1200px;
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.image-section {
  flex: 1;
}

.image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-section {
  flex: 1;
  padding: 2rem;
}

.content-section h3 {
  color: #f9a825;
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.content-section h2 {
  color: #002d62;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.content-section p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.stats {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.stat-item h4 {
  font-size: 1.5rem;
  color: #f9a825;
  margin-bottom: 0.5rem;
}

.stat-item p {
  font-size: 1rem;
  color: #555;
}

.progress {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.progress-item span {
  font-size: 0.9rem;
  color: #555;
}

.progress-bar {
  width: 100%;
  height: 10px;
  background-color: #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  background-color: #002d62;
  position: absolute;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .content-section {
    padding: 1.5rem;
  }

  .content-section h2 {
    font-size: 1.5rem;
  }

  .stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

/*====================================================================*/
/* Section Styles */
.testimonials {
  display: flex;
  justify-content: center; /* Centre horizontalement */
  align-items: center; /* Centre verticalement */
  text-align: center;
  padding: 3rem 1.5rem; /* Espacement interne */
  background-color: #fff; /* Fond blanc */
  min-height: 100vh; /* Occupe toute la hauteur de la page */
}

.testimonials h3 {
  color: #f9a825;
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.testimonials h2 {
  color: #002d62;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.testimonials-content {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.testimonial {
  max-width: 300px;
  text-align: left;
  background-color: #f9f9f9;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.testimonial p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.container {
  max-width: 1200px; /* Limite la largeur */
  width: 100%; /* Prend toute la largeur disponible */
  display: flex;
  flex-direction: column; /* Empile le contenu verticalement */
  align-items: center; /* Centre le contenu horizontalement */
  justify-content: center; /* Centre verticalement */
  padding: 2rem; /* Ajoute de l'espace interne */
  background-color: #f9f9f9; /* Optionnel : fond différent */
  border-radius: 10px; /* Coins arrondis */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Ombre */
}

.container h3{
  margin-left: 80px;
}

.client {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.client img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.client-info h4 {
  color: #f9a825;
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.2rem;
}

.client-info span {
  color: #002d62;
  font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .testimonials-content {
    flex-direction: column;
    gap: 2rem;
  }
}



