    :root {
      --main-bg: linear-gradient(to bottom right, #0f172a, #1e3a8a);
      --text-light: #fff;
      --accent: #1abc9c;
      --highlight: #ffdd57;
      --dark-bg: #2d2d31;
      --footer-bg: #2C2F33;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
      background: var(--main-bg);
      color: var(--text-light);
      line-height: 1.6;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }


    .a {
        text-decoration: none;
    }
    /* Header */
    .glass {
      background: rgba(15, 23, 42, 0.8);
      backdrop-filter: blur(10px);
    }

    /* Hero Section */
    .hero {
    height: 27rem;
      background: url('/webroot/img/mbr.jpg') center/cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      margin-top: 80px;
    }

    .hero .text-container h1 {
      font-size: 3.5rem;
      color: var(--text-light);
      margin-bottom: 1rem;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    /* Wave */
    .wave {
      display: block;
      width: 100%;
      margin-top: -5px;
    }

    /* Main Content */
    main {
      flex: 1;
      margin-top: 2rem;
    }

    /* Services Section */
    .services-section {
      padding: 60px 20px;
      text-align: center;
    }

    .services-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

.service-box {
    background-color: var(--dark-bg);
    color: var(--text-light);
    border-radius: 38px;
    padding: 52px 20px;
    width: 339px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3sease;
    text-align: center;
}

    .service-box:hover {
      transform: translateY(-10px);
    }

    .service-box h2 {
      margin-top: 15px;
      font-size: 1.3rem;
    }

    .service-box .icon {
      color: var(--highlight);
      font-size: 2rem;
      margin-bottom: 15px;
    }

    /* Footer */
    .footer-full {
      background-color: var(--footer-bg);
      color: white;
      padding: 40px 20px 20px;
      width: 100%;
    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-top {
      text-align: center;
      margin-bottom: 30px;
    }

    .brand {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
      margin-bottom: 15px;
    }

    .hexagon {
      background: #1e3a8a;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    }

    .footer-desc {
      color: #aaa;
      max-width: 600px;
      margin: 0 auto;
    }

    .footer-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-around;
      gap: 30px;
    }

    .footer-col {
      min-width: 200px;
    }

    .footer-col h4 {
      font-size: 1.1rem;
      margin-bottom: 15px;
      color: white;
    }

    .footer-col ul {
      list-style: none;
      padding: 0;
    }

    .footer-col ul li {
      margin-bottom: 8px;
    }

    .footer-col ul a {
      color: var(--accent);
      text-decoration: none;
      transition: color 0.3s;
    }

    .footer-col ul a:hover {
      color: var(--highlight);
    }

    .social-icons {
      display: flex;
      justify-content: center;
      gap: 15px;
      font-size: 1.2rem;
    }

    .social-icons a {
      color: var(--accent);
      transition: color 0.3s;
    }

    .social-icons a:hover {
      color: var(--highlight);
    }

    .footer-bottom {
      text-align: center;
      margin-top: 40px;
      padding-top: 20px;
      border-top: 1px solid #444;
      color: #888;
      font-size: 0.85rem;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .hero {
        height: 25rem;
        margin-top: 60px;
      }
      
      .hero .text-container h1 {
        font-size: 2.5rem;
      }
      
      .footer-grid {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      
      .service-box {
        width: 100%;
        max-width: 350px;
      }
    }
.profile-section {
  text-align: center;
  padding: 60px 20px;
}

.profile-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  margin-top: 50px;
}
.profile-card {
    background-color: #1e293b;
    border-radius: 18px;
    padding: 50px 41px;
    width: 393px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    text-align: center;
    transition: transform 0.3sease;
}

.profile-card:hover {
  transform: translateY(-10px);
}

.avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #3b82f6;
  display: block;         /* ✅ nécessaire pour centrer une image */
  margin: 0 auto 25px;    /* ✅ centre horizontalement */
}


.profile-name {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.profile-role {
  font-size: 1.2rem;
  color: #9ca3af;
  margin-bottom: 25px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 25px;
  font-size: 1.6rem;
}

.social-icons a {
  color: #3b82f6;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #facc15;
}

@media (max-width: 768px) {
  .profile-card {
    width: 90%;
  }
}

.project-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  margin-bottom: 80px;
}

.project-card {
  background-color: #1e293b;
  padding: 50px 30px;
  border-radius: 20px;
  width: 460px;
  text-align: center;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-10px);
}

.project-logo {
  display: block;               /* Nécessaire pour appliquer margin auto */
  margin: 0 auto 25px auto;     /* Centre horizontalement et ajoute de l'espace en bas */
  width: 130px;
  height: 130px;
  border-radius: 18px;
  object-fit: contain;
}

.project-name {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: white;
}

.project-desc {
  font-size: 1.05rem;
  color: #cbd5e1;
  margin-bottom: 25px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.project-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.project-buttons a {
  padding: 12px 24px;
  background-color: #3b82f6;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.project-buttons a:hover {
  background-color: #2563eb;
}
.hero-banner {
  background: url('/webroot/img/bg-clavier.jpg') center/cover no-repeat;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 60px;
}

.hero-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
}

.hero-text {
  font-size: 4rem;
  color: white;
  font-weight: bold;
}

.hero-logo {
  width: 260px;     /* ⬅️⬅️⬅️ ici tu agrandis encore */
  height: 260px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
}


.hero-footer {
    width: 43px;
    height: 43px;
    /* border-radius: 09%; */
    object-fit: cover;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
}

.card-grand {
  background-color: rgba(255, 255, 255, 0.08);
  color: white;
  padding: 60px 40px;
  width: 90%;
  max-width: 1000px;
  margin: 50px auto;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
}

.card-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 25px;
  text-align: center;
}

.card-desc {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #e5e7eb;
  text-align: center;
}

