: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;
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Headings */
h1, h2 {
  margin: 0;
  font-weight: 600;
}

h1 {
  font-size: 3rem;
  color: var(--soil-brown); /* Used for section heading like Application */
}

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

/* Paragraphs */
p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--soil-brown);
  text-align: justify;
  margin-bottom: 2rem;
}

/* 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: 30%;
  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: 2rem;
  color: #fff;
}

.hero-heading p {
  font-size: 1.4rem;
  margin-top: 0.5rem;
  color: #fff;
}

/* SECTION 1 */
.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;
}

.wireless-content,
.wireless-image {
  flex: 1;
  min-width: 280px;
}
/* Make h2 in content blocks justified */
.wireless-content h2,
.equipment-content h2 {
  font-size: 2rem;
  color: var(--soil-brown);
  margin-bottom: 1.5rem;
  text-align: justify;
}

.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);
}

/* SECTION 2 */
.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;
}

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

.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);
}

/* SECTION 3 */
.wireless-solution-detail {
  background-color: var(--beige);
  padding: 4rem 2rem;
  text-align: center;
}

.solution-container {
  max-width: 1350px;
  margin: 0 auto;
}

/* Animations */
@keyframes slideInUp {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

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

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

  .wireless-container,
  .equipment-container {
    flex-direction: column;
    text-align: left;
  }

  .hero-heading {
    padding: 1rem;
  }

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

  .wireless-image img,
  .equipment-image img {
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .hero-heading {
    width: 90%;
    padding: 1rem;
    bottom: 20%;
  }

  .hero-heading h1 {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .hero-heading p {
    font-size: 1rem;
    line-height: 1.4;
  }
}
