* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #0c0c0c;
  color: #fff;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  background: rgba(255, 255, 255, 0.05);
  padding: 12px 25px;
  border-radius: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(14px);
  box-shadow: 0 0 25px rgba(0,0,0,0.35);
  z-index: 1000;
}

.logo {
  font-size: 24px;
  font-weight: 600;
}

.logo span {
  color: #5ae2ff;
}

/* ===== Desktop Links ===== */
.nav {
  display: flex;
  gap: 35px;
}

.nav a {
  text-decoration: none;
  color: #ddd;
  font-size: 18px;
  position: relative;
  transition: .3s ease;
}

.nav a:hover,
.nav a.active {
  color: #5ae2ff;
}

.nav a::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 0;
  background: #5ae2ff;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  transition: .3s;
}

.nav a:hover::after,
.nav a.active::after {
  width: 60%;
}

/* ===== Hamburger ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger div {
  width: 28px;
  height: 3px;
  background: #fff;
  transition: .3s;
}

/* ===== Mobile Menu ===== */
@media (max-width: 780px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    flex-direction: column;
    background: rgba(8, 8, 8, 0.95);
    width: fit-content;
    height: 100vh;
    padding-top: 120px;
    gap: 35px;
    text-align: center;
    transition: 0.4s;
  }
  
  .carousel-item.active {
  margin-bottom: 26px;
}

div#carouselExampleIndicators {
    margin-bottom: 26px;
}

  .nav.open {
    right: 0;
    width: 100%;
  }

  .hamburger {
    display: flex;
  }

  /* Hamburger animation */
  .hamburger.active div:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .hamburger.active div:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active div:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}

.red {
  color: red;
  font-size: 24px;
  font-weight: 600;
  font-family: leelawadee;
}
.logo-my {
  font-size: 24px;
  font-weight: 600;
  font-family: leelawadee;
}