


body {
  margin: 0;
  background: #fff;
  overflow-x: hidden;
  font-family: 'Roboto', sans-serif;
}



#s4l-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  width: 100vw;
  height: 200vh; /* full 2-row layout */
  padding: 40px;
  gap: 40px;
  box-sizing: border-box;
}

.category-card {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s ease;
  border-radius: 8px;
  background: #fff;
  overflow: hidden; /* keep hover clean */
}

.category-card img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  display: block;
  margin: auto;
  border-radius: 8px;
}


.category-card:hover {
  transform: scale(0.94);
}


/* Responsive */
@media (max-width: 1024px) {
  #s4l-categories {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    height: auto;
    padding: 20px;
    gap: 20px;
  }
}

@media (max-width: 600px) {
  #s4l-categories {
    grid-template-columns: 1fr;
  }
}




/* --- HERO SECTION (MATCH ELEMENTOR) --- */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 80vh;
  background-color: #0B6B6A;
  color: #fff;
  padding: 60px 20px 100px 20px;
}

.hero img {
  width: 120px;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 700;
  margin: 0;
}

.hero h2 {
  font-size: 1.8rem;
  margin: 5px 0;
  font-weight: 400;
}

.hero p {
  font-size: 1.1rem;
  color: #e8e8e8;
  margin: 5px 0 35px;
  max-width: 500px;
}

.btn-cta {
  display: inline-block;
  padding: 14px 40px;
  background-color: #f28b2d;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  background-color: #e0781c;
  transform: translateY(-2px);
}

