/* Hero Section */
.hero-section {
  display: flex;
  align-items: center;
  min-height: 600px;
  background: none;
  padding: 0;
}

.hero-section::before {
  content: "";
  flex: 0.6;
  background: url("../../images/ntonarch Palm oil.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 400px;
}

.hero-content {
  flex: 0.4;
  padding: 4rem 2rem;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../../images/ntonarch Palm oil.png");
  background-size: cover;
  background-position: center;
  color: white;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-buttons {
  margin-top: 2rem;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #ff6b00;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #e65c00;
}

/* Services Section */
.services-section {
  padding: 80px 20px;
  background: #e8f5e9; /* Light green background */
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 1.2rem;
  color: #666;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  font-size: 2.5rem;
  color: #ff8c00;
  margin-bottom: 20px;
}

.service-card h3 {
  color: #333;
  margin-bottom: 15px;
}

.service-card p {
  color: #666;
  line-height: 1.6;
}

/* Process Section */
.process-section {
  padding: 80px 20px;
  background: #e8f5e9; /* Light green background */
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.process-item {
  text-align: center;
  padding: 30px;
  position: relative;
}

.process-number {
  width: 40px;
  height: 40px;
  background: #ff8c00;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-weight: bold;
}

.process-item h3 {
  color: #333;
  margin-bottom: 15px;
}

.process-item p {
  color: #666;
  line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 80px 20px;
  background: #e8f5e9; /* Light green background */
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-item {
  text-align: center;
  padding: 30px;
}

.feature-item i {
  font-size: 2.5rem;
  color: #ff8c00;
  margin-bottom: 20px;
}

.feature-item h3 {
  color: #333;
  margin-bottom: 15px;
}

.feature-item p {
  color: #666;
  line-height: 1.6;
}

/* Contact Section */
.contact-section {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(to right, #ff8c00, #228b22);
  color: white;
}

.contact-section h2 {
  margin-bottom: 20px;
}

.contact-section p {
  margin-bottom: 30px;
  font-size: 1.2rem;
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: white;
  color: #ff8c00;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
  }

  .hero-section::before {
    min-height: 300px;
    width: 100%;
  }

  .hero-content {
    min-height: auto;
  }

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

  .hero-content p {
    font-size: 1rem;
  }

  .services-grid,
  .process-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* Section Headers */
section h2 {
  text-align: center;
  font-size: 2rem;
  color: #333;
  margin-bottom: 40px;
}
