.hero {
  background: linear-gradient(135deg, #0d6efd, #0a58ca);
  padding: 80px;
  text-align: center;
  color: white;
}

.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  padding: 12px 15px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  z-index: 999;
}
/* NAVBAR STICKY EFFECT */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  transition: all 0.3s ease;
}

/* SHADOW ON SCROLL */
.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* ACTIVE LINK */
.nav-link.active {
  color: #00ff88 !important;
  font-weight: bold;
}

/* HAMBURGER CUSTOM STYLE */
.navbar-toggler {
  border: none;
}

/* LOGO STYLE */
.logo-icon {
  background: #00ff88;
  color: #000;
  padding: 5px 10px;
  border-radius: 6px;
  font-weight: bold;
}
/* AREA NAV WRAPPER */
.area-nav {
  background: linear-gradient(180deg, #f8f9fa, #ffffff);
  border-bottom: 1px solid #e9ecef;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 999;
}

/* TITLE */
.area-title {
  font-size: 14px;
  font-weight: 600;
  color: #495057;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* SCROLL AREA */
.area-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 5px;
  scrollbar-width: none;
}

.area-scroll::-webkit-scrollbar {
  display: none;
}

/* LINKS (PRO LOOK) */
.area-link {
  flex: 0 0 auto;
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;

  color: #495057;
  background: #ffffff;
  border: 1px solid #dee2e6;

  transition: all 0.25s ease;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

/* HOVER EFFECT */
.area-link:hover {
  background: #198754;
  color: #fff;
  border-color: #198754;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(25,135,84,0.25);
}

/* ACTIVE STATE (OPTIONAL) */
.area-link.active {
  background: #198754;
  color: #fff;
  border-color: #198754;
}