:root {
  --cm-primary: #004684;   /* bleu foncé */
  --cm-secondary: #0072bc; /* bleu clair */
  --cm-accent: #f28c28;    /* orange */
  --cm-accent2: #f7b733;   /* jaune orangé */
  --cm-warm: #f15a29;      /* rouge/orangé */
  --cm-text: #0c1014;
  --cm-bg: #ffffff;
}

/* Reset de base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  scroll-behavior: smooth;
}

body {
  background-color: var(--cm-bg);
  color: var(--cm-text);
}

/* Barre de navigation */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(145deg, #ffffff, #f3f3f3); /* effet 3D léger */
  padding: 1.5rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: contain;
  border: 3px solid var(--cm-accent);
}

.logo-text {
  color: var(--cm-primary);
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav ul li a {
  color: var(--cm-text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: var(--cm-accent);
}

/* Menu burger pour mobile */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--cm-accent);
  border-radius: 2px;
  transition: all 0.4s ease;
}

/* Animation du menu */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Responsive */
@media (max-width: 768px) {
  nav ul {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--cm-bg);
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
  }

  nav ul.active {
    max-height: 300px;
  }

  .menu-toggle {
    display: flex;
  }
}
.hero {
  height: 100vh;
  width: 100%;
  background: url('../images/hero2.jpg') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content-slider {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 100%;
  text-align: center;
}

/* Slide invisible par défaut */
.hero-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 1s;
}

/* Slide active */
.hero-slide.active {
  opacity: 1;
}

/* Titre principal animé */
.hero-title {
  margin-bottom: 1rem;
  color: var(--cm-bg);
  white-space: nowrap;
   font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 3.5rem;
}

.hero-title .left {
  display: inline-block;
  animation: slide-left 1s forwards;
}

.hero-title .right {
  display: inline-block;
  animation: slide-right 1s forwards;
}

@keyframes slide-left {
  0% { transform: translateX(-100%); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

@keyframes slide-right {
  0% { transform: translateX(100%); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

/* Sous-texte effet lumière */
.hero-slogan {
  font-size: 1.5rem;
  color: var(--cm-accent2);
  margin-bottom: 2rem;
  font-weight: 500;
  
}

@keyframes light-flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% { opacity: 1; }
  20%, 22%, 24%, 55% { opacity: 0.2; }
}

/* Bouton */
.hero-button {
  display: inline-block;
  font-size: 1.1rem;
  padding: 0.8rem 2rem;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  background-color: var(--cm-primary);
  color: var(--cm-bg);
  transition: background-color 0.3s, transform 0.3s;
}

.hero-button:hover {
  background-color: var(--cm-secondary);
  transform: translateY(-3px);
}
/* Mobile spécifique pour le premier slide */
@media (max-width: 768px) {
  .hero-slide.slide-1 .hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 2.3rem;
  }

  .hero-slide.slide-1 .hero-title .line1 {
    order: 1; /* "Bienvenue chez" */
  }
  .hero-slide.slide-1 .hero-title .line2 {
    order: 2; /* vide ou espace si besoin */
  }
  .hero-slide.slide-1 .hero-title .line3 {
    order: 3; /* "Kongo Monovi" */
  }

  .hero-slide.slide-1 .hero-slogan {
    order: 4;
    font-size: 1.2rem;
    margin-top: 10px;
  }

  /* Deuxième slide */
  .hero-slide.slide-2 .hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 2.1rem;
  }

  .hero-slide.slide-2 .hero-title .line1 {
    order: 1; /* "Kongo Monovi" sur la même ligne */
  }
  .hero-slide.slide-2 .hero-title .line2 {
    order: 2; /* "L'excellence de l'industrie" en dessous */
    font-size: 1.7rem;
  }

  .hero-slide.slide-2 .hero-slogan {
    order: 3;
    font-size: 1.2rem;
    margin-top: 10px;
  }
}






/* Section Qui sommes-nous - premium simplifié */
.about-section {
  background-color: var(--cm-bg);
  color: var(--cm-text);
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
}

.about-section .container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Titre section */
.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 2.2rem;
  color: var(--cm-accent);
  font-weight: 800;
  margin-bottom: 50px;
  letter-spacing: 1px;
}

/* Contenu principal */
.about-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 60px; /* espace entre image et texte */
  flex-wrap: wrap;
  overflow: hidden;
}

/* Image */
.about-image img {
  max-width: 290px;
  height: auto;
  display: block;
  border-radius: 0; /* plus de coins arrondis */
  box-shadow: none; /* plus d'ombre */
  background: transparent; /* se fond avec l'arrière-plan */
  transform: translateX(-10px); /* léger recul pour ajuster la position */
  opacity: 0;
  animation: slide-in-left 1s ease-out forwards;
}

/* Texte */
.about-text {
  flex: 1 1 500px; /* plus d'espace pour que le texte occupe plus de lignes */
  max-width: 650px; /* largeur maximale pour garder le design équilibré */
  transform: translateX(20px);
  opacity: 0;
  animation: slide-in-right 1s ease-out forwards;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.6; /* réduit légèrement pour mettre plus de texte sur 5 lignes */
  margin-bottom: 1.2rem;
  text-align: left;
  color: var(--cm-text);
  background: transparent;
}


/* Bouton : remettre comme ton ancien code */
.about-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 0.9rem 2rem;
  background: var(--cm-primary);
  color: var(--cm-bg);
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.about-btn:hover {
  background: var(--cm-secondary);
  transform: translateY(-3px);
}

/* --- Animation keyframes --- */
@keyframes slide-in-left {
  0% { transform: translateX(-50px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

@keyframes slide-in-right {
  0% { transform: translateX(50px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

/* Responsive */
@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-image img {
    max-width: 180px;
    margin-bottom: 20px;
    transform: translateX(0); /* plus de décalage sur tablette */
  }

  .about-text {
    max-width: 90%;
    transform: translateX(0);
  }
}

@media (max-width: 600px) {
  .about-text p {
    font-size: 1rem;
  }

  .about-image img {
    max-width: 150px;
  }
}


.valeurs-section {
  background-color: var(--cm-bg);
  padding: 40px 20px;
  text-align: center;
}

.valeurs-title {
  font-size: 1.8rem;
  margin-bottom: 40px;
  font-weight: bold;
  color: var(--cm-accent);
}

/* Container en ligne */
.valeurs-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap; /* responsive */
  gap: 60px; /* espace entre chaque valeur */
  max-width: 1200px;
  margin: 0 auto;
}

/* Chaque valeur sans "carte" */
.valeur-card {
  flex: 1 1 auto;
  min-width: 220px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.4s ease;
}

/* Animation apparition */
.valeur-card {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}
.valeur-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* Images */
.valeur-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* Titres */
.valeur-card h3 {
  font-size: 1.3rem;
  color: var(--cm-primary);
  margin-bottom: 10px;
  font-weight: bold;
  white-space: nowrap; /* Empêche la coupure */
}

/* Textes */
.valeur-card p {
  font-size: 1rem;
  color: var(--cm-text);
  line-height: 1.6;
  max-width: 280px;
}

/* Responsive */
@media (max-width: 992px) {
  .valeurs-container {
    gap: 40px;
  }
  .valeur-card h3 {
    font-size: 1.2rem;
    white-space: normal; /* en tablette/mobile, on autorise le retour pour éviter trop petit */
  }
}

@media (max-width: 600px) {
  .valeurs-container {
    flex-direction: column;
    gap: 30px;
  }
}
@media (max-width: 600px) {
  .valeur-card {
    margin: 0 auto;
  }
}


/* SECTION ENGAGEMENTS */
.engagements-section {
  text-align: center;
  padding: 60px 20px;
  background-color: var(--cm-bg);
}

/* Image principale centrée */
.engagements-image img {
  max-width: 500px;
  width: 100%;
  height: auto;
  margin: 0 auto 40px auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

/* Container cartes */
.engagements-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 25px;
  flex-wrap: wrap;
}

/* Cartes */
.engagement-card {
  background-color: #f9f9f9;
  padding: 25px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(50px);
}

.engagement-card h3 {
  font-size: 1.2rem;
  color: var(--cm-primary);
  margin-bottom: 10px;
  font-weight: bold;
}

.engagement-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--cm-text);
}

.engagement-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Sur grand écran : 3 cartes sur la première ligne, 1 carte en bas */
@media (min-width: 992px) {
  .engagement-card {
    flex: 1 1 calc(33.333% - 16.66px); /* 3 cartes par ligne */
  }
  .engagement-card:nth-child(4) {
    flex: 1 1 100%; /* 4ème carte prend toute la largeur */
  }
}

/* Tablette : 2 cartes par ligne */
@media (max-width: 991px) and (min-width: 601px) {
  .engagement-card {
    flex: 1 1 calc(50% - 20px);
  }
}

/* Mobile : 1 carte par ligne */
@media (max-width: 600px) {
  .engagement-card {
    flex: 1 1 100%;
  }
}

/* Animation active */
.engagement-card.show {
  opacity: 1;
  transform: translateY(0);
}



.services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; /* espace blanc entre les cartes */
}

.service-card {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.service-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.3s ease;
}

.service-band {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 50px;
  background-color: var(--cm-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-band span {
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1rem;
}

.service-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 155, 0, 0.5); /* orange semi-transparent */
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover .service-hover {
  opacity: 1;
}

.service-card:hover .service-img {
  filter: blur(3px);
}

/* TITRE sous le carré supprimé, titre intégré à la bande */

@media (max-width: 1024px) {
  .services-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-cards {
    grid-template-columns: 1fr;
  }
}


/* SECTION CONTACT */
.contact_section {
  position: relative;
  padding: 80px 20px;
  background-color: var(--cm-bg);
}

/* Conteneur avec shadow */
.contact_section .container-bg {
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 10px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Heading */
.contact_section .heading_container {
  margin-bottom: 30px;
}

/* Row : map à gauche, formulaire à droite */
.contact_section .row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

/* Google Maps */
.contact_section .map_container {
  flex: 1 1 48%;
  min-height: 400px;
}

.contact_section .map_container .map-responsive {
  width: 100%;
  height: 100%;
}

/* Formulaire */
.contact_section form {
  flex: 1 1 48%;
  padding: 45px 20px;
  display: flex;
  flex-direction: column;
}

/* Champs input et textarea */
.contact_section input,
.contact_section textarea {
  width: 100%;
  border: 1px solid #919191;
  padding: 12px 25px;
  margin-bottom: 25px;
  border-radius: 5px;
  background-color: transparent;
  outline: none;
  color: var(--cm-text);
  font-size: 1rem;
  resize: none;
}

.contact_section textarea {
  height: 120px;
}

/* Placeholder */
.contact_section input::placeholder,
.contact_section textarea::placeholder {
  color: #131313;
}

/* Bouton Envoyer */
.contact_section button {
  display: inline-block;
  padding: 12px 45px;
  background-color: var(--cm-primary);
  color: var(--cm-bg);
  border: 1px solid var(--cm-secondary);
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s;
  cursor: pointer;
  margin: 35px auto 0 auto;
}

.contact_section button:hover {
  background-color: transparent;
  color: var(--cm-primary);
  transform: translateY(-3px);
}

/* Responsive tablette */
@media (max-width: 1024px) {
  .contact_section .row {
    flex-direction: column;
    gap: 20px;
  }
  .contact_section .map_container,
  .contact_section form {
    flex: 1 1 100%;
  }
}

/* Responsive mobile */
@media (max-width: 768px) {
  .contact_section {
    padding: 60px 15px;
  }
  .contact_section input,
  .contact_section textarea {
    padding: 10px 15px;
  }
  .contact_section button {
    width: 100%;
    text-align: center;
  }
}

/* Responsive tablette */
@media (max-width: 1024px) {
  .contact_section .row {
    flex-direction: column;
    gap: 20px;
  }
  .contact_section .map_container,
  .contact_section form {
    flex: 1 1 100%;
  }
}

/* Responsive mobile */
@media (max-width: 768px) {
  .contact_section {
    padding: 60px 15px;
  }

  /* Forcer l'ordre : map en haut, formulaire en bas */
  .contact_section .row {
    flex-direction: column;
  }

  .contact_section .map_container {
    order: 1; /* map en premier */
    width: 100%;
    min-height: 250px; /* taille adaptée mobile */
  }

  .contact_section form {
    order: 2; /* formulaire en dessous */
    width: 100%;
    max-width: 500px; /* centré avec une largeur max */
    margin: 0 auto;   /* centrage horizontal */
    padding: 20px;
  }

  .contact_section input,
  .contact_section textarea {
    width: 100%; /* champs prennent toute la largeur */
    padding: 12px 15px;
    font-size: 1rem;
  }

  .contact_section button {
    width: 100%;
    text-align: center;
    margin-top: 15px;
  }
}


/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(145deg, #ffffff, #f3f3f3);
  padding: 50px 20px 20px;
  box-shadow: 0 -2px 6px rgba(0,0,0,0.1);
  margin-top: 60px;
  text-align: center;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col h4 {
  color: var(--cm-accent);
  font-size: 1.1rem;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase; /* TITRES EN MAJ */
}

.footer-col p {
  font-size: 0.95rem;
  color: var(--cm-text);
  line-height: 1.6;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--cm-text);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--cm-accent);
}

/* Icônes sociales */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}

.social {
  font-size: 1.3rem;
  color: var(--cm-text);
  transition: transform 0.3s, color 0.3s;
}

.social:hover {
  color: var(--cm-text);
  transform: scale(1.2);
}

/* Bas de page */
.footer-bottom {
  margin-top: 30px;
  border-top: 1px solid #ddd;
  padding-top: 15px;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: var(--cm-text);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
/* Social icons (SVG) */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}

.social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--cm-accent);
  color: var(--cm-accent);       /* couleur de l'icône */
  background: transparent;
  transition: transform 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  text-decoration: none;
}

.social:hover {
  color: var(--cm-warm);
  border-color: var(--cm-warm);
  transform: scale(1.08);
}

.social .icon {
  width: 20px;
  height: 20px;
  display: block;
  fill: currentColor; /* IMPORTANT: hérite de .social color */
}

.toggle-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

.lang-btn {
  background: #007bff;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.lang-btn:hover {
  background: #0056b3;
  transform: translateY(-3px);
}

/* Bouton retour à l'accueil */
.back-home {
  position: fixed;
  bottom: 20px;       /* en bas */
  left: 20px;         /* à gauche */
  width: 50px;
  height: 50px;
  background-color: #004684; /* fond semi-transparent pour contraste */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 9999;
  transition: background-color 0.3s, transform 0.2s;
}

.back-home:hover {
  background-color: #007bff; /* orange au survol */
  transform: scale(1.1);
}

.back-home svg path {
  fill: white; /* flèche orange */
}




.contactez-nous {
  background: url("../images/target-bg.jpg") center/cover no-repeat;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  color: #fff;
}

/* Compteurs remplissant le bloc */
.counters {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.counter {
  flex: 1;
  min-width: 150px;
  text-align: center;
  margin: 10px;
}

.counter .count {
  font-size: 2.5rem;
  color: #f28c28;
}

.counter p {
  font-size: 1rem;
  margin-top: 5px;
}

.contact-content {
  display: flex;
  flex-direction: column;
  align-items: center;   /* Centre horizontalement */
  justify-content: center; /* Centre verticalement si tu veux */
  text-align: center;    /* Centre le texte */
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-text h2 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.4;
  text-align: center; /* Centre le texte */
}

.contact-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center; /* Centre les boutons */
}

.btn-contact,
.btn-phone {
  display: inline-block;
  background: #004684;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 40px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
  white-space: nowrap;
}

.btn-contact:hover,
.btn-phone:hover {
  background: #0072bc;
  transform: scale(1.05);
}




/* SECTION DEMANDE DE DEVIS */
.demande-devis {
  position: relative;
  background: url("../images/hero2.jpg") center/cover no-repeat;
  padding: 100px 20px;
  text-align: center;
  color: white;
}

.devis-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.devis-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.demande-devis h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.demande-devis p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.btn-devis {
  background: #004684; /* vert */
  color: white;
  font-weight: bold;
  padding: 15px 35px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}

.btn-devis:hover {
  background: #007bff;
  transform: translateY(-3px);
}
