/* Hero section */
.hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../assets/bg.jpg");
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  padding: 2rem;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-buttons a {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 1.5rem;
  border-radius: 20px;
  text-decoration: none;
  margin-right: 1rem;
  margin-top: 1rem;
  font-weight: bold;
  font-size: 1rem;
}

.whatsapp-button {
  background-color: white;
  color: black;
}

.gmail-button {
  background-color: #ffb800;
  color: black;
}

.hiab-carousel {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  overflow: hidden;
  margin-bottom: 80px;
}

.hiab-carousel img {
  position: absolute;
  height: 100%;
  animation: carousel 20s linear infinite;
}

@keyframes carousel {
  0% {
    left: -10%;
  }

  100% {
    left: 100%;
  }
}

.panel {
  height: 80px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  /* Space between text elements */
}

.panel-text {
  font-size: 19px;
  color: white;
}

.get-started-button {
		background-color: #FFB800;
		color: #000;
		font-size: 1.2rem;
		padding: 1rem 2rem;
		margin-right: 0;
	}

	.hero-buttons svg {
		margin-right: 0.5rem;
	}

