:root {
  --brand-orange: rgb(255, 165, 0);
  --light-orange: #fff5e6;
}

.page-hero {
  position: relative;
  height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
}

.services-hero {
  background: url('../images/trade5.jpg') center/cover no-repeat;
}

.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 165, 0, 0.35); 
  z-index: 1;
}

.page-hero h1 {
  font-size: 46px;
  position: relative;
  z-index: 2;
  text-shadow: 2px 4px 10px rgba(0,0,0,0.5);
}

.page-hero p {
  position: relative;
  z-index: 2;
  font-size: 18px;
  max-width: 800px;
}

.services-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}
.services-section p{
  color: #000000;
}

.services-intro {
  text-align: center;
  margin-bottom: 50px;
}

.services-intro h2 {
  color: var(--brand-orange);
  font-size: 32px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-box {
  background-color: var(--light-orange);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
    color: #000000
}

.service-box i {
  font-size: 40px;
  color: var(--brand-orange);
  margin-bottom: 20px;
}

.service-box h3 {
  color: var(--brand-orange);
  margin-bottom: 15px;
}

.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 165, 0, 0.2);
}


/* Responsive */
@media (max-width: 900px) {
  .page-hero h1 { font-size: 34px; }
}