/* Import Internal Font */
@font-face {
  font-family: Poppins;
  src: url(/assets/font/Poppins-Regular.ttf);
}

@font-face {
  font-family: Poppins;
  src: url(/assets/font/Poppins-SemiBold.ttf);
  font-weight: 600;
}

@font-face {
  font-family: Poppins;
  src: url(/assets/font/Poppins-Light.ttf);
  font-weight: 200;
}

/* CSS Variables */
:root {
  --text-primary: #414141;
  --text-secondary: #9f9f9f;
  --bg-primary: #4a4a4a;
}

* {
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 1px 6px 6px -4px rgba(46, 46, 46, 0.2);
  -webkit-box-shadow: 1px 6px 6px -4px rgba(46, 46, 46, 0.2);
  -moz-box-shadow: 1px 6px 6px -4px rgba(46, 46, 46, 0.2);
  padding: 10px 40px;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links li a {
  text-decoration: none;
  color: black;
  font-weight: 600;
}

.nav-links li a:hover {
  color: #5a5a5a;
}

.logo {
  height: 50px;
}

.header {
  height: 86vh;
}

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

.header-img {
  background: url(/assets/images/banner_header.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
}

.header-text h1 {
  font-size: 4.5rem;
  line-height: 1.2;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 0;
  margin-bottom: 10px;
}

.header-text p {
  font-size: 0.9rem;
  color: #9f9f9f;
  line-height: 1.5;
  margin: 0;
  font-weight: 200;
  padding-right: 220px;
}

.title {
  color: var(--text-primary);
  font-size: 2.2rem;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.2;
}

.desc {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.5;
}

.customer-section {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.small-container {
  padding: 0 15%;
}

.company-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.company-logo {
  height: 60px;
  width: 150px;
  object-fit: contain;
  margin: 10px 0;
}

.service-card {
  position: relative;
  background: url(/assets/images/laptop.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: 400px;
}

.service-card h2,
.service-card p {
  color: white;
}

.service-content {
  position: absolute;
  top: 7%;
  right: 7%;
  text-align: right;
}

.button {
  background: var(--bg-primary);
  padding: 10px 20px;
  text-decoration: none;
  color: white;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  display: block;
  text-align: center;
  width: 100%;
}

.service-text {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-form {
  padding-left: 20px;
}

.contact-form h2 {
  text-align: center;
}

.input-group {
  margin-top: 20px;
}

.input {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid var(--bg-primary);
}

.footer {
  margin-top: 20px;
  text-align: center;
  padding: 10px 0;
  border-top: 1px solid var(--bg-primary);
}

.section-gap {
  margin-top: 30px;
}

/* Media Query Untuk Responsive (Materi Tambahan) */
@media screen and (max-width: 768px) {
  .header-text h1 {
    font-size: 3rem;
  }

  .display-grid {
    display: block;
  }

  .nav-links {
    display: none;
  }

  .header-text p,
  .header-text h1 {
    padding-right: 10px;
    text-align: center;
  }

  .header {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .title,
  .desc {
    text-align: center;
  }

  .company-list {
    justify-content: center;
  }

  .service-card {
    height: auto;
    padding: 20px;
  }

  .service-content {
    position: static;
    text-align: center;
  }

  .contact-form {
    padding-left: 0;
  }

}
