body {
  background-color: #f8f9fa;
  color: #333;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

/* Navbar */
.navbar-custom {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 22px;
  color: #2c3e50;
  text-decoration: none;
}

.logo img {
  height: 70px;
  width: auto;
  margin-right: 10px;
  object-fit: contain;
}

.nav-link-custom {
  color: #555 !important;
  font-weight: 500;
  font-size: 16px;
  margin: 0 15px;
  position: relative;
}

.nav-link-custom:hover {
  color: #1e8449 !important;
}

.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #1e8449;
  transition: width 0.3s;
}

.nav-link-custom:hover::after {
  width: 100%;
}

.login-btn-custom {
  background-color: #1e8449;
  color: #fff;
  border: none;
  padding: 14px 25px;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s;
}

.login-btn-custom:hover {
  background-color: #145a32;
  transform: translateY(-1px);
}

/* Hero Section */
.hero-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #eef2f3 100%);
  border-bottom: 1px solid #e0e0e0;
  overflow: hidden;
  animation: fadeIn 1.2s ease-in-out;
}

.hero-title {
  font-size: 38px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
  animation: slideDown 1s ease-in-out;
}

.hero-description {
  font-size: 18px;
  color: #7f8c8d;
  margin-bottom: 30px;
  animation: slideUp 1.2s ease-in-out;
}

/* Tombol Isi Kuesioner */
.isi-btn-custom {
  background-color: #1e8449;
  color: #fff;
  border: none;
  padding: 14px 25px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.isi-btn-custom:hover {
  background-color: #145a32;
  transform: translateY(-2px);
}



/* Default Search Container */
.search-container-custom {
  display: flex;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  max-width: 100%;
  animation: fadeIn 1.5s ease-in-out;
}

.search-input-custom {
  border: none;
  flex: 1;
  padding: 15px 20px;
  font-size: 16px;
  outline: none;
}

.search-btn-custom {
  background: #1e8449;
  color: #fff;
  border: none;
  padding: 0 25px;
  transition: all 0.3s;
}

.search-btn-custom:hover {
  background: #145a32;
}

/* Hero Image */
.hero-image {
  max-width: 70%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: none;
  background: transparent;
  animation: fadeInRight 1.5s ease-in-out;
}

/* Section Menu */
.menu-section {
  padding: 80px 0;
  background-color: #ffffff;
  animation: fadeInUp 1.5s ease-in-out;
}

.profile-section-title {
      text-align: center;
      margin-bottom: 50px;
      position: relative;
    }
    .section-title h2 {
      font-size: 32px;
      color: #2c3e50;
      font-weight: 700;
      margin-bottom: 15px;
    }
    .section-title::after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background-color: #1e8449;
    }

.menu-card {
      background: white;
      border-radius: 15px;
      padding: 35px 25px;
      text-align: center;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      transition: all 0.4s;
      position: relative;
      overflow: hidden;
      border: 1px solid #f0f0f0;
      height: 100%;
    }

    .menu-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: linear-gradient(to right, #1e8449, #0e6655);
    }

.menu-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }

 .menu-icon {
      font-size: 45px;
      color: #1e8449;
      margin-bottom: 20px;
      transition: transform 0.3s;
    }

    .menu-card:hover .menu-icon {
      transform: scale(1.1);
    }

.menu-card h3 {
      font-size: 20px;
      margin-bottom: 15px;
      color: #2c3e50;
      font-weight: 600;
    }
    .menu-card p {
      color: #7f8c8d;
      font-size: 15px;
      line-height: 1.6;
    }


/* Footer */
.footer-custom {
  background: #2c3e50;
  color: white;
  padding: 50px 0 20px;
  animation: fadeIn 1.8s ease-in-out;
}

.footer-section h3 {
  font-size: 18px;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 8px;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #1e8449;
}

.footer-section p {
  color: #bdc3c7;
  margin-bottom: 10px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  margin-right: 8px;
  transition: all 0.3s;
}

.social-icons a:hover {
  background-color: #1e8449;
  transform: translateY(-2px);
}

.copyright {
  text-align: center;
  color: #bdc3c7;
  font-size: 14px;
  border-top: 1px solid #34495e;
  margin-top: 20px;
  padding-top: 15px;
}

/* Animations Keyframes */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideDown {
  from { transform: translateY(-20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeInRight {
  from { transform: translateX(40px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeInUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}




.search-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.search-icon-btn {
  background-color: #1e8449;
  color: #fff;
  border: none;
  padding: 14px 25px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.search-icon-btn:hover {
  background-color: #145a32;
  transform: scale(1.05);
}

.search-icon-btn:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(30,132,73,0.12);
}


.search-expand {
  position: absolute;
  left: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%) scaleX(0);
  transform-origin: left center;
  opacity: 0;
  display: flex;
  align-items: center;
  width: 360px;
  max-width: calc(100vw - 140px);
  background: #fff;
  border-radius: 50px;
  border: 2px solid #e0e0e0;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  padding: 6px;
  overflow: hidden;
  transition: transform .32s cubic-bezier(.2,.9,.2,1), opacity .26s ease;

}


.search-wrapper.active .search-expand {
  transform: translateY(-50%) scaleX(1);
  opacity: 1;
}


.search-input-expand {
  flex: 1;
  padding: 10px 14px;
  border: none;
  outline: none;
  font-size: 15px;
  background: transparent;
  color: #333;
}


.search-btn-expand {
  background-color: #1e8449;
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 40px;
  cursor: pointer;
  margin-left: 8px;
  transition: background-color .18s ease, transform .12s ease;
}

.search-btn-expand:hover {
  background-color: #145a32;
  transform: translateY(-2px);
}

.search-expand[aria-hidden="true"] {
  pointer-events: none;
}
.search-expand[aria-hidden="false"] {
  pointer-events: auto;
}



@media (max-width: 991px) {
  .hero-title { font-size: 30px; text-align: center; }
  .hero-description { font-size: 16px; text-align: center; }
  .search-container-custom { margin: 0 auto 25px; max-width: 90%; }
  .hero-image { margin-top: 30px; max-width: 80%; }
}

@media (max-width: 768px) {
  .d-flex.align-items-center.gap-3.flex-wrap {
    flex-direction: column;
    align-items: stretch;
  }
  .isi-btn-custom { width: 100%; text-align: center; }
  .search-container-custom { width: 100%; }
  .hero-section { padding: 60px 0; }
  .hero-image { max-width: 80%; }
}

@media (max-width: 576px) {
  .search-expand {
    left: 0;
    top: calc(100% + 8px);
    transform-origin: top center;
    width: calc(100vw - 32px);
    max-width: none;
  }
  .search-wrapper.active .search-expand {
    transform: translateY(0) scaleX(1);
    opacity: 1;
  }
  .search-icon-btn { padding: 10px; }
}


.main-container {
      max-width: 1100px;
      margin: 30px auto;
      padding: 0 15px;
    }

    .profile-card {
      background: white;
      border-radius: 16px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
      overflow: hidden;
      border: 1px solid #f1f1f1;
    }

    .profile-header {
      background: linear-gradient(135deg, #1e8449 0%, #145a32 100%);
      color: #fff;
      text-align: center;
      padding: 40px 20px;
    }

    .page-title {
      font-size: 28px;
      font-weight: 700;
      margin: 0;
    }

    .biodata-section {
      padding: 40px 50px;
    }

    .section-title {
      font-weight: 600;
      color: #1e8449;
      font-size: 20px;
      border-bottom: 2px solid #1e8449;
      display: inline-block;
      margin-bottom: 25px;
      padding-bottom: 5px;
    }

    .info-item {
      margin-bottom: 18px;
    }

    .info-label {
      color: #7f8c8d;
      font-weight: 500;
      font-size: 14px;
    }

    .info-value {
      color: #2c3e50;
      font-weight: 600;
      font-size: 16px;
    }

    .status-badge {
      background: #eafaf1;
      color: #1e8449;
      padding: 5px 12px;
      border-radius: 15px;
      font-size: 13px;
      font-weight: 600;
    }

    .action-buttons {
      background: #f9fafb;
      border-top: 1px solid #e9ecef;
      padding: 25px 0;
      text-align: center;
    }

    .btn-outline-primary-custom {
      border: 2px solid #1e8449;
      color: #1e8449;
      background: transparent;
      padding: 10px 25px;
      border-radius: 25px;
      font-weight: 500;
      transition: all 0.3s;
    }

    .btn-outline-primary-custom:hover {
      background: #1e8449;
      color: white;
      transform: translateY(-2px);
    }

    @media (max-width: 768px) {
      .biodata-section {
        padding: 25px;
      }
      .page-title {
        font-size: 22px;
      }
    }
    
    .about-image {
    max-width: 90%;
    border-radius: 20px;
}

.feature-card {
    background: #ffffff;
    transition: .3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

    