site@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body{
    color: var(--color-white);
}
body .service-sous-menu p{
    position: relative;
    top: 10px;
    cursor: pointer;
}

.btn-cta{
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
    bottom: 0px;
}
.btn-cta h3{
  font-family: inter;
  font-weight: 900;
  font-size: 1.4rem;

}
.btn-cta h3 span {
    color: var(--color-text-orange);
    font-weight: bold;
}
.btn-cta .button-primary {   
    text-align: center;
    font-weight: bold;
    background: var(--bg-white-btn);
    color: var(--color-black);
    font-size: 16px;
    box-shadow: var(--shadow-blue);
    padding: 20px 55px;
    margin: 40px auto;
    display: block;
    border-radius: 35px; 
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 10;
    animation: ombre 1.5s infinite;
}
.btn-cta .button-primary:hover i{
  transform: translateX(10px);
  transition: 0.3s;
}
@keyframes ombre{
  0%{
        box-shadow: white;
  }
   50%{
        box-shadow: 0 0 40px white;
  }
   100%{
        box-shadow: blue;
  }
}

.btn-cta .button-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-black);
  background: var(--color-orangered);
  color: white;
}
  /* ===== HERO SECTION ===== */
.contact-hero {
   position: relative;
    height: 140vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--color-white);
    text-align: center;
    background: var(--gradient-hero);
}

.hero-video {
  position: absolute;
    top: 0;
    left: 0;
    height: 180vh;
    width: 100%;
    opacity: 0.2;
    object-fit: cover;
}

.cyber-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(0, 51, 153, 0.4), rgba(0, 0, 0, 0.5));
  z-index: -1;
}
.container-hero-about{
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  position: relative;
 top: 0px;
}
.hero-content {
 justify-content: center;
 align-items: center;
   position: relative;
  top: 10px;
  max-width: 800px;
  text-align: center;
  padding: 20px;
}
.logocompany{
  width: 100%;
  height: 100%;
  position: relative;
  right: 600px;
  top: 300px;
  display: none;
}
.logocompany img{
  width: 250%;
}
.logocompanyleft img{
  width: 30%;
  position: absolute;
  left: -150px;
  bottom: 150px;
  transform: rotate(90deg);
}

.logocompanyright img{
  width: 30%;
  position: absolute;
  right: -150px;
  bottom: 150px;
  transform: rotate(-90deg);
}

/* Texte about */
.hero-content .about-text {
    position: relative;
    background: var(--bg-text-hero); 
    padding: 20px;
    margin: 20px 0;
    border-left: 4px solid var(--color-accent-orange);
}

.about-text p {
  font-size: 1.15rem;
  line-height: 1.8;
  text-align: justify;
}
.about-text p span{
    color: var( --color-text-orange);
    font-weight: bold;
}
.contact-hero .btn-cta{
  position: relative;
  top: 100px;
}

/* Titre glitch */
.cyber-glitch {
  position: relative;
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--color-accent-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: none;
}
.cyber-glitch::before, .cyber-glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0.8;
}
.cyber-glitch::before {
  color: var(--color-primary-blue);
  z-index: -1;
  animation: glitch-effect 3s infinite;
}
.cyber-glitch::after {
  color: var(--color-accent-orange);
  z-index: -2;
  animation: glitch-effect 2s reverse infinite;
}
@keyframes glitch-effect {
  0% { transform: translate(0); }
  20% { transform: translate(-5px, 5px); }
  40% { transform: translate(-5px, -5px); }
  60% { transform: translate(5px, 5px); }
  80% { transform: translate(5px, -5px); }
  100% { transform: translate(0); }
}

/***************************** Style Général *****************************/
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.section-title span {
   color: var(--color-accent-orange);
}

.section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.title-line {
    width: 80px;
    height: 3px;
    background: var(--color-orangered);
    margin: 0 auto;
    position: relative;
}

.title-line::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--color-orangered);
    right: -40px;
}

/* ======= SECTION NOTRE MISSION======= */
.about-mission-principale {
    background: var(--gradient-card);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
  border-top: dashed 1px var(--color-orangered);
  border-bottom: dashed 1px var(--shadow-blue) ;
 box-shadow: var(--shadow-gradient); 
}
.bg-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* pour couvrir toute la carte sans déformer */
  z-index: 0;
  opacity: 0.1;
}
.about-mission-principale::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0; /* derrière le texte */
}
.about-mission-principale .mission-grid {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.mission-image {
 position: relative;
display: none;
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
}
.about-mission-principale .mission-content {
  flex: 1 1 500px;
}

.about-mission-principale .section-title {
  font-size: 2.5rem;
    font-family: inter;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--color-white);
}

.about-mission-principale .section-title span {
  color: var(--color-orangered)
}

.about-mission-principale .title-line {
  width: 80px;
  height: 4px;
  background: var(--gradient-orange);
  margin-bottom: 1.5rem;
  border-radius: 2px;
}

.about-mission-principale .about-text {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* Valeurs (cartes) */
.about-mission-principale .mission-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.about-mission-principale .value-item {
  background: white;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-blue);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-mission-principale .value-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-blue1);
}

.about-mission-principale .value-item i {
  font-size: 28px;
  color: white;
  background: var(--gradient-mix);
  padding: 18px;
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 15px;
  animation: pulse 2.7s infinite ease-out;
}

/* Titre et description des valeurs */
.about-mission-principale .value-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: black;
}

.about-mission-principale .value-item p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* CTA */
.about-mission-principale .mission-cta {
  margin-top: 2rem;
}

.about-mission-principale .btn-primary {
  display: inline-block;
  background: var(--gradient-blue);
  color: white;
  padding: 16px 2rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
  z-index: 10;
}
.about-mission-principale .btn-primary::after{
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 10px;
  background: var(--gradient-orange);  
  z-index: -2;
}
.about-mission-principale .btn-primary::before{
   content: '';
  position: absolute;
  width: 180%;
  border-radius: 20px;
  height: 280%;
  background: var(--gradient-mix);
  animation: rotate 4s linear infinite;
  transition: all 0.1s linear;
    z-index: -2;
}

.about-mission-principale .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-blue-light);
}

/* Image */
.about-mission-principale .mission-image {
  flex: 1 1 400px;
  max-width: 500px;
}

.about-mission-principale .image-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-gradient);
}

.about-mission-principale .image-frame img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about-mission-principale .image-frame:hover img {
  transform: scale(1.05);
}
@media screen and (min-width:568px) and (max-width: 1150px) {
   /* Valeurs (cartes) */
.about-mission-principale .mission-values {
  display: grid;
  grid-template-columns: repeat(2,1fr);
}
  .about-mission-principale .mission-image {
    display: none;
  }
}
/* Responsive */
@media (max-width: 568px) {
  .about-mission-principale .mission-grid {
    flex-direction: column-reverse;
    align-items: center;
  }

.about-mission-principale .section-title {
  font-size: 1.5rem;
}
.about-mission-principale .value-item h3 {
  font-size: 1.1rem;
}

  .about-mission-principale .mission-content,
  .about-mission-principale .mission-image {
    max-width: 100%;
  }
}


/* ===========================
   SECTION PROCESS
=========================== */
.process-section {
  padding: 40px 0px;
  background: var(--color-light-gray);
  font-family: "Poppins", sans-serif;
  text-align: center;
}

/* ----- Titre section ----- */
.process-section .section-title {
  max-width: 800px;
  margin: 0 auto 60px;
}

.process-section .section-title h2 {
  font-size: 36px;
  font-family: inter;
  font-weight: 900;
  color: black;
  text-transform: uppercase;
}

.process-section .section-title p {
  font-size: 16px;
  color: var(--color-text-muted);
  margin-top: 10px;
}

/* ----- Conteneur étapes ----- */
.process-section .process-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
}

/* ----- Étape ----- */
.process-section .process-step {
  flex: 1 1 250px;
  background: white;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: var(--shadow-black);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.process-section .process-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-black-light);
}

/* ----- Numéro ----- */
.process-section .process-step .step-number {
  position: absolute;
  top: -15px;
  left: -15px;
  background: var(--gradient-orange);
  color:white;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50%;
  padding: 10px 15px;
  box-shadow: var(--shadow-black);
  animation: pulse 2s infinite ease-out;

}

/* ----- Icône ----- */
.process-section .process-step .step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--gradient-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
  box-shadow: var(--shadow-black);
  animation: pulse 2.5s infinite ease-out;

}

/* ----- Titre étape ----- */
.process-section .process-step .step-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-text-muted);
}

/* ----- Description étape ----- */
.process-section .process-step .step-description {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ----- Connecteur ----- */
.process-section .process-connector {
  color: var(--color-orangered);
  font-size: 22px;
  opacity: 0.6;
}

/* ----- Responsive ----- */
@media (max-width: 768px) {

.process-section .section-title h2 {
  font-size: 26px;
}

.process-section .section-title p {
  font-size: 16px;
  color: var(--color-text-gray);
  margin-top: 10px;
}
  .process-section .process-container {
    flex-direction: column;
    gap: 10px;
  }
  .process-section .process-container .process-connector i {
    transform: rotate(90deg);
  }
}

/************************ OFFRES / SERVICES *************************/
.section-offres {
    max-width: 1200px;
    margin: auto;
    padding: 40px 0px;
    text-align: center;
    display: none;
  }

  .titre-section {
    font-size: 32px;
    margin-bottom: 30px;
    position: relative;
  }

  .liste-offres {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .carte-offre {
    background: var(--color-white);
    padding: 25px;
    border-radius: 14px;
    box-shadow: var(--shadow-black);
    text-align: center;
    transition: transform 0.3s;
  }

  .carte-offre:hover {
    transform: translateY(-8px);
  }

  .icone-offre {
    font-size: 40px;
    color: var(--color-primary-blue);
    margin-bottom: 15px;
  }

  .titre-offre {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .description-offre {
    font-size: 15px;
    margin-bottom: 15px;
  }

  .prix-offre {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .ancien-prix {
    text-decoration: line-through;
    margin-right: 10px;
  }

  .reduction {
    font-weight: bold;
    color: var(--color-success);
    font-size: 18px;
  }

  .bouton-commande {
    padding: 10px 20px;
    border: none;
    background: var(--color-blue-light);
    color: var(--color-white);
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
  }

  .bouton-commande:hover {
    background: #0056b3;
  }

  /* Carte spéciale en bas */
  .carte-large {
    grid-column: span 3;
  }

  /* Responsive tablette */
  @media (max-width: 900px) {
    .liste-offres {
      grid-template-columns: repeat(2, 1fr);
    }
    .carte-large {
      grid-column: span 2;
    }
  }

  /* Responsive mobile */
  @media (max-width: 600px) {
    .liste-offres {
      grid-template-columns: 1fr;
    }
    .carte-large {
      grid-column: span 1;
    }
  }

/* ===== CTA ===== */
.about-mini-cta {
        background: var(--gradient-card-form); 
        background-image: url("https://i.pinimg.com/736x/cb/70/d2/cb70d271f2af2cc5f5c283fd021c8d50.jpg");         
        padding: 40px 0;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin-bottom: 50px;
        position: relative;
        overflow: hidden;
}
 
.about-mini-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-cta-overlay);
  z-index: 1; /* derrière le contenu */
}
.about-mini-cta .cta-content{
  position: relative;
  z-index: 2;
       background: var(--gradient-card-form);  
        background-image: url("https://i.pinimg.com/736x/cb/70/d2/cb70d271f2af2cc5f5c283fd021c8d50.jpg");         
        padding: 40px 20px;  
        border-radius: 10px ;
        border:var(--border-card-blue);
        box-shadow: var(--shadow-blue);
        text-align: center;
    }
.about-mini-cta .cta-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px ;
  background: var(--gradient-overlay1);
  z-index: 1; /* derrière le contenu */
}
.about-mini-cta .cta-content-grid{
  position: relative;
  z-index: 100;
}
.about-mini-cta h2  {
  font-family: inter;
  font-weight: 800;
}
.about-mini-cta h2 span {
  color: orangered;
}
/***************************** Slider Container ***********************************/
.team-slider-section {
    padding: 40px 0;
     background: linear-gradient(to right, rgb(1, 1, 40), rgb(3, 3, 80));
    position: relative;
    overflow: hidden;
    display: none;
}


.team-slide {
    padding-bottom: 2px;
    transition: all 0.5s ease-in-out;
    background-color: orange;
    border-radius: 10px;
    margin:0 0 80px 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.274);
}
.team-slide:hover {
    transform: translateY(24px);
    background-color: var(--color-orangered);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.516);
   
}

/* Carte Membre */
.team-member {
    background: var(--color-white);
    border-radius: 10px;
    overflow: hidden;
    background-color: rgb(6, 6, 58);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.402);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.team-slide.swiper-slide-active .team-member {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.619); 
}

.member-image {
    position: relative;
    height: 250px;
    object-fit: cover;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-social {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    opacity: 0;
   color: rgb(6, 6, 58);
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.team-member:hover .member-social {
    opacity: 1;
    transform: translateY(0);
}

.member-social a {
    width: 40px;
    height: 40px;
    background: rgb(2, 2, 69);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: var(--color-vibrant-orange);
    color: var(--color-white);
    transform: translateY(-5px);
}

.member-info {
    padding: 25px;
    display: none;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.member-info h3 {
    font-size: 1.4rem;
    color: var(--color-white);
    margin-bottom: 5px;
}

.member-info p {
    color: var(--color-vibrant-orange);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.member-skills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: auto;
}

.member-skills span {
    background: rgba(58, 123, 213, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Navigation Slider */
.team-next, .team-prev {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    padding: 25px;
    color: orange;
    transition: all 0.3s ease;
    font-weight: bold;
}

.team-next::after, .team-prev::after {
    font-size: 1.2rem; 
}

.team-next:hover, .team-prev:hover {
    color: orange;
    transform: scale(1.1);
}

.team-pagination .swiper-pagination-bullet {
    position: relative;
    top: 0px;
    background: var(--color-white);
    opacity: 0.6;
    width: 12px;
    height: 12px;
    transition: all 0.3s ease;
    
}

.team-pagination .swiper-pagination-bullet-active {
    background: orange;
    opacity: 1;
    transform: scale(1.2);
}


/* Responsive */

@media (max-width: 768px) {
/* ===== HERO SECTION ===== */
.container-hero-about{
  flex-direction: column-reverse;
  gap: 0px;
  top: 0;
}
.hero-content {
 width: 100%;
  position: relative;
 top: 0px;
  margin: 0 20px;
  padding: 0;
}
.logocompany{
  top: 0px;
  display: none;
}

.logocompanyleft img{
  width: 25%;
  position: absolute;
  left: -50px;
  transform: rotate(90deg);
  display: none;
}

.logocompanyright img{
  width: 25%;
  position: absolute;
  right: -50px;
  transform: rotate(360deg);
  display: none;
}

.contact-hero .btn-cta{
  position: relative;
  top: 100px;
}
.btn-cta{
    position: relative;
    bottom: -20px;
}
.about-mini-cta h2{
    font-size: 20px;
}
.btn-cta h3 {
    font-size: 1.2rem;
}
.hero-content a {    
    padding: 12px 40px;
}

/************responsive teams**********/

    .team-grid .team-member{
        margin:0px 30px;
    }
    
    .process-steps::before {
        left: 40px;
    }
    
    .process-step {
        padding-left: 80px;
        margin: 20px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
} 

@media (max-width: 500px) {
    .hero-content {
 position: relative;
 top: 80px;
}
 .hero-content .btn-cta{
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
    bottom: 10px;
}
    /* Titre glitch */

.cyber-glitch::before {
    display: none;
}
.cyber-glitch::after {
    display: none;
}
   .hero-content h1 span{
    display: none;
   }

.section-subtitle {   
     font-size: 1rem;
    }
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
.btn-cta{
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
    bottom: 0px;
}
.btn-cta h3 span {
    color: var(--color-orangered);
    font-weight: bold;
    font-size: 1.4rem;
}
.btn-cta .button-primary {   
    padding: 14px;
    width: 100%;
}

.hero-content a {   
    font-size: 14px;
}
} 
@media (max-width: 325px){
  .contact-hero{
    height: 140vh;
  }
.hero-content {
 position: relative;
 top: 120px;
}
.hero-content .btn-cta h3{
  font-size: 16px;
}
.hero-content .btn-cta h3 span{
  font-size: 16px;
}
 .btn-cta .button-primary{
  position: relative;
  top: -35px;
}
}