body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #111;
}

/* NAV */
.header {
  display: flex;
  justify-content: space-between;
  padding: 20px 10%;
}

nav a {
  margin-left: 25px;
  text-decoration: none;
  color: #333;
}

/* HERO */
.services-hero {
  text-align: center;
  padding: 100px 20px;
}

.services-hero h1 {
  font-size: 48px;
}

.services-hero span {
  background: linear-gradient(90deg, #6a5cff, #4da6ff);
  -webkit-background-clip: text;
  color: transparent;
}

/* HORIZONTAL SCROLL */
.services-scroll {
  padding: 60px 0;
  overflow-x: auto;
}

.scroll-container {
  display: flex;
  gap: 30px;
  padding: 0 10%;
}

.service-card {
  min-width: 280px;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  transition: 0.4s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.service-card img {
  width: 100%;
  border-radius: 15px;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.05);
}

/* EXPERIENCE */
.experience {
  display: flex;
  padding: 120px 10%;
  gap: 80px;
}

.sticky-left {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.step {
  background: #f5f7ff;
  padding: 30px;
  border-radius: 15px;
}

/* INTERACTIVE GRID */
.interactive-services {
  padding: 100px 10%;
  text-align: center;
}

.hover-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
  margin-top: 40px;
}

.hover-box {
  padding: 40px;
  border-radius: 20px;
  background: #f5f7ff;
  transition: 0.4s;
}

.hover-box:hover {
  background: linear-gradient(135deg, #6a5cff, #4da6ff);
  color: white;
  transform: scale(1.1);
}

/* CTA */
.cta {
  text-align: center;
  padding: 120px 20px;
}

.cta button {
  padding: 12px 30px;
  border: none;
  background: linear-gradient(90deg, #6a5cff, #4da6ff);
  color: white;
  border-radius: 25px;
}

.header {
  display:flex;
  justify-content:space-between;
  padding:20px 60px;
  align-items:center;
}

.header img {
  width:140px;
}

nav a {
  margin-left:25px;
  text-decoration:none;
  color:#444;
}