:root {
  --bs-primary: #19175a;
  --bs-primary-rgb: 25, 23, 90;
}

html {
  scroll-behavior: smooth;
}
.zalando-sans-expanded {
  font-family: "Zalando Sans Expanded", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
body {
  font-family: "Zalando Sans Expanded", Arial, sans-serif;
  background-color: #f4f4f4;
  margin: 0px;
  padding-top: 30px;
}

.hero {
  border-radius: 24px 24px 24px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  padding: 80px 100px 80px 100px;
  width: auto;
  height: auto;
  margin: 24px;
}
.hero-section {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("img/bghero-img-1.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  height: 120vh;
  display: flex;

  align-items: center;

  color: white;
  text-align: center;
  padding: 100px 0;
}
.navbar {
  padding-top: 0;
  padding-bottom: 0;
  position: fixed;
  color: var(--primary-color);
  top: 0;
  width: 100%;
  height: 50px;
  z-index: 1000;
  transition: top 0.3s;
}
.navbar a {
  color: black;
  text-decoration: none;
  margin: 0 10px;
}
.section-padding {
  padding: 80px 20px 80px 20px;
  @media (max-width: 320px) {
    .about {
      padding-left: 20px;
      padding-right: 20px;
    }
  }
}

/* Floating WhatsApp Button */
.floating-wa {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  animation: wa-pulse 2s infinite;
  transition: transform 0.2s;
}

.floating-wa:hover {
  transform: scale(1.05);
}

@keyframes wa-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
  }
}

@media (max-width: 768px) {
  .floating-wa {
    bottom: 15px;
    right: 15px;
    width: 55px;
    height: 55px;
    font-size: 26px;
  }
}
