@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;800&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Anta&family=EB+Garamond:ital,wght@1,400..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');

/*=============== Global Styles ===============*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body, main {
  font-family: "Raleway", "Inter", "DM Sans", Arial, sans-serif;
  background-color: #09152B;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.container-section .row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  grid-gap: 30px;
  align-items: stretch;
}

/*=============== Header Styles ===============*/
.header {
  background-color: #f1f1f1;
  padding: 1rem 0;
  border-bottom: 1px solid #154aad;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 2rem;
  width: auto;
}

/*=============== Navbar Styles ===============*/
.navbar {
  display: flex;
  align-items: center;
  position: relative;
  transition: background-color 0.5s ease;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 0.8em;
  align-items: center;
}

.nav-links li a {
  position: relative;
  font-size: 1rem;
  color: #09152B;
  text-decoration: none;
  font-weight: 400;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}

.nav-links li a:hover {
  color: #0077C1;
  font-weight: 600;
  text-shadow: 0px 4px 5px rgba(0, 119, 193, 0.3);
  transform: translateY(-3px);
}

.nav-links li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  background-color: #0077C1;
  bottom: -10px;
  left: 0;
  transition: width 0.3s ease;
}

.nav-links li a:hover::after {
  width: 100%;
}
/*=============== Contact Button Styles ===============*/
.contact-button {
  background-color: #f9f9f903;
  color: #0164A4;
  border: 1px solid #cccccc;
  padding: 0.4rem 1.2rem;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-left: 2rem;
  transition: background-color 0.3s ease;
}

.contact-button:hover {
  background-color: #0056b3;
  color: #ffffff;
}

.contact-button-mobile {
  background-color: #0077C1;
  color: #ffffff;
  text-align: center;
  padding: 1rem;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1001;
  border-top: 1px solid #005fa3;
  display: none;
}

.contact-button-mobile.open {
  display: block;
}


/*=============== Language Selector Styles ===============*/
.language-selector {
  position: relative;
  margin-left: 2rem;
}

.dropdown-btn {
  display: flex;
  align-items: center;
  background-color: #F1F1F1;
  border: 1px solid #cccccc;
  border-radius: 4px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-size: 14px;
  color: #333333;
}

.dropdown-btn:hover {
  background-color: #dfdede;
}

.current-flag {
  width: 20px;
  height: 14px;
  margin-right: 10px;
}

.arrow {
  border: solid #030303;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  margin-left: 10px;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.dropdown-btn.active .arrow {
  transform: rotate(-135deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  background-color: #ffffff;
  border-radius: 4px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
  padding: 0.5rem 0;
  z-index: 1000;
  width: 180px;
  max-height: 150px;
  overflow-y: auto;
}


.dropdown-item {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dropdown-item img {
  width: 20px;
  height: 14px;
  margin-right: 10px;
}

.dropdown-item:hover {
  background-color: #f1f1f1;
}

.hidden {
  display: none;
}


/*=============== Burger Menu Styles ===============*/
.burger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
}

.close-menu {
  display: none;
  font-size: 2rem;
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
  z-index: 1002;
}

@media (max-width: 990px) {

  .logo img {
    height: 2rem;
    width: auto;
    margin-left: calc(50% - 1rem);
  }
  

  .burger {
    display: block;
    margin: 0 1rem;
    color: #172c5e;
  }

  .close-menu {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow-y: auto;
    padding-top: 4rem;
    transition: all 0.3s ease;
    z-index: 1000;
    
  }

  .nav-links.open {
    left: 0;
    
  }

  .nav-links li {
    margin: 1rem 0;
  }

  .nav-links li a {
    font-size: 1.5rem;
    text-align: center;
  }

  .language-selector {
    margin-top: 2rem;
    margin-left: 0;
  }

  .contact-button-mobile {
    display: block;
    z-index: 1001;
  }

  .close-menu.open {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow-y: auto;
    padding-top: 3rem;
    transition: all 0.3s ease;
    z-index: 1000;
  }

  .language-selector {
    position: absolute;
    top:0;
    left: 1rem;
    margin-left: 0;
  }

  .dropdown-menu {
    top: 2rem;
    left: 0;
  }
}

/*================================================== */
/*=============== Hero Banner Styles ===============*/
.hero__wrapper {
  height: 50vh;
  width: 100%;
  padding: 2rem 5rem;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__content {
  color: white;
}

.hero__content h1 {
  font-size: 3.50rem;
  margin-bottom: 1.25rem;
}

.hero__content p {
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
}

@media (max-width: 1200px) {
  .hero__content h1 {
    font-size: 2.3rem;
  }
}


/*================================================== */
/*=============== Scroll Progress  ===============*/

/* Add this to your existing CSS */
#scroll-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #e0e0e0;
  z-index: 1002; 
}

#scroll-progress {
  width: 0;
  height: 100%;
  background-color: #0077C1;
  transition: width 0.25s ease-out;
}

/*================================================== */
/*=============== WHATSAPP BUTTON ===============*/

.whatsapp-float {
  position: relative;
  width: auto;
  height: auto;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  z-index: 500;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-left: 1em;
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover img {
  transform: scale(1.1);
}

@media screen and (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 25px;
  }
  
}

/*=============== Contact Tab Styles ===============*/
.contact-tab {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-color: #0077C1;
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: 10px 0 0 10px;
  cursor: pointer;
  font-weight: 600;
  z-index: 1000;
  transition: background-color 0.3s ease;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.contact-tab:hover {
  background-color: #005fa3;
}

/*=============== Contact Form Container ===============*/
.contact-form-container {
  position: fixed;
  top: 0;
  right: -100%;
  width: 500px;
  max-width: 100%;
  height: 100%;
  background-color: #ffffff;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
  z-index: 1001;
  transition: slideIn 0.5s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding-bottom: 2rem;
}



.contact-form-header {
  background-color: #0077C1;
  color: white;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}

.contact-form-header i {
  cursor: pointer;
  font-size: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  gap: 1rem;
  flex: 1;
  max-height: 100vh;
  overflow-y: auto;
}

/*=============== Form Group Styles ===============*/
.form-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.input-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.contact-form input, .contact-form textarea, .contact-form select {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  border-color: #0077C1;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

/*=============== Submit Button Styles ===============*/
.submit-button {
  background-color: #0077C1;
  color: white;
  border: none;
  padding: 0.75rem;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.submit-button:hover {
  background-color: #005fa3;
}

/*=============== Responsive Styles ===============*/
@media (max-width: 768px) {
  .contact-form {
    padding: 1rem 1rem;
    gap: 0.5rem;
  }

  .form-group {
    flex-direction: column;
  }

  .contact-form input, .contact-form textarea, .contact-form select {
    padding: 0.5rem;
    font-size: 0.9rem;
  }

  .contact-form-header {
    padding: 0.5rem 1rem;
  }

  .submit-button {
    padding: 0.5rem;
    font-size: 1rem;
  }
}


/* Styles pour le message de succès */
.success-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  color: green;
  font-size: 1.5rem;
  font-weight: bold;
  background-color: #e6ffed;
  border-radius: 8px;
  animation: fadeIn 0.5s ease-in-out;
}

/* Styles pour le message d'erreur */
.error-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  color: red;
  font-size: 1.5rem;
  font-weight: bold;
  background-color: #ffe6e6;
  border-radius: 8px;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

.fade-out {
  animation: fadeOut 0.5s ease-in-out forwards;
}

@keyframes fadeOut {
  from {
      opacity: 1;
  }
  to {
      opacity: 0;
  }
}

/* Ajout d'un effet de flou lors de la transition */
.contact-form-container {
  transition: backdrop-filter 0.3s ease;
  backdrop-filter: blur(4px);
}


/*=================================== */
/*-------- Section brand -------------*/

.container_brand{
  width: 100%;
  height: fit-content;
  padding: 0 11rem;
  position: relative;
  padding: 2rem 0;

}

.container_brand::before{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #09152B;
  opacity: 0.5;
  background-image:  linear-gradient( #414692 1px, transparent 1px), linear-gradient(to right, #414692 1px, #09152B 1px);
  background-size: 30px 30px;
  z-index: -1;

}

.brands {
  padding: 50px 0;
}

.brands h1 {
  text-align: center;
  margin-bottom: 50px;
  color: #fff;
  font-size: 2rem;
}

.brands .row {
  display: flex;
  gap: 30px;
  padding: 0 20px;
  justify-content:space-around;
  align-items: center;
  overflow-x: hidden;
  flex-wrap: wrap;
  flex-direction: row;
}

.brands .brand a {
  display: block;
  color: #fff;
  text-align: center;
  text-decoration: none;
  margin-top: 10px;
  transition: 0.3s ease-in-out;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.brands .row a{
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

.brands .row a:hover{
  color: #0099ff;
}

.brands .row a::after{
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background: #0099ff;
  transition: 0.3s ease-in-out;
  margin: 5px auto;

}



.volvo a{
  font-family: "EB Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
}

.mtu a{
  font-family: "Anta", sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
}

.kohler a{
  font-size: 2rem;
  font-weight: 600;
}

.alfa a{
  font-size: 2rem;
  font-weight: 400;
  text-transform: uppercase;
}


@media (max-width: 1170px) {
  .brands .brand {
    width: 250px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .container_brand{
    padding: 0;
  }
}




/*-------- HERO MARINE ---------- */
.marine {
  background:url(../img/banner_dep_D_Sea.jpg) center center ;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;  
  background-color:rgba(2,0,36,.5);
  background-blend-mode:overlay; 
}

/*-------- HERO INDUSTRIAL ------ */
.industrial {
  background:url(../img/nuclea_banner.webp) center center ;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;  
  background-color:rgba(2,0,36,.5);
  background-blend-mode:overlay; 
}

/*-------- HERO ENGINEERING ------ */
.engineering {
  background:url(../img/banner_mti1.png) center center ;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;  
  background-color:rgba(2,0,36,.5);
  background-blend-mode:overlay;
}

/*=========== SERVICES  ============= */


.service {
  text-align: center;
  padding: 25px 10px;
  border-radius: 14px;
  font-size: 14px;
  cursor: pointer;
  background: transparent;
  transition: transform 0.5s, background 0.5s;
}

.service img{
  width: auto;
  height: 5rem;
}

.service h2{
  font-weight: 600px;
  margin: 8px;
  color:#0099ff ;
  
}
.service:hover{
  background: #303ef7;
  color: #fff;
  transform: scale(1.05);
}

.service:hover img{
  filter:brightness(3.5);
}

.ndt_services {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}

.ndt_services.open {
  max-height: 2000px; 
}

button.servicesBtn {
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border-radius: 50px;
  color: #0099ff;
}




/*=========== ABOUT  ============= */
/*================================ */


.about__home{
  width: 100%;
  height: fit-content;
  justify-content: center;
  background: white;
  display: flex;
  align-items: center;
  padding: 2.5rem 0;
}



.about__home .main .badge-since img {
  width: 250px;
  height: auto;
  padding: 0 10px;
  max-width: 100%;
  position: absolute;
  left: calc(50% - 247px);
  top: calc(150% - 394px);
}


.about__home .main img{
  width: 580px;
  max-width: 100%;
  height: auto;
  padding: 0 10px;
}

.all-text{
  width: 600px;
  max-width: 100%;
  padding: 0 10px;
}
.all-text h4 {
  font-size: 18px;
  color: #777777;
  letter-spacing: 1px;
  font-weight: 400;
  margin-bottom: 10px;
}

.all-text h1{
  font-size: 2.5rem;
  background: rgb(9,9,121);
  background: -moz-linear-gradient(-12deg, rgba(9,9,121,1) 0%, rgba(4,109,189,1) 100%);
  background: -webkit-linear-gradient(-12deg, rgba(9,9,121,1) 0%, rgba(4,109,189,1) 100%);
  background: linear-gradient(-12deg, rgba(9,9,121,1) 0%, rgba(4,109,189,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#090979",endColorstr="#046dbd",GradientType=1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;  
  font-weight: 900;
  margin-bottom: 20px;
  
}

.all-text p{
  font-size: 1rem;
  color: #777777;
  line-height: 30px;
  margin-bottom: 35px;
}

.main{
  width: 1290px;
  max-width: 95%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
}


@media screen and (max-width:1250px) {
  .about__home{
    width: 100%;
    height: auto;
    padding: 2rem 0;
  }
  .all-text{
    text-align: center;
    margin-top: 40px;
  }
  .whatsapp img{
    height: 35px;
  }
  .about__home .main .badge-since img {
    left: calc(50% - 199px);
    top: calc(125% - 200px);
  }
}

@media screen and (max-width:800px) {
  .about__home{
    height: auto;
  }

  .about__home.main img{
    margin-bottom: 35px;
  }
  .all-text h1{
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  .about__home .main .badge-since img {
    left: calc(50% - 85px);
    top: calc(216% - 279px);
    width: 180px;
  }

}

.logo-d img{
  display:flex ;
  position: absolute;
  align-items: center;
  justify-content:center;
  margin: 12rem;
  top: 20px;
  width: 60vw;
  z-index: -1;
}

.logo{
  cursor: pointer;
}


.row{
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 15%;
}

.row .column1 {
  padding-right: 5px;
}
.column1 h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.column2 img{
  width: 800px;
  margin: 0;
  z-index: 1;
}

.column1 .responsive-text p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.column1 .responsive-text {
  display: block;
  position: relative;
}


@media (max-width: 1590px) { 
  .column1 .responsive-text {
    font-size: 1rem; 
    display: none;
}
}

.row button{
  margin-top: 2.5rem;
  padding: 1.2rem 1.25rem;
  border-radius: 6px;
  background: -moz-linear-gradient(12deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 12%, rgba(0,212,255,1) 100%);
  background: -webkit-linear-gradient(12deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 12%, rgba(0,212,255,1) 100%);
  background: linear-gradient(12deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 12%, rgba(0,212,255,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#020024",endColorstr="#00d4ff",GradientType=1);
  color: #fff;
  font-weight: 500;
  font-size: 20px;
  line-height: 22px;
  width: 250px;
  border-style: none;
  align-items: center;
  justify-content: center;

  box-shadow: 2px 7px 96px -2px rgba(154,171,237,1);
  -webkit-box-shadow: 2px 7px 96px -2px rgba(154,171,237,1);
  -moz-box-shadow:2px 7px 96px -2px rgba(154,171,237,1);
}

.row button a{
  text-decoration: none;

}

.row button:hover{
  box-shadow: none;
  cursor: pointer;
  background: #0471bd;
  transition: ease-in 0.3s;
}

.row button i {
  font-size: 1.3rem;
  padding-right:15px;
  text-decoration: none;
}


.icon-slideDown {
display: flex;
width: 100%;
height: auto;
text-align: center;
}

.icon-slideDown i{
  color: rgb(255, 255, 255);
  position: absolute;
  text-align: center;
  top: 90vh;
  left: 0;
  right: 0;
  font-size: 50px;
}


.desktop-img {
  display: block;
}

.mobile-img {
  display: none;
}


.mobile-img-top{
  display: none;
}

/* Header content responsive */



@media screen and (max-width:1597px){


  .hero{
    height: 55vh;
    padding-bottom: 5rem;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
    flex-direction:column;
  }


  .hero::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: inherit;
    background: rgb(16,16,150);
    background: -moz-radial-gradient(circle, rgba(49, 101, 190, 0.608) 0%, rgba(1,8,31,0.9346113445378151) 70%);
    background: -webkit-radial-gradient(circle, rgba(49, 101, 190, 0.608) 0%, rgba(1,8,31,0.9346113445378151) 70%);
    background: radial-gradient(circle, rgba(49, 101, 190, 0.608) 0%, rgba(1,8,31,0.9346113445378151) 70%);
    filter: blur(5) opacity(.5);
  }

  .column1{
    position: absolute;
    text-align: center;
    padding: 1rem;
    align-items: center;
    align-content: center;
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .column2 {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    z-index: -1;
    height: 100vh;
    width: 100%;
    align-content: flex-end;
    padding-left: 10%;
    position: relative;
  }
  

  .column2 .desktop-img {
    display: none;
}

  .column2 .mobile-img {
    display: block;
    position: absolute; 
    top: 50%; 
    left: 52%;
    transform: translate(-50%, -50%);
    padding: 0;
    margin: auto;
    width: auto;
    height: 100%;
    height: auto;
    overflow: hidden;
  }

  .mobile-img img {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    background-position: center center;
    

  }

  .mobile-img-top {
    display: block; 
    position: absolute;
    top: 20%; 
    left: 50%; 
    transform: translate(-50%, -50%);
    width: 100%; 
    height: auto; 
    z-index: 1; 
    filter: drop-shadow(0 0 50px #2679e5);
    
  }


  .column1 p {
    font-size: 1rem;
    max-width: 100%;
    z-index: 2;
  }

  .column1 h1{
    color: #e4e4e4;
    z-index: 2;
    position: relative;
    top: 25vh;
    font-size: calc(20% + 2rem);
    filter: drop-shadow(0 0 10px #9db4fa);
  }

  .row{
    margin-top: 80px;
  }

  .column1 .responsive-text::before {
    content: "Unlock Engine Power with Depazur: Precision Engineering for Optimal Performance";
    position: relative;   
    font-size: calc(50% + .895rem);
  }

  .info-content h1{
    font-size: 2em;
    text-align: left;
  }

  .info-text {
    flex-direction: column;
    margin: 50px auto;
  }

  .pictogram-section {
    grid-template-columns: repeat(3, 1fr);
    align-content: space-around;
    margin:80px 30px;
    font-size:1rem;
  }

  .row{
    top: 45%;
    margin: 0;
    padding: 0;
  }

  .logo-d img{
    display: none;
  }
}


@media screen and (max-width:800px){
  .info-content h1{
    font-size: 2em;
    text-align: left;
    
  }

}
.info-text {
  display: flex; 
  justify-content: space-between;
  margin:0 15vw;
}

.info-text p {
  flex: 1;
  margin: 20px 20px;
  text-align: justify;
  font-size: 1em;
}


@media screen and (max-width:1600px){
  .info-text {
    flex-direction: column;
    margin: 50px auto;
  }
  .info-text p {
    text-align: justify;

  }
  .hero-text{
    font-size: 40px;
    font-weight: 800;
  }
  .pictogram-section {
    grid-template-columns: repeat(3, 1fr);
    align-content: space-around;
    margin:80px 30px;
    font-size:1rem ;
}  

  .hero{
    height: 99vh;
  }
}
/* - ********** FIN MEDIA QUERY ********** - */



.info-content {
    text-align: center;
    width: auto;
    height: 45vh;
    background-color: aliceblue;
    display: flex;
    flex-direction: column;
    flex-flow: column;
    padding: 3rem;
}

.visibility {
  visibility: hidden;
}

/* --------------------------------------------------- */
/* ----------------FOOTER SECTION -------------------- */
/* --------------------------------------------------- */
footer {
  width: 100%;
  position: relative;
  bottom: 0;
  background:linear-gradient(to right, #0c1b75, #020616);
  color: #fff;
  padding: 100px 0 30px;
  font-size:13px;
  line-height: 20px;
}
 .row__footer{
  width: 85%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-around;
 }

 .col{
  flex-basis: 20%;
  padding: 25px;
 }
 .col:nth-child(2), .col:nth-child(3){
  flex-basis: 15%;
 }
 
 .logo__footer{
  width: 150px;
  margin-bottom: 30px;
 }
 .col h3{
  width: fit-content;
  margin-bottom:40px;
  position:relative;
  font-size: 1.3rem;
 }
.email-id{
  width: fit-content;
  border-bottom: 1px solid #ccc;
  margin: 20px 0; 
  font-size: 1rem;
  background-color: #303ef7;
  padding:0.2rem 0.5rem ;
  border-radius: 12px;  
}

.email-id a:link{
  text-decoration: none;
  color: inherit;
}

.col ul li {
  list-style: none;
}
.col ul li a{
  text-decoration: none;
  color: #fff;
}
hr{
  width: 90%;
  border: 0;
  border-bottom: 1px solid #303ef7;
  margin: 20px auto;
}
.copyright{
  text-align: center;
}
.underline{
  width: 100%;
  height: 5px;
  background: #303ef7;
  border-radius: 3px;
  position: absolute;
  top: 25px;
  left: 0;
  overflow: hidden;
}


.social_icons {
  display: flex;
  justify-content: left;
  padding: 0; 
  margin: 0;
}

.social_icons li {
  font-size: 2rem;
  color: #fff;
  height: auto;
  width: auto;
  line-height: 0;
  position: relative;
  padding: 10px;
  margin-top: 20px;
  cursor: pointer;
  display: flex;
  justify-content: center; 
  align-items: center;
}

.social_icons li i {
  vertical-align: left;
  color: #498bff;
}

.social_icons li i:hover{
  color: white;
}

.copyright_container{
  height: 2vh;
  align-items: center;
  display: flex;
  width: fit-content;
  flex-wrap: wrap;
  flex-direction: row;
  align-content: center;
  justify-content: center;
}


.logo_copyright {
  filter: brightness(20);
  padding: 0 0.4vw;
  margin: 0.3rem;  
}

.logo_copyright img{
  height: 2rem;
  width: auto;
  cursor: pointer;
}



@media (max-width:700px) {
  footer {
    bottom:unset;
  }
  .col {
    flex-basis: 100%;
  }
  .col:nth-child(2), .col:nth-child(3){
    flex-basis: 100%;
  }

}


/* --------------------------------------------------- */
/* --------------- REVIEW SECTION -------------------- */
/* --------------------------------------------------- */

#reviews-section {
  color: #333;
  padding: 10em;
  width:100% ;
  margin: 0 auto;
}

#reviews-section h1 {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 1em;
  color: white;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3em;
}

.review {
  padding: 2em;
  background: white;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.review-logo {
  width: 100px;
  height: auto;
  margin-bottom: 1em;
}

.review-content {
  margin-bottom: 1em;
}

.review-content p {
  margin-bottom: 0.5em;
  font-size: 1.2em;
}

.review-author {
  color: #888;
  font-size: 1em;
}

.review-rating {
  color: #f5c518;
  font-size: 1.5em;
}

.cta {
  position: relative;
  display: inline-block;
  background: transparent;
  border: none;
  padding: 0.85em 1em;
  border-radius: 0.45rem;
  border: 1px solid #20b2f6;
  text-decoration: none;
  margin: 1em auto;
  display: block;
  text-align: center;
  max-width: 50%;
  font-weight: 500;
  color: white; 
  cursor: pointer; 
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-top: 5em;
  overflow: hidden;
}


.cta:hover{
  background: #005FA3; 
  color: #fff;
  box-shadow: none;
}

@media (max-width: 1540px) {
  .reviews-grid {
      grid-template-columns: 1fr;
      align-items: center;
  }
  #reviews-section{
    padding: 0;
  }
  
}

@media (max-width: 700px) {

  .container {
    padding: 0;
  }
  #reviews-section h1 {
    padding: 0;
    font-size: 2em;
    margin-top: 15%;
  }


  .container .review__section{
    width: 100%;
    margin: 0;
    margin-top: 0;
  }
  .review-content p  {
      font-size: 0.895rem;
  }
  .review-logo{
    display: none;
  }
  .cta {    
      font-size: 1em;
      padding: 0.8em 1.6em;
  }

}


/* --------------------------------------------------- */
/* ----------------- COOKIES RGPD -------------------- */
/* --------------------------------------------------- */

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #04236B;
  border-top: 1px solid #000;
  padding: 20px;
  text-align: center;
  z-index: 1000;
  transition: all 0.5s ease-in-out;
}

.cookie-banner p {
  margin-bottom: 10px;
  font-size: 16px;
  color: whitesmoke;
}

.cookie-banner a:link{
  text-decoration: none;
  color: #0099ff;
  font-weight: 800;
  font-size: 1em;
}

.button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.button {
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border-radius: 50px;
}

.accept {
  background-color: #4caf50;
  color: white;
}

.reject {
  background-color: #f44336;
  color: white;
}

.button:hover {
  opacity: 0.8;
}

.button:focus {
  outline: none;
}

.cookie-info {
  display: none;
  position: fixed;
  z-index: 1001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.4);
}

.cookie-info-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 600px;
  box-sizing: border-box;
  border-radius: 20px;
  animation-name: animatetop;
  animation-duration: 0.4s;
}

.cookie-info-content h4{
  font-size: 1.3em;
  margin-bottom: 0.5em;
}

@keyframes animatetop {
  from {top: -300px; opacity: 0}
  to {top: 0; opacity: 1}
}

.close-info {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close-info:hover, .close-info:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}



/* --------------------------------------------------- */
/* --------------- INDUSTRIAL PAGE-------------------- */
/* --------------------------------------------------- */



.background-image-industrial {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url('../img/nuclea_banner.webp') no-repeat center center/cover;
  opacity: 0.3;
  z-index: -1;
}

.background-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url('../img/banner_dep_D_Sea.jpg') no-repeat center center/cover;
  opacity: 0.3;
  z-index: -1;
}

.content {
  position: relative;
  z-index: 1; 
}

.banner{
  height: 100vh;
  width: 100%;
  position: absolute;
  top: 0;
  display: flex;
  
}


.hero2 {
  max-width: 900px;  

}


.hero2 h1 {
  font-size: 4em;
  font-weight: 800;
  line-height: 0.2em;
  text-transform: uppercase;
  
}

.hero2 h2{
  margin-top: 30px;
  margin-left: 0;
  font-size: 4em;
  font-weight: 800;
  margin: 0;
  color: white;
  text-transform: uppercase;
  
}

.hero2 p {
  font-size: 1.2em;
  color: white;
  padding:2rem;
}

.about-section h2{
  color:#04236B;
}

.about-marine{
  background-color: #fefefe;
  display: grid;
  justify-content: center;
  height: auto;
  padding: 10vh;
}



.about-section {
  display: flex;
  align-items:center ;
  margin-bottom: 2rem;
  padding: 3rem;
  width: 100%;
  z-index: 2;
}

.img-right .text-content {
  order: 1;
}

.img-left .text-content {
  order: 2;
}

.img-content img {
  border-radius: 20px;
  max-height: 290px;
  object-fit:cover;
}

.img-right .img-content {
  order: 2;
}

.img-left .img-content {
  order: 1;
}

.text-content, .img-content {
  flex: 1;
  padding: 0 1rem;
  margin: 0;
}


.text-content {
  max-width: 600px;
}

.text-content h2 {
  margin: 1rem 0 2rem 0;
  font-size: 1.9rem;
}

.text-content p{
  text-align: justify;
}




.img-content {
  max-width: 600px;
}



.parallax-item {
  width: 100%;
  height: auto;
}

/* Mobile */
@media (max-width: 1440px) {
  .about-section {
    display: grid;
    grid-template-columns: 1fr;
  }

  .img-content, .text-content {
    padding: 1rem;
  }

  .img-right .text-content, .img-left .text-content {
    order: 2;
  }

  .img-right .img-content, .img-left .img-content {
    order: 3;
  }
  
  .text-content h2 {
    order: 1;

  }

  .img-content img {
    border-radius: 20px;
    min-height: 10vh;
 
  }

  .hero2 h1 {
    font-size: 3em;
    color: white;
    line-height: 1em;

  }

  .about-marine{
    padding: 2rem 0;
    margin: 0;
    width: auto;
  }

  .text-content h2{
    font-size: 2.5rem;
    text-align: center;
    padding-bottom: 2rem;
  }

  .text-content{
    padding: 0;
    font-size:.928rem ;
  }

  .about-section {
    padding: 1rem;
    margin-top: 5vh;
  }
}




/* --------------------------------------------------- */
/* -------------- ENGINEERING PAGE ------------------- */
/* --------------------------------------------------- */

#engineering {
  gap: 20px;
  padding: 5rem;
  margin: 0;  
  
}

#engineering .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80vw;
  
}

#engineering img {
  max-width: 536px;
  border-radius: 15px;
  box-shadow: 2px 2px 120px 5px rgba(255, 255, 255, 0.655);
}

#engineering h2 {
  margin-top: 30px;
  margin-left: 0;
  color: #007BFF;
  font-size: 2em;
  font-weight: 800;
  line-height: 1em;
  text-transform: uppercase;
  margin: 0;
}

#engineering h3{
  font-size: 2em;
}

#engineering p {
  font-size: 1em;
  line-height: 1.6;
  text-align: justify;
  color: white;
}


@media screen and (max-width: 1440px) {
  #engineering {
      grid-template-columns: 1fr;
      padding: 0 2rem;
  }

  #engineering .content {
      flex-direction: column;
  }

  #engineering h2 {
      font-size: 1.5rem;
  }
  .about__home h3 {
      font-size: 1.5em;
  }

  .engineering img{
    display:none;
  } 

  .engineering p {
      font-size: 0.9rem;
      margin-bottom: 3rem;
  }

  

}

@media screen and (max-width: 800px) {

  .engineering h2 {
    font-size: 1.3rem;
  }
  .engineering h3 {
    font-size: 1em;
    line-height: 1.3rem;
  }
  


}


/* --------------------------------------------------- */
/* --------------- SHOWCASE SECTION ------------------ */
/* --------------------------------------------------- */

.showcase {
  position: relative;
  right: 0;
  width: 100%;
  min-height: 50vh;
  display: flex;
  align-items: center;
  background: #18243b;
  transition: 0.5s;
  flex-direction: row;
  justify-content: center;
}

.showcaseR {
  position: relative;
  right: 0;
  width: 100%;
  min-height: 50vh;
  display: flex;
  align-items: center;
  background: #18243b;
  transition: 0.5s;
  flex-direction: row-reverse;
  justify-content: center;
}


.background-image2 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url('../img/banner_mti1.png') no-repeat center center/cover;
  opacity: 0.3;
  z-index: -1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:  url('../img/NDT_banner.webp') no-repeat center center/cover;
  mix-blend-mode: overlay;
  filter: blur(0.5rem);
}
.overlay2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:  url('../img/banner_ressuage.webp') no-repeat center center/cover;
  mix-blend-mode: overlay;
  filter: blur(0.3rem);
}
.overlay3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:  url('../img/3d_machine_depazur.webp') no-repeat center center/cover;
  mix-blend-mode: overlay;
  filter: blur(0.5em);
}

#engineering .text {
  position: relative;
  z-index: 10;
}

.text h2 {
  font-size: 4em;
  font-weight: 800;
  color: #fff;
  line-height: 1em;
  text-transform: uppercase;
  margin: 0;
}
.text h3 {
  font-size: 4em;
  font-weight: 700;
  color: #fff;
  line-height: 1em;
  text-transform: uppercase;
}
.text p {
  font-size: 1.1em;
  color: #fff;
  margin: 20px 0;
  font-weight: 400;
  max-width: 700px;
}
.text a {
  display: inline-block;
  font-size: 1em;
  background: #fff;
  padding: 10px 30px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  margin-top: 10px;
  color: #111;
  letter-spacing: 2px;
  transition: 0.2s;
  border-radius: 25px;
}
.text a:hover {
  letter-spacing: 6px;
  transition: ease-in 0.2s;
}

.background-section{
  z-index: 1;
  margin: 0;
}

@media (max-width: 1440px) {
  .showcase,
  .showcase header {
    padding: 40px;
  }
  .text h2 {
    font-size: 3em;
  }
  .text h3 {
    font-size: 2em;
  }

  .showcase, .showcaseR{
    flex-direction: column;
  }
  #engineering img {
    max-width: 40rem;
    height: auto;
  }
}


.mentions{
  width: 100%;
  height: auto;
  justify-content: center;
  display: flex;
  align-items: center;
  color: white;
  margin-top:5rem ;
  padding: 2.5rem;
}

.mention__content{
  position: relative;
  width: 50rem;
  padding: 0 2rem;
  line-height: 2rem;
  border-radius: 2rem;
}

.mention__content h1{
  color: #0099ff;
  font-size: 2.5rem;
  margin-bottom: 1.8rem;
}
.mention__content h3{
  color: #007acc;
  font-size: 1.5rem;
  margin-bottom: 1.8rem;
  margin-top: 1.8rem;
}

.mention__content h2{
  color: #0099ff;
  font-size: 1.9rem;
  margin-bottom: 1.8rem;
  margin-top: 1.8rem;
}

.copyright a{
  text-decoration: none;
  color: white;
}

.copyright a:hover{  
  color: #0099ff;
}

/*--------------------------------*/
/*---------- OUR ACTIONS ---------*/
/*--------------------------------*/
a {
  text-decoration: none;
}

#blog{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction:column;
  padding: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, .05);
  margin-top: 5rem;
}
.blog-heading{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: white;
}
.blog-heading span{
  color: #4892f9;
  font-weight: 600;
}
.blog-heading h3{
  font-size: 2rem;
  color: #ffffff;
  font-weight: 600;
}
.blog-container{
  display: flex;
  justify-content: center;
  align-items:center;
  margin: 20px 0px;
  flex-wrap: wrap;
  max-width: 50vw;

}
.blog-box{
  width: 18rem;
  background-color: #fff;
  border: 1px solid #fff;
  margin: 20px;
  border-radius: 0.5rem;
}
.blog-img{
  width: 100%;
  height: auto;
}
.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0.5rem .5rem 0 0;
}
.blog-text{
  padding: 30px;
  display: flex;
  flex-direction: column;
}
.blog-text span{
  color: #303ef7;
  font-size: 0.8rem;
}

.blog-text .blog-title{
  font-size: 1.3rem;
  font-weight: 500;
  color: black;
}
.blog-text .blog-title:hover{
  color: #303ef7;
  transition: all ease 0.3s;
}
.blog-text p {
  color: #777777;
  font-size: 0.9rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 20px 0;
}

.blog-text a{
  color: #303ef7;
}
.blog-text a:hover{
  color: #18243b;
  transition: all ease 0.3s;
}


.blog-text p.collapsed {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.3s ease;
}



.blog-text p.expanded {
  display: block;
  overflow: visible;
  transition: all 0.3s ease;
}

.blog-container .blog-box.dimmed {
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

@keyframes expand {
  from { width: initial; }
  to { width: 1fr, 1fr; }
}

@media(max-width:1250px){
  .blog-box {
    width: 300px;
  }
  .blog-container{
    max-width: 100%;
  }
}
@media(max-width:1100px){
  .blog-box {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
  }

}
@media(max-width:550px){
  .blog-box {
    width: 100%;
    margin:15px 5px;

  }
  #blog{
    padding: 5px;    
  }
  .blog-text p{
    font-size: 0.8rem;
    margin: 10px 0;
  }

  .blog-text a{
    font-size: 0.8rem;
  }

  .blog-text{
    padding: 10px 15px;
  }
  .blog-text .blog-title{
    font-size: .980rem;
  }
  .blog-img{
    width: 250%;
  }
}

/*--------------------------------*/
/*---------- RECRUTEMENT ---------*/
/*--------------------------------*/

.ag-format-container {
  width: 1300px;
}
.ag-courses_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 50px 0;
  flex-direction: row;
  justify-content: space-between;
}
.ag-courses_item {
  -ms-flex-preferred-size: calc(53.33333% - 33px);
  flex-basis: calc(53.33333% - 33px);
  margin: 0 15px 30px;
  overflow: hidden;
  border-radius: 28px;  
}
.ag-courses-item_link {
  display: block;
  padding: 30px 20px;
  background-color: #eaa119;
  overflow: hidden;
  position: relative;
}
.ag-courses-item_link:hover,
.ag-courses-item_link:hover .ag-courses-item_date {
  text-decoration: none;
  color: #FFF;
}
.ag-courses-item_link:hover .ag-courses-item_bg {
  -webkit-transform: scale(10);
  -ms-transform: scale(10);
  transform: scale(10);
}
.ag-courses-item_title {
  min-height: 87px;
  margin: 0 0 25px;
  overflow: hidden;
  font-weight: bold;
  font-size: 30px;
  color: #FFF;
  z-index: 2;
  position: relative;
}
.ag-courses-item_date-box {
  font-size: 18px;
  color: #FFF;
  z-index: 2;
  position: relative;
}
.ag-courses-item_date {
  font-weight: bold;
  color: #f9b234;

  -webkit-transition: color .5s ease;
  -o-transition: color .5s ease;
  transition: color .5s ease
}
.ag-courses-item_bg {
  height: 128px;
  width: 128px;
  background-color: #f9b234;
  z-index: 1;
  position: absolute;
  top: -75px;
  right: -75px;
  border-radius: 50%;
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
}

.ag-courses_item .ag-courses-item_bg {
  background-color: #4c49ea;
}

.card-container{
  display: flex;
  width: 100%;
  background-color: #007acc;
  align-self: center;
  flex-wrap: wrap;
  flex-direction: row;
  margin: 5rem auto;
  justify-content: center;
  align-items: center;
}

.ag-text{
  color: white;
  padding:0 2rem;
  display: flex;
  text-align: left;
  width: 500px;
}

@media only screen and (max-width: 979px) {
  .ag-courses_item {
    -ms-flex-preferred-size: calc(50% - 30px);
    flex-basis: calc(50% - 30px);
  }
  .ag-courses-item_title {
    font-size: 24px;
  }
}

@media only screen and (max-width: 767px) {
  .ag-format-container {
    width: 96%;
  }

}
@media only screen and (max-width: 639px) {
  .ag-courses_item {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
  .ag-courses-item_title {
    min-height: 72px;
    line-height: 1;

    font-size: 24px;
  }
  .ag-courses-item_link {
    padding: 22px 40px;
  }
  .ag-courses-item_date-box {
    font-size: 16px;
  }
}
/*--------------------------------*/
/*------------ GALLERY -----------*/
/*--------------------------------*/



.gallery-wrapper{
  width: 100%;
  background-color: rgb(255, 255, 255);
  padding:10rem;
}

.gallery{
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 2vmin;
  padding: 3rem;
  width: 100%;
}
.gallery li{
  list-style-type: none;
  height: 350px;
  flex-grow: 1;
}
.gallery img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  filter: grayscale(1);
}

.gallery img:hover{
  filter: grayscale(0);
  transition: all 0.3s;  
}

.h1-line, .h1-line-w{
  font-size: 2em;
  text-align: center;
  margin-bottom: 60px;
  font-weight: 600;
  position: relative;
}

.h1-line::after, .h1-line-w::after{
  content: '';
  background-color: #303ef7;
  width: 100px;
  height: 5px;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
}

.h1-line{
  color: rgb(0, 0, 0);  
}

.h1-line-w{
  color: white;
}

@media(max-width:1250px){
  .gallery-wrapper {
    padding: 0;
  }
  .h1-line {
    padding-top: 5rem;
  }
  .gallery{
    padding: 5px;
  }
}

/*======================================*/
/*============ NEWS PAGE ===============*/
/*======================================*/

.blog{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  padding: 0 1.5rem;
}

.container__blog{
  margin-top: 150px;
}

.container__blog h2{
  letter-spacing: 1px;
  font-size: 50px;
  color: #0c08f0;
  padding: 10px;
  border: 2px dashed #0181a0;
  text-transform: uppercase;
  display: inline-block;
  cursor: pointer;
  text-align: center;
  margin-top: 90px;
  margin-left: 375px;
}
.blog-post{
  width: 50rem;
  min-width: 85rem;
  padding: 5rem;
  background-color: #dbf4ff21;
  box-shadow: 0 1.4rem 8rem rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  border-radius: .8rem;
  margin: 2.5rem 10px;
}

.blog-post_img{
  min-width: 27rem;
  max-width: 30rem;
  height: 20rem;
  transform: translateX(-2rem);
  position: relative;
}
.blog-post_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 18px;
  box-shadow: .5rem .5rem 3rem 1px rgba(0,0,0,0.2);

}
.blog-post_img img::before{
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: .5rem .5rem 3rem 1px rgba(0,0,0,0.5);
}
.blog-post_date span{
  display: block;
  color: #0000003f;
  font-size: 0.8rem;
  font-weight: 600;
  margin: .5rem 0;
}

.blog-post_title{
  font-size: 1.5rem;
  margin: 1.5rem 0 2rem;
  text-transform: uppercase;
  color: #4facfe;
}
.blog-post_text{
  font-size: 1rem;
  color: #777777;
  line-height: 25px;
  margin-bottom: 35px;
}
.blog-post_cta{
  display: inline-block;
  padding: 1.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 1.2rem;
  color: white;
  border-radius: .8rem;
  text-decoration: none;
  background: #0c08f0;
  margin-top:1.5rem ;
}
.blog br {  
  content: "A" !important;
  display: block !important;
  margin-bottom: 1.3em !important;
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.page-number {
  color: #14568f;
  padding: 5px 10px;
  margin: 0 5px;
  text-decoration: none;
  border: 1px solid #4facfe;
  border-radius: 15px;
  transition: background-color 0.3s, color 0.3s;
}

.page-number:hover {
  background-color: #4facfe;
  color: #fff;
}

.page-number.active {
  background-color: #4facfe;
  color: #fff;
}

/*--======================================================--*/
/*=================== SECTION JOB PAGE ====================*/
/*--======================================================*/

#job{
  background: #F5F5FF;
  padding: 84px 0px 144px 134px;
  display: flex;
  flex-direction: column;
}
.job{
  align-items: center;
    width: 100%;
    height: 100vh;
    justify-content: center;
    overflow: hidden;
}
.job-heading{
  display: flex;
  flex-direction: column;
  padding-left: 46px;
  margin-bottom: 24px;
  padding-top: 5vh;
}
.job-heading h3{
  font-weight: 700;
  font-size: 45.25px;
  line-height: 57px;
  color: #2a3982;
  text-transform: uppercase;
  margin-top: 5vh;
  margin-bottom: 2rem;
}

.job-heading p{
  font-weight: 400;
  font-size: 1rem;
  line-height: 20px;
  color: #71809b;
  max-width: 461px;
}
.job-content{
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  width: 100%;
  align-items: flex-start;
}
.job-box{
  padding: 35px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid #FFFFFF;
  box-shadow: 14px 14px 60px rgba(59, 42, 130, 0.06);
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 20px;
}
.job-box:last-child{
  margin-bottom: 0;
}
.job-box-question{
  display: grid;
  grid-template-columns: 1fr 30px;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}
.job-box-question h4{
  font-weight: 700;
  font-size: 22.625px;
  line-height: 31px;
  color: #2a3a82;
}

.job-heading h4{
  font-weight: 700;
  font-size: 22.625px;
  line-height: 31px;
  color: #2a3a82;
  margin-bottom: 10px;
}

.job-heading i {
  font-size: 1.250rem;
  padding: 5px;
  background-color: #2a4682bb;
  color: white;
  border-radius: 5px;
  line-height: 2.5rem;
}

.job-box-answer{
  max-height: fit-content;
  overflow: hidden;
  transition: all ease-in-out 0.5s;
  line-height: 1rem;
}
.job-box-answer p li{
  font-weight: 400;
  font-size: 0.8rem;
  color: #7A719B;
  padding-top: 20px;
  line-height: 1rem;
}


.job-img{
  width: 100%;
  overflow: hidden;
  border-radius: 27px 0px 0px 27px;
  display: flex;
  box-shadow: 14px 14px 60px rgba(59, 42, 130, 0.06);
}

.job-img iframe{
  width: 100%;
  border: none;
  overflow: hidden;
  height: 50vh;
  border-radius:20px ;
}
.job-box-container{
  margin-right: 40px;
}
.job-img img{
  width: 100%;
  object-fit: contain;
  object-position: right;
}

.job-box-icon{
      display: block;
      position: relative;
      height: 3px;
      transition: background 0.2s ease-out;
      width: 23px;
      margin-left: auto;
  }
  .job-box-icon::before,
  .job-box-icon::after{
      background: #382B7D;
      content: '';
      position: absolute;
      height: 100%;
      transition: all ease-out 0.2s;
      width: 100%;
      border-radius: 3px;
  }

  .job-box-icon::before{
      top: 0px;
  }
  .job-box-icon::after{
      transform: rotate(90deg);
      top: 0px;
  }
  .job-box-question.active h4{
      color: #FF3067;
  }
  .job-box-question.active .job-box-icon::after{
      transform: rotate(0deg);
  }
  @media(max-width:1200px){
      #job{
          padding: 84px 0px 144px 20px;
      }
  }
  @media(max-width:800px){
      #job{
          padding: 84px 0px 144px 20px;
      }
      .job-content{
          grid-template-columns: 1fr;
      }   
      .job-box-container{
          margin-right: 0px;
          padding-right: 20px;
      }
      .job-img{
          margin-top: 25px;
      }
  }
  @media(max-width:724px){
      #job{
          padding: 82px 0px 80px 20px;
      }
      .job-img{
          border-radius: 18.0651px 0px 0px 18.0651px;
      }
      .job-heading{
          padding: 0px 20px;
      }
      .job-heading h3{
          font-weight: 700;
          font-size: 26.2px;
          line-height: 33px;
      }
      .job-box-question h4{
          font-weight: 700;
          font-size: 19px;
          line-height: 18px;
      }
      .job-box{
          padding: 24px 21px;
      }
      .job-box-icon{
          width: 16px;
      }
      .job-box-question{
          grid-template-columns: 1fr 16px;
      }
  }



  /*
RECRUIT TEST 
  */

  /*.job{
    background-color: #f5f5ff;
    display: grid;
    align-items: center;
  }
  .job-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    grid-gap: 20px;
    padding: 20px;
    top: 90px;
    position: relative;
    align-items: baseline;
  }
  
  .job-header {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 20vh;
    padding: 20px;
    background-color: #04236B;
    border-radius:  1.5rem;
  }
  .job-header h1{
    color: white;
    padding-right: 2rem;
    font-size: 2rem;
  }
  .job-header p{
    color: white;
    font-size: 0.880rem;
    max-width: 500px;
  }
  
  .main-content-job {
    display: flex;
    flex-direction: column;
  }
  
  .job-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
  }

  .job-card p  ul,li{
    color: #020616;
    margin-left: 20px;
    max-width: 800px
  }
  
  .job-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 0.880rem;
    padding: 1rem;
  }

  .job-description{
    padding-top: 1rem;
    color: #04236B;
  }

  
  .job-detail {
    flex-basis: calc(50% - 10px);
    margin-bottom: 10px;
  }
  
  .job-detail i{
    color: rgb(34 40 228);
    padding: 15px;
    font-size: 20px;
  }

  .sidebar {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: #04236B;
    border-radius: 10px;
    color: #FFF;
  }
  
  .company-logo {
    align-self: center;
    margin-bottom: 20px;
  }

  .job-button{
    gap: 1rem;
    padding: 10px;
    display: flex;
    width: 100%;
    height: auto;
    background-color: #edd732;
    border-radius: 5px;
    align-items: center;
    align-content: center;
    overflow: hidden;
    color: #000;
    font-weight: 700;
    justify-content: center;
  }

  .job-button:hover{
    background-color: #4690f0;
    color: white;
  }

  @media (max-width: 768px) {
    .job-container {
      grid-template-columns: 1fr;
    }
    
    .header-job {
      flex-direction: column;
    }
    
    .job-detail {
      flex-basis: 100%;
    }
  }

  */
  .job {
    background-color: #f5f5ff;
    padding: 20px;
}

.job-container {
    display: grid;
    grid-template-columns: 1fr 300px;
    grid-gap: 20px;
    align-items: start;
}

.job-header {
    grid-column: 1 / -1;
    background-color: #04236B;
    color: white;
    padding: 20px;
    border-radius: 1.5rem;
    text-align: center;
    margin-bottom: 20px;
}

.main-content-job {
    grid-column: 1 / 2;
}

.job-description {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.sidebar {
    grid-column: 2 / 3;
    background: #04236B;
    color: #FFF;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.company-logo {
    margin-bottom: 20px;
}

.job-button {
    background-color: #edd732;
    color: #000;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
    font-weight: 700;
    transition: background-color 0.3s, color 0.3s;
    margin-top: 20px;
}

.job-button:hover {
    background-color: #4690f0;
    color: white;
}

@media (max-width: 768px) {
    .job-container {
        grid-template-columns: 1fr;
    }

    .sidebar {
        grid-column: 1 / -1;
        order: -1;
    }

    .main-content-job {
        grid-column: 1 / -1;
    }
}

/*=============== Services Section Styles ===============*/
.services-section {
    background: linear-gradient(135deg, #09152B 0%, #1a2642 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url('../img/grid-pattern.png') repeat;
    opacity: 0.05;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0077C1, #00a8ff);
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon img {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.service-content {
    text-align: center;
}

.service-content h2 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #0077C1;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: gap 0.3s ease;
}

.service-btn:hover {
    gap: 1rem;
    color: #00a8ff;
}

.service-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.service-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .services-section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.4s;
}

.service-card:nth-child(4) {
    animation-delay: 0.6s;
}

.service-card:nth-child(5) {
    animation-delay: 0.8s;
}

.service-card:nth-child(6) {
    animation-delay: 1s;
}

