: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;
  }
}
/* === FUNCTIONALITY ANALYSIS SECTION === */
.comm-solutions {
  background-color: var(--beige);
  padding: 4rem 2rem;
}

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

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

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

.comm-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1.5rem;
}

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

.comm-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 Design */
@media (max-width: 768px) {
  .comm-container {
    flex-direction: column;
    text-align: left;
  }

  .comm-image img {
    max-width: 100%;
  }

  .comm-content h2 {
    font-size: 1.8rem;
  }

  .comm-content p {
    font-size: 1rem;
  }
}
/* === WIRELESS COMMUNICATION NETWORKS SECTION === */
.wireless-comm-section {
  background-color: #f1efbd;
  padding: 4rem 2rem;
}

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

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

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

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

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

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

  .wireless-comm-image img {
    max-width: 100%;
  }

  .wireless-comm-text p {
    font-size: 1rem;
  }
}
: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: 50vh;
  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;
  }
}
/* === HIGH AVAILABILITY SECTION === */
.high-availability-section {
  background-color: #f1efbd;
  padding: 4rem 2rem;
}

.ha-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.ha-text {
  flex: 1 1 100%;
}

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

.ha-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1.5rem;
}

.ha-pointers {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  flex: 1 1 60%;
}

.ha-pointer {
  flex: 1 1 calc(50% - 2rem);
  background-color: var(--beige);
  border-radius: 10px;
  padding: 1rem 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.ha-pointer strong {
  display: block;
  font-size: 1.1rem;
  color: var(--soil-brown);
  margin-bottom: 0.5rem;
}

.ha-pointer p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.ha-image {
  flex: 1 1 35%;
  text-align: center;
}

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

/* Responsive */
@media (max-width: 768px) {
  .ha-container {
    flex-direction: column;
  }

  .ha-pointers {
    flex-direction: column;
  }

  .ha-pointer {
    flex: 1 1 100%;
  }

  .ha-image img {
    max-width: 100%;
  }
}


/* === WIRELESS MESH NETWORK SECTION (NEW) === */
.industry-challenges {
  background-color: var(--beige);
  padding: 4rem 2rem;
}

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

.challenge-text {
  flex: 1;
  min-width: 280px;
}

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

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

/* Float Up-Down Animation */
@keyframes mover {
  0% { transform: translateY(0); }
  100% { transform: translateY(-12px); }
}

/* Add this to your class */
.challenge-image {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.challenge-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 12px;
  object-fit: cover;
  /* box-shadow: 0 5px 23px #af5311; */

  /* Animation */
  animation: mover 1.4s infinite alternate ease-in-out;
  -webkit-animation: mover 1.4s infinite alternate ease-in-out;

  /* Optional smooth initial slide-in */
  opacity: 0;
  transform: translateY(20px);
  animation-delay: 0.2s;
  animation-fill-mode: forwards;
  animation-name: fadeSlide, mover;
  animation-duration: 0.6s, 1.4s;
  animation-timing-function: ease-out, ease-in-out;
  animation-iteration-count: 1, infinite;
}

@keyframes fadeSlide {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.gif-image img {
  width: 100%;
  max-width: 650px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 5px 23px #af5311;
}

/* For full-width paragraph block (no image) */
.challenge-text.full-width {
  flex: 1 1 100%;
}

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

  .challenge-image img {
    max-width: 100%;
  }
}
/* === HIGH AVAILABILITY WIRELESS COMM SECTION === */
.industry-goals {
  background-color: var(--light-brown);
  padding: 4rem 2rem;
}

.pointer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.pointer {
  flex: 1 1 calc(50% - 2rem);
  background-color: var(--beige);
  border-radius: 10px;
  padding: 1rem 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.pointer strong {
  display: block;
  font-size: 1.1rem;
  color: var(--soil-brown);
  margin-bottom: 0.5rem;
}

.pointer p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .pointer-columns {
    flex-direction: column;
  }

  .pointer {
    flex: 1 1 100%;
  }
}