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

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


/* === INDUSTRY CHALLENGES SECTION === */
.industry-challenges {
  background-color: var(--beige);
  padding: 4rem 2rem;
}

.challenge-container,
.comm-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4rem; /* Increased spacing between image and text */
  max-width: 1400px; /* Expanded overall container width */
  margin: 0 auto;
  padding: 0 2rem; /* Padding inside sides */
}
.challenge-text p,
.comm-content p {
  margin-bottom: 1.5rem;
}

.challenge-text ul,
.comm-list-columns {
  margin-bottom: 1.5rem;
}
.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;
}

.challenge-list {
  list-style: disc inside;
  color: #333;
  padding-left: 1rem;
}

.challenge-list li {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.6;
}

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

.challenge-image img {
  width: 100%;
  max-width: 700px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 12px #b97926;
}

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

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

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

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

.goals-container p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: #333;
}

.goal-block {
  margin-bottom: 2rem;
}

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

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

/* Responsive */
@media (max-width: 768px) {
  .goals-container h2 {
    font-size: 1.8rem;
  }

  .goals-container p,
  .goal-block p {
    font-size: 1rem;
  }
}
/* === COMMUNICATION SOLUTIONS SECTION === */
.comm-solutions {
  background-color: var(--beige);
  padding: 4rem 2rem;
}



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

.comm-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 12px #b97926;
}

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

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

.comm-list-columns {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.comm-list-columns ul {
  list-style: disc inside;
  flex: 1;
  padding-left: 1rem;
}

.comm-list-columns li {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #333;
}

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

  .comm-list-columns {
    flex-direction: column;
  }

  .comm-image img {
    max-width: 100%;
  }
}
/* === WHY MINING SECTION === */
.why-mining {
  background-color: var(--light-brown);
  padding: 4rem 2rem;
  text-align: center;
}

.why-container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.why-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: left;
  gap: 2rem;
}

.why-columns ul {
  list-style: disc inside;
  flex: 1;
  min-width: 280px;
  padding-left: 1rem;
}

.why-columns li {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #333;
}

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

  .why-columns ul {
    width: 100%;
  }
}
/* Animation setup */
.animate-left, .animate-right {
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.8s ease;
}

.animate-left {
  transform: translateX(-100px);
}

.animate-right {
  transform: translateX(100px);
}

.animate-left.visible, .animate-right.visible {
  opacity: 1;
  transform: translateX(0);
}
/* Upward scroll animation */
.animate-up {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease-out;
}

.animate-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.slide-in-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.8s ease-out;
}

.slide-in-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.8s ease-out;
}

.slide-in-left.visible,
.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.fade-up {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
