body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif; /* Changed font */
  }

  .navbar {
    background: transparent !important;
    position: fixed;
    width: 100%;
    z-index: 1000;
  }

  .navbar-brand img {
    height: 35px;
    width: auto;
  }

  /* Adjusted the font size, color, and hover effects for nav links */
  .navbar-nav .nav-link {
    font-size: 1.1rem; /* Bigger font size */
    color: rgba(255, 255, 255, 0.8); /* Dirty white color */
    transition: color 0.3s ease-in-out;
  }

  .navbar-nav .nav-link:hover {
    color: #ffffff; /* Bright white on hover */
  }

  /* Active link underline */
  .navbar-nav .nav-link.active {
    color: #ffffff;
    text-decoration: underline;
    text-decoration-color: #232f7a; /* Underline in custom color */
    text-decoration-thickness: bold;
  }

  .carousel-item {
    position: relative;
  }

  .carousel-item img {
    object-fit: cover;
    height: 100vh;
    width: 100%;
  }

  .carousel-caption {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
  }

  .carousel-caption h5 {
    font-size: 3rem;
    font-weight: bold;
  }

  .carousel-caption p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #961a20;
    opacity: 0.25; /* 70% transparency */
    z-index: 1;
  }

  .carousel-caption {
    z-index: 2;
  }

  .btn-outline-primary {
    border-color: white;
    color: white;
  }

  .btn-outline-primary:hover {
    background-color: #232f7a;
    border-color: #232f7a;
    color: white;
  }

  /* Style for circular carousel indicators */
  .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: white;
    opacity: 0.7;
  }

  .carousel-indicators .active {
    background-color: #232f7a;
    opacity: 1;
  }

  .hablamos{
    font-style: italic;
    font-weight: bold;
  }