@import url('https://cdn-uicons.flaticon.com/2.6.0/uicons-regular-straight/css/uicons-regular-straight.css')

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth;
}

body{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, 
    Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: black;
    color: #e7e7e7;
    min-height: 100vh;
    line-height: 1.5;
    overflow-x: hidden;
}

/* LAYER & BLUR EFFECT */
.image-gradient{
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.5;
    z-index: -1;
}

.layer-blur{
    height: 0;
    width: 30rem;
    position: absolute;
    top: 20%;
    right: 0;
    box-shadow: 0 0 700px 15px white;
    rotate: -30deg;
    z-index: -1;
}

.dot-nav {
  position: fixed;
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.4); /* Transparan */
  padding: 10px;
  border-radius: 30px;
  backdrop-filter: blur(35px);
  -webkit-backdrop-filter: blur(35px); /* Safari support */
}


.dot {
  color: #aaa;
  font-size: 16px;
  text-decoration: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
}

.dot:hover,
.dot.active {
  color: white;
}

.dot.active {
  background: white;
  color: black;
  font-size: 18px;
  box-shadow: 0 0 0 2px white;
}



/*CONTAINER*/
.container{
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

/*HEADER*/
header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5rem;
    z-index: 999;
}

header img{
    margin: 0;
    height: 20px;
}

nav{
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-left: -5%;
    z-index: 10;
}

nav a{
    font-size: 1rem;
    letter-spacing: 0.1rem;
    transition: color 0.2s ease;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

nav a:hover{
    color: #a7a7a7;
}

.btn-apply {
    background: linear-gradient(135deg, #4f8dfd, #2b6df6);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 999px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(47, 101, 255, 0.3);
    cursor: pointer;
    position: relative;
    z-index: 10;
    text-decoration: none; /* Tambahkan ini */
}

.btn-apply:hover {
    background: linear-gradient(135deg, #2b6df6, #4f8dfd); /* warna gradasi dibalik */
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(47, 101, 255, 0.4);
}


/* MAIN SECTION */
main{
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(90vh - 6rem);
}

.content{
    max-width: 50rem;
    margin-left: 10%;
    z-index: 999;
}

.tag-box{
    position: relative;
    width: 18rem;
    height: 2.5rem;
    border-radius: 50px;
    background: linear-gradient(to right, #d7eaff, #2b6df6, #1d4ed8, #2b6df6, #d7eaff);

    background-size: 200%;
    animation: animationGradient 2.5s linear infinite;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

@keyframes animationGradient{
    to{
        background-position: 200%;
    }
}

.tag-box .tag{
    position: absolute;
    inset: 3px 3px 3px 3px;
    background: black;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s ease-in-out;
    cursor: pointer;
}

.tag-box .tag:hover{
    letter-spacing: 0.1rem;
}

.content h1{
    font-size: 4rem;
    font-weight: 600;
    margin: 2rem 0;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(128, 128, 128, 0.438);
}

.description{
    text-align: justify;
    font-size: 1.2rem;
    letter-spacing: 0.02em;
    max-width: 30rem;
    color: gray;
}

.buttons{
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
}

.btn-get-started{
    text-decoration: none;
    border: 1px solid #2a2a2a;
    color: #0077ff;
    padding: 0.7rem 1.2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    transition: background-color 0.2s ease;
}

.btn-get-started:hover{
    background-color: #1a1a1a;
}

.btn-signin-main {
    text-decoration: none;
    color: lightgray;
    padding: 0.6rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    transition: all 0.3s ease; /* Correct transition */
}

.btn-signin-main:hover {
    transform: translateX(10px);
}

.robot-3d{
    position: absolute;
    top: 0;
    right: -20%;
    pointer-events: none;
    z-index: 0;
    pointer-events: none;
}

/* ABOUT SECTION */
#about {
  min-height: 100vh;
  background: black;
  color: #1a1a1a;
  padding: 10rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.about-container {
  max-width: 1000px;
  margin: 0 auto;
}

.about-label {
  color: #3d8bff;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.about-heading {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 3rem;
  color: #fff;
  text-align: justify;
}

.about-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  cursor: pointer;
}

.about-card {
  position: relative;
  flex: 1 1 280px;
  background-color: rgba(26, 27, 83, 0.05);
  border: 1px solid #111f3a;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 2rem;
  border-radius: 8px;
  color: #fff;
  text-align: left;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
}

.about-card .icon {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 2rem;
}

.icon-about {
    background: #0077ff07;
    border: 1px solid #182b52;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    color: white;
    font-size: 1.5rem;
    line-height: 1;
}


.about-card h3 {
  margin-top: 3rem; /* agar tidak bertabrakan dengan icon */
  font-size: 1.25rem;
  font-weight: bold;
  color: #fff;
}


.about-card p {
  margin-top: 0.5rem;
  color: #ddd;
}

.tag-box-about{
    position: relative;
    width: 12rem;
    height: 2.5rem;
    border-radius: 50px;
    background: linear-gradient(to right, #d7eaff, #2b6df6, #1d4ed8, #2b6df6, #d7eaff);
    background-size: 200%;
    animation: animationGradient 2.5s linear infinite;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    margin-bottom: 1.2rem;
}

@keyframes animationGradient{
    to{
        background-position: 200%;
    }
}

.tag-box-about .tag-about{
    color: white;
    position: absolute;
    inset: 3px 3px 3px 3px;
    background: black;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s ease-in-out;
    cursor: pointer;
}

.tag-box-about .tag-about:hover{
    letter-spacing: 0.1rem;
}

.about-card h3 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #fff;
}

.about-card p {
  font-size: 0.95rem;
  color: #ddd;
  text-align: justify;
}

.about-summary {
  position: relative;
  overflow: hidden;
  flex: 1 1 280px;
  background-color: rgba(26, 27, 83, 0.05);
  border: 1px solid #111f3a;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 2rem;
  border-radius: 8px;
  color: #fff;
  text-align: left;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
  font-weight: 700;
  cursor: pointer;
}

.about-summary p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #fff;
  text-align: justify;
}

.btn-join {
  display: inline-block;
  background: #3d8bff;
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-join:hover {
  background: #2565c5;
}

/* FEATURE SECTION */
    #features {
    color: white;
    padding: 3rem 30px;
    font-family: sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    }
    
    #features .feature-container {
      max-width: 1100px;
      margin: 0 auto;
      text-align: center;
    }

    .feature-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    }
    
    .tag-box-feature{
    position: relative;
    width: 12rem;
    height: 2.5rem;
    border-radius: 50px;
    background: linear-gradient(to right, #d7eaff, #2b6df6, #1d4ed8, #2b6df6, #d7eaff);
    background-size: 200%;
    animation: animationGradient 2.5s linear infinite;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    margin: 0 auto 1.2rem auto; /* tengah + jarak bawah */
    }
    
    .tag-box-feature .tag-feature{
    color: white;
    position: absolute;
    inset: 3px 3px 3px 3px;
    background: black;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s ease-in-out;
    cursor: pointer;
    }

    .tag-box-feature .tag-feature:hover{
        letter-spacing: 0.1rem;
    }

    #features .subtitle {
      text-align: center;
      color: #3b82f6; /* Biru */
      text-transform: uppercase;
      font-weight: 600;
      font-size: 14px;
      letter-spacing: 1px;
    }

    #features .title {
      font-size: 36px;
      text-align: center;
      font-weight: bold;
      margin-top: 10px;
    }

    #features .feature-description {
      text-align: center;
      color: #cbd5e1;
      margin-top: 10px;
      font-size: 16px;
    }

    #features .btn-group {
      margin-top: 30px;
      display: flex;
      justify-content: center;
      gap: 16px;
    }

    #features .job-grid {
      max-width: 1200px;
      margin: 0 auto;
      margin-top: 5%;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
      gap: 30px;
    }

   .job-card {
    background-color: rgba(26, 27, 83, 0.05);
    border: 1px solid #111f3a;
    backdrop-filter: blur(15px);
    border-radius: 12px;
    padding: 24px;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease-in-out; /* perbaikan di sini */
    }

    .job-card:hover {
    transform: translateY(-5px);
    background-color: rgba(26, 27, 83, 0.05);
    border: 1px solid #3b82f6;
    }

    .job-card .apply-btn {
      position: absolute;
      top: 20px;
      right: 20px;
      background: white;
      color: black;
      font-weight: bold;
      padding: 6px 16px;
      border-radius: 20px;
      text-decoration: none;
      font-size: 14px;
    }

    .job-card .apply-btn:hover {
      background-color: #e2e8f0;
    }

    .job-header {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 16px;
    }

    .job-header img {
      width: 28px;
      height: 28px;
      border-radius: 8px;
      object-fit: cover;
      
    }

    .job-header .image-box{
        width: 50px;
        height: 50px;
        border-radius: 10px;
        background-color: #0c0d47;
        display: flex;               /* Menjadikan flex container */
        align-items: center;         /* Vertikal tengah */
        justify-content: center;
    }

    .job-info h3 {
      margin: 0;
      font-size: 16px;
      font-weight: 600;
    }

    .job-info span {
      font-size: 14px;
      color: #415166;
    }

    .job-description {
      text-align: justify;
      color: #cbd5e1;
      font-size: 14px;
      margin: 16px 0;
    }

    .divider {
      border-top: 1px solid #152d53;
      margin-bottom: 16px;
    }

    .meta {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      font-size: 14px;
      color: #94a3b8;
      align-items: center;
    }

    .meta span {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .meta img {
      width: 16px;
      height: 16px;
    }


/* Contact Section */
#contact {
  color: white;
  padding: 5rem 0;
  font-family: sans-serif;
  min-height: 500px;
}

.tag-box-rules{
    position: relative;
    width: 12rem;
    height: 2.5rem;
    border-radius: 50px;
    background: linear-gradient(to right, #d7eaff, #2b6df6, #1d4ed8, #2b6df6, #d7eaff);
    background-size: 200%;
    animation: animationGradient 2.5s linear infinite;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

@keyframes animationGradient{
    to{
        background-position: 200%;
    }
}

.tag-box-rules .tag-rules{
    position: absolute;
    inset: 3px 3px 3px 3px;
    background: black;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s ease-in-out;
    cursor: pointer;
}

.tag-box-rules .tag-rules:hover{
    letter-spacing: 0.1rem;
}

.why-jobboard-wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  flex-wrap: wrap;
}

.left-text {
  flex: 0 0 35%;
  max-width: 35%;
  padding-left: 1rem;
  box-sizing: border-box;
}

.left-text h5 {
  text-transform: uppercase;
  font-size: 14px;
  color: #3b82f6;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.left-text h2 {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.left-text p {
  color: #cbd5e1;
  font-size: 1rem;
  max-width: 400px;
}

.marquee-card {
  background-color: rgba(26, 27, 83, 0.05);
  border: 1px solid #111f3a;
  border-radius: 0.75rem;
  width: 250px;
  height: 150px;
  color: white;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.05);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.marquee-card .icon-box {
  background: #0077ff07;
  border: 1px solid #182b52;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  color: white;
  font-size: 1.5rem;
  line-height: 1;
}

.marquee-card .card-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.marquee-card h4 {
  font-size: 1.1rem;
  font-weight: bold;
  color: white;
  margin: 0;
}

.marquee-card p {
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
}
.marquee-container {
  flex: 1;
  overflow: hidden;
  margin-right: calc((100vw - 1200px) / -2);
  box-sizing: border-box;
}

.marquee-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: marquee 20s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}


/*REVIEW SECTION*/
#review {
    color: white;
    font-family: sans-serif;
    margin: 0 auto;
    margin-top: -5%;
    }
    
    .tag-box-review{
    position: relative;
    width: 12rem;
    height: 2.5rem;
    border-radius: 50px;
    background: linear-gradient(to right, #d7eaff, #2b6df6, #1d4ed8, #2b6df6, #d7eaff);
    background-size: 200%;
    animation: animationGradient 2.5s linear infinite;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    margin: 0 auto 1.2rem auto; /* tengah + jarak bawah */
    }
    
    .tag-box-review .tag-review{
    color: white;
    position: absolute;
    inset: 3px 3px 3px 3px;
    background: black;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s ease-in-out;
    cursor: pointer;
    }

    .tag-box-review .tag-review:hover{
        letter-spacing: 0.1rem;
    }

    #review .review-subtitle {
      text-align: center;
      color: #3b82f6; /* Biru */
      text-transform: uppercase;
      font-weight: 600;
      font-size: 14px;
      letter-spacing: 1px;
    }

    #review .title {
      font-size: 36px;
      text-align: center;
      font-weight: bold;
      margin-top: 10px;
    }

    #review .section-description {
    text-align: left;
    color: #cbd5e1;
    margin-top: 10px;
    font-size: 13px;
    padding-bottom: 1rem;
    }

    #review .btn-group {
      margin-top: 30px;
      display: flex;
      justify-content: center;
      gap: 16px;
    }

    #review .review-grid {
    margin: 0 auto;
    margin-top: 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    justify-content: center; /* supaya baris terakhir bisa rata tengah */
    }

    .review-grid .empty-cell {
    visibility: hidden;
    height: 0;
    pointer-events: none;
    }

   .review-card {
    background-color: rgba(26, 27, 83, 0.05);
    border: 1px solid #111f3a;
    backdrop-filter: blur(15px);
    border-radius: 12px;
    padding: 24px;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    }

    .review-card:hover {
    transform: translateY(-5px);
    background-color: rgba(26, 27, 83, 0.05);
    }

    .review-header {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 16px;
    }

    .review-header img {
      width: 28px;
      height: 28px;
      border-radius: 8px;
      object-fit: cover;
    }

    .review-header .image-box{
        width: 50px;
        height: 50px;
        border-radius: 10px;
        display: flex;               /* Menjadikan flex container */
        align-items: center;         /* Vertikal tengah */
        justify-content: center;
    }

    .image-box.apel{background-image: url(assets/img/profile-apel.png);background-size: contain;}
    .image-box.neo{background-image: url(assets/img/profile-neo.png);background-size: contain;}
    .image-box.mint{background-image: url(assets/img/profile-mint.png);background-size: contain;}
    .image-box.ichi{background-image: url(assets/img/profile-ichi.jpg);background-size: contain;}
    .image-box.bhis{background-image: url(assets/img/profile-bhis.jpg);background-size: contain;}
    .image-box.ayam{background-image: url(assets/img/profile-ayam.png);background-size: contain;}
    .image-box.yuda{background-image: url(assets/img/profile-yuda.png);background-size: contain;}
    .image-box.levy{background-image: url(assets/img/profile-levy.png);background-size: contain;}
    .image-box.aoki{background-image: url(assets/img/profile-aoki.png);background-size: contain;}
    .image-box.ben{background-image: url(assets/img/profile-ben.png);background-size: contain;}
    .image-box.taro{background-image: url(assets/img/profile-taro.jpg);background-size: contain;}
    .image-box.novan{background-image: url(assets/img/profile-novan.jpg);background-size: contain;}

    .review-info h3 {
      margin: 0;
      font-size: 16px;
      font-weight: 600;
    }

    .review-info span {
      font-size: 14px;
      color: #415166;
    }

    .review-description {
      text-align: justify;
      color: #cbd5e1;
      font-size: 14px;
      margin: 16px 0;
    }

    .review-desc {
      text-align: center;
      color: #cbd5e1;
      font-size: 14px;
      margin: 16px 0;
    }

    .review-divider {
      border-top: 1px solid #152d53;
      margin-bottom: 16px;
    }

    .review-meta {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      font-size: 14px;
      color: #94a3b8;
      align-items: center;
    }

    .review-meta span {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .review-meta img {
      width: 16px;
      height: 16px;
    }

.review-grid-wrapper {
  position: relative;
  padding-bottom: 100px; /* ruang buat gradient */
  overflow: hidden;
}

.review-grid {
  position: relative;
  z-index: 1;
}

.review-fade-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50rem;
  background: linear-gradient(0deg,rgba(0, 0, 0, 1) 20%, rgba(255, 193, 94, 0) 100%);
  pointer-events: none;
  z-index: 2;
}

.see-all-container {
  position: relative;
  margin-top: -7rem; /* agar naik ke atas overlay */
  z-index: 3;         /* di atas gradient overlay */
  display: flex;
  justify-content: center;
}

.see-all-button {
  background: linear-gradient(135deg, #4f8dfd, #2b6df6);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 999px;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05rem;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(47, 101, 255, 0.3);
  transition:
    background 0.4s ease-in-out,
    transform 0.3s ease-in-out,
    box-shadow 0.3s ease-in-out;
}

.see-all-button:hover {
  background: linear-gradient(135deg, #2b6df6, #4f8dfd);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(47, 101, 255, 0.45);
}

/*SECTION FAQ*/
#faq {
  color: white;
  padding: 5rem 0;
  font-family: sans-serif;
  min-height: 500px;
}

/* Container layout */
.faq-container {
  display: flex;
  flex-direction: row;
  gap: 2rem;
}

@media (max-width: 768px) {
  .faq-container {
    flex-direction: column;
  }

  .left-text {
    order: -1; /* tampilkan duluan di mobile */
  }
}

/* FAQ list bagian kanan */
.faq-list {
  flex: 0 0 60%;
  max-width: 60%;
}

.faq-list .faq-item {
  margin-bottom: 1rem;
}

/* FAQ item */
.faq-item {
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.open {
  background: linear-gradient(to right, #3b82f6, #1d4ed8);
  color: white;
}

/* Pertanyaan */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem;
  font-weight: bold;
  color: white;
  cursor: pointer;
  border-radius: 0.5rem;
  background-color: rgba(0, 0, 0, 0.05);
  border: 1px solid #111f3a;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  text-align: left;

  /* Transisi lebih smooth */
  transition: background-color 0.4s ease, border-color 0.4s ease, transform 0.3s ease;
}

.faq-question:hover {
  background-color: rgba(26, 27, 83, 0.05);
  border-color: #3b82f6;
}

/* Jawaban */
.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  border-radius: 15px;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  opacity: 1;
  margin-top: 0.5rem;
  padding: 1rem;
  text-align: justify;
}

/* Icon panah */
.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  transform-origin: center;
  transition: transform 0.3s ease;
}

.icon i {
  font-size: 1.5rem;
  line-height: 1;
}

/* Rotasi saat open */
.faq-item.open .icon {
  transform: rotate(180deg);
}


/*DISCORD SECTION*/
.discord {
  color: white;
  padding: 0.1rem 0;
  font-family: sans-serif;
  min-height: 500px;
  display: flex;
  justify-content: center;
  position: relative;
}

.discord-container {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  background: #0077ff07;
  border: 1px solid #182b52;
  max-width: 1400px;
  width: 100%;
  height: 300px;
  box-shadow: 0 0 0 0.5px rgba(255, 255, 255, 0.1);

  /* Center content vertically & horizontally */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.discord-container img{
  height: 20px;
}

.discord-container > * {
  position: relative;
  z-index: 2;
}

.discord-container::before {
  background: url(assets/img/dc-wallpaper.png) no-repeat;
  background-size: cover;
  content: "";
  position: absolute;
  inset: 0; /* shorthand utk top: 0; right: 0; bottom: 0; left: 0 */
  opacity: 0.3; /* ⬅️ transparansi diatur di sini */
  z-index: 0;
}

.discord-container h2 {
  color: white;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.discord-container h2 span {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  background: #7289da;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.discord-button {
  background: white;
  color: black;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.discord-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* FOOTER */
.footer {
  background: black;
  color: #fff;
  font-family: sans-serif;
  padding: 4rem 2rem 2rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1300px;
  margin: 0 auto;
}

.footer-col {
  flex: 1 1 250px;
  min-width: 250px;
}

.footer-col h3, .footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer-col p {
  line-height: 1.5;
  font-size: 0.95rem;
}

.footer-socials a {
  margin-right: 0.5rem;
  font-size: 1.1rem;
  color: #fff;
  transition: color 0.3s;
}

.footer-socials a:hover {
  color: #60a5fa;
}

.news-item {
  display: flex;
  margin-bottom: 1rem;
}

.news-item img {
  width: 50px;
  height: 50px;
  border-radius: 4px;
  margin-right: 0.75rem;
}

.news-text p {
  margin: 0;
  font-size: 0.9rem;
}

.news-text span {
  display: block;
  font-size: 0.75rem;
  color: #94a3b8;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #60a5fa;
}

.contact-info i {
  margin-right: 0.5rem;
  color: #60a5fa;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #94a3b8;
}


/* REVIEW PAGE */
.hero-section {
  text-align: center;
  padding: 60px 20px 20px;
}

.hero-section h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.search-container {
  display: flex;
  align-items: center;
  background-color: #13111a;
  border: 1px solid #3e3a4e;
  border-radius: 999px;
  padding: 8px;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  gap: 10px;
  position: relative;
}

.search-container .search-icon {
  color: white;
  margin-left: 12px;
  font-size: 1rem;
}

.search-container input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: white;
  font-size: 1rem;
  padding: 10px;
}

.search-container button {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: white;
  color: black;
  border: none;
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.search-container button:hover {
  background-color: #ddd;
}

.filter-bar {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  
  /* Tambahan agar sejajar dengan card */
  max-width: 1150px;  /* Sama dengan .card-grid */
  margin: 0 auto;
}

.filter-button {
  padding: 8px 16px;
  border: 1px solid #6c4ef2;
  background: transparent;
  color: white;
  border-radius: 10px;
  cursor: pointer;
}

.filter-button.active {
  background-color: #6c4ef2;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;

  /* Untuk center baris terakhir jika tidak penuh */
  justify-content: center;
}

@media (max-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 cols on tablet */
  }
}

@media (max-width: 600px) {
  .card-grid {
    grid-template-columns: 1fr; /* 1 col on mobile */
  }
}

.profile-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  background-color: rgba(26, 27, 83, 0.05);
  border: 1px solid #111f3a;
  border-radius: 16px;
  padding: 20px;
  gap: 20px;
  color: white;
  max-width: 700px;
  min-height: 200px;
  margin: auto;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.profile-card:hover{
  transform: translateY(-5px);
    background-color: rgba(26, 27, 83, 0.05);
    border: 1px solid #3b82f6;
}

.card-left img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.card-content {
  flex: 1;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-header h3 {
  margin: 0;
}

.info-btn {
  background-color: #6c4ef2;
  color: white;
  border: none;
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.9rem;
}

.profile-card .title {
  font-weight: 500;
  margin: 6px 0;
  font-size: 0.95rem;
  color: #bbb;
}

.stars {
  color: #a78bfa;
  margin-left: 8px;
}

.profile-card .desc {
  font-size: 0.88rem;
  color: #aaa;
  margin: 10px 0;
}



/* Responsive */
@media (max-width: 768px) {
  .faq-section {
    flex-direction: column;
  }

  .faq-content, .faq-list {
    width: 100%;
  }
}

/*MOBILE RESPONSIVE*/

@media (max-width: 1024px) {
  .dot-nav {
    display: none;
  }

  .why-jobboard-wrapper {
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
  }

  .left-text {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 0;
    text-align: center;
  }

  .marquee-container {
    flex: 1 1 100%;
    max-width: 100%;
    margin-right: 0;
    margin-top: 2rem;
  }
  .tag-box-rules {
    margin-left: auto;
    margin-right: auto;
    display: block; /* pastikan bisa diberi margin auto */
  }
  .hide-on-mobile {
    display: none;
  }
  .faq-container {
    flex-direction: column; /* di mobile jadi column */
  }

  .left-text {
    order: -1; /* pastikan left-text muncul dulu */
  }

  .faq-list {
    order: 1;
  }
}

@media (max-width: 600px) {
  .marquee-card {
    min-width: 200px;
    max-width: 200px;
    height: auto;
    padding: 1rem;
  }

  .icon-box {
    font-size: 1rem;
  }

  .left-text h2 {
    font-size: 1.5rem;
  }

  .left-text p {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px){
    header{
        padding: 1rem 0.1rem;
    }
    nav{
        display:none
    }
    header h1{
        font-size: 1.6rem;
    }
    .btn-apply{
        pad: 0.6rem 1.5rem;
    }
    .content{
        margin-top: 25rem;
    }
    .robot-3d{
        scale: 0.5;
        top: -25%;
        right: 0;
    }
    .content{
        max-width: 30rem;
        margin-left: 10%;
    }
    .tag-box{
        width: 12rem;
    }
    .content h1{
        font-size: 2.5rem;
    }
    .description{
        font-size: 1rem;
    }
    .btn-get-started{
        font-size: 0.8rem;
        padding: 0.8rem 1.2rem;
    }
    .btn-signin-main{
        font-size: 0.8rem;
        padding: 0.8rem 2rem;
    }
    .tag-box-rules {
    margin-left: auto;
    margin-right: auto;
    display: block;
   }
    
}