*{
 margin:0;
 padding:0;
 box-sizing:border-box;
 font-size:'Poppins', sans-serif;
}

/*Header section*/



header{
 width:100%;
 max-width:100%;
 padding-left:120px;
 height:90px;
 display:flex;
 align-items:center;
 position:relative;
 z-index:100;
 background-color:darkblue;
}

nav{
 display:flex;
 justify-content:left;
 align-items:center;
 margin-left:2px;
}

nav ul li{
 display:inline-block;
 line-height:80px;
 margin:0 5px;
}

.checkbtn{
 font-size:30px;
 color:white;
 float:right;
 line-height:80px;
 margin-right:40px;
 cursor:pointer;
 display:none;
}

#check{
 display:none;
}

.nav-right{
  display:flex;
  align-items:center;
  gap:20px;
  margin-right:50px;
  }

 .btn-white{
  Background:white;
  Color:#5a2ca0;
  Padding:10px 20px;
  Border-radius:6px;
  Text-decoration:none;
  Font-weight:600;
  Font-size:14px;
  Transition:transform 0.2s;
  }

.img-ozana{
  width:200px;
  height:70px;
  margin-right:50px;
  border-radius:20px;
  }

header nav a{
 color:#fff;
 margin-right:15px;
 padding:5px 5px;
 font-size:20px;
 transition:0.2s;
 text-decoration:none;
}

a.active{
 background:#14ff72cb;
 border-radius:2px;
}

a:hover{
 background:#14ff72cb;
 border-radius:2px;
}

/*--- Header Media query ----*/
@media(max-width:999px){
 .img-ozana{
  border-radius:20px;
  width:150px;
  height:70px;
 }

 nav{
  padding-left:1px;
  margin-right:10px;
 }
nav ul li a{
  font-size:16px;
 }
  .checkbtn{
  display:block;
 }
 .nav-right{
  display:block;
 }
}

@media (max-width:999px){
 .checkbtn{
  display:block;
 }
 ul{
  position:fixed;
  width:100%;
  height:100vh;
  background:#2c3e50;
  top:80px;
  left:-100%;
  text-align:center;
  transition:all .5s;
 }
 nav ul li{
  display:block;
  margin:50px 0;
  line-height:30px;
 }
 nav ul li a{
  font-size:20px;
 }
 a:hover,a.active{
  background:none;
  color:#0082e6;
 }

 #check:checked ~ ul{
  left:0;
 }
}

/*--- End header media query ---*/

/*Hero section*/

.carousel{
 height:100vh;
 margin-top:-50px;
 overflow:hidden;
 position:relative;
}

.carousel .list .item{
 width:180px;
 height:250px;
 position:absolute;
 top:80%;
 transform:translateY(-70%);
 left:70%;
 border-radius:20px;
 box-shadow:0 25px 50px rgba(0, 0, 0, 0.3);
 background-position:50% 50%;
 background-size:cover;
 transition:1s;
}

.carousel .list .item:nth-child(1),
.carousel .list .item:nth-child(2){
 top:0;
 left:0;
 transform:translate(0, 0);
 border-radius:0;
 width:100%;
 height:100%;
}

.carousel .list .item:nth-child(3){
 left:67%;
}

.carousel .list .item:nth-child(4){
 left:calc(67% + 200px);
}

.carousel .list .item:nth-child(5){
 left:calc(67% + 400px);
}

.carousel .list .item:nth-child(6){
 left:calc(67% + 600px);
}

.carousel .list .item:nth-child(n+7){
 left:calc(67% + 800px);
 opacity:0;
}

.item .content{
 position:absolute;
 top:50%;
 left:100px;
 transform:translateY(-50%);
 width:400px;
 text-align:left;
 color:#fff;
 display:none;
}

.list .item:nth-child(2) .content{
 display:block;
}

.content .title{
 font-size:100px;
 text-transform:uppercase;
 color:#df0101;
 font-weight:bold;
 line-height:1;

 opacity:0;
 animation:animate 1s ease-in-out 0.3s 1 forwards;
}

.content .name{
  font-size:100px;
  text-transform:uppercase;
  font-weight:bold;
  color:#3838f5;
  line-height:1;
  text-shadow:3px 4px 4px rgba(255, 255, 255, 0.8);
  opacity:0;
  animation:animate 1s ease-in-out 0.6s 1 forwards;
}

.content .des{
 margin-top:10px;
 margin-bottom:20px;
 font-size:45px;
 margin-left:5px;
 color:#c5dac5;

 opacity:0;
 animation:animate 1s ease-in-out 0.9s 1 forwards;
}

.content .btn{
 margin-left:5px;

 opacity:0;
 animation:animate 1s ease-in-out 1.2s 1 forwards;
}

.content .btn button{
 padding:10px 20px;
 border:none;
 cursor:pointer;
 font-size:18px;
 background-color:blue;
 color:white;
}

.content .btn button:nth-child(1){
 margin-right:15px;
}

.content .btn button:nth-child(2){
 background:transparent;
 color:white;
 background-color:#14ff72cb;
 transition:0.3s;
}

.content .btn button:nth-child(2):hover{
 background-color:#14ff72cb;
 color:#fff;
 border-color:#14ff72cb;
}

@keyframes animate{
 from{
  opacity:0;
  transform:translate(0, 100px);
  filter:blur(33px);
 }
 to{
  opacity:1;
  transform:translate(0);
  filter:blur(0);
 }
}

/*Carousel*/

/*Next prev arrows*/
.arrows{
 position:absolute;
 top:80%;
 right:52%;
 z-index:100;
 width:300px;
 max-width:30%;
 display:flex;
 gap:10px;
 align-items:center;
}

.arrows button{
 width:50px;
 height:50px;
 border-radius:50%;
 color:#fff;
 background-color:#14ff72cb;
 border:none;
 font-size:16px;
 font-family:monospace;
 font-weight:bold;
 transition:.5s;
 cursor:pointer;
}

.arrows button:hover{
 background:#fff;
 color:#000;
}

/*Time running*/
.carousel .timeRunning{
 position:absolute;
 z-index:1000;
 width:0%;
 height:4px;
 background:#14ff72cb;
 top:0;
 left:0;
 animation:runningTime 7s linear 1 forwards;
}

@keyframes runningTime{
 from{
  width:0%;
 }
 to{
  width:100%;
 }
}

/*--- Media query Hero ---*/
@media screen and (max-width:999px){
 header{
  padding-left:50px;
 }
 .item .content{
  left:50px;
 }
 .content .title, .content .name{
  font-size:70px;
 }
}

@media screen and (max-width:690px){
 header nav a{
  font-size:14px;
  margin-right:0px;
 }

 .item .content{
  top:40%;
 }

 .content .title, .content .name{
  font-size:45px;
 }

 .content .btn button{
  padding:10px 15px;
  font-size:14px;
 }
}

/*-- End navbar and hero --*/

.text-formation{
 text-align:center;
 margin-bottom:10px;
 margin-top:10px;
 font-size:50px
}

.nos-formations{
 display:flex;
 align-items:center;
 justify-content:center;
 min-height:100vh;
 background:#f7f7f7;
 padding:0;
}

.table__header{
 width:100%;
 height:10%;
 background:#fff4;
 padding-top:0;
}

.table__body{
 width:100%;
 max-width:calc(89% - .8rem);
 margin:.10rem auto;
 border-radius:.6rem;
 background:#fffb;
 padding-left:2em;
}

.table__body::-webkit-scrollbar-thumb{
 border-radius:.5rem;
 background:#0004;
 visibility:hidden;
}

.table__body:hover:-webkit-scrollbar-thumb{
 visibility:hidden;
}

table{
 width:100%;
}

table, th, td{
 border-collapse:collapse;
 padding: 1rem;
 font-size:20px;
 
}

thead th{
 position:sticky;
 top:0;
 left:0;
 background:#d5d1defe;
}

tbody tr:nth-child(even){
 background:#0000000b;
}

tbody tr:hover{
 background-color:#fff6;
}

.status{
 padding:.4rem 0;
 border-radius:2rem;
}

.status.delivered{
 background:#86e49d;
 color:#006b21;
}

/*--- Madia query table formations ---*/

@media (max-width:999px){
 .table__body{
   width:900em;
   overflow-x: scroll;
   max-width:calc(89% - .8rem);
   margin:10rem auto;
 }

 .text-formation{
 text-align:center;
 margin-bottom:10px;
 margin-top:10px;
 font-size:20px
}
}


/*---- section offres ----*/
.offres{
 display:flex;
 align-items:center;
 justify-content:center;
 min-height:100vh;
 background:#f7f7f7;
}

.grid {
  Display : grid ;
  Grid-template-columns : repeat(2, 1fr) ;
  Gap : 40px 30px ;
}

.card {
  Text-align:center ;
  Padding:10px ;
}

.icon {
  Width:60px ;
  Height:60px ;
  Margin:0 auto 15px ;
}

.card h3 {
  Font-size : 1.1rem ;
  Font-weight : 700 ;
  Margin-bottom : 8px ;
}

.card p {
  Font-size : 1.50rem ;
  Color : #555 ;
  Line-height : 1.5 ;
}

  /* Couleurs par carte */
  .card.orange h3 { color : #F97316 ; }
  .card.purple h3 { color : #6366F1 ; }
  .card.pink h3 { color : #EC4899 ; }
  .card.green h3 { color : #10B981 ; }

  .card.orange{border-radius:20px; margin-left:2em; padding:2em; background-color:white;}
  .card.purple{border-radius:20px; margin-right:2em; padding:2em; background-color:white;}
  .card.pink{border-radius:20px; margin-left:2em; padding:2em; background-color:white;}
  .card.green{border-radius:20px; margin-right:2em; padding:2em; background-color:white;}

  .icon.orange { stroke : #F97316 ; }
  .icon.purple { stroke : #6366F1 ; }
  .icon.pink { stroke : #EC4899 ; }
  .icon.green { stroke : #10B981 ; }

 @media (max-width:999px) {
    .grid {
      Grid-template-columns:1fr;
      Gap:30px;
      margin-top:1em;
      margin-bottom:1em;
      margin-left:1em;
      margin-right:1em;

    }

    .card.purple{
      margin-left:2em;
    }

    .card.green{
      margin-left:2em;
    }
    .title {font-size:1.4rem;}
  }

  /*---- End offres ----

  /*--- Begin Phrase ----*/

  .phrase-chef
  {
    margin-left:20em;
    margin-right:18em;
    padding:2em;
    border-radius:20px;
    background-color:#fff;
    box-shadow:0 0 128px 0 rgba(0, 0, 0, 0.1), 0 32px 64px -48px rgba(0, 0, 0, 0.5)
  }

  .img-div{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    margin-bottom:3em;
  }

  .phrase-chef img{
    height:200px;
    width:200px;
  }

  .recteur{
    font-size:20px;
    font-weight:bold;
  }

  .phrase-chef p{
    font-size:1.15em;
    text-align:justify;
    margin-bottom:2em;
    font-weight:500;
  }
  .phrase{
    padding-top:1em;
  }

  /*--- Media query phrase ---*/
   @media (max-width:999px){
  .phrase-chef{
    width:100%;
    margin-left:0.20em;
    height:90vh;
  }
  .phrase-chef p{
    font-size:12px;
    text-align:justify;
    margin-bottom:2em;
    font-weight:500;
  }
   }

  /*---- End phrase ----*/

  /*---- Section Stats ----*/

.offres-stats{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:100vh;
  background:#f7f7f7;
}

.grid-stats{
    Display:grid ;
    Grid-template-columns:repeat(2, 1fr);
    Gap:40px 30px;
  }

  .stats-section{
    margin: 0 auto;
    text-align: center;
    background-position:center;
    background-size: cover;
    margin-bottom:2em;
    padding-top:1em;
    padding-bottom:3em;
    background-color:#525151;
  }

    .badge {
    color: #ffffff;
    font-size:25px;
    font-weight:600;
    margin-bottom:12px;
    letter-spacing:0.5px;
  }

   .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    align-items: start;
  }

   /* Flèches entre colonnes */
  .stats-grid::before,
  .stats-grid::after {
    content: '';
    position: absolute;
    top: 40px;
    width: 40px;
    height: 20px;
    background: url(" viewBox='0 0 24 24' fill='none' stroke='%23FFD166' stroke-width='2'%3E%3Cpath d='M5 12h14M13 5l7 7-7 7'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
  }

  .stats-grid::before { left: calc(33.33% - 20px); }
  .stats-grid::after { left: calc(66.66% - 20px); }

  .stat-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .stat-item {
    text-align: center;
  }

  .stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #FFD166;
    line-height: 1.1;
    margin-bottom: 8px;
  }

  .stat-label {
    font-size: 14px;
    color: #ffffff;
    line-height: 1.5;
    font-weight: 500;
  }

  @media (max-width:999px){
    .stat-number{
      font-size:1.20em;
    }
  }


/*---- End Stats -----*/

/*---- Begin Contact ----*/
.contact-container{
    height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    justify-content:space-evenly;
    background-color: #5383d3;
}
.contact-left{
    display:flex;
    flex-direction:column;
    align-items:start;
    gap:20px;
}

.img-ozana-eforq{
  width:100px; 
  height:100px; 
  border-radius:20px;
}
.contact-left-title h2{
    font-weight:600;
    color:#ffffff;
    font-size: 40px;
    margin-bottom:5px;
}
.contact-left-title hr{
    border:none;
    width:120px;
    height:5px;
    background-color:#ffffff;
    border-radius:10px;
    margin-bottom:20px;
}

.contact-input{
    width:400px;
    height:50px;
    border:none;
    outline:none;
    padding-left:25px;
    font-weight:500;
    color:#666;
    border-radius:50px;
    font-size:1.15em;
}
.contact-left textarea{
    height:140px;
    padding-top:15px;
    border-radius: 20px;
    font-size:1.15em;
}
.contact-input:focus{
    border:2px solid #ffffff;
}

.contact-input::placeholder{
    color: #a9a9a9;;
}

.contact-left button{
    display:flex;
    align-items:center;
    padding:15px 30px;
    font-size:16px;
    color:#fff;
    gap:10px;
    border:none;
    border-radius:50px;
    background:#02c702;
    cursor: pointer;
}
   @media (max-width:999px) {
    .contact-input{
        width:50vh;
    }

    .contact-left{
      margin-left:2em;
    }
}

/*---- Begin Footer ----*/
  footer {
    background: #2c2f33;
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 50px 60px;
  }

  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
  }

  /* Colonne Gauche */
  .footer-left {
    flex: 1;
    min-width: 280px;
  }

  .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }

  .contact-icon {
    width: 38px;
    height: 38px;
    background: #33383e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 25px;
    color: #fff;
  }

  .contact-text {
    font-size: 20px;
    line-height: 1.6;
  }

  .contact-text strong {
    display: block;
    font-weight: 600;
  }

  .contact-text a {
    color: #5383d3;
    text-decoration: none;
    font-weight: 600;
  }

  .contact-text a:hover {
    text-decoration: underline;
  }

  /* Colonne Droite */
  .footer-right {
    flex: 1;
    min-width: 280px;
  }

  .footer-right h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
  }

  .footer-right p {
    font-size: 20px;
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 25px;
  }

  /* Réseaux sociaux */
  .social-icons {
    display: flex;
    gap: 8px;
  }

  .social-icons a {
    width: 35px;
    height: 35px;
    background: #33383e;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .social-icons a:hover {
    background: #5383d3;
    transform: translateY(-3px);
  }

  /* Responsive */
  @media (max-width:999px) {
  footer {
      padding: 40px 20px;
      display:flex;
      align-items:center;
    }
  .footer-container {
      flex-direction: column;
      gap: 40px;
    }
  .footer-right p {
    font-size:10px;
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 25px;
  }

  .contact-icon {
    font-size:18px;
  }
  }
    /*--- End home page ---*/