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

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

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

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

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

/* INTRO SECTION */
.product-intro {
  background-color: var(--brown);
  color: #fff;
  padding: 3rem 2rem;
  text-align: center;
}

.product-intro p {
  font-size: 1.2rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 1rem auto;
  color: #e0e0e0;
}

/* PRODUCT GALLERY */
.product-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  padding: 4rem 2rem;
  gap: 2rem;
  background-color: var(--beige);
  max-width: 2000px;
  margin: 0 auto;
}

.product-card {
  background-color: white;
  border: 3px solid #d2691e;
  border-radius: 12px;
  overflow: hidden;
  width: 300px;
  max-width: 100%;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  background-color: #f7f7f7;
}

.product-card h3 {
  font-size: 1.4rem;
  margin: 1rem 0 0.5rem;
  color: #2e2e2e;
}

.product-card .btn {
  display: inline-block;
  margin: 1rem 0 1.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #f7c43d;
  color: #311f1a;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.product-card .btn:hover {
  background-color: #f7c43d;
  color: #000;
}

.product-card:hover {
  transform: translateY(-6px);
}

/* FOOTER */
.footer {
  background-color: var(--soil-brown);
  color: white;
  padding: 3rem 2rem 1.5rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-column h3 {
  color: var(--accent-yellow);
  margin-bottom: 1rem;
}

.footer-column p,
.footer-column ul {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #e0e0e0;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column li a {
  color: #e0e0e0;
  text-decoration: none;
}

.footer-column li a:hover {
  color: var(--accent-yellow);
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
}

.footer-bottom img {
  height: 40px;
  margin-bottom: 1rem;
}

.footer-bottom p {
  font-style: italic;
  color: #e0e0e0;
}

/* ANIMATIONS */
.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.animate.show {
  opacity: 1;
  transform: translateY(0px);
  background-color: #c99858;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .navbar ul {
    flex-direction: column;
    gap: 1rem;
  }

  .product-gallery {
    flex-direction: column;
    align-items: center;
  }

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

  .product-intro p {
    font-size: 1.1rem;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-column {
    text-align: center;
  }

  .product-card {
    width: 90%;
  }
}

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

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

  .product-intro p {
    font-size: 1rem;
  }
}
.ai-surveillance {
  background-color: var(--beige);
  padding: 4rem 2rem;
  text-align: center;
}

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

.image-gallery {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.image-gallery img {
  width: 300px;
  height: 250px;
  object-fit: cover;
  border: 4px solid var(--accent-yellow);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  background-color: #fff;
}

.image-gallery img:hover {
  transform: scale(1.05);
}
.overview-section {
  background-color: var(--beige);
  padding: 4rem 2rem;
}

.overview-container {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

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

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

.overview-content h3 {
  font-size: 1.8rem;
  color: var(--soil-brown);
  margin-bottom: 1rem;
}

.overview-content strong {
  display: block;
  font-size: 1.2rem;
  color: var(--clay-orange);
  margin-bottom: 0.75rem;
}

.overview-content p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
}

.impact-section {
  background-color: #a1633c;
  padding: 4rem 2rem;
  color: white;
}

.impact-container {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

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

.impact-text h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #ffc019;
}

.impact-text strong {
  display: block;
  font-size: 1.2rem;
  margin: 1.2rem 0 0.5rem;
  color: #ffc019;
}

.impact-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #f3efe0;
}

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

.limitations-section {
  background-color: var(--beige);
  padding: 4rem 2rem;
  text-align: center;
}

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

.limitations-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.limitation-card {
  background-color: white;
  border: 3px solid var(--accent-yellow);
  border-radius: 12px;
  width: 300px;
  max-width: 100%;
  text-align: left;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.limitation-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
  background-color: #f7f7f7;
}

.limitation-card h3 {
  font-size: 1.4rem;
  color: var(--clay-orange);
  margin: 1rem 0 0.5rem;
}

.limitation-card strong {
  color: var(--accent-yellow);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.5rem;
}

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

.limitation-card:hover {
  transform: translateY(-5px);
}
.innovation-section {
  background-color: #c99858;
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

.innovation-section h2 {
  font-size: 2rem;
  color: var(--soil-brown);
  margin-bottom: 3rem;
}

.innovation-cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.innovation-card {
  background-color: var(--soil-brown);
  border: 2px solid var(--accent-yellow);
  border-radius: 12px;
  padding: 2rem;
  width: 300px;
  max-width: 100%;
  text-align: left;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.innovation-card h3 {
  font-size: 1.3rem;
  color: var(--clay-orange);
  margin-bottom: 1rem;
}

.innovation-card p {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.6;
}

.innovation-card:hover {
  transform: translateY(-6px);
}
@media (max-width: 768px) {
  .innovation-cards {
    flex-direction: column;
    align-items: center;
  }

  .innovation-card {
    width: 90%;
  }
}
.ai-solution-section {
  background-color: var(--beige);
  padding: 4rem 2rem;
  text-align: center;
}

.ai-solution-section h3 {
  font-size: 1.8rem;
  color: var(--soil-brown);
  margin-bottom: 2rem;
}

.ai-solution-images {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.ai-solution-images img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .ai-solution-images {
    flex-direction: column;
    align-items: center;
  }

  .ai-solution-images img {
    max-width: 90%;
  }
}
.ai-intro-section {
  background-color: #c99858;
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

.ai-intro-section h2 {
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #54290d;
}

.ai-intro-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.ai-intro-card {
  background-color: var(--soil-brown);
  border: 2px solid var(--accent-yellow);
  border-radius: 12px;
  padding: 1.5rem;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  text-align: left;
}

.ai-intro-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
  background-color: #fff;
}

.ai-intro-card h3 {
  font-size: 1.3rem;
  color: var(--clay-orange);
  margin-bottom: 0.75rem;
}

.ai-intro-card p {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.6;
}
.ai-features-section {
  background-color: var(--beige);
  padding: 4rem 2rem;
  text-align: center;
}

.ai-features-section h2 {
  font-size: 2rem;
  color: var(--soil-brown);
  margin-bottom: 3rem;
}

.ai-feature-cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.ai-feature-card {
  background-color: white;
  border: 3px solid var(--accent-yellow);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  width: 300px;
  max-width: 100%;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.feature-circle {
  width: 60px;
  height: 60px;
  background-color: var(--accent-yellow);
  color: var(--soil-brown);
  border-radius: 50%;
  font-weight: bold;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.ai-feature-card h3 {
  font-size: 1.3rem;
  color: var(--clay-orange);
  margin-bottom: 0.75rem;
}

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

.ai-feature-card:hover {
  transform: translateY(-6px);
}
@media (max-width: 768px) {
  .ai-feature-cards {
    flex-direction: column;
    align-items: center;
  }

  .ai-feature-card {
    width: 90%;
  }
}

.tech-integration-section {
  background-color: #c99858;
  padding: 4rem 2rem;
  text-align: center;
  color: white;
}

.tech-integration-section h2 {
  font-size: 2rem;
  color: #54290d;
  margin-bottom: 3rem;
}

.tech-integration-cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.tech-card {
  background-color: var(--soil-brown);
  border: 2px solid var(--accent-yellow);
  border-radius: 12px;
  padding: 1.5rem;
  width: 100%;
  max-width: 500px;
  text-align: left;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.tech-card h3 {
  font-size: 1.4rem;
  color: var(--clay-orange);
  margin-bottom: 0.75rem;
}

.tech-card p {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.tech-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  background-color: #fff;
}

.tech-card:hover {
  transform: translateY(-6px);
}
.real-time-section {
  background-color: var(--beige);
  padding: 4rem 2rem;
}

.real-time-container {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.real-time-image img {
  width: 75%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

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

.real-time-content h3 {
  font-size: 1.4rem;
  color: var(--clay-orange);
  margin-bottom: 0.75rem;
}

.real-time-content p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .real-time-container {
    flex-direction: column;
    text-align: center;
  }

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

  .real-time-content h2, 
  .real-time-content h3,
  .real-time-content p {
    text-align: left;
  }
}
.ai-centered-image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.ai-centered-image img {
  max-width: 30%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  background-color: #fff;
}
.architecture-overview-section {
  background-color: var(--beige);
  padding: 4rem 2rem;
  text-align: center;
}

.architecture-overview-section h2 {
  font-size: 2rem;
  color: var(--soil-brown);
  margin-bottom: 3rem;
}

.architecture-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.architecture-card {
  background-color: white;
  border: 3px solid var(--accent-yellow);
  border-radius: 12px;
  padding: 1.5rem;
  width: 300px;
  max-width: 100%;
  text-align: left;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.architecture-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  background-color: #f7f7f7;
  margin-bottom: 1rem;
}

.architecture-card h3 {
  font-size: 1.3rem;
  color: var(--clay-orange);
  margin-bottom: 0.75rem;
}

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

.architecture-card:hover {
  transform: translateY(-6px);
}
@media (max-width: 768px) {
  .architecture-cards {
    flex-direction: column;
    align-items: center;
  }

  .architecture-card {
    width: 90%;
  }
}
.data-logging-section {
  background-color: var(--beige);
  padding: 4rem 2rem;
  text-align: center;
}

.data-logging-section .section-header h2 {
  font-size: 2rem;
  color: var(--soil-brown);
  margin-bottom: 2rem;
}

.data-logging-section .section-image {
  display: block;
  margin: 0 auto 3rem;
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.data-card-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.data-card {
  background-color: white;
  border: 3px solid var(--accent-yellow);
  border-radius: 12px;
  width: 300px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  text-align: left;
}

.data-card:hover {
  transform: translateY(-6px);
}

.data-card h3 {
  font-size: 1.4rem;
  color: var(--clay-orange);
  margin-bottom: 1rem;
}

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