@import url(https://fonts.googleapis.com/css?family=Roboto+Condensed:400,300,700);
@import url(https://fonts.googleapis.com/css?family=Roboto+Condensed:400&subset=latin,latin-ext);
@import url(https://fonts.googleapis.com/css?family=Roboto:400,300,100,500,700);
@import url(https://fonts.googleapis.com/css?family=Glegoo);
@use postcss-nested;


#center-fix{
text-align:center;
position:relative;
margin-top:-50px;
color:#1e1e1e;
}



/* Le parent devient un conteneur Flex */
#center-fix2 {
    display: flex;
    flex-wrap: wrap;       /* Permet de passer à la ligne */
    justify-content: center; /* Centre les articles horizontalement */
    gap: 30px;             /* Espace entre les articles (horizontal et vertical) */
    max-width: 1200px;     /* Largeur max pour éviter que ce soit trop étalé */
    margin: 0 auto;        /* Centre le bloc sur la page */
    
}

/* On définit la largeur de chaque bloc article */
#center-fix2 .block {
    flex: 0 1 calc(50% - 30px); /* 50% de largeur moins l'espace du gap */
    min-width: 300px;           /* Largeur minimum pour le responsive */
    max-width: 450px;           /* Largeur minimum pour le responsive */
    margin-bottom: 20px;
    text-align: center;
    transition: max-width 0.3s ease-in-out;

}

/* Force les images à prendre toute la largeur du bloc */
#center-fix2 .block img {
    width: 100%;
    height: auto;
    border-radius: 4px; /* Optionnel : pour le style */
    border: solid 2px #62D0E3;
    margin-bottom:10px;
}

#center-fix2 .block:hover {
    max-width: 500px;
    margin-bottom: 20px;
    text-align: center;
}



#library {
  margin: 1rem;
}
.games {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width:100%;
}

.game {
  margin: 1rem;
  overflow: hidden;
  /*border-radius: 7px;*/
  border:solid 2px #62D0E3;
  object-fit: contain;
  cursor: pointer;
  max-width: 200px;
  position: relative;
  padding: 0;
  box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.8);
transition: 0.2s all ease-in-out;}

 .game img {
    width: 100%;
    display: inherit;
  }

  .game:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(
      -135deg,
      rgba(200, 230, 250, 1) 0%,
      transparent 50%
    );
    background-size: 200%;
    box-shadow: inset 0 10px 20px rgba(0, 0, 0, 0.4);
    transition: 0.2s all ease-in-out;
  }

  .game:hover {
    transform: perspective(50em) rotateX(10deg) scale(1.1);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 1);
  z-index: 10;}

    .game:hover:before {
      background-position: 50%;
    }
  }
}





html, body {
    height: 100%; /* Important pour que le 100vh soit bien calculé */
    margin: 0;
    padding: 0 !important;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color:#1e1e1e !important;
}

.content-wrapper {
    flex: 1 0 auto; /* Cette div va s'étirer pour occuper tout l'espace vide */
    display: block;
}

footer {
    flex-shrink: 0; /* Empêche le footer de se compresser */
}





h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Condensed', sans-serif;
  font-style: normal;
  
}

h2 {
  font-family: 'Roboto', sans-serif;
	font-style: normal;
	font-size: 26px;
	text-align:center;
}

p {
	font-family: 'Roboto', sans-serif;
	font-style: normal;
	font-size: 16px;
	font-weight:300;  
}

span.blue { 
color:#62D0E3;
font-weight:600;
}

span.justifytext { 
font-weight:400;
text-align:justify;
color:#fff;
}


#navlinks{
	margin-top:20px;
	margin-bottom:20px;
	margin-left:auto;
	margin-right:auto;
	text-align:left;
}


.container {
    padding-top: 20px !important;   /* Réduit l'espace sous le header */
    padding-bottom: 10px !important; /* Réduit l'espace avant le footer */
    max-width:80%;
    width:1400px;
}

.container2 {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color:#1e1e1e;
}



ul {
  padding-left: 0;
}

ul li {
  list-style: none;
}

a:hover {
  text-decoration: none;
}

a.anchors{
	text-decoration:none;
	font-family:'Roboto Condensed', sans-serif;
	text-transform:uppercase;
	font-weight:600;
	padding: 5px 5px 5px 5px;
	color:#00c3ff;
	margin:20px 10px 20px 10px;
	border:1px dashed rgba(0,195,255,0.5);
	
	
	box-shadow: inset 0 0 0 0 #00c3ff;
	transition: color .3s ease-in-out, box-shadow .3s ease-in-out;


}

a.anchors:hover{
	text-decoration:none;
	font-family:'Roboto Condensed', sans-serif;
	text-transform:uppercase;
	font-weight:600;
	padding: 5px 5px 5px 5px;
	color:#fff;
	/*background-color:#00c3ff;*/
	margin:20px 10px 20px 10px;
	border:1px solid;
	
	box-shadow: inset 200px 0 0 0 #00c3ff;	
}

a.up-anchors{
	text-decoration:none;
	font-family:'Roboto Condensed', sans-serif;
	text-transform:uppercase;
	font-weight:600;
	color:#00c3ff;
	margin:20px 10px 20px 10px;
	border:1px dashed rgba(0,195,255,0.5);
	
		box-shadow: inset 0 0 0 0 #00c3ff;
	transition: color .3s ease-in-out, box-shadow .3s ease-in-out;
}

a.up-anchors:hover{
	text-decoration:none;
	font-family:'Roboto Condensed', sans-serif;
	text-transform:uppercase;
	font-weight:600;
	color:#fff;
	/*background-color:#00c3ff;*/
	margin:20px 10px 20px 10px;
	border:1px solid;
	box-shadow: inset 200px 0 0 0 #00c3ff;	
	
}



div.anchor{
display: block; position: relative; top: -80px; visibility: hidden;
}

div.up-anchor{
display: block; position: relative; top: -140px; visibility: hidden;
}


.section-heading {
  text-align: center;
  margin-bottom: 65px;
}

.section-heading p {
  font-size: 14px;
  font-weight: 300;
  color: #727272;
  line-height: 20px;
}

.title {
  font-size: 30px;
  line-height: 1.1;
  font-weight: 300;
  color: #333;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.subtitle {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.subtitle-des {
  color: #727272;
  font-size: 14px;
  margin-bottom: 35px;
  font-weight: 300;
}

.pages {
  padding: 80px 0 40px;
}

.moduler {
  padding: 140px 0;
}

.social-share li {
  display: inline-block;
  margin: 3px 1px;
}

.social-share a {
  font-size: 20px;
  color: #fff;
  background: #62D0E3;
  padding: 4px 10px;
  display: inline-block;
}

.fancybox-close {
  background: url("../images/icons/close.png") no-repeat scroll 0 0 transparent;
  height: 50px;
  right: 0;
  top: 0;
  width: 50px;
}

.fancybox-next span {
  background: url("../images/icons/right.png") no-repeat scroll center center #009ee3;
  height: 50px;
  width: 50px;
  right: 0;
}

.fancybox-prev span {
  background: url("../images/icons/left.png") no-repeat scroll center center #009ee3;
  height: 50px;
  width: 50px;
  left: 0;
}

.fancybox-title {
  padding: 15px 8px;
}

.fancybox-title h3 {
  font-size: 15px;
  margin: 0;
}

.global-page-header {
  background-attachment: fixed;
  background-size: cover;
  padding: 120px 0 25px 0;
  position: relative;
  background: #62D0E3;
  color: #fff;
}

.global-page-header h2 {
  font-size: 42px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
}

.global-page-header .breadcrumb {
  background: none;
  font-size: 16px;
  padding: 8px  0;
  display: block;
}

.global-page-header .breadcrumb .active, .global-page-header .breadcrumb li a {
  color: #fff;
}

.global-page-header .block {
  position: relative;
  z-index: 9;
  text-align: center;
}

.works-fit {
  padding: 40px 0;
}

.works-fit figure .buttons {
  left: 14%;
}

.company-description {
  margin-top: 80px;
}

.company-description .block h3 {
  margin-top: 0;
}

.company-description .block p {
  color: #727272;
}

/*=== MEDIA QUERY ===*/
.top-bar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #1e1e1e;
  color: #fff;
  transition: all 0.2s ease;
  padding: 0px 0;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid;
  border-image: linear-gradient(to right, transparent, #62D0E3, transparent) 1;
  z-index: 10;
}

.top-bar.animated-header {
  padding: 20px 0;
  background: #1e1e1e;
  box-shadow: none;
}

.navbar {
  border: 0;
  border-radius: 0;
  margin-bottom: 0;
  padding: 0;
}

.navbar.bg-light {
  background: #1e1e1e !important;
}

.navbar-nav .nav-link {
    position: relative;
    padding-bottom: 5px; /* Espace pour la ligne */
}


.navbar .nav-item .nav-link {
  color: #fff !important;
  font-size: 14px;
  font-weight: 500;
  transition: .3s all;
  text-transform: uppercase;
  padding: 5px 15px;
  display: block;
}

.navbar .nav-item .nav-link:hover {
  color: #62D0E3 !important;
}

.navbar .nav-link.active {
  color:#62D0E3 !important;
  font-weight:750;
  font-size:18px;
  bottom:6px;
}

/* Crée la ligne sous le lien actif */
.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;       /* Toute la largeur du mot */
    transform: translateX(+50%);
    height: 1px;       /* Épaisseur de la ligne */
    background-color: #62D0E3;
    border-radius: 2px;
    bottom:5px;
}




.navbar .nav-item:last-child .nav-link {
  padding-right: 0;
}

.dropdown-menu {
  background: #333;
  border: 0;
  border-radius: 0;
  padding: 15px;
  box-shadow: none;
  display: block;
  opacity: 0;
  z-index: 1;
  visibility: hidden;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  transition: visibility 500ms, opacity 500ms, -webkit-transform 500ms cubic-bezier(0.43, 0.26, 0.11, 0.99);
  transition: visibility 500ms, opacity 500ms, transform 500ms cubic-bezier(0.43, 0.26, 0.11, 0.99);
  transition: visibility 500ms, opacity 500ms, transform 500ms cubic-bezier(0.43, 0.26, 0.11, 0.99), -webkit-transform 500ms cubic-bezier(0.43, 0.26, 0.11, 0.99);
}

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

.dropdown-item {
  color: #fff;
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  text-decoration: none;
  padding: 8px 0;
  transition: .3s all;
}

.dropdown-item:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.dropdown-item:hover {
  color: #00c3ff !important;
  background: transparent;
}

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



#hero-area:before {
  content: '';
  z-index: 9;
  background: #1e1e1e;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

#hero-area .block {
  position: relative;
  z-index: 9;
}

#hero-area h1 {
  font-size: 40px;
  line-height: 50px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}

#hero-area h2 {
  font-size:24px;
  margin-bottom: 10px !important;
  line-height: 27px;
  text-transform: uppercase;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  margin-top: 25px;
}

#hero-area p {
  margin-bottom: 8px !important;
}

#hero-area .btn {
  background: #414141;
  border: none;
  color: #fff;
  padding: 20px 35px;
  margin-top: 30px;
  font-size: 16px;
  font-size: 13px;
  line-height: 1em;
  text-transform: uppercase;
  letter-spacing: normal;
  border-radius: 0;
}

#call-to-action {
  background: #00c3ff;
  background-size: cover;
  background-attachment: fixed;
  padding: 80px 0;
  text-align: center;
  position: relative;
  color: #fff;
}

#call-to-action .block {
  position: relative;
  z-index: 9;
  color: #fff;
}

#call-to-action .block h2 {
  margin-bottom: 15px;
  color: #fff;
}

#call-to-action .block p {
  font-size: 15px;
  font-weight: 300;
  font-family: 'Roboto', sans-serif;
  margin-top: 20px;
}

#call-to-action .block .btn-contact {
  background: #1e1e1e;
  border: 2px solid #fff;
  color: #00c3ff;
  padding: 15px 34px;
  margin-top: 20px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 0;
  transition: all linear .2s;
}

#call-to-action .block .btn-contact i {
  margin-right: 10px;
}

#call-to-action .block .btn-contact:hover {
  color: #fff;
  background: #62D0E3;
}

#about {
  padding-top:110px;
  background-color:#1e1e1e !important;
}

#about h5 {
  color:#fff;
}

#about .block {
  padding: 20px 30px 0 30px;
}

#about .block h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
  text-transform: uppercase;
  color:#fff;
}

#about .block p {
  color: #727272;
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 35px;
}

#about .block img {
  max-width: 100%;
}

.about-feature {
  margin-top: 50px;
}

.about-feature .block {
  color: #1e1e1e;
  padding: 85px 65px;
  float: left;
}

.about-feature .block p {
  font-weight: 300;
}

.about-feature .about-feature-1 {
  background: #00c3ff;
}

.about-feature .about-feature-2 {
  background: #00B0C7;
}

.about-feature .about-feature-3 {
  background: #00A6BB;
}

.works {
  padding: 80px 0;
  background: #FCFCFC;
}

.works .block {
  position: relative;
  z-index: 99;
}

.works .block:hover .img-overly .overly {
  opacity: 1;
}

.works .block h4 {
  padding: 20px 15px;
  margin-top: 0;
  color: #666;
}

.works .block .img-overly {
  position: relative;
  background: rgba(0, 0, 0, 0.85);
}

.works .block .img-overly img {
  border-radius: 0;
}

.works .block .img-overly .overly {
  background: rgba(57, 181, 74, 0.9);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: .3s all;
}

.works .block .img-overly .overly a {
  position: absolute;
  top: 45%;
  left: 22%;
}

.works .block .img-overly .overly a i {
  font-size: 30px;
  color: #fff;
}

figure {
  background: #1e1e1e;
  margin-bottom: 45px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.04), 0 2px 10px 0 rgba(0, 0, 0, 0.06);
}

figure .img-wrapper {
  position: relative;
  overflow: hidden;
}

figure img {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  transition: -webkit-transform 400ms;
  transition: transform 400ms;
  transition: transform 400ms, -webkit-transform 400ms;
}

figure:hover img {
  -webkit-transform: scale3d(1.2, 1.2, 1);
  transform: scale3d(1.2, 1.2, 1);
}

figure:hover .overlay {
  opacity: 1;
}

figure:hover .overlay .buttons a {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

figure .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px;
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 400ms;
}

figure .overlay a {
  display: inline-block;
  color: #fff;
  padding: 10px 23px;
  line-height: 1;
  border: 1px solid #fff;
  border-radius: 0px;
  margin: 4px;
  -webkit-transform: scale3d(0, 0, 0);
  transform: scale3d(0, 0, 0);
  transition: all 400ms;
}

figure .overlay a:hover {
  text-decoration: none;
}

figure .overlay:hover a {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

figure .buttons {
  margin-top: 40%;
  text-align: center;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
}

figure .buttons a:hover {
  background: #00c3ff;
  border-color: #00c3ff;
}

figure .buttons a:focus {
  text-decoration: none;
}

figure figcaption {
  padding: 20px 25px;
  margin-top: 0;
  color: #666;
}

figure figcaption h4 {
  margin: 0;
}

figure figcaption h4 a {
  color: #00c3ff;
}

figure figcaption p {
  font-size: 14px;
  margin-bottom: 0;
  margin-top: 5px;
}

#feature {
  padding: 80px 0;
}

#feature .media {
  margin: 0px 0 70px 0;
}

#feature .media .media-left {
  padding-right: 25px;
}

#feature h3 {
  color: #222222;
  font-size: 18px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
  margin: 0px 0px 15px;
  font-weight: 400;
}

#feature p {
  line-height: 25px;
  font-size: 14px;
  color: #777777;
}

#feature .icon {
  text-decoration: none;
  color: #fff;
  background-color: #00c3ff;
  height: 100px;
  text-align: center;
  width: 100px;
  font-size: 50px;
  line-height: 100px;
  overflow: hidden;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  text-shadow: #00a4ba 1px 1px, #00a4ba 2px 2px, #00a4ba 3px 3px, #00a4ba 4px 4px, #00a4ba 5px 5px, #00a4ba 6px 6px, #00a4ba 7px 7px, #00a4ba 8px 8px, #00a4ba 9px 9px, #00a4ba 10px 10px, #00a4ba 11px 11px, #00a4ba 12px 12px, #00a4ba 13px 13px, #00a4ba 14px 14px, #00a4ba 15px 15px, #00a4ba 16px 16px, #00a4ba 17px 17px, #00a4ba 18px 18px, #00a4ba 19px 19px, #00a4ba 20px 20px, #00a4ba 21px 21px, #00a4ba 22px 22px, #00a4ba 23px 23px, #00a4ba 24px 24px, #00a4ba 25px 25px, #00a4ba 26px 26px, #00a4ba 27px 27px, #00a4ba 28px 28px, #00a4ba 29px 29px, #00a4ba 30px 30px, #00a4ba 31px 31px, #00a4ba 32px 32px, #00a4ba 33px 33px, #00a4ba 34px 34px, #00a4ba 35px 35px, #00a4ba 36px 36px, #00a4ba 37px 37px, #00a4ba 38px 38px, #00a4ba 39px 39px, #00a4ba 40px 40px, #00a4ba 41px 41px, #00a4ba 42px 42px, #00a4ba 43px 43px, #00a4ba 44px 44px, #00a4ba 45px 45px, #00a4ba 46px 46px, #00a4ba 47px 47px, #00a4ba 48px 48px, #00a4ba 49px 49px, #00a4ba 50px 50px, #00a4ba 51px 51px, #00a4ba 52px 52px, #00a4ba 53px 53px, #00a4ba 54px 54px, #00a4ba 55px 55px, #00a4ba 56px 56px, #00a4ba 57px 57px, #00a4ba 58px 58px, #00a4ba 59px 59px, #00a4ba 60px 60px, #00a4ba 61px 61px, #00a4ba 62px 62px, #00a4ba 63px 63px, #00a4ba 64px 64px, #00a4ba 65px 65px, #00a4ba 66px 66px, #00a4ba 67px 67px, #00a4ba 68px 68px, #00a4ba 69px 69px, #00a4ba 70px 70px, #00a4ba 71px 71px, #00a4ba 72px 72px, #00a4ba 73px 73px, #00a4ba 74px 74px, #00a4ba 75px 75px, #00a4ba 76px 76px, #00a4ba 77px 77px, #00a4ba 78px 78px, #00a4ba 79px 79px, #00a4ba 80px 80px, #00a4ba 81px 81px, #00a4ba 82px 82px, #00a4ba 83px 83px, #00a4ba 84px 84px, #00a4ba 85px 85px, #00a4ba 86px 86px, #00a4ba 87px 87px, #00a4ba 88px 88px, #00a4ba 89px 89px, #00a4ba 90px 90px, #00a4ba 91px 91px, #00a4ba 92px 92px, #00a4ba 93px 93px, #00a4ba 94px 94px, #00a4ba 95px 95px, #00a4ba 96px 96px, #00a4ba 97px 97px, #00a4ba 98px 98px, #00a4ba 99px 99px, #00a4ba 100px 100px;
}

.wrapper_404 h1 {
  font-size: 200px;
  color: #1e1e1e;
  line-height: 1;
}

.wrapper_404 h2 {
  font-size: 50px;
  margin-top: 0;
}

.wrapper_404 .btn-home {
  background: #414141;
  border: none;
  color: #fff;
  padding: 20px 35px;
  margin-top: 10px;
  font-size: 16px;
  font-size: 13px;
  line-height: 1em;
  text-transform: uppercase;
  letter-spacing: normal;
  border-radius: 0;
  transition: all linear .2s;
}

#blog-full-width {
  padding: 40px 0 80px;
}

article {
  padding: 30px 0;
}

.blog-content h2 {
  font-family: 'Roboto', sans-serif;
}

.blog-content h2 a {
  color: #444;
  font-weight: 400;
  font-size: 30px;
}

.blog-content .blog-meta {
  color: #9a9a9a;
  font-weight: 300;
  margin-bottom: 25px;
}

.blog-content .blog-meta span:after {
  content: '/';
  padding: 0 3px 0 6px;
}

.blog-content .blog-meta a {
  color: #acacac;
}

.blog-content .blog-meta p {
  margin-top: 20px;
}

.blog-content .btn-details {
  color: #00c3ff;
  padding: 0;
  background: #00c3ff;
  color: #fff;
  padding: 8px 18px;
  border-radius: 0;
  margin-top: 15px;
  border: 1px solid #fff;
  box-shadow: 0px 0px 0px 1px #00c3ff;
}

.blog-post-image {
  margin-top: 30px;
}

.sidebar {
  padding-top: 60px;
}

.sidebar .widget {
  margin-bottom: 40px;
  padding: 15px;
  border: 1px solid #dedede;
}

.sidebar .widget h3 {
  margin-top: 8px;
}

.sidebar .search input.form-control {
  border-right: 0;
  border-radius: 0;
  box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0.075);
}

.sidebar .search button {
  border-left: 0;
}

.sidebar .search button:hover {
  background: transparent;
}

.sidebar .author .author-img img {
  width: 90px;
  border-radius: 100%;
  margin-top: -40px;
  border: 3px solid #fff;
}

.sidebar .author .author-bio p {
  font-size: 14px;
  color: #888;
}

.sidebar .categories ul li {
  border-bottom: 1px solid #f0f0f0;
  padding: 10px 0;
  list-style: none;
}

.sidebar .categories ul li span.badge {
  float: right;
  background: transparent;
  color: #444;
  border: 1px solid #dedede;
  border-radius: 0;
}

.sidebar .categories ul li a {
  color: #555;
}

.sidebar .categories ul li:last-child {
  border-bottom: none;
}

.sidebar .recent-post ul li {
  margin: 20px 0;
}

.sidebar .recent-post ul li a {
  color: #555;
  font-size: 15px;
}

.sidebar .recent-post ul li a:hover {
  color: #00c3ff;
}

.sidebar .recent-post time {
  font-weight: 300;
  color: #999;
  font-size: 12px;
}

#clients {
  padding: 30px 0 60px;
}

.slick-slide:focus {
  outline: 0;
}

#contact-section {
  padding: 90px 0;
}

#contact-section .contact-form {
  margin-top: 42px;
}

#contact-section .contact-form .btn-send {
  color: #fff;
  outline: none;
  background: #00c3ff;
  transition: all linear .2s;
  border-color: #00c3ff;
  border-radius: 0;
}

#contact-section input {
  display: block;
  height: 40px;
  padding: 6px 12px;
  font-size: 13px;
  line-height: 1.428571429;
  background-color: #1e1e1e;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  border-radius: 1px;
  border: 1px solid rgba(111, 121, 122, 0.3);
  box-shadow: none;
  -webkit-box-shadow: none;
}

#contact-section textarea {
  display: block;
  border-radius: 0;
  width: 100%;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555555;
  background-color: #1e1e1e;
  background-image: none;
  border: 1px solid #cccccc;
  box-shadow: none;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

#contact-section .address, #contact-section .email, #contact-section .phone {
  text-align: center;
  background: #1e1e1e;
  padding: 20px 0 40px 0;
  margin-bottom: 20px;
}

#contact-section .address i, #contact-section .email i, #contact-section .phone i {
  font-size: 45px;
  color: #00c3ff;
}

#contact-section .address h5, #contact-section .email h5, #contact-section .phone h5 {
  font-size: 16px;
  line-height: 1.4;
}

#contact-section .address-details {
  padding-top: 70px;
}

#map-canvas {
  width: 100%;
  height: 350px;
  background-color: #1e1e1e;
}

.error {
  padding: 10px;
  color: #D8000C;
  border-radius: 2px;
  font-size: 14px;
  background-color: #FFBABA;
}

.success {
  background-color: #6cb670;
  border-radius: 2px;
  color: #fff;
  font-size: 14px;
  padding: 10px;
}

#error, #success {
  display: none;
  margin-bottom: 10px;
}

.gallery {
  padding: 100px;
}

.gallery figure .buttons {
  left: 40%;
}

.portfolio-meta span {
  margin: 5px 10px;
  font-weight: 300;
}

.portfolio-meta span a {
  color: #fff;
}

.single-post {
  padding: 80px 0 20px;
}

.single-post .post-content {
  padding: 40px 0;
}

.single-post .post-content ol li, .single-post .post-content ul li {
  color: #666;
}

.single-post .media {
  border: 1px solid #dedede;
  padding: 30px 20px;
}

.single-post .media .media-body a {
  color: #00c3ff;
  font-size: 12px;
}

.single-post .media .media {
  border: none;
}

.single-post .comments {
  margin-top: 40px;
}

.single-post .post-comment {
  margin-top: 40px;
}

.single-post .post-comment h3 {
  margin-bottom: 15px;
}

.single-post .post-comment .form-control {
  box-shadow: none;
  border-radius: 0;
}

.single-post .post-comment .btn-send {
  background: #62D0E3;
  color: #fff;
  border-radius: 0;
}

/* portfolio single */
.work-single {
  padding: 100px 0 20px;
}

.work-single h3 {
  font-size: 30px;
  margin-bottom: 25px;
}

.work-single-image {
  margin-bottom: 35px;
}

.work-single-content p {
  margin-bottom: 30px;
}

.work-single blockquote {
  margin-bottom: 30px;
  padding: 30px 25px;
  background: #eae9ec;
  color: #848484;
}

.work-single-sidebar {
  background: #eae9ec;
  margin: 70px 0 50px;
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  padding: 30px 25px;
}

.work-single-sidebar h5 {
  margin-bottom: 8px;
}

.work-single-sidebar h6 {
  margin-bottom: 20px;
}

.btn-work {
  color: #fff;
  background: #62D0E3;
  border-radius: 0;
}

#product-showcase-banner {
  padding-top: 160px;
}

#product-showcase-banner .block {
  padding: 20px 0 20px 50px;
}

#product-showcase-banner .block h2 {
  font-size: 40px;
  color: #62D0E3;
  margin-bottom: 20px;
  margin-top: 0;
}

#product-showcase-banner .block p {
  color: #666;
  line-height: 25px;
}

#product-showcase-banner .block .buttons {
  margin-top: 25px;
}

#product-showcase-banner .block .buttons .btn {
  color: #fff;
  border: none;
  padding: 12px 40px;
  transition: .2s all;
  letter-spacing: 2px;
  font-size: 15px;
}

#product-showcase-banner .block .buttons .btn-demo {
  background: #5abd4f;
  margin-right: 8px;
  border-bottom: 3px solid #429E38;
}

#product-showcase-banner .block .buttons .btn-demo:hover {
  background: #429E38;
}

#product-showcase-banner .block .buttons .btn-buy {
  background: #00AEDA;
  border-bottom: 3px solid #0190B5;
}

#product-showcase-banner .block .buttons .btn-buy:hover {
  background: #0190B5;
}

#product-showcase-banner .block .buttons .btn-buy span {
  margin-right: 8px;
  font-weight: bold;
}

#product-description {
  padding-top: 80px;
}

#product-description .block {
  height: 400px;
  overflow: hidden;
  margin-top: 35px;
  border-bottom: 1px solid #dedede;
  padding-top: 30px;
  position: relative;
  webkit-transform: translateZ(0);
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

#product-description .block:hover img {
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
}

#product-description .block img {
  position: absolute;
  top: 10px;
  left: 0;
  -webkit-transform: translateY(60px);
  transform: translateY(60px);
  transition: -webkit-transform 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.35s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
}

#product-description .block .content {
  width: 60%;
  padding-top: 70px;
}

#product-description .block .content h3 {
  font-size: 32px;
  color: #5c5c5c;
}

#product-description .block .content p {
  color: #787f8c;
  line-height: 25px;
}

#related-items {
  padding: 60px 0 110px;
}

#related-items .title {
  border-bottom: 1px solid #dedede;
  padding: 10px 0;
  margin: 5px 15px 30px 15px;
  text-align: left;
  color: #777;
}

#related-items .product-details {
  margin-bottom: 0;
}

#related-items .block {
  position: relative;
  background: #1e1e1e;
  margin-bottom: 45px;
  box-shadow: 0 0px 1px rgba(0, 0, 0, 0.14);
}

#related-items .block:hover .img-overly .overly {
  opacity: 1;
}

#related-items .block h4 {
  padding: 20px 15px;
  margin-top: 0;
  color: #666;
}

#related-items .block h4 span {
  float: right;
  color: #00c3ff;
}

#related-items .block .img-overly {
  position: relative;
  background: rgba(0, 0, 0, 0.85);
}

#related-items .block .img-overly img {
  border-radius: 0;
}

#related-items .block .img-overly .overly {
  background: rgba(57, 181, 74, 0.9);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: .3s all;
}

#related-items .block .img-overly .overly a {
  position: absolute;
  top: 45%;
  left: 45%;
}

#related-items .block .img-overly .overly a i {
  font-size: 30px;
  color: #fff;
}

.service-page .service-parts .block {
  margin-bottom: 40px;
  text-align: center;
}

.service-page .service-parts .block i {
  font-size: 35px;
  color: #00c3ff;
}

.service-page .service-parts .block p {
  padding: 0 8px;
  font-size: 14px;
  color: #777;
  line-height: 1.7;
}

#team {
  margin: 50px 0;
}

.team-member {
  margin-top: 30px;
}

.team-member:hover .team-img img {
  opacity: .8;
}

.team-member .team-img {
  position: relative;
}

.team-member .team-img .team-pic {
  width: 100%;
}

.team-member .team_designation {
  font-size: 13px;
}

.team-member h3 {
  color: #00c3ff;
  margin-bottom: 0;
  font-size: 20px;
}

.team-member p {
  font-size: 14px;
}

.team-member .social-icons a {
  background: #62D0E3;
  color: #fff;
  padding: 4px 8px;
  display: inline-block;
  font-size: 15px;
}

.team-member .social-icons .facebook {
  padding: 4px 12px;
}

footer {
    display: flex;
    background-color:#1e1e1e !important;
    justify-content: space-between; /* Pousse les éléments aux extrémités */
    align-items: center;           /* Les aligne verticalement */
    width: 100%;
    padding: 10px 20px;            /* Donne un peu d'air sur les côtés */
    box-sizing: border-box;        /* Évite que le padding ne fasse déborder le footer */
    
    /* Optionnel : fixe le footer en bas si nécessaire */
    position: relative; 
    margin-top: auto; 
}

/* Assure-toi que les icônes n'ont pas de position absolute qui casserait le flex */
.footer-icon, .social-link {
    position: static !important; 
    display: flex;
    align-items: center;
}

.cd-headline.slide .cd-words-wrapper {
  color: #62D0E3;
}

main {
  flex:1;
}

ul.social-icons {
  height: auto;
  overflow: hidden;
  list-style: none !important;
  margin-bottom: 10px;
}

ul.social-icons li {
  float: none;
  display: inline-block;
  height: 36px;
}

#copyright a:hover, #copyright nav .menu li a:hover {
  color: #e4e4e4 !important;
}

#copyright a {
  text-decoration: none;
}

#copyright a:hover {
  text-decoration: none;
}

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





/* CSS BOUTONS BOTTOM INDEX */


/* Container pour l'alignement */
.cta-container {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -180px !important; /* Rapproche les boutons du footer */
    gap: 50px;
    justify-content: center;
    align-items:center;
    margin-top: 30px;
    width:100%;
}

@keyframes arrow-glide {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(8px); /* Point le plus à droite */
    }
    100% {
        transform: translateX(0);
    }
}

/* Style de base du lien */
.nav-link-augmented {
    all:unset;
    cursor:pointer;
    position: relative;
    text-decoration: none;
    color: #b0b0b0; /* Gris très clair */
    font-family: 'Inter', sans-serif; /* Ou ta police actuelle */
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding-bottom: 8px;
    justify-content: center;
    white-space:nowrap;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    /* Passage en majuscules */
    text-transform: uppercase; 
    
    /* Un peu d'espacement entre les lettres pour le côté premium */
    letter-spacing: 0.12em;
}

/* La flèche */
.nav-link-augmented .arrow {
    display:inline-block;
    margin-left: 8px;
    transition: transform 0.3s ease;
    font-size: 1.2em;
}

/* La ligne bleue (Repos : 30%) */
.nav-link-augmented::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30%; /* Largeur initiale */
    height: 1.5px;
    background-color: #62D0E3; /* Ton bleu d'accentuation */
    transition: width 0.3s ease;
}

/* --- ÉTAT HOVER --- */

.nav-link-augmented:hover {
    color: #ffffff; /* S'éclaire au survol */
}

/* Expansion de la ligne à 100% */
.nav-link-augmented:hover::after {
    width: 100%;
}

/* Déplacement de la flèche */
.nav-link-augmented:hover .arrow {
    /* 'infinite' pour que ça ne s'arrête jamais */
    /* 'ease-in-out' pour que le demi-tour soit fluide et organique */
    animation: arrow-glide 1.2s ease-in-out infinite;
}


/* MOBILE */
@media (max-width: 768px) {
    .cta-container {
        gap: 40px 20px;     /* Plus d'espace vertical, moins d'horizontal */
        max-width: 100%;   /* On force le conteneur à être étroit pour pousser les boutons à la ligne */
        padding:0 20px;
    }

    .nav-link-augmented {
        /* On force chaque bouton à occuper environ 45% pour en avoir 2 par ligne */
        flex: 0 1 45%; 
        min-width:120px;
        justify-content: center;
        font-size: 13px;    /* Légère réduction pour mobile */
    }
}




/*Amélioration des game cards */

/* Le conteneur de chaque jeu */
.game-card {
    display: inline-flex;    /* Permet l'alignement interne flex tout en restant en ligne */
    flex-direction: column;  /* Aligne l'image et le texte verticalement */
    align-items: center;     /* CENTRE TOUT HORIZONTALEMENT (image + texte) */
    width: 280px;            /* Ajuste selon la taille voulue */
    margin: 15px;            /* Espace entre les blocs */
    vertical-align: top;
}

/* Style de l'image pour qu'elle ne dépasse pas */
.game-card img {
    width: 100%;
    height: auto;
    display: block;          /* Supprime l'espace vide sous l'image */
    border: 2px solid #111; /* On voit la bordure bleue sur ton screen */
}

/* Style du texte sous l'image */
.game-title {
    text-align: center;      /* Force le centrage du texte sur lui-même */
    color: #fff !important; 
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    width: 100%;             /* S'assure que le texte utilise toute la largeur du bloc pour se centrer */
}

.game-title-game{
    color:#62D0E3;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    width: 100%;             /* S'assure que le texte utilise toute la largeur du bloc pour se centrer */
}

.game-title-job{
    font-size: 16px;
    text-transform: uppercase;
    width: 100%;             /* S'assure que le texte utilise toute la largeur du bloc pour se centrer */
}


/* Game gallery */

.section-divider {
    border: 0;
    height: 1px;
    /* Dégradé qui s'efface sur les bords : transparent -> bleu -> transparent */
    background-image: linear-gradient(to right, transparent, #62D0E3, transparent);
    width: 80%;
    margin-top:-10px;
    margin-bottom: 40px;
    opacity: 0.8;
}


#background-fix{
  padding:0 0 0 0 !important;
}


.col-md-12 {
  max-width: 1800px !important;
}





@media (max-width: 991px) {
    .navbar-nav .nav-link::after, 
    .navbar-nav .nav-link {
        border-bottom: none !important;
        text-decoration: none !important;
    }
    
    /* Si l'underline est une image ou un trait spécifique sur le lien actif */
    .navbar-nav .active::after {
        display: none !important;
    }
}






/* PRODUCTS SECTION */

.expertise-item {
    border-bottom: none; /* On enlève la bordure grise solide */
    background-image: linear-gradient(to right, transparent, rgba(200, 250, 250, 0.5), transparent);
    background-position: bottom;
    background-size: 40% 1px; /* Comme ton divider : 80% de large, 1px de haut */
    background-repeat: no-repeat;
    transition: all 0.4s ease;
}
.expertise-trigger {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    padding: 40px 0;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s;
    position:relative;
}

.expertise-trigger:hover .exp-number { color: #62D0E3; }

.exp-number {
    font-family: monospace;
    font-size: 1.2rem;
    color: #62D0E3;
    margin-right: 40px;
    transition: 0.3s;
}

.exp-title h2 {
    color: #fff;
    display:block;
    font-size: 1.8rem;
    margin: 0;
    text-align:left;
}

.exp-title p {
    color: #A2A2A2;
    margin: 5px 0 0 0;
}

.expertise-trigger i {
    margin-left: auto;
    color: #62D0E3;
    font-size: 1.5rem;
    transition: transform 0.4s;
}

/* Partie qui se déplie */
.expertise-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}

.expertise-item.active .expertise-content {
    max-height: none; /* Valeur arbitraire haute */
    transition: max-height 1s ease-in-out;

}

.expertise-item.active i {
    transform: rotate(45deg); /* Transforme le + en x */
}

.exp-inner {
    padding: 20px 0 40px 20px;
}

.exp-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.detail-block h4 {
    color: #62D0E3;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.detail-block p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.6;
}

.exp-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;    /* Centre l'image et le chiffre sur l'axe vertical */
    justify-content: center;
    margin-right: 35px;
    min-width: 60px;        /* Largeur fixe pour stabiliser l'alignement */
    flex-shrink: 0;         /* Empêche le bloc de s'écraser si le titre est long */
}

.exp-icon {
    width: 40px;            
    height: 40px;           
    object-fit: contain;    
    margin-bottom: 8px;     
    display: block;         /* Supprime les espaces résiduels sous l'image */
    transition: all 0.3s ease; /* Transition ici pour un retour fluide à l'état initial */
}

.exp-number {
    display: block;         /* Nécessaire pour que text-align fonctionne */
    width: 100%;            /* Prend toute la largeur du parent (60px) */
    text-align: center;     /* Centre le texte "01" à l'intérieur de ces 60px */
    font-family: monospace;
    line-height: 1;
    margin: 0;              /* Reset des marges par défaut */
}

/* Animation au hover */
.expertise-trigger:hover .exp-icon {
    transform: translateY(-5px); 
    filter: brightness(1.2);     
}

/* Petit bonus : le chiffre peut aussi s'éclaircir au hover pour suivre l'icône */
.expertise-trigger:hover .exp-number {
    color: #76faff;
    transition: color 0.3s ease;
}

.expertise-trigger:hover h2 {
    color: #76faff;
    transition: color 0.3s ease;
}

.expertise-trigger:hover p {
    color: #ccc;
    transition: color 0.3s ease;
}

.expertise-trigger {
    outline: none !important; /* Supprime la bordure blanche au clic */
    border: none;             /* Supprime les bordures par défaut */
    background: transparent;  /* Assure qu'aucun fond gris n'apparaît */
    box-shadow: none;         /* Supprime d'éventuelles ombres au clic */
    -webkit-tap-highlight-color: transparent; /* Supprime le flash bleu sur mobile */
}

.expertise-trigger:focus,
.expertise-trigger:active {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}


/* État quand l'accordéon est ouvert (.active est ajouté via JS) */
.expertise-item.active .expertise-trigger {
    background-color: #62D0E3; /* Ta couleur d'accentuation */
    transition: background-color 0.4s ease;
}

/* Changement des couleurs de texte dans l'état actif */
.expertise-item.active .exp-title h2,
.expertise-item.active .exp-title p,
.expertise-item.active .exp-number {
    color: #111 !important; /* Gris très sombre */
    transition: color 0.4s ease;
    font-weight:500;
}

/* Gestion de l'icône (image) en mode actif */
/* Pour que ton icône devienne sombre comme le texte, on utilise un filtre CSS */
.expertise-item.active .exp-icon {
    filter: brightness(0) saturate(100%) invert(12%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(15%) contrast(100%);
    /* Ce filtre force l'image vers le gris très sombre #222 */
}

/* On ajuste aussi l'icône plus/moins à droite si elle existe */
.expertise-item.active .expertise-trigger i {
    color: #111;
}

/* Le triangle qui n'apparaît qu'au hover */
.expertise-trigger::after {
    content: '\25BC'; /* Triangle */
    position: absolute;
    right: 20px;
    top: 35%;
    transform: translateY(-50%) scaleX(1.5);
    color: #62D0E3;
    opacity: 0;
    transition: opacity 0.3s;
}


.expertise-trigger:hover::after,
.expertise-item.active .expertise-trigger::after {
    opacity: 1;
}

/* La flèche devient grise quand le fond devient Cyan (pour matcher ton texte #222) */
.expertise-item.active .expertise-trigger::after {
    opacity: 1;
    color: #111;
    transform: translateY(-50%) scaleX(1.5) rotate(180deg);
}


@media (max-width: 768px) {
    /* Remplace .ton-element-unfold par le nom de ta classe réelle */
    .expertise-content.active, 
    .unfold-section.open {
        height: auto !important; /* Force l'élément à s'adapter au texte */
        max-height: none !important; /* Supprime toute limite de hauteur */
        overflow: visible !important; /* Permet au contenu de s'afficher */
    }
}

.unfold-section.open {
    max-height: 2000px; /* Assez grand pour n'importe quel texte mobile */
    transition: max-height 0.5s ease-in-out;
}



#hero-area {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
    min-height: auto !important; /* Très important si le template force une hauteur */
}

#center-fix2 {
    margin-bottom: 0 !important;
    padding-bottom: 20px !important; /* Ajuste cette valeur selon tes goûts */
}




/* 1. Définition des couleurs par thème */
.theme-01 { --section-color: #62D0E3; } /*Cyan*/
.theme-02 { --section-color: #62abe3; } /*Bleu*/
.theme-03 { --section-color: #6272e3; } /*Violet*/
.theme-04 { --section-color: #9f62e3; } /*Fuchsia*/

/* 2. Style initial (Coloré) */
.exp-number, .exp-icon {
    color: var(--section-color);
    filter: grayscale(0%);
    transition: all 0.3s ease;
}

/* Au survol de la section, le titre, le numéro et l'icône s'illuminent */
.expertise-item:hover .exp-title h2,
.expertise-item:hover .exp-number,
.expertise-item:hover .exp-icon {
    color: var(--section-color) !important;
}

/* Si ta flèche est une image ou une police d'icône spécifique (comme la flèche à droite) */
.expertise-item:hover .expertise-trigger::after, 
.expertise-item:hover .expertise-trigger i {
    color: var(--section-color) !important;
}

/* 3. État ACTIVE (Quand le bandeau s'allume) */
.expertise-item.active .expertise-trigger {
    background-color: var(--section-color) !important;
}

/* C'est ici qu'on passe en gris/sombre ce qui est dans le bandeau actif */
.expertise-item.active .exp-number,
.expertise-item.active .exp-title h2,
.expertise-item.active .exp-title p {
    color: #333 !important; /* Ou une nuance de gris très foncé pour rester lisible sur la couleur */
}

.expertise-item.active .exp-indicator img {
    filter: contrast(0) brightness(0.2); /* Rend l'icône sombre/grise sur le fond coloré */
}

/* 4. Contenu déplié (Garde la couleur pour les titres de projets) */
.expertise-item.active .detail-block h4 {
    color: var(--section-color) !important;
}

.expertise-item.active .expertise-trigger:hover::after {
    color: #333 !important;
    opacity: 1;
}







/* ============================================================
   CORRECTIONS MENU MOBILE (BURGER)
   ============================================================ */

@media (max-width: 991px) {
    /* 1. Force le centrage du bloc qui se déroule */
    .navbar-collapse {
        text-align: center;
        padding-bottom: 25px;
        background-color: #1e1e1e; /* On s'assure que le fond reste sombre */
    }

    /* 2. Centre la liste de liens et gère l'espacement */
    .navbar-nav {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        padding-top: 20px;
    }

    /* 3. Style des liens individuels en mobile */
    .navbar .nav-item .nav-link {
        padding: 12px 0 !important;
        font-size: 18px !important; /* Un peu plus grand pour faciliter le clic */
        width: 100%;
        display: block;
        bottom: 0 !important; /* Annule le décalage desktop */
    }

    /* 4. Cas particulier : lien actif (on enlève les effets desktop gênants) */
    .navbar .nav-link.active {
        font-size: 18px !important;
        color: #62D0E3 !important;
        bottom: 0 !important;
    }

    /* 5. On centre la petite barre sous le lien actif si elle existe */
    .navbar-nav .nav-link.active::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
        bottom: 5px !important;
    }

    /* 6. Centrage des drapeaux de langue */
    .nav-item:last-child .nav-link {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
        margin-top: 10px;
    }
}

/* =========================================
   MODULE PROJET DROITE/GAUCHE (Mockup Style)
========================================= */

.pr-row {
    display: flex !important;
    align-items: center;
    gap: 60px; /* Espace légèrement plus grand pour le style mockup */
    margin-bottom: 100px;
    width: 100%;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
}

/* Inversion de l'ordre pour la classe .reverse */
.pr-row.reverse {
    flex-direction: row-reverse !important;
}

/* On force chaque bloc à 50% de largeur */
.pr-img, .pr-txt {
    flex: 1 !important;
    width: 50%;
}

/* ----- EFFET MOCKUP AUTOUR DE L'IMAGE ----- */
.pr-mockup {
    background: #252525; /* Couleur de fond du conteneur (léger gris) */
    border: 2px solid #333333; /* La bordure fine de la maquette */
    border-radius: 15px; /* Coins arrondis */
    padding: 0; /* Pas de padding pour que l'image touche les bords */
    overflow: hidden; /* Pour que les coins de l'image suivent l'arrondi */
    box-shadow: 0 10px 20px rgba(80, 80, 80, 0.5); /* Ombre portée douce */
    transition: all 0.3s ease; /* Effet au survol */
    max-width:80%; margin:auto;
}

/* Optionnel : Légère animation au survol */
.pr-mockup:hover {
    box-shadow: -15px 15px 30px rgba(80, 80, 80, 1);
    transform: translateX(10px);
}

.pr-mockup.reverse:hover {
    box-shadow: 15px 15px 30px rgba(80, 80, 80, 1);
    transform: translateX(-10px);
}

.pr-mockup img {
    width: 100%;
    height: auto;
    display: block; /* Évite les espaces sous l'image */
}

/* ----- TEXTE ET TITRES ----- */
.pr-txt h3 {
    color: #62d0e3; /* Le bleu */
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 22px;
    
}

.pr-txt p {
    color: #ffffff !important; /* Force le blanc */
    font-size: 16px;
    line-height: 1.8; /* Interligne plus aéré comme la maquette */
}

/* =========================================
   RESPONSIVE : Tout empiler sur Mobile
========================================= */
@media (max-width: 991px) {
    .pr-row, .pr-row.reverse {
        flex-direction: column !important;
        gap: 30px;
        margin-bottom: 60px;
    }
    .pr-img, .pr-txt {
        width: 100% !important;
        padding: 0 !important;
    }
}


/* LE WRAPPER DOIT CONTENIR TOUT SAUF LE FOOTER */
.content-wrapper {
    flex: 1 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
}

/* LE FOOTER RESTE EN BAS */
footer {
    flex-shrink: 0 !important;
    margin-top: auto !important; /* La ligne magique */
}



/* L'image agrandie */
.zoom-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
  display: none; /* Caché par défaut */
  justify-content: center;
  align-items: center;
  z-index: 1000;
  cursor: zoom-out;
}

.zoom-overlay img {
  max-width: 90%;
  max-height: 90%;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  border: 2px solid #62d0e3; /* Bordure blanche de 4px, par exemple */
  
}

.zoomable {
  cursor: zoom-in;
}