/*!------------------------------------------------------------------
[MAIN STYLESHEET]

PROJECT:	Project Name
VERSION:	Versoin Number

charte graphique se e3mg
Vert: #46b549
Jaune A: #eed74f
Jaune B: #ecd88d
bleu: #1758ab
Noire: #231f20

-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[TABLE OF CONTENTS]
-------------------------------------------------------------------*/
/*  typography */
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700");
@font-face {
  font-family: 'myriadpro-bold';
  src: url("../fonts/MYRIADPRO-BOLD.OTF") format("woff");
  font-weight: normal;
  font-style: normal;
}

body {
  line-height: 1.2;
  font-family: "myriadpro-bold",Poppins, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
  color: #5c5c77;
}

ul li{
  font-family:"myriadpro-bold",Poppins, sans-serif; 
  line-height: 1.5;
}
footer{
  font-family: "myriadpro-bold",Poppins, sans-serif;

}
p, .paragraph {
  font-weight: 400;
  color: #5c5c77;
  font-size: 15px;
  line-height: 1.9;
  font-family: "myriadpro-bold", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  color:  #1758ab;
  font-family: "myriadpro-bold";
  font-weight: 700;
  line-height: 1.2;
}

h1, .h1 {
  font-size: 60px;
}

@media (max-width: 575px) {
  h1, .h1 {
    font-size: 45px;
  }
}

h2, .h2 {
  font-size: 40px;
}

@media (max-width: 575px) {
  h2, .h2 {
    font-size: 30px;
  }
}

h3, .h3 {
  font-size: 25px;
}

@media (max-width: 575px) {
  h3, .h3 {
    font-size: 20px;
  }
}

h4, .h4 {
  font-size: 20px;
}

@media (max-width: 575px) {
  h4, .h4 {
    font-size: 18px;
  }
}

h5, .h5 {
  font-size: 18px;
}

@media (max-width: 575px) {
  h5, .h5 {
    font-size: 16px;
  }
}

h6, .h6 {
  font-size: 16px;
}

@media (max-width: 575px) {
  h6, .h6 {
    font-size: 14px;
  }
}

/* Button style */
.btn {
  font-size: 16px;
  font-family: "myriadpro-bold",Poppins, sans-serif;
  text-transform: capitalize;
  padding: 15px 40px;
  border-radius: 0;
  font-weight: 500;
  border: 0;
  position: relative;
  z-index: 1;
  transition: .2s ease;
  overflow: hidden;
}

.btn::before {
  position: absolute;
  content: "";
  height: 80%;
  width: 100%;
  left: 0;
  bottom: 10%;
  z-index: -1;
  transition: -webkit-transform .2s ease-in-out;
  transition: transform .2s ease-in-out;
  transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}

.btn:focus {
  outline: 0;
  box-shadow: none !important;
}

.btn:active {
  box-shadow: none;
}

.btn:hover::before {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
}

.btn-sm {
  font-size: 14px;
  padding: 10px 35px;
}

.btn-xs {
  font-size: 12px;
  padding: 5px 15px;
}

.btn-primary {
  background: #46b549;
  color: #fff;
}

.btn-primary::before {
  background: #fff;
}

.btn-primary:active {
  background: #46b549 !important;
  color: #FFF;
}

.btn-primary:active::before {
  height: 80%;
}

.btn-primary:hover {
  background: #46b549;
  color: #46b549;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #ffab08;
  border-color: #ffab08;
}

.btn-secondary {
  background: #fff;
  color: #46b549;
  border: 1px solid #fff;
}

.btn-secondary::before {
  background: #46b549;
}

.btn-secondary:active {
  background: #46b549;
  color: #fff;
  border: 1px solid #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: #fff;
  border: 1px solid #fff;
}

.btn-primary-outline {
  border: 1px solid #46b549;
  color: #46b549;
  background: transparent;
}

.btn-primary-outline::before {
  background: #fff;
}

.btn-primary-outline:hover {
  background: #46b549;
  color: #46b549;
}

.btn-primary-outline:active {
  background: #46b549;
  color: #fff;
}

body {
  background-color: #fff;
  overflow-x: hidden;
}

::-moz-selection {
  background: #ffcd6e;
  color: #fff;
}

::selection {
  background: #ffcd6e;
  color: #fff;
}

/* preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

ol,
ul {
  list-style-type: none;
  margin: 0px;
}

img {
  vertical-align: middle;
  border: 0;
}

a {
  color: #46b549;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a,
button,
select {
  cursor: pointer;
  transition: .2s ease;
}

a:focus,
button:focus,
select:focus {
  outline: 0;
}


a:hover {
  color: #46b549;
}

a.text-primary:hover {
  color: #46b549 !important;
}

a.text-light:hover {
  color: #46b549 !important;
}

h4 {
  transition: .2s ease;
}

a h4:hover {
  color: #46b549;
}

.slick-slide {
  outline: 0;
}

.section {
  padding-top: 90px;
  padding-bottom: 90px;
}

.section-sm {
  padding-top: 40px;
  padding-bottom: 40px;
}

.section-title {
  margin-bottom: 30px;
}

.bg-cover {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.border-primary {
  border-color: #ededf1 !important;
}

/* overlay */
.overlay {
  position: relative;
}

.overlay::before {
  position: absolute;
  content: '';
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #1a1a37;
  opacity: .8;
}

.outline-0 {
  outline: 0 !important;
}

.d-unset {
  display: unset !important;
}

.bg-primary {
  background: #1758ab !important;
}

.bg-secondary {
  background: #1a1a37 !important;
}

.bg-gray {
  background: #f8f8f8;
}

.text-primary {
  color: #46b549 !important;
}

.text-color {
  color: #ffffff;
}

.text-color::hover {
  color: #eed74f !important;
}

.icon:hover{
  color:#eed74f;
}
.text-light {
  color: #8585a4 !important;
}

.text-lighten {
  color: #d6d6e0 !important;
}

.text-muted {
  color: #b5b5b7 !important;
}

.text-dark {
  color: #1e1e4b !important;
}

.text-banniere{
/*color:#F3E17F !important;*/
color:#eed74f !important;
}


.font-secondary {
  font-family: "myriadpro-bold";
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.pl-150 {
  padding-left: 150px;
}

.zindex-1 {
  z-index: 1;
}

.overflow-hidden {
  overflow: hidden;
}

.vertical-align-middle {
  vertical-align: middle;
}

.icon-md {
  font-size: 36px;
}

/* page title */
.page-title-section {
  padding: 200px 0 80px;
}

.custom-breadcrumb li.nasted {
  position: relative;
  padding-left: 25px;
}

.custom-breadcrumb li.nasted::before {
  position: absolute;
  font-family: "myriadpro-bold";
  content: "\e649";
  font-size: 20px;
  top: 50%;
  left: -5px;
  color: #fff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* /page title */
.list-styled {
  padding-left: 25px;
}

.list-styled li {
  position: relative;
  margin-bottom: 15px;
}

.list-styled li::before {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #46b549;
  left: -25px;
  top: 5px;
}

textarea.form-control {
  height: 200px;
  padding: 20px;
}

#map_canvas {
  height: 500px;
}

.top-header {
  font-size: 12px;
  transition: -webkit-transform .2s ease;
  transition: transform .2s ease;
  transition: transform .2s ease, -webkit-transform .2s ease;
  -webkit-transform-origin: top;
          transform-origin: top;
  font-weight: 600;
  background-color: #1758ab;
}
.top-header ul li {
 color: #ffffff;
}

.top-header.hide {
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: top;
          transform-origin: top;
}

@media (max-width: 991px) {
  .header {
    position: static !important;
    background: #1758ab;
  }
}

.navigation {
  background-image: linear-gradient(to right, transparent 50%, transparent 50%);
  transition: .2s ease;
}

@media (max-width: 575px) {
  .navigation {
    background-image: linear-gradient(to right, transparent 70%, #46b549 30%);
  }
}
.navbar-nav {
  padding-left: 50px;
  background: transparent ;
}


@media (max-width: 991px) {
  .navbar-nav {
    padding-left: 0;
  }
}

.nav-bg {
  background-color: #1758ab;
  margin-top: -50px;
}

.nav-item {
  margin: 0 10px;
  position: relative;
}

.nav-item .nav-link {
  text-transform: uppercase;
  font-weight: 600;
}

.nav-item::before {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 6px;
  width: 100%;
  content: "";
  background: #46b549;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: top;
          transform-origin: top;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
}

.nav-item:hover::before, .nav-item.active::before {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
}

.navbar-light .navbar-nav .nav-link {
  color: #fff;
}

link:focus,
.navbar-light .navbar-nav .nav-link:hover {
  color: #46b549;
}

.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show > .nav-link {
  color: #fff;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding: 40px 0px;
}

@media (max-width: 991px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 20px;
  }
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  background: #fff;
  box-shadow: 0 2px 5px #0000000d;
}

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

.navbar .dropdown-menu {
  box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.12);
  border-bottom: 5px solid #fff;
  padding: 15px;
  top: 96px;
  border-radius: 0;
  display: block;
  visibility: hidden;
  transition: .3s ease;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  background: #46b549;
}

@media (max-width: 991px) {
  .navbar .dropdown-menu {
    display: none;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transform-origin: unset;
            transform-origin: unset;
  }
}

.navbar .dropdown-menu.view {
  visibility: visible !important;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@media (max-width: 991px) {
  .navbar .dropdown-menu.view {
    display: block;
  }
}

.navbar .dropdown-menu.show {
  visibility: hidden;
}

@media (max-width: 991px) {
  .navbar .dropdown-menu.show {
    visibility: visible;
    display: block;
  }
}

.navbar .dropdown-item {
  position: relative;
  color: #fff;
  transition: .2s ease;
  font-family: "myriadpro-bold",Poppins, sans-serif;
}

@media (max-width: 991px) {
  .navbar .dropdown-item {
    text-align: center;
  }
}

.navbar .dropdown-item:not(:last-child) {
  margin-bottom: 10px;
}

.navbar .dropdown-item:hover {
  color: #46b549;
  background: #fff;
}

.hero-section {
  padding: 250px 0 290px;
}

.hero-slider .prevArrow,
.hero-slider .nextArrow {
  position: absolute;
  bottom: -123px;
  z-index: 9;
  padding: 15px;
  color: rgba(255, 255, 255, 0.5);
  border: 0;
  font-size: 30px;
  transition: all linear .2s;
  background: transparent;
}

.hero-slider .prevArrow:focus,
.hero-slider .nextArrow:focus {
  outline: 0;
}

.hero-slider .prevArrow:hover,
.hero-slider .nextArrow:hover {
  color: #46b549;
}

.hero-slider .prevArrow {
  right: 60px;
}

.hero-slider .nextArrow {
  right: 0;
}

.hero-slider .slick-dots {
  position: absolute;
  left: 0;
  bottom: -100px;
  padding-left: 0;
}

.hero-slider .slick-dots li {
  display: inline-block;
  margin: 0 6px;
}

.hero-slider .slick-dots li.slick-active button {
  background: #46b549;
}

.hero-slider .slick-dots li button {
  color: transparent;
  padding: 0;
  overflow: hidden;
  height: 10px;
  width: 10px;
  background: rgba(255, 255, 255, 0.5);
  border: 0;
  outline: 0;
}

/* banner feature */
.feature-icon {
  font-size: 50px;
  color: #2575f5;
  display: inline-block;
}

.feature-blocks {
  margin-top: -100px;
  padding-left: 70px;
  padding-top: 80px;
  padding-right: 30%;
}

@media (max-width: 1400px) {
  .feature-blocks {
    padding-right: 10%;
  }
}

@media (max-width: 1200px) {
  .feature-blocks {
    padding-right: 50px;
    padding-left: 50px;
    padding-top: 30px;
  }
  .feature-blocks h3 {
    font-size: 20px;
  }
}

@media (max-width: 991px) {
  .feature-blocks {
    margin-top: 0;
    padding: 50px;
  }
  .feature-blocks h3 {
    font-size: 25px;
  }
}

/* /banner feature */
/* course */
.card-btn {
  font-size: 12px;
  padding: 5px 10px;
}

.flex-basis-33 {
  flex-basis: 33.3333%;
}

.hover-shadow {
  transition: .3s ease;
}

.hover-shadow:hover {
  box-shadow: 0px 4px 25px 0px rgba(27, 39, 71, 0.15);
}

/* /course */
/* success story */
.success-video {
  min-height: 300px;
}

.success-video .play-btn {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media (max-width: 767px) {
  .success-video .play-btn {
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

.play-btn {
  display: inline-block;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  background: #46b549;
  color: #fff;
  font-size: 20px;
  text-align: center;
}

.play-btn i {
  line-height: 80px;
}

.play-btn::before {
  position: absolute;
  content: "";
  height: 0;
  width: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  z-index: -2;
  transition: .3s ease;
  transition-delay: .2s;
}

.play-btn::after {
  position: absolute;
  content: "";
  height: 80%;
  width: 80%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #46b549;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  z-index: -1;
  transition: .3s ease;
}

.play-btn:hover::before {
  height: 80%;
  width: 80%;
  transition-delay: 0s;
}

.play-btn:hover::after {
  height: 0;
  width: 0;
  transition: 0s ease;
}

/* /success story */
/* events */
.card-date {
  position: absolute;
  background: #46b549;
  font-family: "myriadpro-bold";
  text-align: center;
  padding: 10px;
  color: #fff;
  top: 0;
  left: 0;
  text-transform: uppercase;
}

.card-date span {
  font-size: 40px;
}

/* /events */
/* teacher */
.teacher-info {
  width: 70%;
  bottom: 0;
  right: 0;
}

/* /teacher */
/* footer */
.newsletter {
  background-image: linear-gradient(to right, transparent 50%, #46b549 50%);
  margin-bottom: -100px;
  position: relative;
  z-index: 1;
}

.newsletter-block {
  padding-left: 50px;
}

@media (max-width: 575px) {
  .newsletter-block {
    padding-left: 15px;
  }
}

.input-wrapper {
  position: relative;
}

.input-wrapper button {
  position: absolute;
  right: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.form-control {
  height: 60px;
  background: #fff;
  border-radius: 0;
  padding-left: 25px;
}

.form-control:focus {
  border-color: #46b549;
  box-shadow: none;
}

.newsletter-block .form-control {
  height: 70px;
}

.bg-footer {
  background-color: #1758ab;
}

.logo-footer {
  margin-top: -20px;
  display: inline-block;
}

.footer {
  border-color: #000e53 !important;
  padding-top: 200px;
}

/* /footer */
.filter-controls li {
  cursor: pointer;
  transition: .1s ease;
}

.filter-controls li.mixitup-control-active {
  font-weight: 600;
  color: #46b549;
}

.filter-controls li:hover {
  color: #46b549;
}

/*# sourceMappingURL=maps/style.css.map */

/* ============================================
   E3MG CUSTOM STYLES - Design Professionnel
   Charte graphique E3MG:
   - Vert: #46b549
   - Jaune A: #eed74f
   - Jaune B: #ecd88d
   - Bleu: #1758ab
   - Noir: #231f20
   ============================================ */

/* ============================================
   VARIABLES CSS - Couleurs E3MG
   ============================================ */
:root {
    --e3mg-vert: #46b549;
    --e3mg-jaune: #eed74f;
    --e3mg-jaune-b: #ecd88d;
    --e3mg-bleu: #1758ab;
    --e3mg-noir: #231f20;
    --e3mg-light: #f7fafc;
    --e3mg-gray: #718096;
    --e3mg-gradient-bleu: linear-gradient(135deg, #1758ab 0%, #2a6fc9 100%);
    --e3mg-gradient-vert: linear-gradient(135deg, #46b549 0%, #5cc95f 100%);
    --e3mg-gradient-jaune: linear-gradient(135deg, #eed74f 0%, #f5e066 100%);
    --e3mg-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --e3mg-shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.15);
    --e3mg-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   ANIMATIONS KEYFRAMES
   ============================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* ============================================
   PAGE TITLE SECTION - Bannière Hero améliorée
   ============================================ */
.page-title-section {
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.page-title-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(23, 88, 171, 0.9) 0%, rgba(35, 31, 32, 0.8) 100%);
    z-index: 1;
}

.page-title-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(255,255,255,0.1), transparent);
    z-index: 1;
}

.page-title-section .container {
    position: relative;
    z-index: 2;
}

.page-title-section .text-banniere {
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease-out;
}

.page-title-section .text-lighten {
    font-size: 1.2rem;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* ============================================
   SECTION TITLES - Titres de section stylisés
   ============================================ */
.section-title-pro {
    position: relative;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--e3mg-bleu);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
}

.section-title-pro::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--e3mg-gradient-vert);
    border-radius: 2px;
}

.section-title-pro.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--e3mg-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* ============================================
   CARDS PROFESSIONNELLES
   ============================================ */
.pro-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--e3mg-shadow);
    overflow: hidden;
    transition: var(--e3mg-transition);
    height: 100%;
}

.pro-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--e3mg-shadow-hover);
}

.pro-card-header {
    background: var(--e3mg-gradient-bleu);
    padding: 2rem;
    color: #fff;
}

.pro-card-body {
    padding: 2rem;
}

.pro-card-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: #fff;
    transition: var(--e3mg-transition);
}

.pro-card:hover .pro-card-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255,255,255,0.25);
}

/* ============================================
   FEATURE BOXES - Boîtes de caractéristiques
   ============================================ */
.feature-box {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--e3mg-shadow);
    transition: var(--e3mg-transition);
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--e3mg-gradient-vert);
    transform: scaleY(0);
    transition: var(--e3mg-transition);
}

.feature-box:hover::before {
    transform: scaleY(1);
}

.feature-box:hover {
    transform: translateX(10px);
    box-shadow: var(--e3mg-shadow-hover);
}

.feature-box .feature-icon {
    width: 60px;
    height: 60px;
    background: var(--e3mg-gradient-bleu);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: var(--e3mg-transition);
}

.feature-box:hover .feature-icon {
    transform: rotateY(180deg);
}

/* ============================================
   STATS COUNTER - Compteurs animés
   ============================================ */
.stats-section {
    background: var(--e3mg-gradient-bleu);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.stats-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #fff;
    transition: var(--e3mg-transition);
}

.stat-item:hover .stat-icon {
    transform: scale(1.1);
    background: rgba(255,255,255,0.25);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   PROFILE CARDS - Cartes de profil (ADG)
   ============================================ */
.profile-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--e3mg-shadow);
    transition: var(--e3mg-transition);
}

.profile-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--e3mg-shadow-hover);
}

.profile-image {
    position: relative;
    overflow: hidden;
}

.profile-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: var(--e3mg-transition);
}

.profile-card:hover .profile-image img {
    transform: scale(1.05);
}

.profile-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(23, 88, 171, 0.9), transparent);
    padding: 2rem;
    color: #fff;
}

.profile-body {
    padding: 2rem;
}

.profile-badge {
    display: inline-block;
    background: var(--e3mg-gradient-vert);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* ============================================
   EVENT CARDS - Cartes d'événements
   ============================================ */
.event-card-pro {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--e3mg-shadow);
    transition: var(--e3mg-transition);
    height: 100%;
}

.event-card-pro:hover {
    transform: translateY(-10px);
    box-shadow: var(--e3mg-shadow-hover);
}

.event-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--e3mg-transition);
}

.event-card-pro:hover .event-image img {
    transform: scale(1.1);
}

.event-date-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--e3mg-gradient-vert);
    color: #fff;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    min-width: 70px;
    box-shadow: 0 4px 15px rgba(70, 181, 73, 0.4);
}

.event-date-badge .day {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    display: block;
}

.event-date-badge .month {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-body {
    padding: 1.5rem;
}

.event-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--e3mg-bleu);
    margin-bottom: 0.5rem;
    transition: var(--e3mg-transition);
}

.event-card-pro:hover .event-title {
    color: var(--e3mg-vert);
}

/* ============================================
   FORMATION CARDS - Cartes de formation
   ============================================ */
.formation-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--e3mg-shadow);
    transition: var(--e3mg-transition);
    position: relative;
}

.formation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--e3mg-gradient-vert);
}

.formation-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--e3mg-shadow-hover);
}

.formation-image {
    height: 250px;
    overflow: hidden;
}

.formation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--e3mg-transition);
}

.formation-card:hover .formation-image img {
    transform: scale(1.1);
}

.formation-body {
    padding: 2rem;
}

.formation-badge {
    display: inline-block;
    background: var(--e3mg-light);
    color: var(--e3mg-bleu);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.formation-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--e3mg-bleu);
    margin-bottom: 1rem;
}

.formation-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.formation-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--e3mg-gray);
}

.formation-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--e3mg-vert);
    font-weight: bold;
}

/* ============================================
   LAB CARDS - Cartes de laboratoire
   ============================================ */
.lab-card {
    background: linear-gradient(145deg, #fff 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--e3mg-shadow);
    transition: var(--e3mg-transition);
    position: relative;
    overflow: hidden;
}

.lab-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: var(--e3mg-gradient-bleu);
    opacity: 0.05;
    border-radius: 50%;
    transition: var(--e3mg-transition);
}

.lab-card:hover::before {
    transform: scale(2);
    opacity: 0.1;
}

.lab-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--e3mg-shadow-hover);
}

.lab-icon {
    width: 100px;
    height: 100px;
    background: var(--e3mg-gradient-bleu);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 2rem;
    transition: var(--e3mg-transition);
}

.lab-card:hover .lab-icon {
    transform: rotateY(180deg);
}

/* ============================================
   PRICING/SCOLARITE CARDS
   ============================================ */
.pricing-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--e3mg-shadow);
    transition: var(--e3mg-transition);
    position: relative;
}

.pricing-card.featured {
    transform: scale(1.05);
    z-index: 2;
}

/* .pricing-card.featured::before {
    content: 'Populaire';
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--e3mg-vert);
    color: #fff;
    padding: 0.5rem 3rem;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
} */

.pricing-header {
    background: var(--e3mg-gradient-bleu);
    padding: 2.5rem;
    text-align: center;
    color: #fff;
}

.pricing-card.featured .pricing-header {
    background: var(--e3mg-gradient-vert);
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: #fff;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.8;
}

.pricing-body {
    padding: 2.5rem;
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.pricing-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.pricing-list li i {
    color: var(--e3mg-vert);
    margin-right: 1rem;
}

/* ============================================
   BUTTONS PROFESSIONNELS
   ============================================ */
.btn-pro {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--e3mg-transition);
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-pro-primary {
    background: var(--e3mg-gradient-bleu);
    color: #fff;
    box-shadow: 0 4px 15px rgba(23, 88, 171, 0.4);
}

.btn-pro-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(23, 88, 171, 0.5);
    color: #fff;
}

.btn-pro-secondary {
    background: var(--e3mg-gradient-vert);
    color: #fff;
    box-shadow: 0 4px 15px rgba(70, 181, 73, 0.4);
}

.btn-pro-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(70, 181, 73, 0.5);
    color: #fff;
}

.btn-pro-outline {
    background: transparent;
    border: 2px solid var(--e3mg-bleu);
    color: var(--e3mg-bleu);
}

.btn-pro-outline:hover {
    background: var(--e3mg-bleu);
    color: #fff;
}

/* ============================================
   PARALLAX SECTIONS
   ============================================ */
.parallax-pro {
    position: relative;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.parallax-pro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(23, 88, 171, 0.85) 0%, rgba(35, 31, 32, 0.75) 100%);
}

.parallax-pro .container {
    position: relative;
    z-index: 1;
}

/* ============================================
   GLASSMORPHISM EFFECTS
   ============================================ */
.glass-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    padding: 2rem;
}

/* ============================================
   HOMEPAGE SLIDER IMPROVEMENTS
   ============================================ */
.homepage-slider .single-homepage-slider {
    position: relative;
}

.homepage-slider .single-homepage-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(23, 88, 171, 0.7) 0%, rgba(35, 31, 32, 0.5) 100%);
    z-index: 1;
}

.homepage-slider .hero-text {
    position: relative;
    z-index: 2;
}

.homepage-slider .hero-text h1 {
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease-out;
}

.homepage-slider .hero-text .subtitle {
    color: var(--e3mg-jaune);
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.homepage-slider .boxed-btn {
    background: var(--e3mg-vert);
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--e3mg-transition);
    border: 2px solid var(--e3mg-vert);
}

.homepage-slider .boxed-btn:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-3px);
}

.homepage-slider .bordered-btn {
    background: transparent;
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid #fff;
    transition: var(--e3mg-transition);
    margin-left: 15px;
}

.homepage-slider .bordered-btn:hover {
    background: #fff;
    color: var(--e3mg-bleu);
    transform: translateY(-3px);
}

/* ============================================
   HOMEPAGE SECTIONS IMPROVEMENTS
   ============================================ */
.section .section-title {
    position: relative;
    display: inline-block;
}

.section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--e3mg-vert);
    border-radius: 2px;
}

/* Course Cards on Homepage */
.card.border-primary {
    border: none !important;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--e3mg-shadow);
    transition: var(--e3mg-transition);
}

.card.border-primary:hover {
    transform: translateY(-10px);
    box-shadow: var(--e3mg-shadow-hover);
}

.card.border-primary .card-img-top {
    height: 200px;
    object-fit: cover;
    transition: var(--e3mg-transition);
}

.card.border-primary:hover .card-img-top {
    transform: scale(1.05);
}

.card.border-primary .card-body {
    padding: 1.5rem;
}

.card.border-primary .card-title {
    color: var(--e3mg-bleu);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* CTA Section */
.section.bg-primary {
    background: var(--e3mg-gradient-bleu) !important;
    position: relative;
    overflow: hidden;
}

.section.bg-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.section.bg-primary .section-title {
    color: #fff;
}

.section.bg-primary .section-title::after {
    background: var(--e3mg-jaune);
}

/* Events Section */
.section.bg-gray .card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--e3mg-shadow);
    transition: var(--e3mg-transition);
}

.section.bg-gray .card:hover {
    transform: translateY(-10px);
    box-shadow: var(--e3mg-shadow-hover);
}

.section.bg-gray .card-date {
    background: var(--e3mg-vert) !important;
    border-radius: 8px;
    padding: 15px;
}

/* Blog/News Section */
.section article.hover-shadow {
    border-radius: 16px !important;
    overflow: hidden;
    transition: var(--e3mg-transition);
}

.section article.hover-shadow:hover {
    transform: translateY(-10px);
    box-shadow: var(--e3mg-shadow-hover) !important;
}

.section article .post-img img {
    transition: var(--e3mg-transition);
}

.section article:hover .post-img img {
    transform: scale(1.05);
}

/* Logo Carousel */
.logo-carousel-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.logo-carousel-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    
}

.single-logo-item {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--e3mg-shadow);
    transition: var(--e3mg-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px;
}

.single-logo-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--e3mg-shadow-hover);
}

.single-logo-item img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--e3mg-transition);
}

.single-logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */
.contact.section {
    padding: 80px 0;
}

.contact .info-item {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--e3mg-shadow);
    transition: var(--e3mg-transition);
}

.contact .info-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--e3mg-shadow-hover);
}

.contact .info-item i {
    width: 60px;
    height: 60px;
    background: var(--e3mg-gradient-bleu);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.contact .info-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--e3mg-bleu);
    margin-bottom: 0.5rem;
}

.contact .info-item p {
    margin-bottom: 0;
    color: var(--e3mg-gray);
}

/* Contact Form */
.php-email-form {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--e3mg-shadow);
}

.php-email-form .form-control {
    height: 55px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: var(--e3mg-transition);
}

.php-email-form .form-control:focus {
    border-color: var(--e3mg-vert);
    box-shadow: 0 0 0 4px rgba(70, 181, 73, 0.1);
}

.php-email-form textarea.form-control {
    height: 180px;
    resize: none;
}

.php-email-form button[type="submit"] {
    background: var(--e3mg-gradient-vert);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 15px 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--e3mg-transition);
    box-shadow: 0 4px 15px rgba(70, 181, 73, 0.4);
}

.php-email-form button[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(70, 181, 73, 0.5);
}

.php-email-form .loading {
    display: none;
    background: var(--e3mg-jaune);
    color: var(--e3mg-noir);
    padding: 10px 20px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.php-email-form .error-message {
    display: none;
    background: #dc3545;
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.php-email-form .sent-message {
    display: none;
    background: var(--e3mg-vert);
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* Google Maps */
.contact iframe {
    border-radius: 16px;
    box-shadow: var(--e3mg-shadow);
}

/* ============================================
   HOVER EFFECTS
   ============================================ */
.hover-lift {
    transition: var(--e3mg-transition);
}

.hover-lift:hover {
    transform: translateY(-10px);
}

.hover-scale {
    transition: var(--e3mg-transition);
}

.hover-scale:hover {
    transform: scale(1.05);
}

.hover-glow {
    transition: var(--e3mg-transition);
}

.hover-glow:hover {
    box-shadow: 0 0 30px rgba(23, 88, 171, 0.3);
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 991px) {
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .homepage-slider .bordered-btn {
        margin-left: 0;
        margin-top: 15px;
    }
}

@media (max-width: 767px) {
    .page-title-section .text-banniere {
        font-size: 1.8rem;
    }
    
    .section-title-pro {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .php-email-form {
        padding: 1.5rem;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-gradient {
    background: var(--e3mg-gradient-bleu);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-bleu {
    background: var(--e3mg-gradient-bleu);
}

.bg-gradient-vert {
    background: var(--e3mg-gradient-vert);
}

.rounded-xl {
    border-radius: 20px;
}

.shadow-pro {
    box-shadow: var(--e3mg-shadow);
}

.shadow-pro-hover:hover {
    box-shadow: var(--e3mg-shadow-hover);
}

/* Animation classes */
.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out both;
}

.animate-fadeInLeft {
    animation: fadeInLeft 0.6s ease-out both;
}

.animate-fadeInRight {
    animation: fadeInRight 0.6s ease-out both;
}

.animate-scaleIn {
    animation: scaleIn 0.6s ease-out both;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Delay classes */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

/* Blur edges for images */
.blur-edges {
    border-radius: 16px;
    box-shadow: var(--e3mg-shadow);
}

/* Tight lines for lists */
.tight-lines p {
    line-height: 1.5;
    margin-bottom: 6px;
}
