
/* Machine Automation Styling */

/* Challenge Container Layout */
.ma-challenge-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Image Container */
.ma-image-container {
  width: 100%;
  overflow: hidden;
  height: 50%;
}

.ma-challenge-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
  padding-top: 22px;
}

.ma-challenge-img img{
  width: 100%;
  height:50%;
}

/* Content Container */
.ma-content-container {
  padding: 30px;
  /* background-color: #f8f9fa; */
}

/* Section Title */
.ma-section-title {
  color: #072f85;
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}

.ma-section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #025ab4;
}

/* Section Text */
.ma-section-text p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #555;
  text-align: justify;
}

/* Benefits Title */
.ma-benefits-title {
  color: #025ab4;
  font-size: 22px;
  margin: 25px 0 15px;
  font-weight: 600;
}

/* Benefits List */
.ma-benefits-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.ma-benefits-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  line-height: 1.5;
}

.ma-benefits-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #025ab4;
  font-weight: bold;
}

/* Responsive Styles */
@media (min-width: 768px) {
  .ma-challenge-container {
    flex-direction: row;
  }
  
  .ma-image-container {
    width: 40%;
  }
  
  .ma-content-container {
    width: 60%;
  }
  
  .ma-challenge-img {
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 767px) {
  .ma-section-title {
    font-size: 24px;
  }
  
  .ma-benefits-title {
    font-size: 20px;
  }
  
  .ma-content-container {
    padding: 20px;
  }
}

/* ------------------------------------------------ */
.ma-section {
  background: linear-gradient(rgba(7, 47, 133, 0.85), rgba(7, 47, 133, 0.85)), 
              url('../../img/machine.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  padding: 50px 0px;
  text-align: center;
  position: relative;
}

.ma-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
}

.ma-content {
  position: relative;
  z-index: 2;
}

.ma-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease-out;
  color: #fff;
}


/* --------------------------section-2 info ----------------------------------------------------------- */
