body {
      margin: 0;
      padding: 0;
background: linear-gradient(135deg, #000000, #001f3f);
      color: #fff;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .navbar {
      padding: 1rem 2rem;
    }

    .navbar-brand img {
      max-height: 100px;
    }

    /* Efecto al pasar el cursor por los enlaces del menú */
.nav-link {
  position: relative;
  color: #ffffff !important;
  font-weight: 500;
  margin-right: 1rem;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background-color: #afbb00;
  transition: width 0.3s ease-in-out;
}

.nav-link:hover {
  color: #afbb00 !important;
}

.nav-link:hover::after {
  width: 100%;
}

/* También agregamos un suave efecto al botón JOIN US */
.btn-join {
  background-color: #ffffff;
  color: rgb(0, 0, 0);
  font-weight: 600;
  border-radius: 10px;
  padding: 8px 20px;
  transition: all 0.3s ease;
}

.btn-join:hover {
  background-color: #afbb00;
  color: #000;
  box-shadow: 0 0 15px rgba(175, 187, 0, 0.6);
}


    /* Carousel Styles */
    .carousel {
      max-width: 100%;
      overflow: hidden;
      margin: 0 auto;
    }

    .carousel video {
      width: 100%;
      height: auto;
      object-fit: cover;
    }

    .carousel .slides {
      display: flex;
      width: 100%;
      transition: transform 1s ease-in-out;
    }

    .carousel .slide {
      flex-shrink: 0;
      width: 100%;
    }
        /* Contenedor vidrioso para ambos textos (izquierda y derecha) */
    .glass-box {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
      color: #fff;
      height: 100%;
      min-height: 200px; /* Esto asegura que el contenido no se vea comprimido */
    }
    /* Hover effect */
.hover-effect:hover {
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
}

    /* Asegura que los contenedores estén equilibrados en tamaño */
    @media (min-width: 992px) {
      .col-md-5 {
        max-width: 48%; /* Ambos contenedores tendrán el mismo ancho */
      }
    }

    @media (max-width: 992px) {
      /* Para pantallas más pequeñas, los contenedores se alinearán en columna */
      .row {
        flex-direction: column;
      }
      .col-md-5 {
        max-width: 100%;
        margin-bottom: 20px; /* Espaciado entre los dos bloques */
      }
    }

    /* Animaciones suaves */
    [data-aos="fade-up"] {
      opacity: 0;
      transform: translateY(50px);
      transition: opacity 0.6s, transform 0.6s;
    }

    [data-aos="fade-up"].aos-animate {
      opacity: 1;
      transform: translateY(0);
    }