body {
    margin: 0;
    font-family: sans-serif;
    background: #111;
    color: #eee;
    text-align: center;
    overflow-x: hidden;
}

nav {
    background: #000;
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 20;
}

nav a {
    color: #eee;
    margin: 0 1rem;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    color: #ff9800;
}

header {
    background: #000;
    padding: 2rem 1rem;
    position: relative;
    z-index: 10;
}

header img {
    height: 150px;
}

h1 {
    margin-top: 0.5rem;
    font-size: 2rem;
}

.carousel-tile {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px;
}

.carousel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fff;
  text-align: left;
}

.carousel-overlay h2 {
  margin: 0;
  font-size: 1.25rem;
}

.carousel-overlay p {
  margin: 0.5rem 0 0;
  font-size: 0.95rem;
  color: #ddd;
}

.carousel .slick-slide {
    padding: 0 10px;
}

.carousel .slick-list {
    margin: 0 -10px;
}

.about,
.team,
.contact {
    max-width: 900px;
    margin: 3rem auto;
    padding: 2rem;
    background: #1a1a1a;
    border-radius: 12px;
    text-align: left;
    position: relative;
    z-index: 10;
}

.about h2,
.team h2,
.contact h2 {
    text-align: center;
    font-size: 2rem;
}

.about ul {
    list-style: none;
    padding: 0;
}

.about li {
    margin: 1rem 0;
    font-size: 1.1rem;
}

.about i {
    color: #ff9800;
    margin-right: 0.5rem;
}

.testimonials {
    background: #222;
    padding: 2rem;
    margin: 2rem 0;
    position: relative;
    z-index: 10;
}

.testimonials blockquote {
    font-style: italic;
    font-size: 1.2rem;
    margin: 1rem auto;
    max-width: 600px;
}

.cta {
    margin: 2rem;
    position: relative;
    z-index: 10;
}

.cta a {
    background: #ff9800;
    color: #000;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: bold;
    display: inline-block;
    text-decoration: none;
}

canvas#bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    z-index: 0;
    image-rendering: pixelated;
}

footer {
    padding: 2rem 1rem;
    font-size: 0.9rem;
    background: #000;
    position: relative;
    z-index: 10;
}