section {
    display: flex;
    justify-content: center;
}

.wide-side .text {
    margin-bottom: 2rem;
    font-weight: bold;
}
.wide-side .text .title {
    font-weight: bold;
    font-size: 48px;
}

/* Section: landing-top */
#landing-top {
    position: relative;
    
    color: #0B1A63;
    min-height: 600px;
    background: url('../img/bg/shoes.png') no-repeat right bottom;
    background-size: auto 90%;
    /* background-size: cover; */
    
}
#landing-top .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #ffffff;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.4) 100%);
}
#landing-top .overlay::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    z-index: 1;
}


#landing-top .wide-side{
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    
}


#landing-top p {
    font-size: 20px;
    margin-top: 10px;
}

/* Section: landing-video */
#landing-video {
    background-color: #FFFFFF;
    overflow: hidden;
}
#landing-video .wide-side{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#landing-video h2 {
    font-size: 28px;
    color: #03185C;
    margin-bottom: 40px;
    text-align: center;
}

.video-card-talking {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    font-family: Arial, sans-serif;
  }
  
 #video-card-talking .video-card {
    width: 340px;
    color: #333;
  }
  
  /* === Gambar & Video === */
 #video-card-talking .image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    aspect-ratio: 3 / 4; /* Responsive ratio */
  }
 #video-card-talking .image-wrapper:hover {
    border-radius: 12px;
  }
  
  /* Container hitam saat hover */
 #video-card-talking .video-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    align-items: center;     /* ✅ center vertical */
    justify-content: center; /* ✅ center horizontal */
    overflow: hidden;
  }
  
  /* Video awalnya hidden */
 #video-card-talking .video-container.playing video {
    display: block;
    width: 100%;
    height: 50%;
    object-fit: cover;
    position: relative;
    z-index: 1;
  }
  
  
  /* Tampilkan video saat hover lama */
  #video-card-talking .video-container.playing video {
    display: block;
    height: 50%;
  }
  
  /* GAMBAR - tampil default, menghilang saat playing */
  #video-card-talking .video-container img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    transition: opacity 0.3s ease, transform 0.5s ease;
  }
  
  /* Hover zoom */
  #video-card-talking .image-wrapper:hover img {
    transform: scale(1.05);
  }
  
  /* OVERLAY - muncul saat hover, hilang saat video aktif */
  #video-card-talking .video-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(to top, rgba(11, 26, 99, 1), transparent);
    color: white;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    font-size: 16px;
    opacity: 0;
    z-index: 3;
    border-radius: 0 0 15px 15px;
    transition: height 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}
  
  /* Hover effect to expand overlay from bottom */
  #video-card-talking .image-wrapper:hover .overlay {
    height: 95%;
    opacity: 1;
  }
  
  /* === Saat video diputar (class: playing) === */
  #video-card-talking .video-container.playing video {
    display: block;
    z-index: 1;
  }
  
  #video-card-talking .video-container.playing img {
    opacity: 0;
  }
  
  #video-card-talking .video-container.playing .overlay {
    display: none;
  }
  
  /* === Text === */
  #video-card-talking .video-card h3 {
    margin: 12px 0 6px;
    font-size: 18px;
    font-weight: bold;
  }
  
  #video-card-talking .video-card p {
    font-size: 14px;
    line-height: 1.5;
  }
  
  /*  */
  #vidcard-interview {
    width: 100%;
    overflow: hidden;
    position: relative;
  }
  
  #vidcard-interview .slider-track {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: transform 0.5s ease;
    width: 100%;
    overflow: visible;
    padding: 12px 0px;
  }
  
  /* #vidcard-interview .slide {
    width: 300px;
    flex-shrink: 0;
    border-radius: 1rem;
    background: white;
    text-align: center;
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0.4;
    transform: scale(0.9);
    overflow: hidden;
  }
  
  #vidcard-interview .slide.active {
    transform: scale(1.1);
    opacity: 1;
  }
   */

   #vidcard-interview .slide {
    flex-shrink: 0;
    transition: transform 0.4s ease, opacity 0.4s ease, flex 0.4s ease;
    opacity: 0.4;
    transform: scale(0.9);
  }
  
  #vidcard-interview .slide.left {
    flex: 0 0 20%;
    opacity: 0.6;
    transform: scale(0.9);
  }
  
  #vidcard-interview .slide.center {
    flex: 0 0 60%;
    opacity: 1;
    transform: scale(1.05);
  }
  
  #vidcard-interview .slide.right {
    flex: 0 0 20%;
    opacity: 0.6;
    transform: scale(0.9);
  }
  
  #vidcard-interview .slide.hidden {
    display: none;
  }

  
  #vidcard-interview .image-wrapper {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
  }
  
/* Video container dasar */
#vidcard-interview .video-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  overflow: hidden;
  border-radius: 1rem;
}

/* Video & gambar posisi sama */
#vidcard-interview .video-container video,
#vidcard-interview .video-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Awal: video disembunyikan */
#vidcard-interview .video-container video {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Saat video diputar (class playing aktif) */
#sliderTrack.playing .video-container video {
  display: block;
  opacity: 1;
  transform: scale(1.02); /* sedikit zoom */
}

/* Overlay tetap ada (hitam transparan + teks) */
#vidcard-interview .slide .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(to top, rgba(11, 26, 99, 1), transparent);
    color: white;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    font-size: 16px;
    opacity: 0;
    z-index: 3;
    border-radius: 0 0 15px 15px;
    transition: height 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}
  
  /* Hover effect to expand overlay from bottom */
  #vidcard-interview .slide:hover .overlay {
    height: 95%;
    opacity: 1;
  }
  
  /* === Saat video diputar (class: playing) === */
  #vidcard-interview .video-container.playing video {
    display: block;
    opacity: 1;
    z-index: 1;
  }
  
  #vidcard-interview .video-container.playing img {
    opacity: 0;
  }
  
  #vidcard-interview .video-container.playing .overlay {
    display: none;
  }
  
 
  
  
  #vidcard-interview .slide .text {
    padding: 1rem;
  }
  
  #vidcard-interview .slide .text h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: bold;
  }
  
  #vidcard-interview .slide .text p {
    margin: 0.5rem 0 0;
    font-size: 1rem;
    color: #666;
  }
  
  #vidcard-interview .nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    font-size: 20px;
    padding: 5px;
    cursor: pointer;
    z-index: 2;
  }
  
  #vidcard-interview .nav-button.prev {
    left: 5px;
  }
  
  #vidcard-interview .nav-button.next {
    right: 5px;
  }
  

  /* video-card-interview */
  /* #vcard-interview {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
  }
  
  #vcard-interview .slider-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  #vcard-interview .slider-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
  }
  
  #vcard-interview .video-card {
    flex: 0 0 50%;
    opacity: 0.5;
    transform: scale(0.9);
    transition: transform 0.5s ease, opacity 0.5s ease;
  }
  
  #vcard-interview .video-card.active {
    flex: 0 0 100%;
    opacity: 1;
    transform: scale(1);
    z-index: 2;
  }
  
  #vcard-interview .nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    z-index: 3;
  }
  
  #vcard-interview .nav-button.prev {
    left: 10px;
  }
  
  #vcard-interview .nav-button.next {
    right: 10px;
  }
  
  
  #vcard-interview .video-card h3 {
    margin: 12px 0 6px;
    font-size: 18px;
    font-weight: bold;
  }
  
  #vcard-interview .video-card p {
    font-size: 14px;
    line-height: 1.5;
  }
  
  #vcard-interview .image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    aspect-ratio: 3/4;
  }
  
  #vcard-interview .image-wrapper:hover {
    border-radius: 12px;
  }
  
  #vcard-interview .video-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  
  #vcard-interview .video-container video {
    display: none;
    width: 100%;
    height: 50%;
    object-fit: cover;
  }
  
  #vcard-interview .video-container.playing video {
    display: block;
    z-index: 1;
  }
  
  #vcard-interview .video-container img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    transition: opacity 0.3s ease, transform 0.5s ease;
  }
  
  #vcard-interview .image-wrapper:hover img {
    transform: scale(1.05);
  }
  
  #vcard-interview .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(to top, rgba(0, 32, 64, 0.8), transparent);
    color: white;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    font-size: 16px;
    opacity: 0;
    z-index: 3;
    border-radius: 0 0 15px 15px;
    transition: height 0.3s ease, opacity 0.3s ease;
  }
  
  #vcard-interview .image-wrapper:hover .overlay {
    height: 50%;
    opacity: 1;
  }
  
  #vcard-interview .video-container.playing img {
    opacity: 0;
  }
  
  #vcard-interview .video-container.playing .overlay {
    display: none;
  }
  
  #vcard-interview .nav-button {
    background: #fff;
    border: 1px solid #ccc;
    font-size: 24px;
    cursor: pointer;
    padding: 8px 14px;
    border-radius: 50%;
    user-select: none;
  }
  
  #vcard-interview .nav-button:hover {
    background: #eee;
  } */
  
  
  




/* Section: landing-real */
#landing-real {
    margin: 0 auto;
    padding: 50px 20px;
    font-family: 'Arial', sans-serif;
    background-color: #E8F3FC;
}
#landing-real .wide-side{
    display: flex;
    flex-direction: column;
    justify-content: center;
}


#landing-real .content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 20px;
}

#landing-real .slider-container {
    flex: 1 1 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

#landing-real .slider-container .slide {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}
#landing-real .slider-container .slide:not(.active) {
    display: none;
}   
#landing-real .slider-dots {
    display: flex;
    gap: 8px;
}
#landing-real .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
#landing-real .dot.active {
    background-color: #0050ff;
}

#landing-real .slider-navigation {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    margin-top: 10px;
  }
  
  #landing-real .nav-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: #0050ff;
    cursor: pointer;
    transition: transform 0.2s ease;
  }
  
  #landing-real .nav-btn:hover {
    transform: scale(1.2);
  }
  
  #landing-real .image {
    flex: 1 1 1;
    position: relative;
  }
  
  #landing-real .image-slide {
    width: auto;
    height: 400px;
    border-radius: 12px;
    object-fit: cover;
    display: none;
  }
  #landing-real .image-slide.active {
    display: block;
  }




/*Section:landing-step  */
#landing-step {
    background-color:#FFF;
    font-family: Arial, sans-serif;
    padding: 40px 20px;
}

#landing-step .text h3 {
    font-size: 2rem;
    color: #1a32ff;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}

#landing-step .vertical-slider {
    display: flex;
    align-items: flex-start;
    position: relative;
}

#landing-step .timeline {
    position: relative;
    margin-right: 20px;
}

.timeline .line {
    width: 2px;
    height: 100%;
    background-color: #ccc;
    position: absolute;
    left: 6px;
    top: 0;
}

#landing-step .bullets {
    list-style: none;
    margin: 0;
    padding: 0;
}

#landing-step .bullets li {
    width: 12px;
    height: 12px;
    background-color: #ccc;
    border-radius: 50%;
    margin: 40px 0;
}

#landing-step .bullets li.active {
    background-color: blue;
}

#landing-step .slide-container {
    flex: 1;
    position: relative;
    height: 300px;
    overflow: hidden;
}

#landing-step .slide {
    display: none;
    transition: opacity 0.3s ease;
}

#landing-step .slide.active {
    display: block;
}

#landing-step .slide-img {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    margin-top: 10px;
}

#landing-step .nav-buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 20px;
}

#landing-step .nav-buttons button {
    background: none;
    border: none;
    font-size: 18px;
    color: #333;
    cursor: pointer;
    margin: 5px 0;
}

/* Section: landing-slide1 & landing-slide2 */
#landing-slide.landing-slide1 {
    background-color: #FFF;
}

#landing-slide {
    font-family: Arial, sans-serif;
    padding: 40px 20px;
}

#landing-slide .text h3 {
    font-size: 2rem;
    color: #1a32ff;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}

.slide-box {
    position: relative;
    max-width: 880px;
    margin: 0 auto;
}

.swiper {
    padding: 20px 0;
}

.swiper-slide {
    
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    width: 260px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.swiper-slide .img-cover {
    width: 260px;
    height: 300px;
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 10px;
    
}
.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swiper-slide .text {
    text-align: left;
}
.swiper-slide .text small {
    font-size: smaller;
    line-height: 1;
}

/* Navigasi kiri-kanan */
.swiper-button-prev,
.swiper-button-next {
    color:#cacaca !important;
    top: 40% !important;
    
}
.swiper-button-prev{
    left: -50px !important;
}
.swiper-button-next {
    right: -50px !important;    
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 24px !important;
} 


/* modal video */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }
  
  .video-modal.hidden {
    display: none;
  }
  
  .video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
  }
  
  .video-modal video {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
  .close-modal {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #fff;
    border: none;
    font-size: 28px;
    cursor: pointer;
    border-radius: 50%;
    width: 40px;
    height: 40px;
  }
  