body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #0f172a;
  background-image:
    radial-gradient(circle at 10% 10%, rgba(16, 185, 129, 0.05) 0%, transparent 60%),
    radial-gradient(circle at 90% 50%, rgba(99, 102, 241, 0.05) 0%, transparent 60%),
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.02) 0px,
      rgba(255, 255, 255, 0.02) 1px,
      transparent 2px,
      transparent 10px
    );
  background-repeat: no-repeat;
  background-size: cover;
  color: #e2e8f0;
  position: relative;
}


a {
  text-decoration: none;
  color: inherit;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: #0f172a;
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav a:hover {
  color: #10b981;
}

.btn-header {
  background: #10b981;
  color: white;
  padding: 10px 18px;
  border-radius: 5px;
}

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 90px 100px;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 3rem;
}

.green {
  color: #10b981;
}

.btn-primary {
  margin-top: 20px;
  padding: 12px 24px;
  background: #10b981;
  color: white;
  border-radius: 5px;
}

.hero-img img {
  width: 400px;
  border-radius: 15px;
}

.about {
  display: flex;
  justify-content: space-between;
  padding: 100px 60px;
}

.about-img {
  position: relative;
}

.about-img img {
  width: 300px;
  border-radius: 20px;
}

.badge {
  position: absolute;
  background: #0f172a;
  color: white;
  padding: 10px;
  border-radius: 10px;
  font-size: 0.8rem;
  text-align: center;
}

.badge1 {
  top: -10px;
  left: -10px;
}

.badge2 {
  bottom: -10px;
  right: -10px;
}

.btn-green {
  background: #10b981;
  padding: 10px 20px;
  color: white;
  border-radius: 5px;
  margin-right: 10px;
}

.btn-outline {
  border: 1px solid #10b981;
  padding: 10px 20px;
  color: #10b981;
  border-radius: 5px;
}

.services {
  padding: 80px 60px;
  text-align: center;
}

.service-grid {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.service {
  flex: 1;
  background: #1e293b;
  padding: 30px;
  border-radius: 10px;
}

.service.active {
  background: #10b981;
  color: white;
}

.portfolio {
  padding: 80px 60px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.portfolio-grid img {
  width: 100%;
  border-radius: 10px;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #10b981;
}

.logo i {
  font-size: 1.4rem;
}

body::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  top: -100px;
  left: -100px;
  background: #10b981;
  opacity: 0.05;
  filter: blur(100px);
  z-index: 0;
}

body::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  bottom: 0;
  right: -80px;
  background: #6366f1;
  opacity: 0.05;
  filter: blur(120px);
  z-index: 0;
}
.header, .hero, .about, .services, .portfolio {
  position: relative;
  z-index: 1;
}

.hero-img img {
  width: 200px;            /* Ukuran bebas bisa disesuaikan */
  height: 200px;
  object-fit: cover;       /* Biar nggak gepeng atau pecah */
  border-radius: 50%;      /* Ini bikin bentuk bulat */
  border: 1px solid #0d0c2b; /* Opsional: garis hijau di sekeliling */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* Efek bayangan */
}

@media (max-width: 768px) {
  .header {
    flex-direction: column;
    gap: 15px;
    padding: 20px 30px;
    text-align: center;
  }

  .nav ul {
    flex-direction: column;
    gap: 10px;
    padding: 0;
    margin: 10px 0;
  }

  .hero {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
  }

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

  .hero-img img {
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
  }

  .about {
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    text-align: center;
  }

  .about-img img {
    width: 200px;
    margin-bottom: 20px;
  }

  .badge1, .badge2 {
    display: none;
  }

  .services {
    padding: 60px 20px;
  }

  .service-grid {
    flex-direction: column;
  }

  .portfolio {
    padding: 60px 20px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .btn-header {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  .btn-primary, .btn-green, .btn-outline {
    display: inline-block;
    margin: 10px 5px;
    font-size: 0.95rem;
    padding: 10px 20px;
  }
}
.card-profile {
  display: flex;
  justify-content: center;
  padding: 80px 20px;
}

.profile-card {
  background-color: #1e293b;
  color: white;
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  width: 300px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.profile-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 20px;
}
.journey-cards {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 20px;
}

.journey-cards h2 {
  font-size: 2rem;
  color: #10b981;
  text-align: center;
  margin-bottom: 50px;
}

.timeline-step {
  background-color: #1e293b;
  border: 1px solid #334155;
  border-radius: 12px;
  padding: 25px 30px;
  margin-bottom: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.timeline-step:hover {
  transform: translateY(-5px);
}

.timeline-step h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: #10b981;
}

.timeline-step p {
  margin: 0;
  color: #cbd5e1;
  font-size: 0.95rem;
}
.projects {
  padding: 100px 20px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  color: #10b981;
  margin-bottom: 50px;
}

.project-grid {
  display: grid;
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.project-card {
  background-color: #1e293b;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-8px);
}

.project-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.project-card h3 {
  color: #10b981;
  margin: 15px 0 10px;
  font-size: 1.2rem;
}

.project-card p {
  color: #cbd5e1;
  font-size: 0.95rem;
  padding: 0 15px 15px;
}



.project-link:hover {
  color: #10b981; /* Bisa tetap beri efek hover kalau mau */
}

.project-card {
  background-color: #1e293b;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}
.section-title {
  font-size: 2rem;
  color: #10b981;
  margin-bottom: 50px;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #10b981;
  margin: 10px auto 0;
  border-radius: 5px;
}
.project-image {
  position: relative;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  display: block;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.8);
  color: #fff;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
  text-align: center;
  padding: 0 15px;
}

.project-image:hover .overlay {
  opacity: 1;
}

.project-desc {
  padding: 15px;
  color: #cbd5e1;
  font-size: 0.95rem;
}
@media (max-width: 500px) {
  .project-desc {
    font-size: 0.9rem;
    padding: 15px;
    text-align: center;
  }

  .project-link {
    font-size: 0.9rem;
  }
}
.projects {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.about {
  padding: 100px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.about-img img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #10b981;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2rem;
  color: #10b981;
  margin-bottom: 20px;
}

.about-text p {
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 20px;
}

.btn-green {
  background: #10b981;
  color: white;
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-green:hover {
  background: #0e9e6e;
}
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    padding-top: 20px;
  }
}

.skill-bar {
  background: #334155;
  height: 14px;
  border-radius: 10px;
  overflow: hidden;
}

.bar-fill {
  background: #10b981;
  height: 100%;
  width: 0;
  animation: fillBar 1.2s ease forwards;
  border-radius: 10px;
}

/* Animasi isi bar */
@keyframes fillBar {
  from {
    width: 0;
  }
}
.about-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 90vh; /* Biar posisinya di tengah layar */
  padding: 20px;
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.profile-pic {
  width: 120px;
  height: 120px;
  border-radius: 30%;
  margin-bottom: 20px;
  object-fit: cover;
}

.about {
  max-width: 900px;
  padding: 18px;
  font-size: 1.1rem;
  line-height: 1.9;
  color: hsl(0, 14%, 97%);
  font-family: 'Segoe UI', sans-serif;
}

/* Responsif */
@media (max-width: 500px) {
  .about {
    font-size: 1rem;
    padding: 13px;
  }
}



.skills {
  padding: 100px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  color: #10b981;
  margin-bottom: 50px;
}

.skills-wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.skill p {
  margin: 0 0 8px;
  font-weight: 500;
  color: #e2e8f0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}

.skill p i {
  font-size: 1.2rem;
  color: #10b981;
}

.skill-bar {
  background: #334155;
  height: 14px;
  border-radius: 10px;
  overflow: hidden;
}

.bar-fill {
  background: #10b981;
  height: 100%;
  width: 0;
  animation: fillBar 1.2s ease forwards;
  border-radius: 10px;
}

@keyframes fillBar {
  from {
    width: 0;
  }
}
.contact {
  padding: 100px 20px;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.contact-subtext {
  color: #cbd5e1;
  margin-bottom: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px;
  border: none;
  border-radius: 8px;
  background: #1e293b;
  color: #ffffff;
  font-size: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #94a3b8;
}

.contact-form button {
  background-color: #10b981;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #0f766e;
}

.contact-info {
  margin-top: 50px;
  color: #e2e8f0;
  font-size: 0.95rem;
}

.tebal {
  font-weight: bold;
}
 .intro-text {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.6;
  color: #fff; /* atau warna lain sesuai tema */
  text-align: center;
}


