/* ===============================
   FIELD MONITORING (MODERN)
================================= */
.field-monitoring {
  background: #ffffff;
  padding: 90px 20px;
}

/* HEADER */
.field-header {
  text-align: center;
  max-width: 800px;
  margin: auto;
  margin-bottom: 60px;
}

.field-header h1 {
  font-size: 2.8rem;
  color: #222;
  margin-bottom: 15px;
}

.field-header p {
  color: #555;
  line-height: 1.7;
}

/* GRID LAYOUT */
.field-grid {
  display: flex;
  align-items: center;
  gap: 50px;
}

/* TEXT */
.field-text {
  flex: 1;
}

.field-text h2 {
  font-size: 2rem;
  color: #28a745;
  margin-bottom: 20px;
}

.field-text p {
  color: #444;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* FEATURES */
.field-features {
  margin-top: 25px;
}

.field-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

/* ICON */
.field-feature i {
  color: #28a745;
  font-size: 18px;
}

/* IMAGE */
.field-image img {
  width: 100%;
  max-width: 450px;
  height: 350px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* HOVER EFFECT */
.field-image img:hover {
  transform: scale(1.03);
  transition: 0.3s;
}





/* ===============================
   FIELD MONITORING BG SECTION
================================= */
.field-monitoring-bg {
  background: url("../assets/images/feildmon-bg.png") center/cover no-repeat;
  position: relative;
  padding: 120px 20px;
}

/* DARK OVERLAY */
.field-monitoring-bg .overlay {
  background: rgba(0, 0, 0, 0.7);
  padding: 80px 20px;
}

/* CONTENT */
.field-bg-content {
  max-width: 800px;
  color: #fff;
}

.field-bg-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #7ed957;
}

.field-bg-content p {
  margin-bottom: 15px;
  line-height: 1.8;
  color: #ddd;
}

/* POINTS */
.field-bg-points {
  margin-top: 30px;
}

.point {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

/* ICON */
.point i {
  color: #28a745;
  font-size: 18px;
}

/* HOVER EFFECT */
.point:hover i {
  transform: scale(1.2);
  transition: 0.3s;
}




/* ===============================
   FIELD ICON SECTION
================================= */
.field-icons {
  background: #ffffff;
  padding: 90px 20px;
  text-align: center;
}

/* HEADER */
.icon-header {
  max-width: 700px;
  margin: auto;
  margin-bottom: 60px;
}

.icon-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #222;
}

.icon-header p {
  color: #555;
  line-height: 1.7;
}

/* GRID */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* BOX */
.icon-box {
  padding: 25px;
  transition: 0.3s;
}

/* ICON */
.icon-box i {
  font-size: 40px;
  color: #28a745;
  margin-bottom: 15px;
}

/* TITLE */
.icon-box h4 {
  margin-bottom: 10px;
  color: #333;
}

/* TEXT */
.icon-box p {
  font-size: 0.95rem;
  color: #666;
}

/* HOVER EFFECT */
.icon-box:hover {
  transform: translateY(-8px);
}

.icon-box:hover i {
  color: #1e7e34;
}



/* ===============================
   FIELD TWO IMAGE SECTION
================================= */
.field-two-images {
  background: #f9f9f9;
  padding: 90px 20px;
}

/* TEXT */
.field-two-text {
  max-width: 800px;
  margin: auto;
  text-align: center;
  margin-bottom: 50px;
}

.field-two-text h2 {
  font-size: 2.4rem;
  margin-bottom: 15px;
  color: #222;
}

.field-two-text p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 10px;
}

/* IMAGE GRID */
.field-two-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

/* IMAGES */
.field-two-grid img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: 0.4s;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* HOVER EFFECT */
.field-two-grid img:hover {
  transform: scale(1.05);
}






/* RESPONSIVE */
@media (max-width: 768px) {
  .field-bg-content h2 {
    font-size: 2rem;
  }

  .field-monitoring-bg {
    padding: 80px 20px;
  }
}
/* RESPONSIVE */
@media (max-width: 992px) {
  .field-grid {
    flex-direction: column;
    text-align: center;
  }

  .field-image img {
    height: 300px;
  }
}

@media (max-width: 576px) {
  .field-header h1 {
    font-size: 2.2rem;
  }

  .field-text h2 {
    font-size: 1.6rem;
  }
}


/* RESPONSIVE */
@media (max-width: 992px) {
  .icon-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .icon-grid {
    grid-template-columns: 1fr;
  }

  .icon-header h2 {
    font-size: 2rem;
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .field-two-grid {
    grid-template-columns: 1fr;
  }

  .field-two-grid img {
    height: 280px;
  }

  .field-two-text h2 {
    font-size: 2rem;
  }
}
