/* Styles généraux */


.banner3 {
  padding-top: 83px;
}


.bann3 {
  background: url('/images/pexels-contact.jpg') no-repeat center center/cover;
  color: white;
  padding: 150px 20px;
  padding-top: 140px;
  text-align: center;
}





/* expertis-section */

.expertise-section,
.key-services-section,
.approach-section,
.why-choose-section {
  padding: 50px 0;
}

/* Expertise Section */
.expertise-item {
  text-align: center;
}

.expertise-icon {
  margin-bottom: 15px;
}

/* Services Timeline */
.services-timeline {
  position: relative;
  padding: 20px 0;
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.timeline-icon {
  flex: 0 0 50px;
  text-align: center;
}

.timeline-content {
  flex: 1;
}

/* Approach Section */
.process-steps {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.step {
  text-align: center;
  width: 30%;
  margin-bottom: 30px;
}

.step-number {
  font-size: 2rem;
  font-weight: 700;
  color: #3f6fd6;
  display: block;
  margin-bottom: 10px;
}

/* Why Choose Section */
.advantage-list {
  list-style: none;
  padding: 0;
}

.advantage-list li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}











/* ===== SECTION SERVICES ===== */
.services {
  padding: 60px 20px;
  background: linear-gradient(#002366cc, #002366cc),
    url("#") center/cover no-repeat;
  ;
}

.services .container {
  max-width: 1200px;
  margin: auto;
}

.services .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.service-box {
  background: #fff;
  border-left: 5px solid #b20000;
  /* rouge corporate */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.service-box:hover {
  transform: translateY(-5px);
}

.service-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.service-number {
  font-size: 1.3rem;
  font-weight: bold;
  background: #b20000;
  color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.service-header h3 {
  flex: 1;
  font-size: 1.2rem;
  font-weight: bold;
  color: #0a0a0a;
  margin: 0 15px;
}

.checkk {
  font-size: 1.2rem;
  color: #fff;
  background: #002366;
  /* bleu corporate */
  border-radius: 5px;
  padding: 5px 8px;
}

.service-box p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #000;
}

/* Responsive */
@media (max-width: 900px) {
  .services .row {
    grid-template-columns: 1fr;
  }
}












/* ===== SECTIONS GÉNÉRALES ===== */
.section-padding {
  padding: 80px 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
}



/* --- Section Intro --- */
.hero-small {
  padding: 80px 0;
  background: #f4f7f6;
  /* Fond léger */
}

.hero-small h1 {
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
}

/* --- Section Services (Cachée par défaut) --- */
.hidden-section {
  display: none;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.hidden-section.visible {
  display: block;
  animation: fadeIn 0.8s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Layout Services --- */
.services-int {
  padding: 80px 0;
  background: #ffffff;
}

.flex-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

/* Panneau Gauche (Contenu) */
.left-panel {
  flex: 1.5;
  padding-right: 20px;
}

.left-panel h2 {
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #ff4081;
  /* Accent color */
  margin-bottom: 10px;
}

.left-panel h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.slogan {
  font-style: italic;
  color: #666;
  font-size: 1.1rem;
}

.divider {
  width: 60px;
  height: 4px;
  background: #ff4081;
  margin: 20px 0;
}

.images-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 30px;
}

.images-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.images-grid img:hover {
  transform: scale(1.02);
}

/* Panneau Droit (Liste Navigation) */
.right-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.service-item {
  display: flex;
  align-items: center;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  cursor: pointer;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
}

.service-item:hover {
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transform: translateX(-5px);
}

.service-item.active {
  background: #fff;
  border-left: 4px solid #ff4081;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-number {
  font-size: 1.5rem;
  font-weight: 900;
  color: #e0e0e0;
  margin-right: 20px;
}

.service-item.active .service-number {
  color: #ff4081;
}

.service-text {
  flex-grow: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-text h4 {
  margin: 0;
  font-size: 1.1rem;
  color: #333;
}

.arrow-icon {
  color: #ccc;
  transition: 0.3s;
}

.service-item.active .arrow-icon {
  color: #ff4081;
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
  .flex-container {
    flex-direction: column;
  }

  .images-grid {
    grid-template-columns: 1fr;
  }
}




/* ===== SECTION 4 PILIERS ===== */
#key-international-solutions {
  text-align: center;
}

#key-international-solutions h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #002366;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.solution-item {
  background: #7c7a7aad;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(179, 90, 90, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.icon-box {
  background: #b20000;
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px auto;
}

.solution-item h4 {
  font-size: 1rem;
  font-weight: 500;
  color: #000;
  margin-top: 10px;
}

/* Bouton secondaire */
#key-international-solutions .btn-secondary {
  background: #002366;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  transition: background 0.3s ease;
}

#key-international-solutions .btn-secondary:hover {
  background: #001244;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .solution-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .solution-grid {
    grid-template-columns: 1fr;
  }

  #international-agents-intro h1 {
    font-size: 1.8rem;
  }

  #international-agents-intro .image-gallery-overview img {
    width: 200px;
  }
}





/* ===== SECTIONS STYLING ===== */

.section-tit {
  color: #fff;
  font-size: 2.1rem;
  font-weight: bold;

}

.section-titl {
  color: #002366;
  font-size: 2.1rem;

}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #e63946;
  margin: 10px auto 0;
  border-radius: 2px;
}



/* ===== PROCESS STEPS ===== */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.step {
  background: #7c7a7a63;
  border: 2px solid #457b9d20;
  border-radius: 12px;
  width: 260px;
  padding: 1.5rem;
  border-color: #457b9d;
  text-align: center;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.step:hover {
  transform: translateY(-8px);
  border-color: none;
  border: 2px solid #457b9d20;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.step-number {
  display: inline-block;
  background: #e63946;
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

/* ===== ADVANTAGE LIST ===== */
.why-choose .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  border-radius: 30px;
  padding: 10px;
  color: #222;
  background-color: #ffffff9c;
}

.why-choose {
  background: linear-gradient(#d6d3d3ad, #661d00a4),
    url("#") center/cover no-repeat;
}

.why-choose .highlight {
  color: #002366;
  /* bleu accent */
}


.advantage-item {
  position: relative;
  padding-left: 50px;
}

.advantage-item .icon {
  position: absolute;
  left: 0;
  top: 5px;
  color: #fff;
}

.advantage-item h4 {
  font-size: 1.2rem;
  padding: 5px;
  background-color: #002366;
  color: #fff;
}

.advantage-item p {
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 500;
  padding: 5px;
  border-radius: 22px 0 22px 0;
  background-color: #fcfcfc;
}







/* ====== CTA ====== */
.about-cta2 {
  background: #b20000;
  color: #fff;
  text-align: center;
  padding: 30px 10px;
}

.about-cta2 a:hover {
  background: var(--text-light);
  color: var(--text-dark);
  transform: translateY(-2px);
}

.about-cta2 h2 {
  margin-bottom: 20px;
  font-size: 2rem;
}










/* Section for the Interactive Background */
.interactive-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
  /* background: linear-gradient(135deg, var(--primary-color), #4CAF50); */
  background-size: 400% 400%;
}

/* Floating Items (Icons and Words) */
.background__container {
  position: relative;
  width: 100%;
  height: 100%;
}

.floating-item {
  position: absolute;
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  opacity: 0.8;
  animation: float 6s linear infinite, drift 12s ease-in-out infinite;
  white-space: nowrap;
}

/* Animate Background Gradient */
@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Float Effect for Items */
@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0);
  }
}

/* Drift Animation for Horizontal Movement */
@keyframes drift {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(50px);
  }

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

/* Generate Random Position for Items */
.floating-item:nth-child(1) {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.floating-item:nth-child(2) {
  top: 20%;
  left: 75%;
  animation-delay: 1s;
}

.floating-item:nth-child(3) {
  top: 50%;
  left: 40%;
  animation-delay: 2s;
}

.floating-item:nth-child(4) {
  top: 30%;
  left: 20%;
  animation-delay: 3s;
}

.floating-item:nth-child(5) {
  top: 70%;
  left: 60%;
  animation-delay: 4s;
}

.floating-item:nth-child(6) {
  top: 80%;
  left: 10%;
  animation-delay: 5s;
}

.floating-item:nth-child(7) {
  top: 60%;
  left: 80%;
  animation-delay: 6s;
}

.floating-item:nth-child(8) {
  top: 15%;
  left: 45%;
  animation-delay: 7s;
}

.floating-item:nth-child(9) {
  top: 5%;
  left: 50%;
  animation-delay: 8s;
}

.floating-item:nth-child(10) {
  top: 90%;
  left: 35%;
  animation-delay: 9s;
}