:root{
  --bg-menu: #97fcea;
  --card-divisi-header: #00baba;
  --white: white;
  --bg-card: #040811;
  --main-cyan: #58C4B1;
  --button-line: #7df5df;
  --main-white: #ededed;
  --text-body: #ffff;
}

@font-face {
  font-family: "CustomFont";
  src: url('../asset/font/Satoshi-Variable.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
}

body {
  margin: 0;
  font-family: "CustomFont";
  /* background: #292929; */
  background: linear-gradient(to bottom, #040811);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  
}

html,
body,
main {
  width: 100%;
  height: 100%;
}

header {
  margin-top: 3em;
  text-align: center;
  color: white;
}

p {
  color: white;
  /* width: 100%; */
  margin: 1.5rem 0;
}

/* h1 {
  color: rgb(60, 184, 222);
} */

h1 {
  color: rgb(255, 255, 255);
}

header h1 {
  font-size: 2em;
  font-weight: 900;
}

footer {
  margin-bottom: 3em;
  text-align: center;
  color: white;
}

footer h3 {
  font-size: 2em;
  font-weight: 900;
}

#container3D canvas {
  width: 100w !important;
  height: 100h !important;
  position: absolute;
  top: 10;
  left: 0;
}

section {
  height: 100vh;
}

.container {
  padding: 5rem;
}

.kalimat-awal {
  display: flex; /* Menggunakan flexbox */
  flex-direction: column; /* Mengatur arah flexbox menjadi kolom */
  padding-left: 40px;
  background: var(--bg-card);
  height: auto;
  font-size: 20px;
}
.judul-kanan {
  text-align: center;
  padding: 90px;
  padding-bottom: 0;
  /* padding-left: 20px; */
  padding-top: 0;
}

.judul-kanan span{
  display: none;
}

.isi-kalimat-awal {
  font-size: 80px;
  padding: 20px;
  margin-right: 200px;
  position: absolute; /* Position absolutely to overlap with the image */
  bottom: 200px; /* Adjust distance from the bottom */
  left: 20px; /* Align with padding/margin for consistency */
  color: white; /* Ensure text is visible over the image */
  z-index: 10; /* Ensure text appears above the image */
  line-height: 1;
}

.isi-kalimat-awal span{
  color: var(--main-cyan);
}



.cerita-dan-tahun {
  display: flex;
  justify-content: center; /* Opsional: untuk ruang merata */
  margin-top: 30px;
  padding: 20px;
}



.cerita {
  width: 70%;
  /* text-indent: 100px; */
  text-align: center;
  /* Gaya untuk elemen cerita */
}

.tahun {
  width: 40%;
  text-align: end;
  margin-right: 90px;
  line-height: 0.001;
  font-weight: bold;
  padding-top: 10px;
  /* Gaya untuk elemen tahun */
}

/* ------------------- */

.judul-dan-gambar {
  display: flex;
  justify-content: space-between; /* Opsional: untuk ruang merata */
  align-items: flex-start;
  padding-top: 300px;
  position: relative;
  overflow: hidden;
  /* padding-left: 20px; */
}

.judul-dan-button {
  width: 30%;
  text-align: center;
  /* background-color: #00baba; */
}

.judul {
  font-size: 40px;
  text-align: end;
  padding-left: 50px;
  color: white;
}

.slide-for-more {
  font-size: 20px;
  text-align: end;
  padding-left: 50px;
  color: white;
}

.another-project{
  background: var(--bg-card);
}

.another-project-button {
  border-radius: 5px;
  width: 170px;
  height: 40px;
    display: inline-flex; /* Menggunakan flexbox untuk mengatur tata letak */
  align-items: center; /* Memusatkan item secara vertikal */
  justify-content: center; /* Memusatkan item secara horizontal */
  cursor: pointer;
  transition: color 0.4s linear;
  /* background-color: white; */
  background: none;
  border: 2px solid white;
  position: relative;
  color: white;
  padding: 10px;
}

.another-project-button:hover {
  color: red;
}

.another-project-button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #00baba;
  z-index: -1;
  transition: transform 0.5s;
  transform-origin: 0 0;
  /* transition-timing-function: cubic-bezier(0.5, 1.6,0.4, 0.7); */
  transform: scaleX(0);
}

.another-project-button:hover::before {
  transform: scaleX(1);
}

.another-project-button ion-icon {
  margin-left: 5px; /* Memberi jarak antara teks dan ikon */
  font-size: 1.5em;
}

/* --------------------- */
.slider-wrapper .image-list {
  display: grid;
  gap: 18px;
  font-size: 0;
  margin-bottom: 20px;
  overflow-x: auto;
  /* scrollbar-width: none; */
  grid-template-columns: repeat(10, 1fr);
}

.slider-wrapper .image-list::-webkit-scrollbar {
  display: none;
}

.slider-wrapper .image-list .image-item {
  width: 325px;
  height: 400px;
  object-fit: cover;
}

/* .gambar-project {
  max-width: 1200px;
  width: 60%;
  
}

.gambar-project .slider-scrollbar {
  height: 24px;
  width: 100%;
  display: flex;
  align-items: center;
} */

.slider-scrollbar .scrollbar-track {
  height: 2px;
  width: 100%;
  background: #ccc;
  position: relative;
  border-radius: 4px;
}

.slider-scrollbar:hover .scrollbar-track {
  height: 3px;
}

.slider-scrollbar .scrollbar-thumb {
  height: 100%;
  width: 50%;
  background: #00baba;
  position: absolute;
  border-radius: inherit;
  cursor: grab;
}

.slider-scrollbar .scrollbar-thumb:active {
  cursor: grabbing;
  height: 8px;
  top: -2px;
}

.slider-scrollbar .scrollbar-thumb::after {
  content: "";

  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  bottom: -10px;
}

.slider-wrapper {
  position: relative;
}

.slider-wrapper .slide-button {
  height: 50px;
  width: 50px;
  top: 50%;
  color: #fff;
  position: absolute;
  border: none;
  outline: none;
  background: #000;
  font-size: 2.2rem;
  cursor: pointer;
  border-radius: 50%;
  transform: translateY(-50%);
}

.slider-wrapper .slide-button#prev-slide {
  left: -20px;
}

.slider-wrapper .slide-button#next-slide {
  right: -20px;
}
/* --------------------- */

.sticky_parent {
  height: 500vh;
}

.sticky {
  overflow: hidden;
  position: sticky;
  top: 0;
  height: 100vh;
  /* border: 1px solid red; */
}

.scroll_section {
  position: absolute;
  top: 0;
  height: 100vh;
  width: 500vw;
  will-change: transform;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5vw;
}

img {
  width: 1400px;
  /* height: 80%; */
  object-fit: cover;
  object-position: center;
}

.scramble-text {
  color: white;
}

.scramble-text.cyan {
  color: cyan;
}

.arrow {
  border: solid #fff;
  border-width: 0 0.1em 0.1em 0;
  display: inline-block;
  padding: 0.2em;
  transform: rotate(-45deg);
}

.btn:hover .arrow {
  transform: rotate(-45deg) translate(0.3em, 0.3em);
  border-color: #00ffff;
}

.copywriting-awal {
  height: 100vh;
  width: 100%;
}

.wording {
  height: 100vh;
  display: flex; /* Menggunakan flexbox */
  flex-direction: column; /* Mengatur arah flexbox menjadi kolom */
  justify-content: center; /* Memusatkan konten secara vertikal */
  align-items: center; /* Memusatkan konten secara horizontal */
}

.isicopywriting-awal {
  /* Mengatur jarak antar elemen anak */
}

.wording h1 {
  font-size: 150px;
}

.wording h1 span {
  font-size: 180px;
}

.wording h1 span:last-child {
  margin-left: 100px; /* Menambahkan ruang kosong di sebelah kiri kata "IPSUM" */
}

.wording p {
  padding: 20px;
  padding-left: 60px;
}

/* ------------------------ */

.visi-misi {
  height: 100vh;
}

.copywriting-visi-misi {
  justify-content: center; /* Memusatkan konten secara vertikal */
  align-items: center;
  padding: 250px;
  padding-top: 100px;
  padding-bottom: 100px;
  font-size: 30px;
  width: 100%;
  text-align: center;
}

.visi-misi-detail {
  display: flex; /* Menggunakan flexbox */
  width: 100%;
}

.visi {
  /* Gaya untuk elemen visi */
  flex: 1; /* Memastikan visi dan misi memiliki lebar yang sama */
  color: white;
}

.visi h2 {
  margin-left: 100px;
}

.judul-visi,
.judul-misi {
  font-size: 40px;
}

.isi-visi {
  padding-left: 110px;
  padding-right: 110px;
  padding-top: 20px;
  text-align: justify;
  text-indent: 100px;
}

.misi {
  /* Gaya untuk elemen misi */
  flex: 1; /* Memastikan visi dan misi memiliki lebar yang sama */
  color: white;
  position: relative;
}

.misi::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0; /* Menempatkan garis di sisi kiri misi */
  height: 200%; /* Membuat garis setinggi elemen misi */
  width: 1px; /* Lebar garis 1 piksel */
  background-color: white; /* Warna garis hitam (atau sesuai kebutuhan) */
}

.misi h2 {
  margin-left: 100px;
}

.isi-misi {
  display: flex; /* Menggunakan flexbox */
  width: 100%;
  padding-left: 110px;
  padding-right: 110px;
  padding-top: 20px;
  text-align: justify;
}

.isi-misi .angka-isi-misi {
  padding-right: 20px;
  padding-left: 50px;
}
/* 
---------------------------- */

.judul-meet-our-expert {
  font-size: 50px;
  padding: 80px;
}

.meet-our-expert {
  /* text-align: center; */

  /* Tambahkan padding atas dan bawah */
}

.judul-meet-our-expert h1 {
  margin-bottom: 30px;
}

.team-our-expert {
  display: flex;
  justify-content: center; /* Memusatkan anggota tim */
  gap: 20px; /* Jarak antar foto */
}

.expert-member img {
  width: 300px; /* Sesuaikan lebar foto */
  height: 450px; /* Sesuaikan tinggi foto */
  object-fit: fill;
  /* Memastikan foto mengisi area dengan benar */
  border-radius: 10px; /* Memberikan border radius pada foto */
  border: 2px solid #ccc; /* Contoh: border tipis 1 piksel */
  overflow: hidden;

  /* box-sizing: border-box; */
  /* Memastikan padding termasuk dalam ukuran elemen */
}

.expert-member {
  /* text-align: center; */
  color: white;
  /* background-color: #f0f0f0; */
  /* Memberikan background pada foto */
}

.nama-expert-member {
  margin-top: 10px;
  margin-left: 110px;
}

.jabatan-expert-member {
  margin-top: 5px;
  text-align: center;
}

.nama-expert-member {
  font-size: 30px;
}

.scramble-wrapper {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap; /* Mencegah teks melipat ke baris baru */
}

.gambar-our-project{
  height: 80vh;
}

.gambar-our-project {
  position: relative; /* Make the parent a positioning context for the pseudo-element */
}

.gambar-project {
  max-width: 100%;
  margin: 0 auto;
  padding: 20px;
}

.carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-item {
  flex: 0 0 100%;
}

.carousel-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 18px;
}

.carousel-prev {
  left: 10px;
}

.carousel-next {
  right: 10px;
}

.gambar-our-project::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%; /* Adjust the height of the gradient as needed */
  background: linear-gradient(to top, rgba(4,8,17, 1) 0%, rgba(4,8,17, 0) 40%);
  z-index: 1; /* Place the gradient above the image but below the text */
}

.image-our-project{
  width: 100%;
  height: 80vh;
  object-fit: cover;
  /* Membuat gambar tetap di viewport saat konten lain digulir */
  top: 0;
  left: 0;
  /* Meletakkan gambar di belakang konten lain */
  z-index: 0;
  filter: brightness(0.5);
}




/* ------------------ */

.gambar-project {
  display: flex;
  flex-direction: column; /* Stack columns vertically */
  justify-content: center;
  align-items: center; /* Center the columns horizontally within the container */
  margin: 0 auto;
  padding: 50px 20px;
  gap: 20px; /* 20px gap between columns */
  background: var(--bg-card);
  max-width: 1200px; /* Prevent overflow */
  width: 100%; /* Full width up to max-width */
  height: auto;
  overflow: hidden;
  box-sizing: border-box;
}

.gambar-project .column {
  display: flex;
  flex-direction: row; /* Images side by side */
  justify-content: center; /* Center images horizontally within the column */
  gap: 20px; /* 20px gap between images within a column */
  width: 100%; /* Full width of the container */
  max-width: 100%; /* Ensure columns don't exceed container */
}

.gambar-project img {
  width: 48%; /* Each image takes roughly half the column width */
  max-width: 500px; /* Maximum image width */
  height: auto; /* Maintain aspect ratio */
  object-fit: contain; /* Prevent cropping */
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease, filter 0.3s ease, transform 0.3s ease;
}

.gambar-project img:hover {
  box-shadow: 0 0 20px 5px rgba(88, 196, 177, 0.7),
              0 0 40px 10px rgba(88, 196, 177, 0.3);
  filter: brightness(1.1); /* Slightly brighter on hover */
  transform: scale(1.02); /* Slightly larger scale for hover */
}


/* ------------------ */

.video-project{
  background: var(--bg-card);
  position: relative;
  padding-top: 150px;
}

.video-project video {
  width: 80%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: block;
  margin: 0 auto;
}

.video-controls {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Center the button */
  z-index: 10; /* Ensure button is above video */
}

.video-controls button {
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  color: white;
  border: none;
  padding: 15px;
  border-radius: 50%; /* Circular button */
  cursor: pointer;
  font-size: 20px;
  transition: background 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-controls button:hover {
  background: rgba(0, 0, 0, 0.7); /* Darker on hover */
  transform: scale(1.1); /* Slight scale on hover */
}

.video-controls button svg {
  width: 24px;
  height: 24px;
  vertical-align: middle;
}

@media (max-width: 1024px) { /* Targeting larger desktops */
  .isi-kalimat-awal {
    font-size: 70px;
}

/* .cerita-dan-tahun-mobile{
  display: none;
} */

.gambar-project-mobile{
  display: none;
}

.cerita p{
  font-size: 15px;
}

}

@media (min-width: 1024px) { /* Targeting larger desktops */


.cerita-dan-tahun-mobile{
  display: none;
}

.gambar-project-mobile{
  display: none;
}



}

@media (max-width: 425px){ 

  main{
    width: 100%;
  }

  .judul-kanan span{
    display: block;
    align-items: right;
    padding-right: 20px;
  }

  .judul-kanan {
    
    display: flex; /* Make the paragraph a flex container */
    align-items: center; /* Vertically align items in the center */
    justify-content: space-between; /* Distribute items with space between them, pushing the last item to the right */
    width: 100%; /* Ensure the container takes full width to allow space-between to work effectively */
  }

  .cerita-dan-tahun{
    display: none;
  }

  section{
    width: 100%;
  }

  .image-our-project{
    height: 70vh;
  }

  .gambar-our-project{
    height: 70vh;
  }

  .isi-kalimat-awal{
    font-size: 30px;
    margin-right: 0;
  }

  .cerita-dan-tahun-mobile {
 /* Opsional: untuk ruang merata */
    /* margin-top: 30px; */
    padding-left: 20px;
  }

  .kalimat-awal{
    padding-left: 0;
  }


  .isi-kalimat-awal::after{
    width: 80%;
  }

  .judul-kanan{
    padding: 0;
    padding-left: 20px;
    
    text-align: left;
  }

  .cerita-mobile{
    width: 95%;
    text-align: justify;
    font-size: 18px;
  }

  .gambar-project{
    display: none;
  }


  .gambar-project-mobile {
    display: flex;
    justify-content: space-evenly;
    padding: 20px;
    margin: 0 auto;
    /* gap: 20px; */
    background: var(--bg-card);
    height: auto;
  }
  
  .gambar-project-mobile .column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center; /* Memusatkan gambar secara horizontal */
  }
  
  .gambar-project-mobile img {
    width: 97%; /* Lebar relatif */
    height: auto; /* Menjaga rasio aspek */
    object-fit: contain; /* Gambar tidak terpotong */
    border-radius: 10px; /* Border rounded */
    box-shadow: 1px rgba(0, 0, 0, 0.1); /* Bayangan default */
    transition: box-shadow 0.3s ease, filter 0.3s ease, transform 0.3s ease; /* Transisi halus */
  }
  
  .gambar-project-mobile img:hover {
    box-shadow: 0 0 20px 5px rgba(88, 196, 177, 0.7), /* Efek glow LED (warna cyan) */
                0 0 40px 10px rgba(88, 196, 177, 0.3); /* Glow lebih lembut */
    filter: brightness(1); /* Sedikit meningkatkan kecerahan */
    transform: scale(1.0001); /* Sedikit memperbesar gambar untuk efek dinamis */
  }

  .video-project{
    padding-top: 50px;
  }

}


