.body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: #e5fbea;
  color: #000000;
  margin: 0;
  padding: 0;
}

.navbar-brand {
  font-size: 1.6rem;
  color: #333;
  font-family: 'lato', sans-serif;
  margin-left: 30px;
  font-weight: 550;
}   
.navbar {
  background-color: #ffffff;
  padding: 0.6rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background-color 0.3s ease;
  padding: 20px;
}
.dropdown-item {
  font-size: 15px;
  color: #333;
  padding: 10px 20px;
}

.hero-section {
    background: linear-gradient(135deg, #007f5f, #2b9348);
    color: white;
    padding: 50px 0;
    text-align: center;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    }

  .hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    font-family: plus-jakarta, sans-serif;
    font-weight: 500;
    }
    .hero-section p {
      font-size: 1rem;
      margin-bottom: 10px;
    }

 .hero-section-img {
    background-image: url('images/headerimg.png'); /* ← Update with your file path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    }
  .hero-section-img h1 {
    font-size: 55px;
    margin-bottom: 20px;
    font-weight: 450;
    }
  .hero-section-img p {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 10px;
    }
  .btn {
    border-radius: 20px;
  }
  
.industry-card {
  background-color: #ececec;
  border-radius: 1rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  padding: 1rem;
  margin-bottom: 1rem;
  }

  .col-style {
    padding: 30px;
    align-items: center;
    }
  .col-style h2 {
    font-size: 30px;
    margin-bottom: 20px;    
    }
  .col-style p {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    }
   
    .img-fluid {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
    }

    .img-fluid-logo {
      max-width: 100%;
      height: 45px;
      margin-bottom: 20px;
    }

  .feature-text {
      text-align: center;
      font-size: 2.2rem;
      margin-bottom: 10px;
      padding-bottom: 20px;
      font-weight: 500;
      }

      .feature-box {
        background: #ffffff;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        text-align: center;
        height: 100%;
      }
      .feature-box i {
        font-size: 35px;
        display: inline-block;
      }
      .feature-box h3 {
        margin: 10px 0 5px;
        font-size: 17px;
      }
      .feature-box p {
        font-size: 14px;
        color: #333;
        margin-top: 0.5rem;
      }

    .grid-container {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
    }

    @media (min-width: 778px) {
      .grid-container {
        grid-template-columns: 1fr 1fr;
      }
    }

    .bg-lightgreen {
      background-color: #ecf0ed; /* Hijau muda */
      padding: 20px;
      word-break: break-word;
      min-width: 0;
      border-radius: 10px;
      align-items: center;
    }

   .contact-info a {
      text-decoration: none;
      color: #ffffff;
    }

  .contact-info i {
      font-size: 15px;
      color: #ffffff;
    }

    
    @media (max-width: 768px) {
      .navbar-brand {
        font-size: 1.4rem;
        margin-left: 15px;
      }
    }