* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Clear Sans", sans-serif;
  margin: 0;
  padding: 0;
}

.hero-section {
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 20px auto;
  border-radius: 8px;
}
.hero-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
}
.hero-text {
  position: absolute;
  bottom: 10%;
  left: 5%;
  background-color: rgba(33, 61, 90, 0.9);
  color: #fff;
  padding: 40px;
  border-radius: 12px;
  max-width: 600px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 0;
}
.navbar {
  background-color: transparent;
  border-bottom: 1px solid white;
  position: static;
  width: 100%;
  z-index: 10;
}

.navbar-brand {
  display: flex;
  align-items: center;
  margin-left: 100px;
}

.navbar-brand img {
  max-height: 60px;
}

.navbar .nav-link {
  color: white;
  transition: color 0.3s;
}

.navbar .nav-link:hover {
  color: #cccccc;
}

@media (max-width: 768px) {
  .hero-text {
    padding: 10px;
    left: 0%;
    bottom: 5%;
    top: 5%;
  }
  .hero-text h1 {
    font-size: 2rem;
  }
  .hero-text p {
    font-size: 1rem;
  }
  .navbar-brand {
    margin-left: 15px;
  }
}

/* Client Section Styles */
.client-section {
  background-color: #f8f9fa;
  padding: 40px 0;
}
.client-logo {
  max-width: 120px;
  height: auto;
  margin: 15px;
  transition: transform 0.3s ease;
}
.client-logo:hover {
  transform: scale(1.1);
}

/* Stats */
.stats-section {
  background-color: #ffffff; /* Warna latar belakang */
  padding: 60px 10px; /* Spasi atas dan bawah */
}

.stats-container {
  display: flex;
  justify-content: space-between; /* Elemen kiri dan kanan berjarak */
  align-items: center; /* Rata tengah secara vertikal */
  max-width: 1200px; /* Batas lebar */
  margin: 0 auto; /* Pusatkan secara horizontal */
  padding: 0 10px; /* Spasi samping */
}

.stats-title {
  flex: 1; /* Memastikan "Our Journey" ada di kiri */
}

.stats-title h2 {
  font-size: 2.5rem; /* Ukuran besar untuk judul */
  font-weight: bold;
  margin: 0;
  color: #1a1a1a;
}

.stats-items {
  display: flex;
  gap: 40px; /* Jarak antar statistik */
  flex: 2; /* Memastikan statistik lebih lebar dari teks */
  justify-content: flex-end; /* Rata kanan */
}

.stat-item {
  text-align: center; /* Teks rata tengah */
}

.stat-item h3 {
  font-size: 2.25rem; /* Ukuran besar angka */
  font-weight: bold;
  margin: 0;
  color: #1a1a1a;
}

.stat-item span {
  font-size: 1.2rem;
  color: #707070; /* Warna label */
  margin-top: 5px;
  display: block; /* Agar label berada di bawah angka */
}

@media (max-width: 768px) {
  .stats-section {
    padding: 0 20px;
  }
  .stats-title {
    margin-bottom: 20px;
  }
  .stats-container {
    flex-direction: column; /* Ubah arah statistik */
    padding: 0;
  }
}

/* Proses Services */
.services-section {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 10px;
}

/* Bagian kiri untuk judul */
.services-title {
  flex: 1;
  margin-right: 40px;
}

.services-title h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.2;
}

/* Bagian kanan untuk daftar layanan */
.services-list {
  flex: 2;
}

.service-item {
  display: flex;
  align-items: flex-start;
  background-color: #d9e3f0; /* Warna biru muda */
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.service-number {
  font-size: 2rem;
  font-weight: bold;
  color: #1a1a1a;
  margin-right: 20px;
}

.service-content h3 {
  font-size: 1.5rem;
  color: #1a1a1a;
  margin: 0 0 10px 0;
}

.service-content p {
  font-size: 1rem;
  color: #707070;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .services-section {
    flex-direction: column;
    padding: 60px 20px;
  }

  .services-title h2 {
    margin-bottom: 5%;
  }
}

/* Our Success Project */
.projects-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.projects-header h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #1a1a1a;
  margin: 0;
}

.view-all {
  font-size: 1rem;
  font-weight: bold;
  color: #1a1a1a;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.view-all span {
  margin-left: 10px;
  font-size: 1.5rem;
  transform: translateY(-2px);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.project-card img {
  width: 100%;
  height: auto;
  display: block;
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.6)
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: #fff;
}

.project-category {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.9rem;
  margin-bottom: 10px;
  align-self: flex-start;
}

.project-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0;
}

.project-button {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  color: #1a1a1a;
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .project-title {
    font-size: 1rem;
    padding-right: 20px;
  }
}

/* What New */
.whats-new {
  padding: 20px;
  max-width: 1200px;
  margin: auto;
}

.whats-new .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.whats-new .header h2 {
  font-size: 24px;
  font-weight: bold;
}

.whats-new .header .see-all {
  font-size: 1rem;
  font-weight: bold;
  color: #1a1a1a;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.articles {
  display: flex;
  gap: 20px;
}

.card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card img {
  width: 100%;
  height: auto;
}

.card-content {
  padding: 15px;
}

.card-content .category {
  display: inline-block;
  background: #e63946;
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  margin-bottom: 10px;
}

.card-content h3 {
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 10px;
}

.card-content p {
  font-size: 12px;
  color: #666;
  margin: 0;
}

/* Team Section */
.team-section {
  padding: 50px 0;
  background-color: #112240; /* Warna biru tua */
  color: #fff;
  border-radius: 10px;
  width: 100%;
  overflow: hidden;
}

.team-section h1 {
  font-size: 32px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 40px;
  text-align: center;
}

.team-container {
  display: flex;
  justify-content: center; /* Semua elemen berada di tengah */
  flex-wrap: wrap; /* Elemen otomatis turun ke baris berikutnya jika tidak cukup ruang */
  gap: 30px; /* Jarak antar elemen */
  padding: 20px 0;
  max-width: 1200px; /* Batas lebar maksimal */
  margin: 0 auto; /* Pusatkan container */
}

.team-card {
  background-color: transparent; /* Transparan agar menyatu dengan background */
  border-radius: 10px;
  text-align: center;
  padding: 20px;
  color: white;
  width: 200px; /* Tetapkan lebar kartu */
  flex: 0 0 calc(16.66% - 30px); /* 6 kolom per baris, dengan jarak */
  box-sizing: border-box; /* Pastikan padding tidak memengaruhi lebar kartu */
  transition: transform 0.3s ease-in-out;
}

.team-card:hover {
  transform: translateY(-10px); /* Efek hover */
}

.team-card .profile {
  width: 120px;
  height: 120px;
  margin: 0 auto 15px;
  background-color: #e6ecf3;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.team-card h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px;
  color: #fff;
}

.team-card h4 {
  font-size: 16px;
  font-weight: normal;
  margin: 5px 0;
  color: #ccc;
}


.team-card p {
  font-size: 14px;
  color: #aaa;
  margin: 0;
}



/*  Question */
.request-section {
  padding: 50px 0;
  background-color: #f8f9fa;
}

.request-section h2 {
  margin-bottom: 30px;
  font-weight: bold;
}

.request-section form .form-control {
  margin-bottom: 20px;
}

.request-section button {
  width: 100%;
  padding: 10px;
  font-size: 16px;
}


/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background-color: #f9f9f9;
  color: #333;
}

footer img {
  max-width: 200px; /* Ukuran logo diperbesar */
  margin-bottom: 10px;
}

footer p {
  margin: 5px 0;
  font-size: 14px;
}

footer .social-icons {
  margin: 15px 0;
}

footer .social-icons a {
  margin: 0 10px;
  text-decoration: none;
}

footer .social-icons img {
  width: 30px;
  height: 30px;
}

footer .copyright {
  font-size: 12px;
  color: #777;
  margin-top: 15px;
}
