.hero-video {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  background: rgba(0,0,0,0.4);
  padding: 20px;
  border-radius: 10px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 0; /* remove outer padding */
}

.showcase-item {
  background: #f5f5f5;
  border-radius: 12px;
  height: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.showcase-item img {
  width: 100%;   /* fill the container width */
  height: auto;  /* keep aspect ratio */
  object-fit: contain;
  padding: 0;    /* remove inner padding */
}

.showcase-item img:hover {
  transform: scale(1.05);   /* subtle zoom on hover */
}

/* Mobile adjustment */
@media (max-width: 600px) {
  .showcase-item {
    height: 240px;
  }
}





.steps {
  display: flex;
  justify-content: space-around;
  padding: 40px 20px;
}

.step {
  max-width: 250px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: center;   /* ensures step content is centered */
}


.cta-btn {
  display: inline-block;
  margin: 10px;
  padding: 10px 20px;
  background: #111;
  color: white;
  border-radius: 5px;
  text-decoration: none;
}
.contact-engraving {
  padding: 50px 20px;
  text-align: center;
}

.contact-card {
  max-width: 400px;
  margin: 30px auto 0;
  background: #f9f9f9;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.contact-item {
  margin-bottom: 20px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item strong {
  display: block;
  margin-bottom: 5px;
  font-size: 1rem;
}

.contact-item a {
  color: #111;
  text-decoration: none;
  font-size: 1.05rem;
}

.contact-item a:hover {
  text-decoration: underline;
}
.showcase {
  text-align: center; /* center the heading */
  padding: 50px 20px;
}

.showcase h2 {
  font-size: 2rem;
  margin-bottom: 30px;
   text-decoration: underline;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  justify-content: center; /* center the grid items horizontally */
  padding: 0;
}
.how-it-works {
  text-align: center; /* center heading */
  padding: 50px 20px;
  
}

.how-it-works h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  text-decoration: underline;
}


