.hero {
    color: white;
    padding: 100px 0px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .logo-form{
    width: 150px;
  }
  .hero__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
  }
  
  .hero__text {
    max-width: 50%;
    animation: fadeIn 2s ease-out;
  }
  
  .hero__title {
    font-size: 58px;
    font-weight: bold;
    animation: slideInFromLeft 1s ease-out;
    color: rgb(94, 19, 141);
    text-transform: uppercase;

  }
  
  .hero__subtitle {
    font-size: 18px;
    margin-top: 20px;
    opacity: 0;
    animation: fadeIn 3s ease-out 0.5s forwards;
    color: #333333;
  }
  
  .hero__buttons {
    margin-top: 40px;
  }
  
  .hero__cta {
    background: linear-gradient(135deg, rgb(94, 19, 141), #0056b3);

    color: white;
    padding: 15px 30px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.5s ease;

  }
  
  .hero__cta:hover {
    background-color: rgb(94, 19, 141);
  }
  
  .hero__image {
    max-width: 40%;
    animation: fadeIn 2s ease-out 1s forwards;
  }
  
  .hero__robot {
    width: 100%;
    animation: floatUp 3s ease-in-out infinite;
  }
  
  @keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  
  @keyframes slideInFromLeft {
    0% {
      transform: translateX(-50%);
    }
    100% {
      transform: translateX(0);
    }
  }
  
  @keyframes floatUp {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
    100% {
      transform: translateY(0);
    }
  }
  
.header__links > li{
    font-weight:600;
}
  .contact-form-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  
  .contact-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
  }
  
  .form__close {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
  }
  
  .form__close img {
    width: 25px;
    height: auto;
  }
  
  .contact-form label {
    display: block;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
  }
  
  .contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
    background-color: #f9f9f9;
  }
  
  .contact-form input:focus, .contact-form textarea:focus {
    border-color: #007BFF;
    outline: none;
  }
  
  .contact-form button {
    padding: 15px 30px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .contact-form button:hover {
    background-color: #0056b3;
  }
  

  @media (max-width: 768px) {
    .hero__content {
      flex-direction: column;
    }
    .hero__title {
        font-size: 50px;
    }
    .hero__text {
      text-align: center;
      max-width: 100%;
    }
  
    .hero__image {
      max-width: 100%;
      margin-top: 30px;
    }
  
    .contact-form {
      width: 90%;
      padding: 20px;
    }
  
    .contact-form input, .contact-form textarea {
      font-size: 14px;
    }
  
    .contact-form button {
      padding: 12px 25px;
    }
  }
  