:root {
  --body-bg-color: #ffffff;
  --body-text-color: #555;
  --heading-color: #222222;
  --hero-gradient1: #168295;
  --hero-gradient2: #0b5e3a;
  --footer-bg-color: #0d0d0d;
  --link-color: #d469e2;
  --header-bg-color: #212121;
  --font-family: system-ui;
  --nav-link-color: #ffffff;
  --footer-text-color: #ffffff;
  --header-text-color: #ffffffff;
}
html {
  overflow-x: hidden;
}
body {
  background-color: var(--body-bg-color);
  color: var(--body-text-color) !important;
  font-family: var(--font-family);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1 {
  font-size: clamp(2rem, 4vw, 2.5rem) !important;
}
h2 {
  font-size: clamp(1.6rem, 3vw, 2rem) !important;
}
h3 {
  font-size: clamp(1.4rem, 3vw, 1.7rem) !important;
}
p {
  margin-bottom: 0.5rem !important;
}

section {
  padding: 15px 0;
  scroll-margin-top: 70px;
}

h2,
h3 {
  color: var(--heading-color) !important;
}

.content-area a {
  color: var(--link-color) !important;
  text-decoration: none !important;
}

.content-area a:hover {
  color: var(--link-color) !important;
  opacity: 0.8;
}

.sidebar-page-list {
  padding: 0;
  margin: 0;
  margin-bottom: 17px;
  width: 279px;
}

.sidebar-page-list li {
  list-style-type: disc;
  list-style-position: inside;
  color: var(--heading-color);
}

.sidebar-page-list li::marker {
  color: var(--link-color);
  font-size: 1.2em;
}
.sidebar-page-list li:last-child {
  border-bottom: none;
}

.sidebar-page-list li a {
  padding: 12px 0;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  color: var(--link-color);
}

.sidebar-page-list li a:hover {
  padding-left: 11px;
}
.twitter-tweet {
  width: 279px !important;
}

.x {
  display: flex;
  justify-content: center;
}
.error_page {
  min-height: 70vh;
}

.footer {
  background-color: var(--footer-bg-color);
  color: var(--footer-text-color);
}

.footer a {
  text-decoration: none;
  color: var(--link-color) !important;
}
.footer a:hover {
  color: var(--link-color) !important;
  opacity: 0.8;
}

.navbar {
  background-color: transparent !important;
  transition: background-color 0.4s ease, box-shadow 0.3s ease;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;
}
.navbar.scrolled {
  background-color: var(--header-bg-color) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-section {
  padding: 135px 0 50px;
  position: relative;
  overflow: hidden;
  color: var(--header-text-color);
}

.hero-section.with-bg {
  background-image: url("/images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-section.with-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgb(0, 0, 0));
  opacity: 0.5;
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 77px 0;
  }
}
.navbar-light .navbar-nav .nav-link {
  color: var(--nav-link-color, #141414) !important;
}

.navbar-light .navbar-nav .nav-link.active {
  color: var(--link-color) !important;
  font-weight: bold;
}
/* Mobile nav */
@media (max-width: 1199.98px) {
  .navbar-collapse {
    position: fixed;
    top: 61px;
    left: 15px;
    right: 15px;
    background-color: color-mix(
      in srgb,
      var(--header-bg-color) 65%,
      transparent
    );
    backdrop-filter: blur(12px);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    padding: 15px;
    margin: 0;
  }

  .navbar-nav {
    width: 100%;
  }

  .navbar-nav .nav-item {
    margin: 7px 0;
  }

  .navbar-nav .nav-item:hover {
    transform: translateY(-1px);
  }

  .navbar-nav .nav-link {
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: none;
    display: block;
    padding: 0;
  }

  .navbar-toggler {
    z-index: 10000;
    position: relative;
    border: var(--bs-border-width) solid var(--nav-link-color, #141414) !important;
  }
}

.custom-dropdown {
  border: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  min-width: 220px;
  background: color-mix(
    in srgb,
    var(--header-bg-color) 65%,
    transparent
  ) !important;
  backdrop-filter: blur(12px);
}

.custom-dropdown .dropdown-item {
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  color: var(--nav-link-color, #141414) !important;
  font-weight: 500;
  border-radius: 0;
  text-wrap: wrap;
}
.dropdown-menu {
  display: none;
}

.custom-dropdown .dropdown-item:hover {
  color: #fff;
  background: color-mix(
    in srgb,
    var(--header-bg-color) 95%,
    transparent
  ) !important;
}
.nav-item.dropdown > .nav-link {
  display: flex;
  align-items: center;
}

.nav-item.dropdown > .nav-link .arrow {
  position: relative;
  margin-left: auto;
  border: solid var(--nav-link-color, #141414);
  border-width: 0 2px 2px 0;
  padding: 3px;
  transform: rotate(45deg);
  transition: transform 0.25s;
}

.dropdown.open .dropdown-menu {
  display: block;
}

@media (min-width: 1200px) {
  .nav-item.dropdown {
    position: relative;
  }
  .nav-item.dropdown > .nav-link .arrow {
    margin-left: 7px;
  }
  .custom-dropdown.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0;
    z-index: 1000;
  }

  .nav-item.dropdown:hover > .nav-link .arrow {
    transform: rotate(-135deg);
  }
  .nav-item.dropdown:hover > .dropdown-menu {
    display: block !important;
  }
}
@media (max-width: 1199px) {
  .nav-item.dropdown > .nav-link .arrow {
    padding: 4px;
  }
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.9)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--link-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}
.scroll-top i {
  font-size: 24px;
  color: var(--footer-bg-color);
  line-height: 0;
}
.scroll-top:hover {
  background-color: color-mix(in srgb, var(--link-color), transparent 20%);
  color: var(--footer-bg-color);
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

.luxury-heading {
  position: relative;
  margin: 0 auto;
  padding: 1rem 0;
}

.luxury-heading h2 {
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
  color: #111;
  position: relative;
  display: inline-block;
}

/* Elegant purple underline with glow */
.luxury-heading h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(128, 90, 213, 0.3),
    #805ad5,
    rgba(128, 90, 213, 0.3)
  );
  border-radius: 10px;
  box-shadow: 0 0 18px rgba(128, 90, 213, 0.45);
}

/* Luxury paragraph styling */
.luxury-heading p {
  font-size: 1.05rem;
  line-height: 1.9;
  margin: 1rem auto 0;
  font-weight: 300;
}

/* Subtle glass / modern feel */
.luxury-heading::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top,
    rgba(128, 90, 213, 0.06),
    transparent 70%
  );
  z-index: -1;
}

/* Hover interaction (very subtle, premium) */
.luxury-heading:hover h2 {
  transform: translateY(-2px);
}

.luxury-heading h2,
.luxury-heading h2::after {
  transition: all 0.4s ease;
}
.box {
  position: relative;
  height: 100%;
  padding: 2rem 21px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #faf8ff);
  border: 1px solid rgba(128, 90, 213, 0.12);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: all 0.45s ease;
  overflow: hidden;
}

/* Premium top accent line */
.box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #805ad5, transparent);
  opacity: 0.6;
}

/* Soft glow on hover */
.box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top left,
    rgba(128, 90, 213, 0.18),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.45s ease;
  z-index: 0;
}

.box:hover::after {
  opacity: 1;
}

.box:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(128, 90, 213, 0.18),
    0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Title */
.box h3 {
  position: relative;
  z-index: 1;
  font-size: 1.45rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 1rem;
  letter-spacing: -0.015em;
}

/* Subtle underline */
.box h3::after {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  margin-top: 10px;
  border-radius: 3px;
  background: linear-gradient(90deg, #805ad5, #b794f4);
}

/* Text */
.box p {
  position: relative;
  z-index: 1;
  color: #555;
  font-weight: 300;
}
.title {
  position: relative;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #111;
  padding-bottom: 18px;
}

/* Architectural underline */
.title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 64px;
  height: 3px;
  border-radius: 4px;
  background: linear-gradient(90deg, #805ad5, #b794f4);
  box-shadow: 0 0 16px rgba(128, 90, 213, 0.4);
}

/* Subtle left accent line */
.title::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 60%;
  border-radius: 4px;
  background: linear-gradient(180deg, #805ad5, transparent);
  opacity: 0.8;
}

/* Hover polish */
.title {
  transition: transform 0.4s ease;
}

.title:hover {
  transform: translateY(-3px);
}
.cust-img {
  border-radius: 21px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12),
    0 10px 25px rgba(128, 90, 213, 0.18);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

/* Premium hover lift */
.cust-img:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 40px 80px rgba(128, 90, 213, 0.28),
    0 20px 40px rgba(0, 0, 0, 0.18);
}
.flex-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 25px;
  list-style-position: inside;
}
.cust-bg {
  position: relative;
  padding: 30px 21px;
  background: linear-gradient(180deg, #faf9ff 0%, #ffffff 100%);
  border-radius: 28px;
  margin: 30px auto;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

/* Soft luxury glow */
.cust-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(128, 90, 213, 0.12),
    transparent 65%
  );
  pointer-events: none;
}

/* Headings */
.cust-bg h2 {
  font-size: clamp(2.3rem, 4vw, 3.1rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #111;
  margin-bottom: 1.5rem;
}

.cust-bg h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: #111;
  position: relative;
  padding-left: 18px;
}

/* Architectural left line for h3 */
.cust-bg h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  width: 4px;
  height: 80%;
  border-radius: 4px;
  background: linear-gradient(180deg, #805ad5, transparent);
}

/* Paragraphs */
.cust-bg p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 1.2rem;
  max-width: 900px;
}

/* Luxury list */
.cust-bg ul {
  list-style: none;
  padding-left: 0;
  margin: 2rem 0 3rem;
}

.cust-bg ul li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 1rem;
  font-size: 1.02rem;
  color: #444;
  line-height: 1.7;
}

/* Custom bullet */
.cust-bg ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #805ad5, #b794f4);
  box-shadow: 0 0 10px rgba(128, 90, 213, 0.4);
}
.lux-newsletter {
  position: relative;
  padding: 2.4rem 21px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #f8f6ff);
  border: 1px solid rgba(128, 90, 213, 0.18);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  width: 279px;
  margin-bottom: 15px;
}

/* Soft purple glow */
.lux-newsletter::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(128, 90, 213, 0.16),
    transparent 70%
  );
  pointer-events: none;
}

/* Title */
.lux-newsletter h4 {
  font-size: 1.35rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 0.6rem;
  letter-spacing: -0.015em;
}

/* Description */
.lux-newsletter p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.4rem;
}

/* Form */
.lux-newsletter form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

/* Input */
.lux-newsletter input {
  padding: 0.9rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  font-size: 0.95rem;
  outline: none;
  transition: all 0.35s ease;
}

.lux-newsletter input:focus {
  border-color: #805ad5;
  box-shadow: 0 0 0 3px rgba(128, 90, 213, 0.18);
}

/* Button */
.lux-newsletter button {
  padding: 0.9rem 1rem;
  border-radius: 14px;
  border: none;
  background: linear-gradient(135deg, #805ad5, #b794f4);
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.lux-newsletter button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(128, 90, 213, 0.35);
}

/* Note */
.lux-note {
  display: block;
  margin-top: 0.9rem;
  font-size: 0.75rem;
  color: #777;
}
.lux-footer-contact-block {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 992px) {
  .lux-footer-contact-block {
    align-items: flex-end;
  }
}

.lux-footer-email {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}
.lux-footer {
  position: relative;
  padding: 4.5rem 0 1.5rem;
  background: linear-gradient(180deg, #0f0f14 0%, #0b0b10 100%);
  color: rgba(255, 255, 255, 0.82);
  overflow: hidden;
}

/* soft purple glow + texture */
.lux-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(128, 90, 213, 0.22), transparent 55%),
    radial-gradient(circle at 90% 30%, rgba(183, 148, 244, 0.16), transparent 55%);
  pointer-events: none;
}

.lux-footer-top {
  position: relative;
  z-index: 1;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lux-footer-logo {
  filter: drop-shadow(0 10px 25px rgba(128, 90, 213, 0.25));
  opacity: 0.95;
}

.lux-footer-title {
  color: #fff;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 0.9rem;
  position: relative;
}

.lux-footer-title::after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #805ad5, #b794f4);
  box-shadow: 0 0 16px rgba(128, 90, 213, 0.35);
}

.lux-footer-text {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  font-size: 0.95rem;
}

.lux-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lux-footer-links li {
  margin: 0.55rem 0;
}

.lux-footer-links a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
  display: inline-block;
}

.lux-footer-links a:hover {
  color: #fff;
  transform: translateX(3px);
}

/* newsletter card */
.lux-footer-card {
  padding: 1.6rem 1.4rem;
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(128, 90, 213, 0.18);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
}

.lux-footer-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.8rem;
}

.lux-footer-form input {
  padding: 0.9rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  outline: none;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.lux-footer-form input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.lux-footer-form input:focus {
  border-color: rgba(128, 90, 213, 0.8);
  box-shadow: 0 0 0 3px rgba(128, 90, 213, 0.25);
}

.lux-footer-form button {
  padding: 0.9rem 1.05rem;
  border-radius: 14px;
  border: none;
  color: #fff;
  font-weight: 600;
  background: linear-gradient(135deg, #805ad5, #b794f4);
  box-shadow: 0 12px 30px rgba(128, 90, 213, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.lux-footer-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(128, 90, 213, 0.45);
}

.lux-footer-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.lux-footer-social {
  display: flex;
  gap: 0.65rem;
}

.lux-footer-social span {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.lux-footer-social span:hover {
  transform: translateY(-2px);
  background: rgba(128, 90, 213, 0.18);
  border-color: rgba(128, 90, 213, 0.35);
}

.lux-footer-bottom {
  position: relative;
  z-index: 1;
  padding-top: 1.3rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

.lux-footer-mini {
  opacity: 0.75;
}

/* Mobile button full width (nice touch) */
@media (max-width: 576px) {
  .lux-footer-form {
    grid-template-columns: 1fr;
  }
}
.lux-404 {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) 1.5rem;
  max-width: 900px;
  margin: 5rem auto;
  border-radius: 32px;
  background: linear-gradient(180deg, #ffffff, #f8f6ff);
  box-shadow:
    0 50px 100px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* soft purple glow */
.lux-404::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top,
    rgba(128, 90, 213, 0.18),
    transparent 65%
  );
  pointer-events: none;
}

/* icon */
.lux-404-icon {
  font-size: 3.2rem;
  color: #805ad5;
  margin-bottom: 1.4rem;
  filter: drop-shadow(0 10px 20px rgba(128, 90, 213, 0.35));
}

/* heading */
.lux-404 h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: #111;
}

/* text */
.lux-404 p {
  font-size: 1.1rem;
  color: #555;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

/* actions */
.lux-404-actions {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* buttons */
.lux-btn {
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.35s ease;
}

.lux-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #805ad5, #b794f4);
  box-shadow: 0 14px 30px rgba(128, 90, 213, 0.4);
}

.lux-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 45px rgba(128, 90, 213, 0.5);
}

.lux-btn-outline {
  color: #805ad5;
  border: 1px solid rgba(128, 90, 213, 0.35);
  background: transparent;
}

.lux-btn-outline:hover {
  background: rgba(128, 90, 213, 0.08);
  transform: translateY(-2px);
}

/* decorative stars */
.lux-404-decor {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 3rem;
}

.lux-404-decor span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #805ad5, #b794f4);
  box-shadow: 0 0 14px rgba(128, 90, 213, 0.6);
  animation: float 3.5s ease-in-out infinite;
}

.lux-404-decor span:nth-child(2) {
  animation-delay: 0.6s;
  opacity: 0.7;
}

.lux-404-decor span:nth-child(3) {
  animation-delay: 1.2s;
  opacity: 0.5;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
