.nav-link {
    /* Style de base pour les liens de navigation */
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-link.activevitro {
    /* Style pour les liens actifs */
    color: #489e88 !important;
    background-color: rgba(255, 255, 255, 0.65);
    position: relative;
}



.animation-container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;

}


/* Media query pour les appareils mobiles */
@media screen and (max-width: 768px) {
    .animation-container {
        height: 85vh;
        /* Légèrement réduit pour les petits écrans */
        padding: 15px;
        /* Padding réduit */
    }
}

/* Pour les très petits écrans */
@media screen and (max-width: 480px) {
    .animation-container {
        height: 80vh;
        padding: 10px;
    }
}

.container35 {
    position: relative;
    width: 1200px;
    height: 800px;
    margin: 0 auto;
}

.device {
    position: absolute;
    opacity: 0;
    transform: scale(0.5);
    transition: all 1.5s ease-in-out;
}

.monitor {
    width: 1000px;
    height: auto;
    top: 0;
    left: 50%;
    transform: translateX(-50%) scale(0.5);
    z-index: 1;
}

.tablet {
    width: 600px;
    height: auto;
    bottom: 20px !important;
    left: -10px !important;
    z-index: 2;
}

.smartphone {
    width: 300px;
    height: auto;
    bottom: 20px !important;
    right: 0px !important;
    z-index: 3;
}

/* Animation states */
.container35.animate .tablet {
    animation: showTablet 6s forwards;
}

.container35.animate .monitor {
    animation: showMonitor 6s forwards;
}

.container35.animate .smartphone {
    animation: showSmartphone 6s forwards;
}

@keyframes showTablet {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    20% {
        opacity: 1;
        transform: scale(1);
        left: 50%;
        top: 50%;
        margin-left: -300px;
        margin-top: -250px;
    }

    80% {
        opacity: 1;
        transform: scale(1);
        left: 50%;
        top: 50%;
        margin-left: -300px;
        margin-top: -250px;
    }

    100% {
        opacity: 1;
        transform: scale(0.7);
        left: 200px;
        bottom: 100px;
        top: auto;
        margin-left: 0;
        margin-top: 0;
    }
}

@keyframes showMonitor {

    0%,
    25% {
        opacity: 0;
        transform: translateX(-50%) scale(0.5);
    }

    40% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }

    80% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }

    100% {
        opacity: 1;
        transform: translateX(-50%) scale(0.9);
        top: 50px;
    }
}

@keyframes showSmartphone {

    0%,
    50% {
        opacity: 0;
        transform: scale(0.5);
    }

    65% {
        opacity: 1;
        transform: scale(1);
        right: 50%;
        bottom: 50%;
        margin-right: -150px;
        margin-bottom: -250px;
    }

    80% {
        opacity: 1;
        transform: scale(1);
        right: 50%;
        bottom: 50%;
        margin-right: -150px;
        margin-bottom: -250px;
    }

    100% {
        opacity: 1;
        transform: scale(0.8);
        right: 150px;
        bottom: 100px;
        margin-right: 0;
        margin-bottom: 0;
    }
}












 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    .demomo-body {
      height: 100vh;
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      background-repeat: no-repeat;
      display: flex;
      justify-content: center;
      align-items: center;
      font-family: 'Arial', sans-serif;
      overflow: hidden;
    }

    .demomo-container {
      display: flex;
      flex-direction: column;
      gap: 30px;
      padding: 40px;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border-radius: 20px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }

    .demomo-button {
      padding: 15px 40px;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      border: none;
      border-radius: 10px;
      font-size: 18px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 1px;
      position: relative;
      overflow: hidden;
      min-width: 250px;
      text-align: center;
    }

    .demomo-button::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transition: left 0.5s ease;
    }

    .demomo-button:hover {
      transform: translateY(-5px) scale(1.05);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
      background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    }

    .demomo-button:hover::before {
      left: 100%;
    }

    .demomo-button:active {
      transform: translateY(-2px) scale(1.02);
      transition: all 0.1s ease;
    }

    .demomo-button-primary {
      background: #489e88;
    }

    .demomo-button-primary:hover {
      background: #489e88;
    }

    .demomo-button-secondary {
      background: #489e88;
    }

    .demomo-button-secondary:hover {
      background: linear-gradient(135deg, #44a08d 0%, #4ecdc4 100%);
    }

    .demomo-button-tertiary {
      background: #489e88;
    }

    .demomo-button-tertiary:hover {
      background: linear-gradient(135deg, #44a08d 0%, #4ecdc4 100%);
    }

    @keyframes demomo-fadeIn {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .demomo-container {
      animation: demomo-fadeIn 0.8s ease-out;
    }

    .demomo-button:nth-child(1) {
      animation: demomo-fadeIn 0.8s ease-out 0.1s both;
    }

    .demomo-button:nth-child(2) {
      animation: demomo-fadeIn 0.8s ease-out 0.2s both;
    }

    .demomo-button:nth-child(3) {
      animation: demomo-fadeIn 0.8s ease-out 0.3s both;
    }

    .demomo-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.3);
      z-index: -1;
    }

    .white {
      color: white;
    }

    .logo-container {
      text-align: center;
      margin-bottom: 2rem;
    }

    .logo-img {
      max-width: 150px;
      height: auto;
    }
    .hom{
      color: white;
      text-decoration: none;
      text-align: center;
      border: 1px solid white;
      padding: 10px 20px;
    }