: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;
  }
}
/* === PAGASYSTEMS SECTION === */
.paga-system-section {
  background-color: var(--beige);
  padding: 4rem 2rem;
}

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

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

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

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

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

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

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

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

/* === PAGASYSTEM FUNCTIONALITY SECTION === */
.paga-functionality-section {
  background-color: #f1efbd;
  padding: 4rem 2rem;
}

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

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

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

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

.func-block p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
}

/* === PAGASYSTEM COMPONENTS SECTION === */
.paga-components-section {
  background-color: var(--beige);
  padding: 4rem 2rem;
}

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

.paga-components-section .paga-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #7a5a44;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.component-block {
  margin-bottom: 1.5rem;
}

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

.component-block p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
}
/* === SCROLL ANIMATION for paga === */
.animate-on-scroll {
  opacity: 0;
  transition: opacity 0.6s ease-out;
}

.animate-on-scroll.animate-active {
  opacity: 1;
}

/* Slide-in effect for left and right */
.animate-from-left {
  transform: translateX(-60px);
  opacity: 0;
  transition: all 0.8s ease-out;
}

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

.animate-active .animate-from-left,
.animate-active .animate-from-right {
  transform: translateX(0);
  opacity: 1;
}
/* === Scroll from top animation === */
.animate-from-top {
  opacity: 0;
  transform: translateY(-40px);
  transition: all 0.7s ease-out;
}

.animate-active.animate-from-top {
  opacity: 1;
  transform: translateY(0);
}