html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
  font-family: 'Poppins', sans-serif;
}
/* soc4all.css */



body {
  padding-top: 60px; /* hauteur du header */
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #000000c9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 20px;
  z-index: 9999999;
}

.logoo {
  height: 50px;
}
.navigation {
  display: flex;
  align-items: center;
  gap: 20px;
}

.navigation a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 5px 10px;
  white-space: nowrap;
}

.navigation a:hover {
  color: #ff3b3b;
}
.mega-dropdown,
.dropdown {
  position: relative;
}

.dropbtn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

/* contenu */
.mega-content,
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  min-width: 260px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
  z-index: 100;
}
/* BLOG / DROPDOWN LINKS */
.dropdown-content a {
  color: #0a2540;
  font-size: 13px;
  padding: 8px 12px;
  display: block;
  text-decoration: none;
  border-radius: 6px;
}

.dropdown-content a:hover {
  background: #0d6efd;
  color: #fff;
}

.mega-dropdown:hover .mega-content,
.dropdown:hover .dropdown-content {
  display: flex;
}

.mega-content {
  gap: 20px;
}

.mega-column a {
  display: block;
  font-size: 13px;
  padding: 6px 10px;
  color: #0a2540;
  text-decoration: none;
  border-radius: 6px;
}

.mega-column a:hover {
  background: #0d6efd;
  color: #fff;
}
#hero {
  position: relative;
  z-index: 1;
  padding: 120px 20px;
}

#hero::before,
#hero::after {
  pointer-events: none;
  z-index: 0;
}
.eyacom-menu-toggle {
  display: none;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: none;
  z-index: 9998;
}

.menu-overlay.active {
  display: block;
}
@media (max-width: 900px) {

  .eyacom-menu-toggle {
    display: block;
    z-index: 10000000;
  }

  .navigation {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    transition: right 0.3s ease;
    z-index: 9999999;
  }

  .navigation.active {
    right: 0;
  }

  .navigation a {
    color: #000;
  }

  .mega-content,
  .dropdown-content {
    position: static;
    display: none;
    background: #f5f5f5;
    box-shadow: none;
  }

  .mega-dropdown.open .mega-content,
  .dropdown.open .dropdown-content {
    display: flex;
    flex-direction: column;
  }
}
