@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    padding: 0;
    margin: 0;
    font-family: poppins;
    box-sizing: border-box;
    scroll-behavior: smooth;
    line-height: 1.6;
}

:root {
  --bg: white;
  --primary: #1C2F30;
  --hover:#0C1414;
  --secondary: #EEEEEE;
  --cta: #F2BF06;

  /* Font Size */
  --base:16px;
  --large:18px;
  --extra:20px;
  --manrope:"Manrope", sans-serif;
}

.section-spacing {
  margin: 5rem 0;
}

body {
    background-color: var(--bg);
    font-family: var(--manrope);
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

.hero nav{
  width: 100%;
  height: auto;
  padding: 20px 50px;
  background-color: rgba(255, 255, 255,0.6);
  backdrop-filter: blur(4px);
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

nav .logo{
  width: max-content;
  height: max-content;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo img{
  width: 75%;
  height: auto;
  max-width: 100%;
  cursor: pointer;
}

nav .links{
  width: max-content;
  height: auto;
  gap: 50px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.links i{
  color: #5D5A5A;
  font-size: 1rem;
}

.links a{
  color: #5D5A5A;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
}

.links a:hover{
  font-weight: 700;
}

nav .tombol{
  width: auto;
  height: auto;
  max-width: 100%;
  gap: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

nav .tombol a{
  color: #0C2E37;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}

nav .tombol a:nth-child(2){
  width: max-content;
  height: max-content;
  padding: 10px 25px;
  background-color: #0C2E37;
  border: 2px solid #0C2E37;
  border-radius: 6px;
  color: white;
}

nav .tombol a:nth-child(2):hover{
  border: 2px solid #0C2E37;
  color: #0C2E37;
  background-color: transparent;
}

.tombol i{
  padding: 10px 13px;
  border-radius: 5px;
  color: white;
  background-color: #0C2E37;
  font-size: 1.5rem;
  position: absolute;
  right: 30px;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.short{
  width: 100%;
  height: auto;
  padding: 20px 30px;
  background-color: rgba(0, 0, 0,0.4);
  box-shadow: 0px 0px 20px 0px rgb(0, 0, 0);
  backdrop-filter: blur(4px);
  border-radius: 10px;
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  gap: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  transform: translateY(-100000px);
  transition: all 0.5s ease-in-out;
}

.short .top{
  width: 100%;
  height: auto;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top img{
  width: 30%;
  height: auto;
  max-width: 100%;
}

.top i{
  width: auto;
  height: auto;
  padding: 10px 13px;
  background-color: #0C2E37;
  box-shadow: 0px 0px 4px 0px rgb(255, 255, 255);
  border-radius: 10px;
  color: white;
  font-size: 1.3rem;
}

.short .mid{
  width: 100%;
  height: auto;
  max-width: 100%;
  gap: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.mid a{
  color: white;
  text-decoration: none;
  font-size: 1.3rem;
  margin-right: 10px;
  letter-spacing: 1px;
  transition: all 0.3s ease-in-out;
}

.short .bot{
  width: 100%;
  height: auto;
  max-width: 100%;
  margin-top: 30px;
  gap: 30px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.bot a{
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}

.bot a:nth-child(2){
  width: max-content;
  height: max-content;
  padding: 10px 25px;
  background-color: #0C2E37;
  border-radius: 6px;
  color: white;
}

@media (max-width: 850px) {
  .tombol i{
      visibility: visible;
  }

  .logo,
  .links,
  .tombol a{
      visibility: hidden;
  }
}

.hero-content{
  width: 100%;
  height: 100vh;
  max-width: 100%;
  padding: 30px 30px;
  padding-bottom: 60px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background-color: var(--bg);
}

.hero-content .container{
  width: 100%;
  height: 85%;
  padding: 20px 50px;
  border-radius: 30px;
  background-color: #0C2E37;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container .left{
  width: 45%;
  height: auto;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.left h1{
  width: 100%;
  height: auto;
  color: white;
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.left p{
  width: 85%;
  height: auto;
  color: white;
  margin-bottom: 20px;
  font-size: 1rem;
  font-weight: 400;
}

.left a{
  width: max-content;
  height: auto;
  color: white;
  padding: 10px 30px;
  background-color: #F2BF06;
  border: 2px solid #F2BF06;
  border-radius: 10px;
  font-size: 1.2rem;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.left a:hover{
  border: 2px solid white;
  background-color: transparent;
}

.container .right{
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.right img{
  width: 80%;
  height: auto;
  max-width: 100%;
}

.choose-us{
  width: 100%;
  height: auto;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container-choose {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  max-width: auto;
  text-align: center;
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;
}

.title {
  font-size: 3rem;
  font-weight: bold;
  color: #0C2E37;
  margin-bottom: 10px;
}

.description {
  color: #737373;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.features {
  display: grid;
  padding: 0 10rem;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-item {
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary);
  border-radius: 8px;
  padding: 15px;
  font-size: 14px;
  font-weight: bold;
  background: #fff;
}
.feature-item:hover {
  cursor: pointer;
  transform: scale(1.05);
  transition: all 0.15s linear;
}

.feature-item i {
  margin-right: 8px;
  color: var(--primary);
  font-size: var(--extra);
}

.container-card {
  max-width: 1200px;
  margin: auto;
  margin-top: 2rem;
}
.header-card {
  text-align: center;
  margin-bottom: 20px;
}
.card-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.card {
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  
}
.card img {
  width:22rem;
  margin-bottom: 10px;
}
.card h3 {
  text-align: left;
  margin: 10px 0;
}
.card .card-description {
  width: 100%;
  text-align: left;
  margin: 0 0 1rem 0;
}

.verified {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.level {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.certificate {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.btn {
  display: inline-block;
  background: var(--primary);
  border: solid 2px var(--primary);
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 10px;
  width: 100%;
  transition: all .25s;
}

.testimonial-section{
  width: 100%;
  height: auto;
  max-width: 100%;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.testop{
  width: 100%;
  height: auto;
  max-width: 100%;
  margin-bottom: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.testop h1{
  color: #0C2E37;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
}

.testop p{
  width: 45%;
  color: #737373;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
}

.scroll{
  width: 100%;
  height: auto;
  gap: 30px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.scroll .testcards{
  width: max-content;
  height: auto;
  gap: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: scroller 20s linear infinite;
}

.testcards .testcard{
  width: 550px;
  height: auto;
  padding: 20px 30px;
  background-color: white;
  border: 2px solid #737373;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.testcard h2{
  font-size: 4rem;
  color: #565656;
  line-height: 1;
  margin-bottom: 20px;
}

.testcard p{
  font-size: 1.1rem;
  font-weight: 600;
  text-align: justify;
  margin-bottom: 10px;
  color: #565656;
  margin-bottom: 20px;
}

.testcard .tester{
  width: 100%;
  height: auto;
  max-width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.tester img{
  width: 10%;
  height: 10%;
  max-width: 100%;
  margin-right: 20px;
  border-radius: 30px;
  border: 2px solid #737373;
}

.tester .acc{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.acc h3{
  font-size: 1.3rem;
  font-weight: 700;
  color: #666666;
}

.acc p{
  font-size: 1rem;
  font-weight: 600;
  color: #8B8B8B;
}

@keyframes scroller {
  from{
      transform: translateX(110%);
  }

  to{
      transform: translateX(-110%);
  }
}

.cta-bottom-section {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0 5rem;
  margin-bottom: 50px;
  padding: 2rem;
  border-radius: 10px;
  background-color: var(--primary);
  color: #fff;
}

.cta-bottom-section h2 {
  font-size: 3rem;
}

.cta-bottom-section span {
  color: var(--cta);
}

.cta-bottom-section a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  width: 10rem;
  height: 10rem;
  font-size: 5rem;
  text-decoration: none;
  color: #ffffff;
  background-color: var(--cta);  

  transition: all .25s;
}

cta-bottom-section a:hover {
  color: transparent;
  border: 10px var(--cta);
  background-color: transparent;
}

.cta-bottom-paragraph {
  color: #fff;
  width: 30%;
}

footer {
  background-color: var(--bg); /* Warna latar belakang */
  color: var(--primary);
  font-family: Arial, sans-serif;
  padding: 20px 40px;
}

.footer-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 1.5rem;
}

.sosmed {
  display: flex;
  flex-direction: column;
  align-items: center;
  
}

.sosmed-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.down-wrap {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 1rem;
}

.down-row {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 0.5rem;
}

.footer-text {
  color: var(--primary);
  text-decoration: none;
}

.footer-text:hover {
  text-decoration: underline;
}

.copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

hr {
  width: 100%;
}

/* Responsif */
@media (max-width: 768px) {
  .down-wrap {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .down-row {
    align-items: center;
    text-align: center;
  }
}
