body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #111;
  color: #fff;
}

.hero {
  position: relative;
  background: url('../images/hero.webp') no-repeat center center/cover;
  height: 30vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* The dark shade */
  z-index: 1;
}

.hero .hero-tbody {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #111;
  color: #fff;
}

.hero {
  position: relative;
  background: url('../images/hero.webp') no-repeat center center/cover;
  height: 30vh; /* Increased to match other pages */
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Dark shade overlay */
  z-index: 1;
}

.hero .hero-text {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}

.hero .hero-text h1 {
  font-size: 3rem; /* Consistent bold heading size */
  margin: 0;
}

.steps {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.step {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  margin-bottom: 60px;
}

.step img {
  max-width: 400px;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.step div {
  flex: 1;
}

.step h2 {
  font-size: 26px;
  margin-bottom: 10px;
  color: #e0e0e0;
}

.step p {
  font-size: 16px;
  color: #ccc;
}

@media screen and (max-width: 768px) {
  .step {
    flex-direction: column;
    text-align: center;
  }

  .step img {
    max-width: 100%;
  }
}

.gallery-item {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease forwards;
  animation-delay: var(--delay, 1s);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
ext {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}


.steps {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.step {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  margin-bottom: 60px;
}

.step img {
  max-width: 400px;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.step div {
  flex: 1;
}

.step h2 {
  font-size: 26px;
  margin-bottom: 10px;
  color: #e0e0e0;
}

.step p {
  font-size: 16px;
  color: #ccc;
}

@media screen and (max-width: 768px) {
  .step {
    flex-direction: column;
    text-align: center;
  }

  .step img {
    max-width: 100%;
  }
}

.gallery-item {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease forwards;
  animation-delay: var(--delay, 1s);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
