/**
* Template Name: Arsha
* Updated: Sep 18 2023 with Bootstrap v5.3.2
* Template URL: https://bootstrapmade.com/arsha-free-bootstrap-html-template-corporate/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Variables & Reset
--------------------------------------------------------------*/
:root {
  --primary-color: #2563eb;
  --primary-dark: #1e40af;
  --primary-light: #3b82f6;
  --accent-color: #f59e0b;
  --accent-gradient: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  --dark-bg: #0f172a;
  --light-bg: #f8fafc;
  --text-dark: #1e293b;
  --text-light: #64748b;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Inter", "Open Sans", sans-serif;
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}
* {
  scroll-behavior: smooth;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", "Jost", sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark-bg) 0%, #1e3a8a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader:before {
  content: "";
  position: relative;
  border: 4px solid transparent;
  border-top-color: var(--accent-color);
  border-bottom-color: var(--primary-color);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.1);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 25px;
  bottom: 25px;
  z-index: 996;
  background: var(--accent-gradient);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: var(--transition);
  z-index: 997;
  padding: 20px 0;
  background: transparent;
  overflow: visible;
}
#header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: visible; /* ✅ IMPORTANT */
  width: 100%;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  font-weight: 700;
  letter-spacing: 1px;
  background: linear-gradient(
    135deg,
    var(--white) 0%,
    var(--accent-color) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#header .logo a {
  background: linear-gradient(
    135deg,
    var(--white) 0%,
    var(--accent-color) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#header .logo img {
  max-height: 40px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
  overflow: visible; /* ✅ IMPORTANT */
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
  gap: 5px;
  flex-wrap: nowrap;
}

.navbar li {
  position: relative;
  white-space: nowrap;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
  transition: var(--transition);
  border-radius: 8px;
  position: relative;
}

.navbar a::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 2px;
  background: var(--accent-gradient);
  transition: var(--transition);
}
.navbar a:hover::after,
.navbar .active::after {
  transform: translateX(-50%) scaleX(1);
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 10px 24px;
  margin-left: 15px;
  border-radius: 50px;
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  background: var(--accent-gradient);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
  transition: var(--transition);
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(245, 158, 11, 0.5);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: #0c3c53;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #47b2e4;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(40, 58, 90, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #37517e;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #47b2e4;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  color: #37517e;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: #47b2e4;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
  visibility: visible !important;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #1e40af 100%);
}

#hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url("../img/achievement.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  z-index: 0;
}
#hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: radial-gradient(
      circle at 30% 50%,
      rgba(245, 158, 11, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 50%,
      rgba(37, 99, 235, 0.15) 0%,
      transparent 50%
    );
  z-index: 0;
}

#hero.form1::before {
  background-image: url("../img/intelligence-artificielle-3542x1219px.png");
}

#hero.form2::before {
  background-image: url("../img/CDG_blog_post_image_02-2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

#hero.form3::before {
  background-image: url("../img/cloud-computing.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

#hero.form5::before {
  background-image: url("../img/Gouvernance-et-controle-dans-ITIL-4.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

#hero.form7::before {
  background-image: url("../img/zyro-image.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

#hero.form8::before {
  background-image: url("../img/projectmanag.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
#hero .container {
  position: relative;
  z-index: 1;
  padding-top: 100px;
}

#hero h1 {
  margin: 0 0 20px 0;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease-out;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

#hero .btn-get-started {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 14px 35px;
  border-radius: 50px;
  transition: var(--transition);
  margin: 10px 10px 0 0;
  color: var(--white);
  background: var(--accent-gradient);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

#hero .btn-get-started:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(245, 158, 11, 0.6);
}

#hero .btn-watch-video {
  font-size: 16px;
  display: flex;
  align-items: center;
  transition: 0.5s;
  margin: 10px 0 0 25px;
  color: #fff;
  line-height: 1;
}

#hero .btn-watch-video i {
  line-height: 0;
  color: #fff;
  font-size: 32px;
  transition: 0.3s;
  margin-right: 8px;
}

#hero .btn-watch-video:hover i {
  color: #47b2e4;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
  #hero {
    height: 100vh;
    text-align: center;
  }

  #hero .animated {
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }

  #hero .btn-get-started {
    font-size: 16px;
    padding: 10px 24px 11px 24px;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}
/*--------------------------------------------------------------
# Hero caroussel
--------------------------------------------------------------*/
/* Styles pour le carrousel Hero - Ajout */
#hero .hero-content {
  opacity: 1;
  transition: opacity 0.8s ease-in-out;
}

.carousel-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.carousel-indicators .indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-indicators .indicator.active {
  background: white;
  width: 30px;
  border-radius: 6px;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  font-size: 10px;
}

.carousel-nav:hover {
  background: rgba(245, 158, 11, 0.8);
  border-color: white;
  transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
  left: 30px;
}
.carousel-nav.next {
  right: 30px;
}

@media (max-width: 768px) {
  .carousel-nav {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .carousel-nav.prev {
    left: 15px;
  }
  .carousel-nav.next {
    right: 15px;
  }
  .carousel-indicators {
    bottom: 15px;
  }
}
/* Language Switcher */
.language-switcher {
  position: relative;
  margin-left: 15px;
  flex-shrink: 0; /* ✅ IMPORTANT : Empêcher la réduction */
  z-index: 1001;
}

.language-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.language-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.language-btn i {
  font-size: 15px;
}

.flag-emoji {
  font-size: 14px;
  line-height: 1;
}

.language-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  padding: 10px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1002;
}

.language-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--text-dark);
  font-weight: 500;
}

.language-option:hover {
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  transform: translateX(5px);
}

.language-option.active {
  background: var(--accent-gradient);
  color: white;
}

.language-option i.bi-check-circle-fill {
  color: white;
  font-size: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.language-option.active i.bi-check-circle-fill {
  opacity: 1;
}

@keyframes languageChange {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1) rotate(5deg);
  }
  100% {
    transform: scale(1);
  }
}

.language-btn.changing {
  animation: languageChange 0.5s ease;
}

@media (max-width: 991px) {
  .navbar-mobile .language-switcher {
    margin: 10px;
  }
  .language-btn {
    width: 100%;
    justify-content: center;
    background: rgba(37, 99, 235, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
  }
  .language-dropdown {
    position: static;
    margin-top: 10px;
  }
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f3f5fa;
}

.count-bg {
  background-color: #0e2356;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #37517e;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #47b2e4;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding: 12px 0;
  text-align: center;
}

.clients img {
  max-width: 45%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
  filter: grayscale(100);
}

.clients img:hover {
  filter: none;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .clients img {
    max-width: 40%;
  }
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li + li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #47b2e4;
  line-height: 1;
}
.about .content p {
  text-align: justify;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  transition: 0.3s;
  line-height: 1;
  color: #47b2e4;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #47b2e4;
}

.about .content .btn-learn-more:hover {
  background: #47b2e4;
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 40px 0;
}

.counts .counters span {
  font-size: 48px;
  display: block;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  margin-bottom: 15px;
}
.purecounter::before {
  content: "+";
  margin-right: 3px;
}
.counts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
}

.counter-title {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .content {
  padding: 60px 100px 0 100px;
}

.why-us .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: #37517e;
}

.why-us .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.why-us .content p {
  font-size: 15px;
  color: #848484;
}

.why-us .img {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.why-us .accordion-list {
  padding: 0 100px 60px 100px;
}

.why-us .accordion-list ul {
  padding: 0;
  list-style: none;
}

.why-us .accordion-list li + li {
  margin-top: 15px;
}

.why-us .accordion-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
}

.why-us .accordion-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
  cursor: pointer;
}

.why-us .accordion-list span {
  color: #47b2e4;
  font-weight: 600;
  font-size: 18px;
  padding-right: 10px;
}

.why-us .accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.why-us .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
  text-align: justify;
}

.why-us .accordion-list .icon-show {
  display: none;
}

.why-us .accordion-list a.collapsed {
  color: #343a40;
}

.why-us .accordion-list a.collapsed:hover {
  color: #47b2e4;
}

.why-us .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.why-us .accordion-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1024px) {
  .why-us .content,
  .why-us .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .why-us .img {
    min-height: 400px;
  }

  .why-us .content {
    padding-top: 30px;
  }

  .why-us .accordion-list {
    padding-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .why-us .img {
    min-height: 200px;
  }
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .content h3 {
  font-weight: 700;
  font-size: 32px;
  color: #37517e;
  font-family: "Poppins", sans-serif;
}

.skills .content ul {
  list-style: none;
  padding: 0;
}

.skills .content ul li {
  padding-bottom: 10px;
}

.skills .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #47b2e4;
}

.skills .content p:last-child {
  margin-bottom: 0;
}

.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #37517e;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: #e8edf5;
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: #4668a2;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all ease-in-out 0.4s;
  background: #fff;
  border-radius: 5px;
}

.services .icon-box .icon {
  margin-bottom: 10px;
  margin-left: 50px;
}

.services .icon-box .Z {
  margin-right: -20px;
  margin-bottom: 10px;
  margin-left: 30px;
}

.services .icon-box .G {
  margin-bottom: 10px;
  margin-left: 20px;
}

.services .icon-box .icon i {
  color: #47b2e4;
  font-size: 36px;
  transition: 0.3s;
}

.services .icon-box h4 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 28px;
  text-align: center;
}

.services .icon-box h4 a {
  color: #37517e;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  transform: translateY(-10px);
}

.anim1:hover {
  background: linear-gradient(#f4c9c9, #c4c7ec);
}

.anim2:hover {
  background: linear-gradient(#c9f4dc, #e3ecc4);
}

.anim3:hover {
  background: linear-gradient(rgb(244, 201, 241), #c4e5ec);
}

.anim4:hover {
  background: linear-gradient(#f4c9c9, #ecc4e7);
}

.services .icon-box:hover h4 a {
  color: #47b2e4;
}

.p-service {
  text-align: justify;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(40, 58, 90, 0.9), rgba(40, 58, 90, 0.9)),
    url("../img/cta-bg.jpg") fixed center center;
  background-size: cover;
  padding: 120px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #47b2e4;
  border: 2px solid #47b2e4;
}
/* Countdown Styling */
.countdown-circle {
  display: inline-block;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 3px solid var(--accent-color);
  margin: 20px 15px;
  text-align: center;
  line-height: 110px;
  font-size: 20px;
  color: var(--white);
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.countdown-circle:hover {
  transform: scale(1.1);
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}
/* Partnership Dynamic Select & Info Card */
.partnership .custom-select {
  padding: 16px 30px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: var(--transition);
  min-width: 300px;
  cursor: pointer;
}

.partnership .custom-select:focus {
  outline: none;
  border-color: var(--accent-color);
  background: rgba(255, 255, 255, 0.15);
}

.partnership .custom-select option {
  background: #1e3a8a;
  color: var(--white);
  padding: 10px;
}

.partnership .info-card {
  background: var(--white);
  border-radius: 20px;
  padding: 0;
  margin-top: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.6s ease-out forwards;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.partnership .info-card .row {
  margin: 0;
}

.partnership .info-card .content-side {
  padding: 50px;
}

.partnership .info-card .content-side h4 {
  color: #1e3a8a;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
}

.partnership .info-card .content-side p {
  color: #64748b;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.partnership .info-card .content-side ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.partnership .info-card .content-side ul li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  color: #475569;
}

.partnership .info-card .content-side ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: white;
  font-weight: bold;
}

.partnership .info-card .image-side {
  padding: 0;
  height: 100%;
  min-height: 400px;
}

.partnership .info-card .image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partnership .cta-box .cta-btn-group {
  align-items: center;
}

@media (max-width: 768px) {
  .partnership .custom-select {
    min-width: 100%;
  }

  .partnership .info-card .content-side {
    padding: 30px;
  }

  .partnership .info-card .image-side {
    min-height: 250px;
  }
}
/*--------------------------------------------------------------
# Temoignages
--------------------------------------------------------------*/
/* Section Témoignages */
.testimonials {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.08) 0%,
    transparent 70%
  );
  top: -300px;
  left: -300px;
  animation: float 20s ease-in-out infinite;
}

.testimonials::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.08) 0%,
    transparent 70%
  );
  bottom: -250px;
  right: -250px;
  animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

.section-title {
  text-align: center;
  padding-bottom: 50px;
  position: relative;
  z-index: 1;
}

.section-title h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
  font-family: "Poppins", sans-serif;
}

.section-title p {
  color: var(--text-light);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Testimonial Card */
.testimonial-card {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
  border: 2px solid transparent;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245, 158, 11, 0.3);
}

.testimonial-card:hover::before {
  transform: scaleX(1);
}

/* Quote Icon */
.quote-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.quote-icon i {
  font-size: 28px;
  color: var(--white);
}

/* Testimonial Content */
.testimonial-content {
  margin-bottom: 30px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 0;
}

/* Star Rating */
.star-rating {
  margin-bottom: 20px;
}

.star-rating i {
  color: #fbbf24;
  font-size: 18px;
  margin-right: 2px;
}

/* Author Info */
.author-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.author-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--accent-color);
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-details h5 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.author-details .position {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 5px;
}

.author-details .company {
  font-size: 13px;
  color: var(--accent-color);
  font-weight: 600;
}

/* Stats Section */
.testimonials-stats {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 2px solid rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
}

.stat-box {
  text-align: center;
  padding: 30px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.stat-number {
  font-size: 48px;
  font-weight: 900;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 16px;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonials {
    padding: 60px 0;
  }

  .section-title h2 {
    font-size: 32px;
  }

  .testimonial-card {
    padding: 30px;
    margin-bottom: 30px;
  }

  .author-info {
    flex-direction: column;
    text-align: center;
  }

  .testimonials-stats {
    margin-top: 50px;
  }

  .stat-box {
    margin-bottom: 20px;
  }
}
/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  list-style: none;
  margin-bottom: 20px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  margin: 10px 5px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: #444444;
  transition: all 0.3s;
  padding: 8px 20px;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  background: #47b2e4;
  color: #fff;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

/* .portfolio .portfolio-item .portfolio-img {
  overflow: hidden;
} */
.portfolio .portfolio-item .portfolio-img {
  overflow: hidden;
  height: 200px;
  /* Choisissez la hauteur souhaitée */
}

.portfolio .portfolio-item .portfolio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ajustez selon vos besoins (cover, contain, fill, etc.) */
}

.portfolio .portfolio-item .portfolio-img img {
  transition: all 0.6s;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 15px;
  bottom: 0;
  z-index: 3;
  right: 15px;
  transition: all 0.3s;
  background: rgba(55, 81, 126, 0.8);
  padding: 10px 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #f9fcfe;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #fff;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #47b2e4;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item:hover .portfolio-img img {
  transform: scale(1.15);
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details
  .portfolio-details-slider
  .swiper-pagination
  .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #47b2e4;
}

.portfolio-details
  .portfolio-details-slider
  .swiper-pagination
  .swiper-pagination-bullet-active {
  background-color: #47b2e4;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(55, 81, 126, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  position: relative;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 5px;
  background: #fff;
  transition: 0.5s;
  height: 100%;
}

.team .member .pic {
  overflow: hidden;
  width: 180px;
  border-radius: 50%;
}

.team .member .pic img {
  transition: ease-in-out 0.3s;
}

.team .member:hover {
  transform: translateY(-10px);
}

.team .member .member-info {
  padding-left: 30px;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #37517e;
}

.team .member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.team .member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #cbd6e9;
  bottom: 0;
  left: 0;
}

.team .member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.team .member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.team .member .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 32px;
  height: 32px;
  background: #eff2f8;
}

.team .member .social a i {
  color: #37517e;
  font-size: 16px;
  margin: 0 2px;
}

.team .member .social a:hover {
  background: #47b2e4;
}

.team .member .social a:hover i {
  color: #fff;
}

.team .member .social a + a {
  margin-left: 8px;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .row {
  padding-top: 40px;
}

.pricing .box {
  padding: 60px 40px;
  box-shadow: 0 3px 20px -2px rgba(20, 45, 100, 0.1);
  background: #f3f4f7;
  height: 90%;
  border-top: 4px solid #fff;
  border-radius: 5px;
}

.pricing .formation {
  height: 90%;
  box-shadow: 0 3px 10px -1px;
}

.pricing h3 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 20px;
  color: #37517e;
}

.pricing h4 {
  font-size: 48px;
  color: #37517e;
  font-weight: 400;
  font-family: "Jost", sans-serif;
  margin-bottom: 25px;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: #002e67;
  font-size: 18px;
  display: block;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: #999;
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0 10px 30px;
  position: relative;
}

.pricing ul i {
  color: #28a745;
  font-size: 24px;
  position: absolute;
  left: 0;
  top: 6px;
}

.pricing ul .na {
  color: #ccc;
}

.pricing ul .na i {
  color: #ccc;
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  display: inline-block;
  padding: 12px 35px;
  border-radius: 50px;
  color: #002e67;
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  transition: 0.3s;
  border: 1px solid #002e67;
}

.pricing .buy-btn:hover {
  background: #1c5396;
  color: #fff;
}

.pricing .featured {
  border-top-color: #002e67;
  height: 90%;
}

.pricing .featured .buy-btn {
  background: #002e67;
  color: #fff;
}

.pricing .featured .buy-btn:hover {
  background: #3567a5;
}

.pricing img {
  width: 50%;
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li + li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #47b2e4;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #37517e;
  transition: 0.3s;
}

.faq .faq-list a.collapsed:hover {
  color: #47b2e4;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  border: none;
  border-radius: 20px;
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: var(--shadow-md);
}

.contact .info i {
  font-size: 20px;
  color: var(--white);
  float: left;
  width: 44px;
  height: 44px;
  background: var(--accent-gradient);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.contact .info img {
  width: 100%;
}

.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #6182ba;
}

.contact .info .email p {
  padding-top: 5px;
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: var(--accent-gradient);
  color: var(--white);
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: var(--accent-gradient);
  color: var(--white);
}

.contact .php-email-form {
  width: 100%;
  border-top: 3px solid #47b2e4;
  border-bottom: 3px solid #47b2e4;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 20px;
}

.contact .php-email-form label {
  padding-bottom: 8px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #47b2e4;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
  background: var(--accent-gradient);
  border: none;
  padding: 14px 40px;
  color: var(--white);
  font-weight: 600;
  transition: var(--transition);
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
}

.contact .php-email-form button[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.5);
}

.contact .php-email-form {
  border: none;
  border-radius: 20px;
  padding: 40px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border: 2px solid var(--light-bg);
  border-radius: 12px;
  padding: 14px 20px;
  transition: var(--transition);
}
.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f3f5fa;
  min-height: 40px;
  margin-top: 72px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 600;
  color: #37517e;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #4668a2;
  content: "/";
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
  color: rgba(255, 255, 255, 0.8);
}

#footer .footer-newsletter {
  background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
  padding: 60px 0;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: #37517e;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}

#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  color: var(--white);
  transition: 0.3s;
  border-radius: 50px;
  background: var(--accent-gradient);
  padding: 12px 32px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

#footer .footer-newsletter form input[type="submit"]:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

#footer .footer-top {
  padding: 80px 0 40px;
  background: transparent;
}

#footer .footer-top h3 {
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#footer .footer-top h4 {
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 20px;
}
#footer .social-links a {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: 2px solid transparent;
}

#footer .social-links a:hover {
  background: var(--accent-gradient);
  border-color: var(--white);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  #footer .copyright,
  #footer .credits {
    text-align: center;
    float: none;
  }

  #footer .credits {
    padding-top: 4px;
  }
}
/*--------------------------------------------------------------
# Partnership Section - Premium Design
--------------------------------------------------------------*/
.partnership {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.partnership::before {
  content: "";
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.1) 0%,
    transparent 70%
  );
  top: -400px;
  right: -400px;
  animation: float 25s ease-in-out infinite;
}

.partnership::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.1) 0%,
    transparent 70%
  );
  bottom: -300px;
  left: -300px;
  animation: float 20s ease-in-out infinite reverse;
}

.partnership .section-title h2 {
  color: var(--white);
}

.partnership .section-title h2::before {
  background: var(--accent-gradient);
}

.partnership .section-title p {
  color: rgba(255, 255, 255, 0.85);
}

.partnership .partner-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 50px 40px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.partnership .partner-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.5s;
}

.partnership .partner-card:hover::before {
  left: 100%;
}

.partnership .partner-card:hover {
  transform: translateY(-10px);
  border-color: rgba(245, 158, 11, 0.5);
  box-shadow: 0 20px 60px rgba(245, 158, 11, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.partnership .partner-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
  transition: var(--transition);
}

.partnership .partner-card:hover .partner-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(245, 158, 11, 0.5);
}

.partnership .partner-icon i {
  font-size: 48px;
  color: var(--white);
}

.partnership .partner-card h4 {
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.partnership .partner-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.partnership .partner-card .benefits-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  text-align: left;
}

.partnership .partner-card .benefits-list li {
  color: rgba(255, 255, 255, 0.9);
  padding: 12px 0;
  padding-left: 35px;
  position: relative;
  font-size: 15px;
}

.partnership .partner-card .benefits-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 12px;
  width: 24px;
  height: 24px;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  color: var(--white);
}

.partnership .partner-btn {
  display: inline-block;
  padding: 14px 40px;
  border-radius: 50px;
  background: var(--white);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 16px;
  transition: var(--transition);
  border: 2px solid var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.partnership .partner-btn:hover {
  background: var(--accent-gradient);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

.partnership .cta-box {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 60px 50px;
  margin-top: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.partnership .cta-box::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.1) 0%,
    transparent 70%
  );
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.partnership .cta-box h3 {
  color: var(--white);
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.partnership .cta-box p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  margin-bottom: 35px;
  position: relative;
  z-index: 1;
}

.partnership .cta-box .cta-btn-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.partnership .cta-box .btn-primary {
  padding: 16px 45px;
  border-radius: 50px;
  background: var(--accent-gradient);
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  border: none;
  transition: var(--transition);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.partnership .cta-box .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(245, 158, 11, 0.5);
}

.partnership .cta-box .btn-secondary {
  padding: 16px 45px;
  border-radius: 50px;
  background: transparent;
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  border: 2px solid var(--white);
  transition: var(--transition);
}

.partnership .cta-box .btn-secondary:hover {
  background: var(--white);
  color: var(--primary-dark);
  transform: translateY(-3px);
}

.partnership .stats-row {
  margin-top: 80px;
  position: relative;
  z-index: 1;
}

.partnership .stat-item {
  text-align: center;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.partnership .stat-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
}

.partnership .stat-number {
  font-size: 48px;
  font-weight: 900;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 10px;
}

.partnership .stat-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 992px) {
  .partnership .partner-card {
    margin-bottom: 30px;
  }

  .partnership .cta-box {
    padding: 40px 30px;
  }

  .partnership .cta-box h3 {
    font-size: 28px;
  }

  .partnership .cta-box .cta-btn-group {
    flex-direction: column;
  }
}
/* Objectives Section */
.objectives-section {
  padding: 80px 0;
  background: var(--white);
}

.objectives-card {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 20px;
  padding: 50px;
  box-shadow: var(--shadow-md);
  margin-bottom: 40px;
  transition: var(--transition);
}

.objectives-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.objectives-card h2 {
  color: var(--text-dark);
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.objectives-card h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--accent-gradient);
  border-radius: 2px;
}

.objectives-card p {
  color: var(--text-light);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 0;
}

/* Features Section */
.features-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.feature-box {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  height: 100%;
  border: 2px solid transparent;
}

.feature-box:hover {
  transform: translateY(-10px);
  border-color: var(--accent-color);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.feature-icon i {
  font-size: 36px;
  color: var(--white);
}

.feature-box h4 {
  color: var(--text-dark);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.feature-box p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 0;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
  text-align: left;
}

.feature-list li {
  padding: 10px 0;
  padding-left: 35px;
  position: relative;
  color: var(--text-light);
  font-size: 15px;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 10px;
  width: 24px;
  height: 24px;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  color: var(--white);
}

/* Certifications Section */
.certifications-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
  position: relative;
  overflow: hidden;
}

.certifications-section::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.1) 0%,
    transparent 70%
  );
  bottom: -300px;
  left: -300px;
  animation: float 25s ease-in-out infinite;
}

.certifications-section .section-title h2 {
  color: var(--white);
}

.certifications-section .section-title p {
  color: rgba(255, 255, 255, 0.85);
}

.certification-badge {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.certification-badge:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--accent-color);
  transform: translateY(-10px);
}

.certification-badge .badge-icon {
  width: 100px;
  height: 100px;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

.certification-badge .badge-icon i {
  font-size: 48px;
  color: var(--white);
}

.certification-badge h4 {
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.certification-badge p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 1.7;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: var(--white);
}

.faq-item {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(5px);
}

.faq-question {
  color: var(--text-dark);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.faq-question .question-icon {
  width: 32px;
  height: 32px;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
  font-weight: 800;
  font-size: 18px;
}

.faq-answer {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.8;
  padding-left: 47px;
  margin-bottom: 0;
}

/* CTA Section */
.cta-ipm {
  background: var(--accent-gradient);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-ipm::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".1" fill="%23ffffff"></path></svg>')
    no-repeat;
  background-size: cover;
  opacity: 0.1;
}

.cta-ipm h2 {
  color: var(--white);
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
}

.cta-ipm p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 20px;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn-white {
  display: inline-block;
  padding: 16px 45px;
  border-radius: 50px;
  background: var(--white);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 18px;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.cta-btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  color: var(--primary-dark);
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .ipm-hero {
    padding: 120px 0 60px;
  }

  .ipm-hero h1 {
    font-size: 32px;
  }

  .ipm-hero .subtitle {
    font-size: 18px;
  }

  .objectives-card {
    padding: 30px;
  }

  .objectives-card h2 {
    font-size: 26px;
  }

  .cta-ipm h2 {
    font-size: 32px;
  }
}
/* 
--------------------------------------------------------------
# FORMATION0S SECTION
--------------------------------------------------------------*/
.formation-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.formation-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.formation-card-image {
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.formation-card-image img {
  max-width: 70%;
  max-height: 160px;
  object-fit: contain;
}

.formation-card-body {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.formation-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 15px;
}

.badge-certification {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
}

.badge-diplome {
  background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  color: white;
}

.formation-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 15px;
  line-height: 1.4;
  min-height: 65px;
}

.formation-card p {
  color: #64748b;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

.formation-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  padding-top: 20px;
  border-top: 2px solid #f1f5f9;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #64748b;
}

.meta-item i {
  color: #f59e0b;
  font-size: 18px;
}

.formation-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.btn-formation {
  flex: 1;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.btn-info {
  background: white;
  color: #2563eb;
  border: 2px solid #2563eb;
}

.btn-info:hover {
  background: #2563eb;
  color: white;
}

.btn-inscrire {
  background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-inscrire:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
  color: white;
}

.section-formations {
  padding: 80px 0;
}

.formations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

@media (max-width: 768px) {
  .formations-grid {
    grid-template-columns: 1fr;
  }

  .formation-card h3 {
    min-height: auto;
  }
}
/*--------------------------------------------------------------
# details formation SECTION
--------------------------------------------------------------*/
.details-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
  padding: 150px 0 80px;
  position: relative;
  overflow: hidden;
}

.details-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(245, 158, 11, 0.15) 0%,
    transparent 50%
  );
  z-index: 0;
}

.details-hero .container {
  position: relative;
  z-index: 1;
}

.badge-formation {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.details-hero h1 {
  color: white;
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
}

.details-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  margin-bottom: 30px;
}

.formation-meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.meta-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 25px;
  text-align: center;
}

.meta-box i {
  font-size: 32px;
  color: #f59e0b;
  margin-bottom: 15px;
}

.meta-box .label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.meta-box .value {
  color: white;
  font-size: 18px;
  font-weight: 700;
}

.details-content {
  padding: 80px 0;
}

.content-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.content-card h2 {
  color: #1e293b;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.content-card h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  border-radius: 2px;
}

.objectifs-list,
.prerequis-list {
  list-style: none;
  padding: 0;
}

.objectifs-list li,
.prerequis-list li {
  padding: 15px 0;
  padding-left: 40px;
  position: relative;
  color: #64748b;
  font-size: 14px;
  line-height: 1.7;
  border-bottom: 1px solid #f1f5f9;
}

.objectifs-list li:last-child,
.prerequis-list li:last-child {
  border-bottom: none;
}

.objectifs-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 15px;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
  color: white;
}

.prerequis-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 15px;
  font-size: 20px;
  color: #f59e0b;
  font-weight: bold;
}

.sessions-section {
  padding: 80px 0;
  background: #f8fafc;
}

.session-card {
  background: white;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.session-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-color: #f59e0b;
}

.session-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f1f5f9;
}

.session-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  font-weight: 800;
}

.session-places {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: #ecfdf5;
  border-radius: 25px;
  color: #059669;
  font-weight: 600;
}

.session-places i {
  font-size: 18px;
}

.session-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 25px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.info-item i {
  font-size: 24px;
  color: #f59e0b;
}

.info-item .info-content .label {
  font-size: 13px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-item .info-content .value {
  font-size: 16px;
  color: #1e293b;
  font-weight: 600;
}

.btn-session-inscrire {
  width: 100%;
  padding: 16px 30px;
  background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  display: block;
  text-align: center;
}

.btn-session-inscrire:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
  color: white;
}

@media (max-width: 768px) {
  .details-hero h1 {
    font-size: 32px;
  }

  .formation-meta-grid {
    grid-template-columns: 1fr;
  }

  .session-header {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}
/*--------------------------------------------------------------
# inscription formation IPM Section
--------------------------------------------------------------*/
.inscription-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
  padding: 120px 0 60px;
  position: relative;
}

.inscription-hero h1 {
  color: white;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 15px;
}

.inscription-hero .formation-badge {
  display: inline-block;
  padding: 10px 25px;
  background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  color: white;
  border-radius: 30px;
  font-weight: 600;
  font-size: 18px;
  margin-top: 20px;
}

.form-section {
  padding: 60px 0;
  background: #f8fafc;
}

.form-container {
  background: white;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 10px;
  display: block;
  font-size: 15px;
}

.form-group label .required {
  color: #ef4444;
  margin-left: 3px;
}

.form-control {
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #f59e0b;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1);
  outline: none;
}

.date-picker-container {
  position: relative;
}

.date-picker-container .form-control {
  padding-left: 45px;
}

.date-picker-container i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #f59e0b;
  font-size: 18px;
  pointer-events: none;
}

.info-box {
  background: #ecfdf5;
  border: 2px solid #059669;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 30px;
}

.info-box h4 {
  color: #059669;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-box p {
  color: #047857;
  margin-bottom: 0;
  font-size: 15px;
}

.warning-box {
  background: #fff7ed;
  border: 2px solid #f59e0b;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 30px;
}

.warning-box h4 {
  color: #f59e0b;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.warning-box p {
  color: #d97706;
  margin-bottom: 0;
  font-size: 14px;
}

.btn-submit {
  width: 100%;
  padding: 18px 30px;
  background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-top: 20px;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.success-message {
  background: #ecfdf5;
  border: 2px solid #059669;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  display: none;
}

.success-message i {
  font-size: 50px;
  color: #059669;
  margin-bottom: 15px;
}

.success-message h3 {
  color: #059669;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .form-container {
    padding: 30px 20px;
  }

  .inscription-hero h1 {
    font-size: 28px;
  }
}
/*--------------------------------------------------------------
# search filter SECTION
--------------------------------------------------------------*/
.search-filter-section {
  background: linear-gradient(135deg, var(--dark-bg) 0%, #1e3a8a 100%);
  padding: 40px 0;
  margin-bottom: 40px;
}

.search-box {
  position: relative;
  margin-bottom: 25px;
}

.search-box input {
  width: 100%;
  padding: 18px 55px 18px 25px;
  border: 2px solid #e2e8f0;
  border-radius: 50px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: white;
}

.search-box input:focus {
  outline: none;
  border-color: #f59e0b;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1);
}

.search-box .search-icon {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #f59e0b;
}

.filter-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-btn {
  padding: 12px 28px;
  border: 2px solid #e2e8f0;
  background: white;
  color: #64748b;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-btn:hover {
  border-color: #f59e0b;
  color: #f59e0b;
  transform: translateY(-2px);
}

.filter-btn.active {
  background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  color: white;
  border-color: transparent;
}

.filter-btn i {
  margin-right: 6px;
}

.results-count {
  text-align: center;
  color: #64748b;
  font-size: 16px;
  margin-top: 20px;
  font-weight: 500;
}

.results-count strong {
  color: #1e293b;
  font-weight: 700;
}

.no-results {
  text-align: center;
  padding: 80px 20px;
  display: none;
}

.no-results i {
  font-size: 80px;
  color: #cbd5e1;
  margin-bottom: 20px;
}

.no-results h3 {
  color: #64748b;
  font-size: 24px;
  margin-bottom: 10px;
}

.no-results p {
  color: #94a3b8;
  font-size: 16px;
}

.formations-grid {
  transition: opacity 0.3s ease;
}

.formation-card {
  transition: all 0.3s ease;
}

.formation-card.hidden {
  display: none;
}

.clear-filters {
  display: none;
  text-align: center;
  margin-top: 20px;
}

.btn-clear {
  padding: 10px 30px;
  background: white;
  color: #64748b;
  border: 2px solid #e2e8f0;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-clear:hover {
  border-color: #ef4444;
  color: #ef4444;
}

/*--------------------------------------------------------------
# logos details formation SECTION
--------------------------------------------------------------*/
.logos-section {
  background: white;
  padding: 30px 0; /* ✅ RÉDUIRE de 50px à 30px */
  border-bottom: 2px solid #f1f5f9;
  position: relative;
  overflow: hidden;
}

.logos-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #f59e0b, transparent);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.logos-title {
  text-align: center;
  margin-bottom: 25px; /* ✅ RÉDUIRE de 40px à 25px */
}

.logos-title h3 {
  font-size: 16px; /* ✅ RÉDUIRE de 18px à 16px */
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
}

.logos-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px; /* ✅ RÉDUIRE de 60px à 40px */
  flex-wrap: wrap;
  padding: 15px 0; /* ✅ RÉDUIRE de 20px à 15px */
}

.logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px; /* ✅ RÉDUIRE de 15px à 10px */
  transition: all 0.4s ease;
  opacity: 0.7;
  cursor: pointer;
  position: relative;
}

.logo-item:hover {
  opacity: 1;
  transform: translateY(-8px);
}

.logo-wrapper {
  width: 100px; /* ✅ RÉDUIRE de 120px à 100px */
  height: 65px; /* ✅ RÉDUIRE de 80px à 65px */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px; /* ✅ RÉDUIRE de 15px à 12px */
  background: #f8fafc;
  border-radius: 12px;
  border: 2px solid transparent;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.logo-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(245, 158, 11, 0.1) 0%,
    rgba(239, 68, 68, 0.1) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.logo-item:hover .logo-wrapper {
  border-color: #f59e0b;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.2);
}

.logo-item:hover .logo-wrapper::before {
  opacity: 1;
}

.logo-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.4s ease;
  position: relative;
  z-index: 1;
}

.logo-item:hover .logo-wrapper img {
  filter: grayscale(0%);
}

.logo-name {
  font-size: 12px; /* ✅ RÉDUIRE de 13px à 12px */
  font-weight: 600;
  color: #64748b;
  text-align: center;
  transition: color 0.3s ease;
}

.logo-item:hover .logo-name {
  color: #f59e0b;
}

/* Animation d'apparition progressive */
.logo-item {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

.logo-item:nth-child(1) {
  animation-delay: 0.1s;
}
.logo-item:nth-child(2) {
  animation-delay: 0.2s;
}
.logo-item:nth-child(3) {
  animation-delay: 0.3s;
}
.logo-item:nth-child(4) {
  animation-delay: 0.4s;
}
.logo-item:nth-child(5) {
  animation-delay: 0.5s;
}
.logo-item:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 0.7;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .logos-section {
    padding: 20px 0; /* ✅ RÉDUIRE aussi sur mobile */
  }

  .logos-container {
    gap: 25px; /* ✅ RÉDUIRE de 30px à 25px */
  }

  .logo-wrapper {
    width: 85px; /* ✅ RÉDUIRE de 100px à 85px */
    height: 55px; /* ✅ RÉDUIRE de 70px à 55px */
  }

  .logos-title h3 {
    font-size: 14px; /* ✅ Garder petit */
  }
}
/*--------------------------------------------------------------
# Services Modern Section - NOUVEAU DESIGN
--------------------------------------------------------------*/
.services-modern {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.services-modern::before {
  content: "";
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.05) 0%,
    transparent 70%
  );
  top: -400px;
  right: -200px;
  animation: float 25s ease-in-out infinite;
}

.services-modern .section-title {
  margin-bottom: 70px;
}

.services-modern .section-title h2 {
  font-size: 42px;
  font-weight: 900;
  background: linear-gradient(135deg, #1e3a8a 20%, #0f172a 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-modern .section-title p {
  font-size: 18px;
  color: var(--text-light);
  max-width: 800px;
  margin: 20px auto 0;
  line-height: 1.8;
}

/* Premium Cards Grid */
.formations-premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 35px;
  position: relative;
  z-index: 1;
}

/* Formation Premium Card */
.formation-premium-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
}

.formation-premium-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(245, 158, 11, 0.05) 0%,
    rgba(37, 99, 235, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.formation-premium-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  border-color: rgba(245, 158, 11, 0.3);
}

.formation-premium-card:hover::before {
  opacity: 1;
}

/* Featured Card (Parcours Excellence) */
.featured-card {
  border: 3px solid #f59e0b;
  position: relative;
}

.featured-card::after {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, #f59e0b, #ef4444, #f59e0b);
  border-radius: 24px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.featured-card:hover::after {
  opacity: 0.3;
  animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
}

/* Card Header with Gradient */
.card-header-gradient {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.gp-gradient {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.data-gradient {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.dev-gradient {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.cloud-gradient {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.agile-gradient {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.skills-gradient {
  background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.eco-gradient {
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.bigdata-gradient {
  background: linear-gradient(135deg, #ff9a56 0%, #ff6a88 100%);
}

.excellence-gradient {
  background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

/* Animated Background Pattern */
.card-header-gradient::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.05) 10px,
    rgba(255, 255, 255, 0.05) 20px
  );
  animation: slide 20s linear infinite;
}

@keyframes slide {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

/* Icon Container */
.icon-container {
  width: 140px;
  height: 140px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.formation-premium-card:hover .icon-container {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
}

.icon-container img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

/* Premium Badge */
.badge-premium {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  color: #1e3a8a;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.badge-featured {
  background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  color: white;
  display: flex;
  align-items: center;
  gap: 6px;
}

.badge-featured i {
  font-size: 14px;
  animation: sparkle 2s infinite;
}

@keyframes sparkle {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

/* Card Content */
.card-content {
  padding: 35px 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.card-content h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 15px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.formation-premium-card:hover .card-content h3 {
  color: #f59e0b;
}

.card-content p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 25px;
  flex-grow: 1;
}

/* Features Tags */
.features-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.features-tags .tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.formation-premium-card:hover .features-tags .tag {
  background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
  color: #d97706;
  border-color: #f59e0b;
  transform: translateY(-2px);
}

.features-tags .tag i {
  font-size: 14px;
}

/* Card Footer */
.card-footer {
  padding: 0 30px 30px;
  position: relative;
  z-index: 1;
}

.btn-explore {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 30px;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: white;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
  border: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-explore::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.btn-explore:hover::before {
  left: 100%;
}

.btn-explore:hover {
  background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(245, 158, 11, 0.5);
  color: white;
}

.btn-explore i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.btn-explore:hover i {
  transform: translateX(5px);
}

.btn-excellence {
  background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
}

.btn-excellence:hover {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .formations-premium-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .services-modern {
    padding: 60px 0;
  }

  .services-modern .section-title h2 {
    font-size: 32px;
  }

  .services-modern .section-title p {
    font-size: 16px;
  }

  .formations-premium-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .formation-premium-card {
    margin-bottom: 0;
  }

  .card-header-gradient {
    height: 180px;
  }

  .icon-container {
    width: 110px;
    height: 110px;
  }

  .card-content {
    padding: 25px 20px;
  }

  .card-content h3 {
    font-size: 20px;
  }

  .features-tags {
    gap: 8px;
  }

  .features-tags .tag {
    font-size: 11px;
    padding: 6px 12px;
  }

  .card-footer {
    padding: 0 20px 25px;
  }

  .btn-explore {
    padding: 14px 25px;
    font-size: 14px;
  }
}

/* Animation d'entrée */
@media (prefers-reduced-motion: no-preference) {
  .formation-premium-card {
    opacity: 0;
    animation: fadeInScale 0.6s ease-out forwards;
  }

  .formation-premium-card:nth-child(1) {
    animation-delay: 0.1s;
  }
  .formation-premium-card:nth-child(2) {
    animation-delay: 0.2s;
  }
  .formation-premium-card:nth-child(3) {
    animation-delay: 0.3s;
  }
  .formation-premium-card:nth-child(4) {
    animation-delay: 0.4s;
  }
  .formation-premium-card:nth-child(5) {
    animation-delay: 0.5s;
  }
  .formation-premium-card:nth-child(6) {
    animation-delay: 0.6s;
  }
  .formation-premium-card:nth-child(7) {
    animation-delay: 0.7s;
  }
  .formation-premium-card:nth-child(8) {
    animation-delay: 0.8s;
  }
  .formation-premium-card:nth-child(9) {
    animation-delay: 0.9s;
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
/* Section Offres Premium */
.offres-premium {
  padding: 100px 0;
  /* background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #0f172a 100%); */
  background: linear-gradient(135deg, #f75656 0%, #cb840b 50%, #ef4444 100%);
  position: relative;
  overflow: hidden;
}

.offres-premium::before {
  content: "";
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.1) 0%,
    transparent 70%
  );
  top: -400px;
  right: -200px;
  animation: float 25s ease-in-out infinite;
}

.offres-premium::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(102, 126, 234, 0.1) 0%,
    transparent 70%
  );
  bottom: -300px;
  left: -200px;
  animation: float 20s ease-in-out infinite reverse;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.offres-premium-title {
  text-align: center;
  margin-bottom: 70px;
}

.offres-premium-title h2 {
  font-size: 48px;
  font-weight: 900;
  color: white;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.offres-premium-title p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Offres Grid */
.offres-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

/* Offre Card */
.offre-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.offre-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.offre-card:hover::before {
  left: 100%;
}

.offre-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
  border-color: rgba(11, 23, 245, 0.5);
}

/* Featured Card */
.offre-card.featured {
  border-color: #0f172a;
  box-shadow: 0 0 50px rgba(11, 23, 245, 0.3);
}

.offre-card.featured::after {
  content: "POPULAIRE";
  position: absolute;
  top: 25px;
  right: -30px;
  background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
  color: white;
  padding: 8px 40px;
  transform: rotate(45deg);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Card Header */
.offre-header {
  padding: 30px 30px 20px;
  text-align: center;
  position: relative;
}

.offre-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.offre-card:hover .offre-icon {
  transform: scale(1.1) rotate(5deg);
  border-color: #1e3a8a;
  box-shadow: 0 15px 40px rgba(11, 23, 245, 0.4);
}

.offre-icon img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: all 0.4s ease;
}

.offre-card:hover .offre-icon img {
  transform: scale(1.1);
  filter: brightness(1) invert(0) hue-rotate(25deg);
}

.offre-card h2 {
  font-size: 22px;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Card Body */
.offre-body {
  padding: 20px 30px;
  min-height: 140px;
}

.offre-body p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.8;
  text-align: center;
}

/* Features List */
.features-list {
  list-style: none;
  padding: 20px 30px;
  margin: 0;
}

.features-list li {
  color: rgba(255, 255, 255, 0.9);
  padding: 8px 0;
  padding-left: 40px;
  position: relative;
  font-size: 13px;
  transition: all 0.3s ease;
}

.features-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 13px;
  color: white;
  transition: all 0.3s ease;
}

.offre-card:hover .features-list li::before {
  transform: scale(1.2) rotate(360deg);
}

/* Card Footer */
.offre-footer {
  padding: 20px 30px 35px;
}

.offre-btn {
  display: block;
  width: 100%;
  padding: 14px 25px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.offre-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.offre-btn span {
  position: relative;
  z-index: 1;
}

.offre-btn:hover {
  border-color: #1e3a8a;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(11, 23, 245, 0.4);
}

.offre-btn:hover::before {
  width: 300%;
  height: 300%;
}

.featured .offre-btn {
  background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
  border-color: transparent;
  box-shadow: 0 10px 30px rgba(11, 23, 245, 0.4);
}

.featured .offre-btn:hover {
  background: linear-gradient(135deg, #0f172a 0%, #0f175a 100%);
  transform: translateY(-3px) scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .offres-premium {
    padding: 60px 0;
  }

  .section-title h2 {
    font-size: 32px;
  }

  .section-title p {
    font-size: 16px;
  }

  .offres-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .offre-header {
    padding: 40px 25px 20px;
  }

  .offre-body {
    padding: 20px 25px;
  }

  .features-list {
    padding: 20px 25px;
  }

  .offre-footer {
    padding: 20px 25px 40px;
  }

  .offres-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Animation d'entrée */
.offre-card {
  opacity: 0;
  animation: fadeInScale 0.6s ease-out forwards;
}

.offre-card:nth-child(1) {
  animation-delay: 0.1s;
}
.offre-card:nth-child(2) {
  animation-delay: 0.3s;
}
.offre-card:nth-child(3) {
  animation-delay: 0.5s;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
/* Custom Multi-Select Container */
.multi-select-wrapper {
  position: relative;
}

.select-box {
  background: white;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  padding: 16px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  position: relative;
}

.select-box:hover {
  border-color: #f59e0b;
  transform: translateY(-2px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.select-box.active {
  border-color: #f59e0b;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.2);
}

.selected-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 28px;
}

.selected-items.empty::before {
  content: "Sélectionnez une ou plusieurs formations...";
  color: #94a3b8;
  font-size: 15px;
}

.selected-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.selected-tag .remove-tag {
  cursor: pointer;
  width: 18px;
  height: 18px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  font-size: 12px;
}

.selected-tag .remove-tag:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: rotate(90deg);
}

.select-arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  font-size: 18px;
  transition: transform 0.3s ease;
  pointer-events: none;
}

.select-box.active .select-arrow {
  transform: translateY(-50%) rotate(180deg);
}

/* Dropdown List */
.options-dropdown {
  position: relative;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
}

.options-dropdown.active {
  max-height: 450px;
  opacity: 1;
  visibility: visible;
  overflow-y: auto;
}

/* Custom Scrollbar */
.options-dropdown::-webkit-scrollbar {
  width: 8px;
}

.options-dropdown::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 10px;
}

.options-dropdown::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  border-radius: 10px;
}

/* Search Box */
.search-box {
  padding: 15px;
  border-bottom: 2px solid #f1f5f9;
  position: sticky;
  top: 0;
  background: white;
  z-index: 10;
}

.search-box input {
  width: 100%;
  padding: 12px 40px 12px 15px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 14px;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
}

.search-box input:focus {
  outline: none;
  border-color: #f59e0b;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1);
}

.search-icon {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
}

/* Options List */
.options-list {
  padding: 10px;
}

.option-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 15px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.option-item:hover {
  background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
  transform: translateX(5px);
}

.option-item.selected {
  background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  color: white;
}

/* Custom Checkbox */
.custom-checkbox {
  width: 22px;
  height: 22px;
  border: 2px solid #cbd5e1;
  border-radius: 6px;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.option-item.selected .custom-checkbox {
  background: white;
  border-color: white;
}

.custom-checkbox::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  color: #f59e0b;
  font-weight: bold;
  font-size: 14px;
  transition: transform 0.2s ease;
}

.option-item.selected .custom-checkbox::after {
  transform: translate(-50%, -50%) scale(1);
}

.option-text {
  font-size: 15px;
  font-weight: 500;
  flex-grow: 1;
}

.option-item.selected .option-text {
  font-weight: 600;
}

/* Category Badges */
.category-badge {
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-certification {
  background: #dbeafe;
  color: #1e40af;
}

.badge-management {
  background: #fce7f3;
  color: #be185d;
}

.option-item.selected .category-badge {
  background: rgba(255, 255, 255, 0.3);
  color: white;
}

/* Action Buttons */
.dropdown-actions {
  padding: 15px;
  border-top: 2px solid #f1f5f9;
  display: flex;
  gap: 10px;
  position: sticky;
  bottom: 0;
  background: white;
}

.btn-action {
  flex: 1;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: "Poppins", sans-serif;
}

.btn-clear {
  background: #f1f5f9;
  color: #64748b;
}

.btn-clear:hover {
  background: #e2e8f0;
  transform: translateY(-2px);
}

.btn-apply {
  background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-apply:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

/* No Results */
.no-results {
  text-align: center;
  padding: 40px 20px;
  color: #94a3b8;
}

.no-results i {
  font-size: 48px;
  margin-bottom: 15px;
  opacity: 0.5;
}

.no-results p {
  font-size: 15px;
  font-weight: 500;
}

/* Counter Badge */
.selection-counter {
  position: absolute;
  top: -8px;
  right: 45px;
  background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  color: white;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}

.selection-counter.active {
  opacity: 1;
  transform: scale(1);
}

/* Responsive */
@media (max-width: 768px) {
  .select-box {
    padding: 14px 18px;
  }

  .selected-tag {
    font-size: 12px;
    padding: 5px 10px;
  }

  .option-text {
    font-size: 14px;
  }
}
