:root {
  --soil-brown: #311f1a;
  --clay-orange: #d2691e;
  --beige: #f3efe0;
  --accent-yellow: #db981c;
  --overlay-dark: rgba(0, 0, 0, 0.5);
  --brown: #b97926;
  --light-brown:#c99858;
  
}

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--brown);
  color: #2e2e2e;
  box-sizing: border-box;
}

/* === HERO SECTION === */
.hero-static {
  position: relative;
  height: 50vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--soil-brown);
}

.hero-overlay {
  position: relative;
  height: 100%;
  width: 100%;
}

.hero-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-heading {
  position: absolute;
  bottom: 40%;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  background: var(--overlay-dark);
  padding: 1.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.hero-heading h1 {
  font-size: 3rem;
  font-weight: 700;
  margin: 0;
  color: #fff;
}

/* Responsive Hero */
@media (max-width: 768px) {
  .hero-heading h1 {
    font-size: 2.4rem;
  }
}

@media (max-width: 480px) {
  .hero-heading {
    padding: 1rem;
  }

  .hero-heading h1 {
    font-size: 2rem;
  }
}

/* === WIRELESS COMMUNICATION SECTION === */
.wireless-comm {
  background-color: var(--beige);
  padding: 4rem 2rem;
}

.wireless-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.wireless-content {
  flex: 1;
  min-width: 280px;
}

.wireless-content h2 {
  font-size: 2rem;
  color: var(--soil-brown);
  margin-bottom: 1.5rem;
}

.wireless-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 2rem;
  text-align: justify;
}

.wireless-image {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.wireless-image img {
  width: 100%;
  max-width: 700px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Responsive: Stack on smaller screens */
@media (max-width: 768px) {
  .wireless-container {
    flex-direction: column;
    text-align: left;
  }

  .wireless-image img {
    max-width: 100%;
  }
}
/* === EQUIPMENT HIGHLIGHTS SECTION === */
.equipment-highlights {
  background-color: #f1efbd;
  padding: 4rem 2rem;
}

.equipment-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.equipment-image {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.equipment-image img {
  width: 100%;
  max-width: 700px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.equipment-content {
  flex: 1;
  min-width: 280px;
}

.equipment-item {
  margin-bottom: 2rem;
}

.equipment-item strong {
  display: block;
  font-size: 1.2rem;
  color: #311f1a;
  margin-bottom: 0.5rem;
}

.equipment-item p {
  font-size: 1.1rem;
  color: #2e2e2e;
  line-height: 1.8;
  text-align: justify;
}

/* Responsive layout */
@media (max-width: 768px) {
  .equipment-container {
    flex-direction: column;
    text-align: left;
  }

  .equipment-image img {
    max-width: 100%;
  }
}
/* === WIRELESS SYSTEM DETAIL SECTION === */
.wireless-solution-detail {
  background-color: var(--beige);
  padding: 4rem 2rem;
}

.solution-container {
  max-width: 1200px;
  margin: 0 auto;
  color: #333;
}

.solution-container p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  text-align: justify;
  color: #2e2e2e;
}
/* === PLCC SECTION === */
.plcc-section {
  background-color: #f1efbd;
  padding: 4rem 2rem;
  text-align: center;
}

.plcc-container {
  max-width: 1000px;
  margin: 0 auto;
}

.plcc-container h2 {
  font-size: 2rem;
  color: var(--soil-brown);
  margin-bottom: 2rem;
}

.plcc-image img {
  max-width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
@keyframes slideInLeft {
  from {
    transform: translateX(-100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.animate-left {
  animation: slideInLeft 1s ease forwards;
}

.animate-right {
  animation: slideInRight 1s ease forwards;
}
@keyframes slideInUp {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.animate-up {
  animation: slideInUp 1s ease forwards;
}
