body {
    font-family: "Poppins", serif !important;
    background-color: white !important;
}




.navbar1 .nav-link {
    color: rgb(33, 33, 147) !important;
    font-weight: 600;
}

.navbar1 .active {
    color: rgb(0, 166, 255) !important;
}



.icon-circle {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    background-color: #2b4b80;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle img {
    width: 50%;
}



p {
    font-size: 16px;
    margin-top: 10px;
}

.btn-savoir-plus {
    background-color: white;
    color: #50caf0 !important;
    border: 2px solid #50caf0 !important;
    padding: 10px 8px !important;
    width: 200px !important;
    font-weight: 700 !important;
    border-radius: 100px !important;
}

.btn-savoir-plus:hover {
    background-color: #50caf0 !important;
    color: white !important;
}

.navbar2 {
    background-color: #46BFEF !important;
    border-radius: 8px !important;
    color: white !important;
}

.navbar2 .nav-link {
    color: white !important;
    font-size: 15px !important;
    margin-right: 30px !important;
}

.navbar2 .active {
    color: white !important;
    font-weight: 700 !important;
    background-color: #2b4b80 !important;
    font-size: 15px !important;
    margin: 0px !important;
    padding: 11px !important;
    border-radius: 9px;
}

.icone {
    height: 130px !important;
    width: 130px !important;
    background: linear-gradient(white, white) padding-box,
    linear-gradient(to right, darkblue, #46BFEF) border-box;
    border-radius: 50em;
    border: 4px solid transparent;

    border-radius: 100%;
}

.carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }

  .carousel-background {
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 1;
  }

  .carousel-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
  }

  .content-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }

  .text-container {
    max-width: 500px;
    margin-bottom: 2rem;
  }

  .slide-description {
    color: white;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
  }

  .slide-title {
    color: white;
    font-weight: 800;
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 8px;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-top: auto;
  }

  /* Responsive Styles */
  @media (max-width: 768px) {
    .slide-title {
      font-size: 2rem;
      letter-spacing: 4px;
    }

    .slide-description {
      font-size: 1rem;
      padding: 0 1rem;
    }

    .text-container {
      max-width: 100%;
    }
  }

  @media (max-width: 480px) {
    .slide-title {
      font-size: 1.5rem;
      letter-spacing: 2px;
    }

    .carousel-content {
      padding: 1rem;
    }
  }


.carousel-item {
height: 100vh;
background-size: cover;
background-position: center;
position: relative;
}
.carousel-caption {
position: absolute;
bottom: 20%;
left: 5%;
right: 5%;
color: white;
text-align: left;
}
.carousel-caption h1 {
font-size: 3rem;
font-weight: bold;
}
.carousel-caption p {
font-size: 1.5rem;
font-weight: 300;
}
.carousel-caption .dynamic-text {
font-size: 2rem;
font-weight: bold;
color: #f1f1f1;
}

/* Animation infinie pour le drone avec petites inclinaisons */
@keyframes drone-animation {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 1;
    }
    25% {
        transform: translate(-10px, -20px) scale(1.05) rotate(-3deg);
        opacity: 0.95;
    }
    50% {
        transform: translate(0, -40px) scale(1.1) rotate(2deg);
        opacity: 0.9;
    }
    75% {
        transform: translate(10px, -20px) scale(1.05) rotate(-2deg);
        opacity: 0.95;
    }
    100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 1;
    }
}

.drone-container {
    padding: 10px !important;
    position: relative;

}

.drone-container img {
    animation: drone-animation 5s ease-in-out infinite;
    transform-origin: center; /* Assure que les inclinaisons se font autour du centre */
    max-width: 100%;
}

/* Conteneur du bouton flottant */
.scroll-button {
    position: fixed;
    bottom: 20px; /* Positionnement au bas de la fenêtre */
    left: 50%; /* Centré horizontalement */
    transform: translateX(-50%);
    text-align: center;
    cursor: pointer;
    animation: float 3s ease-in-out infinite; /* Animation flottante */
}

/* Icône de souris */
.mouse-icon {
    width: 30px;
    height: 50px;
    border: 2px solid #0db1fd; /* Couleur de la bordure */
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    margin: 0 auto;
}

/* Molette de la souris */
.mouse-icon .wheel {
    width: 6px;
    height: 10px;
    background: #0db1fd; /* Couleur de la molette */
    border-radius: 4px;
    animation: scroll-wheel 1.5s ease-in-out infinite; /* Animation de la molette */
    margin-top: 5px;
}

/* Texte en dessous */
.scroll-button p {
    margin: 10px 0 0;
    font-size: 14px;
    color: #0db1fd;
    font-weight: bold;
}

/* Animation de la molette */
@keyframes scroll-wheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(10px);
        opacity: 0;
    }
}

/* Animation flottante du bouton */
@keyframes float {
    0%, 100% {
        transform: translate(-50%, 0);
    }
    50% {
        transform: translate(-50%, -10px);
    }
}


/* Styles pour la galerie */


/* Styles pour le footer */
footer {
background-color: rgba(18, 59, 193, 0.9) !important;
color: white;
padding: 40px 0;
border-top: 20px solid #00C9FF  !important;
}

.footer-top {
display: flex;
justify-content: space-between;
max-width: 1200px;
margin: 0 auto;
gap: 30px;
}

.footer-section {
width: 100%;
}

.footer-section h4 {
margin-bottom: 10px;
font-size: 17px;
border-bottom: 2px solid #00bcd4;
width: 170px !important;
padding-bottom:10px !important;
}

.footer-section ul {
list-style: none;
margin: 0;
padding: 0;
}

.footer-section ul li {
margin-bottom: 8px;
}

.footer-section ul li a {
color: white;
text-decoration: none;
font-size: 16px;
transition: color 0.3s ease;
}

.footer-section ul li a:hover {
color: #00bcd4;
}

.footer-right form {
display: flex;
align-items: center;
gap: 10px;
}

.footer-right .footer-input {
padding: 8px;
margin-right: 10px;
border-radius: 5px;
border: none;
font-size: 14px;
width: 100px;
}

.footer-right button {
padding: 8px 15px;
background-color: #00bcd4;
border: none;
border-radius: 5px;
color: white;
cursor: pointer;
}

.footer-right .language-selector a {
color: white;
text-decoration: none;
margin-left: 10px;
}

.footer-bottom-container {
        width: 100%;
        padding: 10px 20px; 
        
    }

.footer-bottom-container a {
        color: white !important; 
        text-decoration: none; 
    }

.footer-bottom-container a:hover {
        text-decoration: underline; 
    }
    
    
@media (max-width: 768px) {
    .footer-bottom-container .row {
        flex-direction: column; 
        text-align: center; 
    }

    .footer-bottom-container .col {
        text-align: center !important; 
        width: 100%; 
    }

    .footer-bottom-container .col.text-end {
        margin-top: 10px; 
    }

/* Réactivité */
@media (max-width: 768px) {
.footer-top {
flex-direction: column;
align-items: flex-start;
}

.footer-section {
width: 100%;
}

.footer-right form {
flex-direction: column;
}

.footer-right .footer-input {
width: 100%;
background-color: #3C4291 !important;
border: 1Px solid white !important;
margin-bottom: 10px;
}
}

.footer-right .footer-input {
width: 100%;
background-color: #3C4291 !important;
border: 1Px solid white !important;
margin-bottom: 10px;
}

.a_nos_solutions{
color: aqua !important;

}
.a_taille_texte{
font-size: 21px !important;
font-weight: 600;
}
.section2 {
background-size: cover;  
background-position: center;  
background-repeat: no-repeat;  

}


.section2 {
    background-image: url("{{ asset('IMAGES/bgs2.jpg') }}");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 300px;
    display: flex;
    flex-wrap: wrap; 
    justify-content: center; 
    align-items: center; 
}


.span1, .span2 {
   
  
    height: 100px;
}

.span1 {
    background-color: #3C4291;
}

.span2 {
    background-color: #46bfef81;
  
    border: solid transparent;

}


@media (max-width: 768px) {
    .span1, .span2 {
        width: 90%; 
        margin-bottom:5px !important; 
        border: solid transparent;

    }
}
.div1{
   
    background-color: #0091df;
    width: 200px;
   
    margin: 9%;
    border: none;
    
}
    .span1{
        background-image: url("{{ asset('IMAGES/vector.svg') }}");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100px;
    display: flex;
    flex-wrap: wrap; 
    justify-content: center; 
    align-items: center; 
}

.service-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease-in-out;
}

.service-card:hover {
    transform: translateY(-10px);
    background-color: #46bfef27;
    box-shadow: none !important;
}

.service-card img {
    max-height: 150px;
    object-fit: cover;
}

.btn-rounded {
    border-radius: 20px;
}

body {
font-family: Arial, sans-serif;
background-color: #f9f9f9;
color: #333;
}

.security-section {
background-color: #eaf6fc;
}

h2 {
font-weight: bold;
}

ul {
list-style-type: none;
padding-left: 0;
}

ul li {
margin-bottom: 10px;
}

.btn-primary {
border: none;
}

.img-fluid {
border-radius: 5px;
padding-top: 0px;
}
.ensavoirp{
text-align: start;

}
.ensavoir{
margin-left: -39px !important;
}


.icon-box {
display: flex;
flex-direction: column;
align-items: center;
background-color: #eaf6fc;
padding: 15px;
border-radius: 10px;
}
.icon-box i {
font-size: 2rem;
color: #007bff;
}
.icon-box p {
margin: 0;
margin-top: 10px;
font-weight: bold;
color: #007bff;
}
    

.drones
{
background-image: url('images/monde.png');
background-position: center;
}

.content-section {
display: none;
}
.content-section.active {
display: block;
}
.btn-custom {
margin: 0 10px;
transition: all 0.3s ease;
}
.btn-custom.active {
background-color: #055ab5 !important;
color: white;
transform: scale(1.05);
}
.securite
{
background-image: url('images/defense.png');
background-size: cover;
background-position: center;
}

.main-title {
text-align: center;
font-size: 1.8rem;
color: #1A1C6B;
margin-bottom: 30px;
}

/* .advantages-grid {
display: flex;
flex-direction: column;
gap: 20px;
}

.advantage-item {
display: flex;
border: 1px solid #E0E6F0;
border-radius: 10px;
align-items: center;
overflow: hidden;
}

.advantage-title {
background-color: #2835C5;
color: #FFF;
font-size: 0.96rem;
font-weight: bold;
padding: 20px;
display: flex;
height: 100px;

border-radius: 7px;
align-items: center;
justify-content: center;
width: 40%;
text-align: center;
}

.advantage-details {
padding: 20px;
font-size: 0.95rem;
color: #313131;
width: 60%;
display: flex;
align-items: center !important;
background-color: #F1FAFE !important;
}

@media (max-width: 768px) {
.advantages-grid {
flex-direction: column;
}

.advantage-item {
flex-direction: column;
}

.advantage-title,
.advantage-details {
width: 100%;
text-align: left;
padding: 15px;
}

.advantage-title {
text-align: center;
}
} */

.advantages-section {
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
  border: 1Px solid blue;
  border-radius: 10px;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  color: #494949;
  margin-bottom: 2rem;
  text-align: center;
}

.advantages-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.advantage-item {
  display: flex;
  border: 1px solid #e4eaf5;
  border-radius: 10px;
  align-items: stretch;
  overflow: hidden;
  background-color: #fff;
}

.advantage-title {
  position: relative;
  background-color: #2835C5;
  color: #FFF;
  font-size: 0.96rem;
  font-weight: bold;
  padding: 20px 40px 20px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40%;
  text-align: center;
  min-height: 100px;
}

/* Création de la flèche */
.advantage-title::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 0;
  width: 0;
  z-index: 9999;
  height: 0;
  border-top: 50px solid transparent;
  border-bottom: 50px solid transparent;
  border-left: 20px solid #2835C5;
}

.advantage-details {
  padding: 20px 20px 20px 40px;
  font-size: 0.95rem;
  color: #1c1c1c;
  width: 60%;
  position: relative;
  height: 100px;
  top: -7px;
  display: flex;
  
  align-items: center;
  background-color: #ffffff !important;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .section-title {
      font-size: 1.5rem;
      padding: 0 1rem;
  }

  .advantages-grid {
      padding: 0 15px;
  }

  .advantage-item {
      flex-direction: column;
  }

  .advantage-title {
      width: 100%;
      padding: 15px;
      justify-content: center;
      min-height: unset;
  }

  /* Réajustement de la flèche pour mobile */
  .advantage-title::after {
      right: 50%;
      top: auto;
      bottom: -20px;
      transform: translateX(50%);
      border-left: 25px solid transparent;
      border-right: 25px solid transparent;
      border-top: 20px solid #2835C5;
      border-bottom: 0;
  }

  .advantage-details {
      width: 100%;
      padding: 35px 15px 15px;
      text-align: center;
      justify-content: center;
  }
}

.hhh .card 
{
    height: 350px !important;
    object-fit: cover !important;
}
.hhh .card {
    /* Configuration de base */
    position: relative;
    height: 350px !important;
    object-fit: cover !important;
    overflow: hidden;
    border-radius: 20px;
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.1); */
    cursor: pointer;
}




                        /* Custom Dropdown Animations */
        .nav-item.dropdown .dropdown-toggle {
          transition: all 0.3s ease;
      }
      
      .nav-item.dropdown .dropdown-toggle:hover {
          color: #00ccff; /* Bootstrap primary color */
          transform: scale(1.05);
      }
      
      .dropdown-menu {
          animation: dropdown-fade-in 0.4s ease-out;
          transform-origin: top center;
          border-radius: 9px ;
       margin-left: -50px !important;
       border: none !important;
          
      }
      
      @keyframes dropdown-fade-in {
          0% {
              opacity: 0;
              transform: scaleY(0.8);
          }
          100% {
              opacity: 1;
              transform: scaleY(1);
          }
      }
      
      .dropdown-item {
          transition: all 0.3s ease;
          position: relative;
          overflow: hidden;
          padding: 12px;
      }

      .hhh .card:hover
      {
        transform: scale(1.018);
      }
      
      
      
      .dropdown-item:hover::before {
          left: 0;
      }
      
      .dropdown-item i {
          transition: transform 0.3s ease;
          margin-left: 6px;
      }
      
      .dropdown-item:hover i {
          transform: translateX(5px);
          color: #00ccff;
      }

.drones .card 
{
    border-radius: 0px !important;
    transition: 0.5s ease-in;
}

.drones .card:hover 
{
    background-color: #9ce3ff !important;
    cursor: pointer;
}


.loading-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #101010;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.loading-curtain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: 0.5s ease-in;
    height: 100%;
    background-color: #010622;

    animation: curtainOpen 0.5s forwards;
}

.loading-curtain
{
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-top: 310px;
}

.loader {
    transform: rotateZ(45deg);
    perspective: 1000px;
    border-radius: 50%;
    width: 78px;
    height: 78px;
    color: #fff;
  }
    .loader:before,
    .loader:after {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: inherit;
      height: inherit;
      border-radius: 50%;
      transform: rotateX(70deg);
      animation: 1s spin linear infinite;
    }
    .loader:after {
      color: #00ccff;
      transform: rotateY(70deg);
      animation-delay: .4s;
    }

  @keyframes rotate {
    0% {
      transform: translate(-50%, -50%) rotateZ(0deg);
    }
    100% {
      transform: translate(-50%, -50%) rotateZ(360deg);
    }
  }

  @keyframes rotateccw {
    0% {
      transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
      transform: translate(-50%, -50%) rotate(-360deg);
    }
  }

  @keyframes spin {
    0%,
    100% {
      box-shadow: .2em 0px 0 0px currentcolor;
    }
    12% {
      box-shadow: .2em .2em 0 0 currentcolor;
    }
    25% {
      box-shadow: 0 .2em 0 0px currentcolor;
    }
    37% {
      box-shadow: -.2em .2em 0 0 currentcolor;
    }
    50% {
      box-shadow: -.2em 0 0 0 currentcolor;
    }
    62% {
      box-shadow: -.2em -.2em 0 0 currentcolor;
    }
    75% {
      box-shadow: 0px -.2em 0 0 currentcolor;
    }
    87% {
      box-shadow: .2em -.2em 0 0 currentcolor;
    }
  }



@media (max-width:700px) {
    .vvv
    {
        font-size: 19px !important;
    }
    .jj
    {
        background-color: rgba(0, 0, 0, 0.324);
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(110%);
}
.gallery-item img {
    transition: transform 0.3s ease, filter 0.3s ease;
}
.gallery-item::after {
    content: '🔍';
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.5);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-item:hover::after {
    opacity: 1;
}

}

#back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #01a6ff;
    color: white;
    font-size: 24px;
    z-index: 9999 !important;
    font-weight: bold;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
  }
  
  #back-to-top:hover {
    background-color: #01a6ffcd;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
    transform: scale(1.1) !important;
  }
  
  #back-to-top.show {
    opacity: 1;
    visibility: visible;
  }


 

    .drones img
    {
       height: 180px !important;
       object-fit: cover !important;
       width: 100% !important;
      
       border-radius: 0px !important;
    }

    .drones .p_text
    {
       padding: 20px !important;
       text-align: justify !important;
    }

    


    .securite
    {
        background-image:  url('../images/bg_defense.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
       
       

    }

    .securite .container 
    {
        z-index: 1 !important;
        position: relative !important;
        opacity: 1 !important;
    }

    .cartographie h6
    {
        background-color: #46BFEF;
        padding: 6px !important;
    }

    .footer-section a
    {
        font-size: 12px !important;
    }

    .footer {
      
        color: #ffffff;
        padding: 4rem 0;
        position: relative;
    }

    .footer-top {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer-section h4 {
        color: #46BFEF;
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
        position: relative;
        padding-bottom: 0.5rem;
    }

    .footer-section h4::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 50px;
        height: 2px;
        background-color: #46BFEF;
    }

    .footer-section ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-section ul li {
        margin-bottom: 0.8rem;
    }

    .footer-section ul li a {
        color: #ffffff;
        text-decoration: none;
        transition: color 0.3s ease;
        font-size: 0.9rem;
    }

    .footer-section ul li a:hover {
        color: #46BFEF;
    }

    .footer-input {
        background-color: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 0.8rem;
        border-radius: 4px;
        color: #ffffff;
        width: 100%;
        margin-right: 0.5rem;
    }

    .footer-input:focus {
        outline: none;
        border-color: #46BFEF;
    }

    .footer-right button[type="submit"] {
        background-color: #46BFEF;
        color: #ffffff;
        border: none;
        padding: 0.8rem 1.5rem;
        border-radius: 4px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .footer-right button[type="submit"]:hover {
        background-color: #3a9fd1;
    }

    

    .language-selector a {
        color: #ffffff;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .language-selector a:hover {
        color: #46BFEF;
    }

    .footer-bottom {
        text-align: center;
        padding-top: 2rem;
        margin-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-bottom p {
        margin: 0;
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.7);
    }

    /* Modal Styles */
    .modal-content {
        background-color: #ffffff;
        border-radius: 10px;
    }

    .modal-header {
        border-bottom: none;
        padding: 1.5rem;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .btn-primary {
        background-color: #46BFEF;
        border: none;
    }

    .btn-primary:hover {
        background-color: #3a9fd1;
    }

    .solutions-section {
        padding: 3rem 0;
        /* Réduit de 5rem à 3rem */
        background-color: #fff;
      }
  
      .solutions-content {
        display: flex;
        align-items: center;
        gap: 2rem;
        /* Réduit de 4rem à 2rem */
        flex-wrap: wrap;
        justify-content: center;
      }
  
      .solutions-image {
        flex: 1;
        min-width: 300px;
        max-width: 600px;
      }
  
      .solutions-image img {
        transition: transform 0.3s ease;
      }
  
      .solutions-image img:hover {
        transform: scale(1.02);
      }
  
      .solutions-text {
        flex: 1;
        min-width: 300px;
        max-width: 600px;
      }
  
      .solutions-title {
        color: #13c8ff;
        font-size: 2rem;
        margin-bottom: 1.5rem;
        /* Réduit de 2rem à 1.5rem */
        font-weight: 600;
      }
  
      .solutions-list {
        list-style: none;
        padding: 0;
        margin: 0;
      }
  
      .solutions-item {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 0.75rem;
        /* Réduit de 1.5rem à 0.75rem */
        padding: 0.75rem 1rem;
        transition: all 0.2s ease;
       
        /* Fond très léger */
        border-radius: 8px;
        
      }
  
      .solutions-item:hover {
        transform: translateX(5px);
        
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
      }
  
      .solutions-item i {
        color: #1ad1ff;
        font-size: 1.25rem;
        margin-top: 0.25rem;
      }
  
      .solution-info {
        flex: 1;
      }
  
      .solution-heading {
        font-size: 1rem;
        font-weight: 600;
        color: #333;
        display: block;
        margin-bottom: 0.25rem;
      }
  
      .solution-description {
        color: #666;
        margin: 0;
      
        font-size: 13px !important;
        /* Réduit de 1.5 à 1.4 */
      }
  
      .hub-highlight {
        font-weight: 700;
        color: #333;
      }
  
      /* Responsive Design */
      @media (max-width: 992px) {
        .solutions-content {
          gap: 1.5rem;
          /* Réduit de 2rem à 1.5rem */
        }
  
        .solutions-title {
          font-size: 2rem;
        }
      }
  
      @media (max-width: 768px) {
        .solutions-section {
          padding: 2rem 0;
          /* Réduit de 3rem à 2rem */
        }
  
        .solutions-image,
        .solutions-text {
          max-width: 100%;
        }
  
        .solutions-title {
          font-size: 1.75rem;
          text-align: center;
        }
  
        .solutions-item {
          margin-bottom: 0.5rem;
          /* Réduit de 1rem à 0.5rem */
        }
      }
  
      @media (max-width: 480px) {
        .solutions-section {
          padding: 1.5rem 0;
        }
  
        .solutions-item {
          flex-direction: column;
          align-items: center;
          text-align: center;
          gap: 0.5rem;
        }
  
        .solution-info {
          text-align: center;
        }
      }


      .action-wrapper {
        background-color: #042a7b !important;
     
      }
  
      .action-section {
        max-width: 1200px;
        margin: 0 auto;
      }
  
      .action-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
        padding: 1rem;
        background-image: url('../../images/fon-b.svg');
        background-size: contain;
        
        background-position: center;
      }
  
      .action-message {
        position: relative;
        flex: 1;
        min-width: 200px;
      }
  
      .message-background {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
      
        border-radius: 8px;
      }
  
      .action-message p {
        position: relative;
        color: white;
        padding: 1.5rem;
        margin: 0;
        font-size: 1.1rem;
        line-height: 1.4;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
      }
  
      .action-button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 200px !important;
      }
  
      .cta-button {
        background: linear-gradient(135deg, #13c8ff 0%, #0099ff 100%);
        color: white;
        border: none;
        padding: 1rem 2rem;
        font-weight: 600;
        font-size: 1rem;
        border-radius: 100px;
        cursor: pointer;
        transition: all 0.3s ease;
        text-align: center;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      }
  
      .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
        background: linear-gradient(135deg, #0099ff 0%, #13c8ff 100%);
      }
  
      .cta-button:active {
        transform: translateY(0);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      }
  
      /* Responsive Design */
      @media (max-width: 768px) {
        .action-content {
          flex-direction: column;
          gap: 1rem;
        }
  
        .action-message,
        .action-button {
          width: 100%;
        }
  
        .action-message p {
          text-align: center;
          padding: 1.25rem;
          font-size: 1rem;
        }
  
        .cta-button {
          width: 100%;
          padding: 0.875rem 1.5rem;
        }
      }
  
      @media (max-width: 480px) {
        .action-wrapper {
          padding: 0.5rem;
        }
  
        .action-content {
          padding: 0.5rem;
        }
  
        .action-message p {
          padding: 1rem;
          font-size: 0.95rem;
        }
      }


      .securite {
        padding: 5rem 0;
        background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(240, 244, 247, 1) 100%);
        position: relative;
        overflow: hidden;
      }
  
      .section-header {
        margin-bottom: 4rem;
      }
  
      .section-header h2 {
        color: #46BFEF;
        font-weight: 800;
        font-size: 2.5rem;
        margin-bottom: 1rem;
        position: relative;
        display: inline-block;
      }
  
      .header-line {
        width: 80px;
        height: 4px;
        margin: 0 auto;
        border-radius: 2px;
      }
  
      .security-content {
        position: relative;
      }
  
      .image-container {
        position: relative;
        border-radius: 0px !important;
        overflow: hidden;
  
        transition: transform 0.3s ease;
      }
  
      .image-container:hover {
        transform: translateY(-10px);
      }
  
      .main-image {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 20px;
        transition: transform 0.3s ease;
        border-radius: 0px !important;
  
      }
  
      .image-container:hover .main-image {
        transform: scale(1.05);
      }
  
      .image-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
  
        border-radius: 20px;
      }
  
      .floating-badge {
        position: absolute;
        top: 20px;
        right: 20px;
        background: rgba(255, 255, 255, 0.9);
        color: #46BFEF;
        padding: 8px 16px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 0.9rem;
  
      }
  
      .content-wrapper {
        padding: 2rem;
      }
  
      .intro-text p {
        font-size: 1.1rem;
        line-height: 1.6;
        color: #444;
        margin-bottom: 2rem;
      }
  
      .features-section h3 {
        color: #46BFEF;
        font-weight: 700;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
      }
  
      .features-list {
        display: flex;
        flex-direction: column;
        gap: 1rem;
      }
  
      .feature-item {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        padding: 1rem;
        background: white;
        border-radius: 12px;
        transition: all 0.3s ease;
  
      }
  
      .feature-item:hover {
        transform: translateX(10px);
  
      }
  
      .check-icon {
        color: #00ccff;
        font-size: 1.25rem;
        flex-shrink: 0;
      }
  
      .feature-item p {
        margin: 0;
        font-size: 1rem;
        color: #555;
        line-height: 1.4;
      }
  
      @media (max-width: 991.98px) {
        .securite {
          padding: 4rem 0;
        }
  
        .section-header h2 {
          font-size: 2rem;
        }
  
        .content-wrapper {
          padding: 1.5rem;
        }
      }
  
      @media (max-width: 767.98px) {
        .securite {
          padding: 3rem 0;
        }
  
        .section-header {
          margin-bottom: 2rem;
        }
  
        .image-container {
          margin-bottom: 2rem;
        }
  
        .intro-text p {
          font-size: 1rem;
        }
  
        .features-section h3 {
          font-size: 1.3rem;
        }
      }
  
      @media (max-width: 575.98px) {
        .section-header h2 {
          font-size: 1.75rem;
        }
  
        .content-wrapper {
          padding: 1rem;
        }
  
        .feature-item {
          padding: 0.75rem;
        }
      }


      .drones-labs {

        background-image: url('images/bg_ray.png');
        background-size: cover;
        background-position: center;
      }
  
      .drones-header {
        max-width: 800px;
        margin: 0 auto 3rem;
        text-align: center;
      }
  
      .section-title {
        color: #46BFEF;
        font-weight: 800;
        margin-bottom: 0.5rem;
        font-size: 2.5rem;
      }
  
      .section-subtitle {
        font-size: 1rem;
        color: #666;
        margin-bottom: 1.5rem;
      }
  
      .section-description {
        max-width: 600px;
        margin: 0 auto;
        color: #666;
        line-height: 1.6;
      }
  
      .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
      }
  
      .service-card {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
      }
  
      .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
      }
  
      .card-header {
  
        text-align: center;
      }
  
      .card-header h5 {
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: #333;
      }
  
      .card-header h6 {
        font-size: 0.875rem;
        color: #666;
      }
  
      .card-image {
        width: 100%;
        height: 200px;
        overflow: hidden;
      }
  
      .card-image img {
        width: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
      }
  
      .service-card:hover .card-image img {
        transform: scale(1.05);
      }
  
      .card-description {
  
        text-align: center;
        color: #414141;
        line-height: 1.6;
        flex-grow: 1;
        padding-left: 15px;
        
        padding-right: 15px;
      }
  
      .action-button {
        background-color: #1ad1ff;
        color: white;
        border: none;
        border-radius: 100px;
        padding: 11px 25px;
        margin: 1rem auto 1.5rem;
        cursor: pointer;
        transition: background-color 0.3s ease;
      }
  
   
  
      /* Animation settings */
      .animate__fadeInUp {
        animation-duration: 0.8s;
      }
  
      /* Responsive adjustments */
      @media (max-width: 992px) {
        .services-grid {
          gap: 1.5rem;
        }
      }
  
      @media (max-width: 768px) {
        .drones-labs {
          padding: 3rem 1rem;
        }
  
        .section-title {
          font-size: 2rem;
        }
      }
  
      @media (max-width: 480px) {
        .drones-labs {
          padding: 2rem 0.5rem;
        }
  
        .service-card {
          margin: 0 0.5rem;
        }
      }

      .mosquito-section {
        padding: 4rem 0;
        background-color: #ffffff;
        min-height: 100vh;
    }

    .mosquito-title {
        color: #46BFEF;
        font-size: 1.5rem;
        margin-bottom: 3rem;
        text-align: center;
    }

    .text-list-item {
        padding: 2rem;
        border-bottom: 1px solid #00ccff;
        border-top: 2px solid #00ccff;
        transition: all 0.3s ease;
    }

    .text-list-item:hover {
        background-color: #fff;
        transform: translateY(-4px);
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .text-list-item:last-child {
        border-bottom: none;
    }

    .text-list-title {
        color: #46BFEF;
        font-size: 1.5rem;
        margin-bottom: 1rem;
        font-weight: 600;
    }

    .text-list-content {
        color: #555;
        line-height: 1.6;
    }

    .image-list {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .image-container {
        width: 100%;
        height: 200px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
    }

    .image-container:hover {
        transform: translateY(-5px);
    }

    .image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    @media (max-width: 768px) {
        .mosquito-title {
            font-size: 2rem;
            margin-bottom: 2rem;
        }

        .text-list-item {
            padding: 1.5rem;
        }

        .text-list-title {
            font-size: 1.3rem;
        }

        .image-container {
            height: 150px;
        }
    }


    
    .footer-input::placeholder
    {
      color: white !important;
    }
    .footer-input
    {
      color: white !important;
    }


    /* .VIpgJd-ZVi9od-ORHb{
      display: none !important;
    }

    .VIpgJd-ZVi9od-ORHb-OEVmcd 
    {
      display: none !important;
    }

    .goog-te-gadget-icon
    {
      display: none !important;
    }

    .VIpgJd-ZVi9od-vH1Gmf-ibnC6b
    {
      padding: 10px !important;
    }

    .VIpgJd-ZVi9od-vH1Gmf
    {
      padding: 20px !important;
      box-shadow: none !important;
      border-radius: 6px !important;
    }

    .VIpgJd-yAWNEb-hvhgNd
    {
      display: none !important;
    } */

    .section-gal {
      padding: 4rem 4rem !important;
      background-color: rgb(1, 16, 72);  /* Couleur de fallback */
      background-image: url('../../images/gal4.JPG');
      background-size: cover;
      background-attachment: fixed;
      background-position: center;
      background-repeat: no-repeat;
      min-height: 300px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  /* Option : Ajout d'un overlay foncé sur l'image */
  .section-gal::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(1, 16, 72, 0.957); /* Overlay semi-transparent */
      z-index: 1;
  }
  
  /* Pour que le contenu reste au-dessus de l'overlay */
  .section-gal > * {
      position: relative;
      z-index: 2;
  }

  .translate-error {
    color: #ff0000;
    font-size: 12px;
    margin-top: 5px;
    text-align: center;
}

/* Reste des styles existants */
/* .goog-te-banner-frame,
.goog-te-balloon-frame {
    display: none !important;
}

.goog-te-gadget {
    font-size: 0 !important;
}

.goog-te-gadget .goog-te-combo {
    display: none !important;
}

.language-selector {
    display: inline-block;
    margin: 10px 0;
}

.language-link {
    text-decoration: none;
    color: #ffffff;
    padding: 5px 10px;
    transition: all 0.3s ease;
}

.language-link:hover {
    color: #cccccc;
}

.language-link.active {
    font-weight: bold;
    text-decoration: underline;
}

#goog-gt-tt
{
display: none !important;
}

.goog-te-banner-frame,
.goog-te-balloon-frame {
    display: none !important;
}

.goog-te-gadget {
    font-size: 0 !important;
}

.goog-te-gadget .goog-te-combo {
    display: none !important;
} */

.translation-section {
    margin-top: 20px;
    text-align: center;
}

.language-selector {
    display: inline-block;
    margin: 10px 0 ;
}

.language-link {
    text-decoration: none;
    color: #ffffff;
    padding: 5px 10px;
    transition: all 0.3s ease;
}

.language-link:hover {
    color: #cccccc;
}

.language-link.active {
    font-weight: bold;
    text-decoration: underline;
}

/* Remove Google Translate top bar */
body {
    top: 0 !important;
}

/* Hide the original Google Translate widget */
#google_translate_element select {
    display: none !important;
}

/* La barre de défilement entière */
::-webkit-scrollbar {
    width: 10px;
}

/* Le fond de la barre de défilement */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Le "pouce" de la barre de défilement (la partie qu'on déplace) */
::-webkit-scrollbar-thumb {
    background: linear-gradient(to left,rgb(0, 174, 255),blue);
    border-radius: 5px;
}

/* État au survol du pouce */
::-webkit-scrollbar-thumb:hover {
    background: #008fe8;
}


@keyframes slideFromLeft {
  0% {
      transform: translateX(-100%);
      opacity: 0;
  }
  100% {
      transform: translateX(0);
      opacity: 1;
  }
}

.slide-from-left {
  animation: slideFromLeft 2s ease-out forwards;
  opacity: 0;
}

.delay-1 { animation-delay: 0s; }
.delay-2 { animation-delay: 0.5s; }
.delay-3 { animation-delay: 1s; }
.delay-4 { animation-delay: 1.5s; }


.modal form input 
{
  padding: 10px !important;
  background-color: rgb(243, 243, 243) !important;
  border: 2px solid  rgb(243, 243, 243) !important;
  border-radius: 10px !important;
  
}
.modal form input:focus
{
  box-shadow: none !important;
  border: 2px solid #46BFEF !important;
}

.modal form textarea:focus
{
  box-shadow: none !important;
  border: 2px solid #46BFEF !important;
}

.modal form textarea 
{
  padding: 10px !important;
  background-color: rgb(243, 243, 243) !important;
  border: none !important;
  border: 2px solid  rgb(243, 243, 243) !important;
  border-radius: 10px !important;

}


.modal button
{
  padding: 10px !important;
  font-weight: 800 !important;
  border-radius: 14px !important;
}
.modal button:hover 
{
  background-color: #0092d6 !important;
  color: white !important;
}
.modal form label
{
  font-weight: 600 !important;
  font-size: 15px !important;
}

.btn-close
{
  background-color: #46bfef7e !important;
  border-radius: 100%;
  color: white !important;
}


.language-selector {
  position: relative;
  width: 70px !important;
  margin: 20px;
}

@media (max-width:200px){
  .language-selector {
    position: relative;
    width: fit-content;
    margin-left: -38px !important;
  }
  .navbar-brand img 
  {
    margin-left:-15px;
    height: 15px !important;
  }
  .navbar-toggler
  {
    margin-left: -10px !important;
    position: relative;
    left: 15px;
    font-size:12px !important;
  }
  
}
.language-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  background: white;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
  color: #2d3748;
  height: 31px !important;
  width: 70Px !important;
  /* height: 30px !important; */
}

@media (min-width:800px){
    .language-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  background: white;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
  color: #2d3748;
  height: 31px !important;
    width: 70Px !important;
  /* height: 30px !important; */
}



}

.language-btn:hover {
  background: #f7fafc;
  
 /* box-shadow: 0 2px 4px rgba(0,0,0,0.1);*/
}

.chevron {
  transition: transform 0.2s ease;
  margin-left: 1px;
}

.language-btn.active .chevron {
  transform: rotate(180deg);
}

.language-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 70px;
  background: white;
  border: none !important;
  margin-top: 5px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  z-index: 1000;
}

.language-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  color: black;
  cursor: pointer;
  transition: all 0.2s ease;
}

.language-option:hover {
  background: #f7fafc;
}

.language-option.selected {
  background: #ebf8ff;
  color: #2b6cb0;
}

.check-icon {
  margin-left: auto;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.language-option.selected .check-icon {
  opacity: 1;
}








                                            .naana-domaines-link {
                                                position: relative;
                                                transition: color 0.3s ease;
                                                font-weight: 400 !important;
                                            }

                                            /* Animation de soulignement au hover du lien principal */
                                            .naana-domaines-link::after {
                                                content: '';
                                                position: absolute;
                                                bottom: 0;
                                                left: 50%;
                                                width: 0;
                                                height: 2px;
                                                background: #0d8ab8;
                                                transition: all 0.3s ease;
                                            }

                                            .naana-domaines-item:hover .naana-domaines-link::after {
                                                width: 100%;
                                                left: 0;
                                            }

                                          .naana-domaines-dropdown {
                                                position: absolute;
                                                top: 35px;
                                                left: 50%;
                                                transform: translateX(-50%) translateY(10px);
                                                background: white;
                                                min-width: 300px;
                                                opacity: 0;
                                                visibility: hidden;
                                                transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
                                                box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
                                                border-radius: 12px;
                                                padding: 0.75rem 0;
                                                z-index: 1000 !important; /* Assurez-vous que cette valeur est suffisamment élevée */
                                                pointer-events: none;
                                            }

                                           .naana-domaines-item:hover .naana-domaines-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
    pointer-events: auto;
}

                                            .naana-domaines-dropdown-item {
                                                display: flex;
                                                align-items: center;
                                                padding: 0.9rem 1.5rem;
                                                color: #333;
                                                text-decoration: none;
                                                transition: all 0.25s ease;
                                                opacity: 0;
                                                transform: translateY(10px);
                                            }

                                            .naana-domaines-item:hover .naana-domaines-dropdown-item {
                                                opacity: 1;
                                                transform: translateY(0);
                                            }

                                            /* Délai progressif pour chaque item */
                                            .naana-domaines-item:hover .naana-domaines-dropdown-item:nth-child(1) {
                                                transition-delay: 0.1s;
                                            }

                                            .naana-domaines-item:hover .naana-domaines-dropdown-item:nth-child(2) {
                                                transition-delay: 0.15s;
                                            }

                                            .naana-domaines-item:hover .naana-domaines-dropdown-item:nth-child(3) {
                                                transition-delay: 0.2s;
                                            }

                                            .naana-domaines-item:hover .naana-domaines-dropdown-item:nth-child(4) {
                                                transition-delay: 0.25s;
                                            }

                                            .naana-domaines-dropdown-item:hover {
                                                background: linear-gradient(to right, rgba(13, 138, 184, 0.08), rgba(13, 138, 184, 0.02));
                                                color: #0d8ab8;
                                                transform: translateX(5px);
                                            }

                                            .naana-domaines-title {
                                                position: absolute;
                                                top: 0;
                                                left: 50%;
                                                transform: translate(-50%, -100%);
                                                background: #0d8ab8;
                                                color: white;
                                                padding: 0.6rem 1.2rem;
                                                border-radius: 8px;
                                                font-size: 0.9rem;
                                                font-weight: 500;
                                               
                                                opacity: 0;
                                                visibility: hidden;
                                                transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
                                                white-space: nowrap;
                                                box-shadow: 0 4px 12px rgba(13, 138, 184, 0.2);
                                            }

                                            .naana-domaines-item:hover .naana-domaines-title {
                                                opacity: 1;
                                                visibility: visible;
                                                transform: translate(-50%, -8px);
                                            }

                                            .naana-domaines-icon {
                                                margin-right: 12px;
                                                width: 24px;
                                                height: 24px;
                                                display: flex;
                                                align-items: center;
                                                justify-content: center;
                                                background: rgba(13, 138, 184, 0.1);
                                                border-radius: 6px;
                                                color: #0d8ab8;
                                                transition: all 0.3s ease;
                                            }

                                            .naana-domaines-dropdown-item:hover .naana-domaines-icon {
                                                background: #0d8ab8;
                                                color: white;
                                                transform: scale(1.1);
                                            }
                                            
                                             .naana-solutions-item {
                                                position: relative;
                                            }

                                            .naana-solutions-link {
                                                position: relative;
                                                transition: color 0.3s ease;
                                                font-weight: 400 !important;
                                            }

                                            /* Animation de soulignement au hover du lien principal */
                                            .naana-solutions-link::after {
                                                content: '';
                                                position: absolute;
                                                bottom: 0;
                                                left: 50%;
                                                width: 0;
                                                height: 2px;
                                                background: #0d8ab8;
                                                transition: all 0.3s ease;
                                            }

                                            .naana-solutions-item:hover .naana-solutions-link::after {
                                                width: 100%;
                                                left: 0;
                                            }

                                            .naana-solutions-dropdown {
                                                position: absolute;
                                                top: 35px;
                                                left: 50%;
                                                transform: translateX(-50%) translateY(10px);
                                                background: white;
                                                min-width: 250px;
                                                opacity: 0;
                                                visibility: hidden;
                                                transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
                                                box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
                                                border-radius: 12px;
                                                padding: 0.75rem 0;
                                                z-index: 9999 !important;
                                                pointer-events: none;
                                            }

                                            .naana-solutions-item:hover .naana-solutions-dropdown {
                                                opacity: 1;
                                                visibility: visible;
                                                transform: translateX(-50%) translateY(5px);
                                                pointer-events: auto;
                                            }

                                            .naana-solutions-dropdown-item {
                                                display: flex;
                                                align-items: center;
                                                padding: 0.9rem 1.5rem;
                                                color: #333;
                                                text-decoration: none;
                                                transition: all 0.25s ease;
                                                opacity: 0;
                                                transform: translateY(10px);
                                            }

                                            .naana-solutions-item:hover .naana-solutions-dropdown-item {
                                                opacity: 1;
                                                transform: translateY(0);
                                            }

                                            /* Délai progressif pour chaque item */
                                            .naana-solutions-item:hover .naana-solutions-dropdown-item:nth-child(1) {
                                                transition-delay: 0.1s;
                                            }

                                            .naana-solutions-item:hover .naana-solutions-dropdown-item:nth-child(2) {
                                                transition-delay: 0.15s;
                                            }

                                            .naana-solutions-item:hover .naana-solutions-dropdown-item:nth-child(3) {
                                                transition-delay: 0.2s;
                                            }

                                            .naana-solutions-dropdown-item:hover {
                                                background: linear-gradient(to right, rgba(13, 138, 184, 0.08), rgba(13, 138, 184, 0.02));
                                                color: #0d8ab8;
                                                transform: translateX(5px);
                                            }

                                            .naana-solutions-title {
                                                position: absolute;
                                                top: 0;
                                                left: 50%;
                                                transform: translate(-50%, -100%);
                                                background: #0d8ab8;
                                                color: white;
                                                padding: 0.6rem 1.2rem;
                                                border-radius: 8px;
                                                font-size: 0.9rem;
                                                font-weight: 500;
                                                opacity: 0;
                                                visibility: hidden;
                                                transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
                                                white-space: nowrap;
                                                box-shadow: 0 4px 12px rgba(13, 138, 184, 0.2);
                                            }

                                            .naana-solutions-item:hover .naana-solutions-title {
                                                opacity: 1;
                                                visibility: visible;
                                                transform: translate(-50%, -8px);
                                            }

                                            .naana-solutions-icon {
                                                margin-right: 12px;
                                                width: 24px;
                                                height: 24px;
                                                display: flex;
                                                align-items: center;
                                                justify-content: center;
                                                background: rgba(13, 138, 184, 0.1);
                                                border-radius: 6px;
                                                color: #0d8ab8;
                                                transition: all 0.3s ease;
                                            }

                                            .naana-solutions-dropdown-item:hover .naana-solutions-icon {
                                                background: #0d8ab8;
                                                color: white;
                                                transform: scale(1.1);
                                            }

 @media (min-width:800px) {
            .drop-d {
                position: relative !important;
                top: -40px !important;
                left: 80px !important;
                margin-bottom: 0px !important;
            }
        }
                                   