@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&family=Oswald:wght@200..700&display=swap");

* {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  line-height: 1.6;
  color: #333;
}
body {
  background-image: linear-gradient(to right, #e6faff, #f0f8ff);
  display: grid;
  grid-template-areas:
    "hero"
    "about"
    "visionMission"
    "services"
    "projects"
    "whyUs"
    "contact"
    "footer";
}
.header {
  z-index: 100;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgb(0, 10, 32);
  height: 3%;
  width: 100%;
  top: 0;
  padding: 25px;
}

.header img {
  width: 17%;
  height: 17%;
  margin-top: 10px;
  margin-left: 20px;
}

#logo h3 {
  background-image: linear-gradient(to right, rgb(27, 27, 27), rgb(0, 96, 185));
  background-clip: text;
  color: transparent;
  font-size: 25px;
  font-family: "Archivo Black", sans-serif;
}

@keyframes tes {
  from {
    background-size: 0% 2px;
  }

  to {
    background-size: 100% 2px;
  }
}

.navbar {
  display: flex;
  margin-right: 50px;
}

.navbar a {
  color: #ffffff;
  font-family: "Oswald", sans-serif;
  text-decoration: none;
  font-weight: 500;
  padding: 10px 15px;
  display: inline-block;
  background-image: linear-gradient(#ffffff, #000000);
  background-position: left bottom;
  background-repeat: no-repeat;
  font-size: large;
  background-size: 0% 2px;
}

.navbar a:hover {
  animation: tes 0.4s;
  color: #007fe6;
}

.hero {
  grid-area: hero;
  background-image: linear-gradient(to right, #afefff, #9dd1ff);
  padding: 120px 20px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-template-areas: "judul";
}

.hero h1 {
  margin-bottom: 20px;
  font-size: 2.5rem;
  font-family: "Archivo Black", sans-serif;
  font-weight: 900;
}

.hero p {
  display: flex;
  text-align: center;
  padding-left: 50px;
  padding-right: 50px;
  padding-bottom: 20px;
  font-size: 1rem;
  font-weight: 600;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.buttonHero {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.buttonHero a {
  text-decoration: none;
}

.buttonHero p {
  text-decoration: none;
  background-color: rgb(0, 62, 90);
  margin: 20px;
  display: flex;
  color: white;
  padding: 14px 40px;
  border-radius: 40px;
}

.buttonHero p:hover {
  background-color: white;
  color: rgb(0, 62, 90);
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

.about {
  grid-area: about;
  padding: 20px 20px 20px;
  display: grid;
  flex-direction: column;
  align-items: stretch;
  grid-template-areas:
    "aboutUs aboutUs"
    "whoUs visionMission";
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.whoUs,
.visionMission {
  min-width: 0;
  box-sizing: border-box;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.about h2 {
  grid-area: aboutUs;
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.2rem;
  font-family: "Archivo Black", sans-serif;
  font-weight: 900;
}

.whoUs {
  grid-area: whoUs;
  padding: 10px 20px 60px;
  border: 2px solid rgb(0, 152, 163);
  border-radius: 20px;
  margin-left: 20px;
  background-color: rgb(245, 245, 245);
  display: block;
}

.whoUs h3 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  font-family: "Archivo Black", sans-serif;
  font-weight: 900;
}

.whoUs p {
  display: flex;
  text-align: center;
  padding-left: 50px;
  padding-right: 50px;
}

.whoUsCards {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
}

.whoUsCards > div {
  flex: 1 1 0;
  background: white;
  border: 1.5px solid #0098a3;
  border-radius: 16px;
  padding: 24px 10px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.whoUsCards h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #0098a3;
}

.whoUsCards p {
  font-size: 1rem;
  color: #333;
  margin: 0;
}

.firstCard {
  grid-area: firstCard;
}

.secondCard {
  grid-area: secondCard;
}

.thirdCard {
  grid-area: thirdCard;
}

.whoUsBottom {
  margin-top: auto;
  text-align: center;
  padding-top: 24px;
}

.ctaJoin {
  background: #0098a3;
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 12px 32px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 16px;
  transition: background 0.2s;
}

.ctaJoin:hover {
  background: #00707a;
}

.testimonial {
  font-style: italic;
  color: #444;
  font-size: 0.98rem;
}

.testimonial span {
  display: block;
  margin-top: 6px;
  color: #0098a3;
  font-weight: 600;
  font-style: normal;
}

.visionMission {
  grid-area: visionMission;
  margin-left: 20px;
  padding: 10px 20px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px solid rgb(0, 152, 163);
  border-radius: 20px;
  margin-right: 20px;
  background-color: rgb(245, 245, 245);
}

.visionMission h2 {
  margin-bottom: 10px;
  font-size: 1.45rem;
  font-family: "Archivo Black", sans-serif;
  font-weight: 900;
}

.visionMission h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-family: "Archivo Black", sans-serif;
  font-weight: 900;
}

.visionMission p {
  padding-left: 50px;
  padding-right: 50px;
}

.visionMission li {
  margin: 12px;
  padding: 10px;
  text-align: center;
  background-color: rgb(231, 231, 231);
  border: 1px solid rgb(109, 119, 119);
  border-radius: 10px;
  font-size: 0.94rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.visionMission li:hover {
  background-color: rgb(191, 253, 255);
  transform: scale(1.05);
  transition: all 0.3s ease-in-out;
}

.visionMission ul {
  padding-left: 50px;
  padding-right: 50px;
  list-style: none;
}

.services {
  margin-top: 60px;
  margin-bottom: 40px;
}
.services h2 {
  text-align: center;
  font-size: 2rem;
  font-family: "Archivo Black", sans-serif;
  margin-bottom: 36px;
}
.servicesGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
.serviceCard {
  z-index: 1;
  position: relative;
  background: #fff;
  border: 1.5px solid #0098a3;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
  padding: 32px 20px 24px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.serviceCard:hover {
  z-index: 10;
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 24px rgba(0, 152, 163, 0.13);
}
.serviceIcon {
  font-size: 2.5rem;
  margin-bottom: 18px;
}
.serviceCard h3 {
  font-size: 1.2rem;
  font-family: "Archivo Black", sans-serif;
  margin-bottom: 10px;
  color: #0098a3;
}
.serviceCard p {
  font-size: 1rem;
  color: #444;
}

.projects {
  margin-top: 60px;
  margin-bottom: 40px;
}
.projects h2 {
  text-align: center;
  font-size: 2rem;
  font-family: "Archivo Black", sans-serif;
  margin-bottom: 36px;
  color: #0098a3;
}
.projectsGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
.projectCard {
  background: #e6faff;
  border: none;
  border-left: 4px solid #0098a3;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(0, 152, 163, 0.08);
  padding: 28px 20px 20px 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.2s, box-shadow 0.2s;
  z-index: 1;
  position: relative;
}
.projectCard:hover {
  z-index: 10;
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 32px rgba(0, 152, 163, 0.18);
}
.projectIcon {
  width: 48px;
  height: 48px;

  font-size: 2rem;
  margin-bottom: 14px;
}
.projectCard h3 {
  font-size: 1.1rem;
  font-family: "Archivo Black", sans-serif;
  margin-bottom: 8px;
  color: #00707a;
  font-style: italic;
}
.projectCard p {
  font-size: 0.98rem;
  color: #333;
}

.projectImg {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 18px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  object-fit: cover;
  display: block;
  margin-left: auto;
  margin-right: auto;
  transition: max-width 0.2s;
}

.projectDetailBtn {
  display: inline-block;
  margin-top: 12px;
  background: #0098a3;
  color: #fff;
  padding: 8px 22px;
  border-radius: 20px;
  font-size: 0.98rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 152, 163, 0.08);
}
.projectDetailBtn:hover {
  background: #00707a;
  color: #fff;
}

.whyUs {
  margin-top: 60px;
  margin-bottom: 40px;
  background: linear-gradient(120deg, #0098a3 60%, #00c6c6 100%);
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(0, 152, 163, 0.13);
  padding: 48px 24px 40px 24px;
  color: #fff;
  text-align: center;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}
.whyUs h2 {
  color: #fff;
  font-size: 2.1rem;
  font-family: "Archivo Black", sans-serif;
  margin-bottom: 32px;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.whyUs ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.whyUs ul li {
  background: rgba(255, 255, 255, 0.13);
  border: 2px solid #fff;
  border-radius: 16px;
  padding: 22px 32px;
  font-size: 1.08rem;
  font-weight: 600;
  color: #fff;
  min-width: 220px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  position: relative;
}
.whyUs ul li:hover {
  background: #fff;
  color: #0098a3;
  transform: scale(1.06) rotate(2deg);
  border-color: #00c6c6;
  z-index: 2;
}

.contact {
  margin: auto;
  width: 700px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0, 152, 163, 0.1);
  padding: 36px 24px 28px 24px;
  border: 1.5px solid #00c6c6;
}
.contact h2 {
  text-align: center;
  font-size: 1.7rem;
  font-family: "Archivo Black", sans-serif;
  margin-bottom: 28px;
}
.contact form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact p {
  margin: 0 0 4px 2px;
  font-weight: 600;
  color: #00707a;
  font-size: 1rem;
}
.contact input,
.contact textarea {
  border: 1.5px solid #0098a3;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 1rem;
  font-family: inherit;
  resize: none;
  margin-bottom: 8px;
}

.contact button {
  background: #0098a3;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 12px 0;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s;
}
.contact button:hover {
  background: #00707a;
}

footer {
  background: #0098a3;
  color: #fff;
  padding: 32px 0 0 0;
  text-align: center;
  font-size: 1rem;
  margin-top: 60px;
}
footer ul {
  list-style: none;
  padding: 0;
  margin: 0 auto 12px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.footer-socials {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 10px;
  align-items: center;
  justify-content: center;
}
footer a {
  color: transparent;
  transition: opacity 0.2s, background 0.2s, color 0.2s;
  box-sizing: border-box;
  padding: 8px 12px;
  border-radius: 6px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer a:hover {
  border: 1px solid rgb(0, 0, 48);
  transition: 0.4s ease-in-out;
}
footer img {
  width: 32px;
  height: 32px;
  display: block;
  margin: 0;
  transition: filter 0.2s;
}
footer ul ul,
footer ul ul li {
  all: unset;
}

@media screen and (max-width: 900px) {
  .about {
    grid-template-columns: 1fr;
    grid-template-areas:
      "aboutUs"
      "whoUs"
      "visionMission";
    gap: 16px;
    padding: 12px 2vw 12px 2vw;
  }
  .whoUs,
  .visionMission {
    margin-left: 0;
    margin-right: 0;
    padding: 10px 8px 30px 8px;
  }
  .servicesGrid,
  .projectsGrid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 100%;
    padding: 0 2vw;
  }
  .projectCard,
  .serviceCard {
    padding: 18px 8px 16px 8px;
  }
  .contact {
    width: 98%;
    min-width: 0;
    padding: 12px 2vw;
  }
}

@media screen and (max-width: 640px) {
  body {
    grid-template-areas:
      "hero"
      "about"
      "visionMission"
      "services"
      "projects"
      "whyUs"
      "contact"
      "footer";
  }
  .header {
    padding: 6px 2vw;
    height: 48px;
    min-height: 48px;
    max-height: 48px;
  }
  .header img {
    width: 44px;
    height: 28px;
    margin: 0;
    object-fit: contain;
  }
  .navbar {
    display: none !important;
  }
  .hamburger {
    display: flex !important;
    width: 32px;
    height: 32px;
    margin-right: 0;
  }
  .hamburger span {
    width: 22px;
    height: 3px;
    margin: 3px 0;
  }
  .hero {
    padding: 56px 2vw 18px 2vw;
  }
  .hero h1 {
    font-size: 1.05rem;
    margin-bottom: 8px;
  }
  .hero p {
    padding: 0 2vw 8px 2vw;
    font-size: 0.92rem;
  }
  .buttonHero {
    flex-direction: column;
    gap: 4px;
  }
  .buttonHero p {
    padding: 7px 12px;
    font-size: 0.92rem;
    margin: 4px 0;
  }
  .about {
    padding: 8px 2vw 8px 2vw;
    gap: 8px;
  }
  .about h2 {
    font-size: 1.05rem;
    margin-bottom: 10px;
  }
  .whoUsCards {
    flex-direction: column;
    gap: 6px;
  }
  .whoUsCards > div {
    padding: 8px 2px;
  }
  .visionMission,
  .whoUs {
    padding: 8px 2px 12px 2px;
  }
  .visionMission ul,
  .visionMission p,
  .whoUs p {
    padding-left: 0;
    padding-right: 0;
    font-size: 0.92rem;
  }
  .services h2,
  .projects h2,
  .whyUs h2,
  .contact h2 {
    font-size: 1rem;
  }
  .servicesGrid,
  .projectsGrid {
    grid-template-columns: 1fr;
    gap: 6px;
    max-width: 100%;
    padding: 0 1vw;
  }
  .projectCard,
  .serviceCard {
    padding: 10px 2vw 10px 2vw;
  }
  .projectImg {
    max-width: 100%;
    margin-bottom: 10px;
  }
  .whyUs {
    padding: 10px 2px 6px 2px;
  }
  .whyUs ul {
    gap: 8px;
  }
  .whyUs ul li {
    min-width: 0;
    padding: 6px 2px;
    font-size: 0.92rem;
  }
  .contact {
    width: 100%;
    padding: 4px 1vw;
  }
  .contact input,
  .contact textarea {
    font-size: 0.95rem;
    padding: 7px 8px;
  }
  .contact button {
    padding: 8px 0;
    font-size: 0.95rem;
  }
  footer {
    font-size: 0.88rem;
    padding: 8px 0 0 0;
  }
  .footer-socials {
    gap: 4px;
  }
  footer img {
    width: 18px;
    height: 18px;
  }
}

.projectsGrid,
.servicesGrid {
  width: 100%;
  box-sizing: border-box;
}
.projectCard,
.serviceCard {
  min-width: 0;
  box-sizing: border-box;
}

.hamburger {
  display: none;
}
