  
  /* 🎯 Hero Section */
.signage-hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('assets/images/Signage Lucprosoft service.jpg') center/cover no-repeat;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 20px;
  animation: fadeInHero 1.2s ease-in-out;
}

.signage-hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.signage-hero-content p {
  font-size: 1.2rem;
  opacity: 0.9;
}
  /* 🌐 Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
  color: #222;
  line-height: 1.6;
}

h1, h2, h3 {
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
}

.btn-primary {
  display: inline-block;
  padding: 14px 28px;
  background: #ff3e3e;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s ease;
  margin-top: 20px;
}

.btn-primary:hover {
  background: #c70039;
}


/* 🛠️ Services */
.signage-services {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
}

.signage-services h2 {
  font-size: 2rem;
  color: #102542;
  margin-bottom: 50px;
}

.signage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.signage-card {
  background: #fefefe;
  border-radius: 14px;
  padding: 40px 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
  text-align: center;
}

.signage-card i {
  font-size: 40px;
  color: #ff3e3e;
  margin-bottom: 16px;
}

.signage-card:hover {
  transform: translateY(-10px);
}

/* ⭐ Benefits */
.signage-benefits {
  background: #f4f6f9;
  padding: 70px 20px;
  text-align: center;
}

.signage-benefits h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #102542;
}

.signage-benefits ul {
  list-style: none;
  max-width: 800px;
  margin: auto;
  padding: 0;
  text-align: left;
  line-height: 1.8;
}

.signage-benefits li {
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.signage-benefits i {
  color: #27ae60;
  margin-right: 10px;
}

/* 📬 CTA */
.signage-cta {
  background: linear-gradient(to right, #ff3e3e, #ff7676);
  color: white;
  text-align: center;
  padding: 70px 20px;
}

.signage-cta h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.signage-cta p {
  font-size: 1.1rem;
}

/* 🎬 Animation */
@keyframes fadeInHero {
  0% {
    opacity: 0;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .signage-hero-content h1 {
    font-size: 2rem;
  }

  .signage-card {
    padding: 30px 15px;
  }

  .btn-primary {
    width: 100%;
    max-width: 300px;
  }
}
