/* === STYLE PRINCIPAL === */
body {
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}

/* Texte dégradé */
.text-gradient {
  background: linear-gradient(45deg, #007bff, #ff00c8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Section Hero */
/* Section Hero */
.hero {
  background: linear-gradient(135deg, #00c6ff, #ff5edf);
  color: #fff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 80px;
  overflow: hidden;
}

.hero .overlay {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 5, 5, 0.4);
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.logo {
  width: 120px;
  height: auto;
}

.hero p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.contact-link {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #ffe;
}

/* Images */
.hero-images {
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.4s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.hero-img:hover {
  transform: scale(1.07);
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.4);
}

/* Logo animé */
.logo-container .logo {
  width: 150px;
  height: auto;
  filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.3));
  animation: float 3s ease-in-out infinite;
}

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

/* Titre principal */
.word {
  font-family: 'Rubik One', sans-serif;
  font-size: 2.5em;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: white;
  text-shadow: 3px 3px 0 #007bff, 6px 6px 0 #6610f2;
}

/* Liens de contact */
.contact-links {
  margin-top: 20px;
}

.contact-link {
  display: inline-block;
  margin: 10px;
  color: white;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-link i {
  margin-right: 8px;
  color: #ffd700;
}

.contact-link:hover {
  transform: scale(1.05);
  color: #ffd700;
}
#contact {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  }

  .text-primary {
    background: linear-gradient(45deg, #007bff, #00b4d8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .form-control {
    border: 1px solid #ced4da;
    border-radius: 10px;
    padding: 15px;
    transition: all 0.3s ease;
  }

  .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0,123,255,0.3);
  }

  .btn-primary {
    background: linear-gradient(45deg, #007bff, #00b4d8);
    border: none;
    border-radius: 30px;
    transition: all 0.3s ease;
  }

  .btn-primary:hover {
    background: linear-gradient(45deg, #0056b3, #0077b6);
    transform: translateY(-2px);
  }
/* Images dans la hero section */
.hero-img {
  width: 220px;
  height: 180px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 216, 255, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-img:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 30px rgba(255, 255, 255, 0.4);
}

/* Animation d’apparition */
.animate-slide {
  animation: slideIn 1.5s ease-out;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === SECTION TECHNOLOGIES === */
.tech-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.tech-track {
  display: flex;
  gap: 60px;
  animation: scrollTech 25s linear infinite;
}

.tech-logo {
  width: 80px;
  height: auto;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.tech-logo:hover {
  transform: scale(1.15);
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4));
}

/* Animation défilement horizontal */
@keyframes scrollTech {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/* Section apropos */
:root {
  --wave-amplitude: 2em;
}

.a-propos-section {
  background: #f5f7fa;
  padding: 3em 0;
}

.a-propos {
  --img: url('https://images.unsplash.com/photo-1661961112951-f2bfd1f253ce?w=2072');
  --p: 0;
  --perc-p: calc(var(--p) * 100%);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  background: color-mix(in srgb, #023047 var(--perc-p), #ededed);
  color: color-mix(in srgb, #ededed var(--perc-p), #023047);
  font-family: "Oswald", sans-serif;
  width: clamp(320px, 100%, 80em);
  margin: auto;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
}

/* Image à gauche */
.a-propos::after {
  flex: 1 1 40%;
  order: 1;
  background: var(--img) center/cover no-repeat;
  content: "";
}

/* Texte à droite */
.a-propos section {
  flex: 1 1 55%;
  padding: 2em;
  order: 2;
}

.a-propos h2 {
  text-transform: uppercase;
  margin-bottom: 0.8em;
  font-size: 1.8em;
  color: #023047;
}

.a-propos p {
  margin-bottom: 1em;
  font-size: 1.1em;
  line-height: 1.6;
}

/* Statistiques */
.a-propos aside {
  order: 3;
  flex: 1 1 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #023047;
  color: #fd9e02;
  padding: 1.5em;
}

.a-propos .item {
  text-align: center;
}

.a-propos .item span {
  display: block;
  font-size: 2em;
  font-weight: bold;
}

.a-propos .item p {
  font-size: 1em;
  color: #fff;
}

.footer {
  background: linear-gradient(135deg, #111, #222);
  color: #fff;
  position: relative;
}

.footer .text-gradient {
  background: linear-gradient(90deg, #00c6ff, #ff5edf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer a {
  text-decoration: none;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer .social-link:hover {
  color: #ff5edf;
  transform: scale(1.2);
}

.footer p, 
.footer li {
  font-size: 0.95rem;
  color: #ddd;
}
