:root {
  --primary: #ff6600;
  --dark: #0a0a0a;
  --light: #fff;
  --font-primary: 'Sharp Grotesk', 'Inter', sans-serif;
  
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  background: var(--dark);
  color: var(--light);
  line-height: 1.6;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo img {
  height: 50px;
}

.nav a {
  color: var(--light);
  text-decoration: none;
  margin-left: 1.5rem;
  font-weight: 700;
}

.btn-primary {
  background: var(--primary);
  color: var(--light);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #ff8533;
}

/* Hero */
.hero {
  position: relative;
  text-align: center;
  padding: 6rem 2rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 90%;
  background-size: cover;
  background-position: center;
  z-index: -1;
  filter: brightness(0.4);
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 900;
}

.hero-content p {
  font-size: 1.25rem;
  margin: 1rem 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta {
  display: inline-block;
  background: var(--primary);
  color: var(--light);
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 700;
  transition: transform 0.3s ease;
}

.cta:hover {
  transform: translateY(-3px);
  background: #ff8533;
}
.slide-track img {
  width: 100px;
  height: 100px;
  animation: scroll 20s linear infinite;
}
.slide-track {
  width: 100%;
  display: flex;
  gap: 3em;
  overflow: hidden;
}

.slider {
  margin-top: 10px; 
  padding: 1em 2em;
}

@keyframes scroll {
  0% {transform: translateX(0);}
  100% {transform: translatex(-1000%)}
}

/* Services */
.services {
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: auto;
}

.services h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.service {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
}

.service img {
  width: 45%;
  border-radius: 8px;
  margin-right: 2rem;
}

.service.reverse {
  flex-direction: row-reverse;
}

.service.reverse img {
  margin-right: 0;
  margin-left: 2rem;
}

.service h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

/* Parallax */
.parallax {
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 6rem 2rem;
  text-align: center;
}

.parallax::before {
  content: "";
  position: absolute;
  top:0; left:0; width:100%; height:100%;
  background: rgba(0,0,0,0.5);
}

.parallax-content {
  position: relative;
  z-index: 2;
}

.parallax-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Footer */
.footer {
  text-align: center;
  padding: 1rem;
  background: #111;
  color: #aaa;
  font-size: 0.9rem;
}