
/* CSS */
	html {
  scroll-behavior: smooth;
}

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Figtree;
    }

    .container {
      width: 80%;
      max-width: 1200px;
      margin: 0 auto;
    }

	[lang="en"],
	[lang="id"] {
	  display: none; /* Hide all language-specific content by default */
	}

	.lang-en [lang="en"],
	.lang-id [lang="id"] {
	  display: block; /* Show content for the selected language */
	}

/* NAVIGATION BAR */

    header {
      position: sticky;
      top: 0;
      background-color: white;
      z-index: 1000;
    }

    .navbar-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem;
      max-width: 1200px;
      margin: auto;
      flex-wrap: nowrap;
    }

    .logo {
      font-weight: bold;
      font-size: 1.5rem;
	  max-width: 200px;
	  flex-shrink: 0;
    }

		.navigation-logo {
	  width: 150px;
	  height: auto;
	  display: block;
	}

    .hamburger {
      display: none;
      font-size: 1.5rem;
      cursor: pointer;
    }

    nav {
		font-size: 12pt;
    }

    nav ul {
      list-style: none;
      display: flex;
      align-items: center;
      gap: 2rem;
    }

    nav ul li a, .dropbtn {
      text-decoration: none;
      color: #333;
      font-weight: 500;
      background: none;
      border: none;
      cursor: pointer;
	  font-size: 12pt;
    }

    .dropdown {
      position: relative;
    }

    .dropdown-content {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background-color: white;
      min-width: 145px;
      z-index: 999;
      padding: 0.1rem 0;
    }

    .dropdown-content li {
      padding: 0.5rem 1rem;
	  display: flex;
	  align-items: center; 
	  gap: 0.2rem;
    }

	.dropdown-content li a {
	  display: flex;
	  align-items: center;
	  gap: 0.2rem;
	  color: #333;
	  text-decoration: none;
}

	.dropdown-content img {
	  width: 22px;
	  justify-content: center;
      align-items: center;
	}

    .dropdown:hover .dropdown-content {
      display: block;
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .download-btn {
      background-color: black;
      color: white;
      padding: 0.5rem 1rem;
      display: flex;
      align-items: center;
	  justify-content: center;
      gap: 0.5rem;
      border: none;
      cursor: pointer;
	  max-width: 125px;
	  min-width: 150px;
	  max-height: 30px;
	  font-size: 9pt;
	  text-decoration: none;align-content: 
    }

    .lang-switch {
      display: flex;
      gap: 0.2rem;
	  font-size: 9pt;
    }

    .lang-switch div {
      width: 30px;
      height: 30px;
      border: 1px solid #333;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: black;
      color: white;
      cursor: pointer;
    }

    .floating-bar {
      position: sticky;
      top: 73px;
      height: 15px;
      background-color: white;
      z-index: 999;
    }
	  
	  
    @media (max-width: 960px) {
      .navbar-container {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: center;
      }
		
	  .floating-bar {
      position: sticky;
      top: 120px;
      height: 15px;
      background-color: white;
      z-index: 999;
    }
			
    .gap-spacer {
      height: 10px;
    }

      nav {
        display: none;
        width: 100%;
      }

      nav.active {
        display: block;
      }

      nav ul {
        flex-direction: column;
        gap: 1rem;
        margin-top: 0rem;
      }

      .nav-right {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-top: 1rem;
        gap: 1rem;
      }

      .download-btn,
      .language-selector {
        flex: 1;
        display: flex;
        justify-content: flex-end;
      }
	  
      .hamburger {
        display: flex;
		padding: 5px;
		border-radius: 5px;
		border: 1px solid black;
      }
    }
	  
	  @media (max-width: 600px) {
  .nav-right {
    flex-direction: row;
    align-items: center;
	  
  }	  
		  
  .download-btn {
    width: 100%;
    justify-content: center;
  }

  .lang-switch {
    justify-content: flex-end;
    width: 100%;
  }
}
/* NAVIGATION BAR END */


/* LANDINGPAGE */
    .landing-hero {
      position: relative;
      height: 1050px;
      background: url('images/landingpage_image.jpg') center center / cover no-repeat;
      display: flex;
      flex-direction: column;
      align-items: center;
      color: white;
      overflow: hidden;
	  margin-top: -20px;
    }

    .landing-hero .overlay {
      position: absolute;
      inset: 0;
      background-color: rgba(36, 35, 37, 0.7);
      z-index: 0;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      margin-top: 250px;
      text-align: center;
      max-width: 800px;
      padding: 0 1rem;
    }

    .hero-content h1 {
      font-size: 2.7rem;
      font-weight: bold;
      margin-bottom: 1rem;
    }

		.decoration {
	  position: relative;
	  background-color: white;
	  height: 30px;
	  overflow: visible;
	  z-index: 1;
	}

	.svg-decoration {
	  position: absolute;
	  bottom: 0;
	  right: 0;       
	  height: 300px;
	  overflow: visible;
	  pointer-events: none;
	  z-index: 0;
	}

	.svg-decoration img {
	  height: 100%;
	  display: block;
	}
	  @media (max-width: 1260px) {
	.decoration {
		  position: relative;
		  background-color: white;
		  height: 30px;
		  overflow: visible;
		  z-index: 1;
		}

		.svg-decoration {
		  position: absolute;
		  bottom: 0;
		  right: 0;       
		  height: 200px;
		  overflow: visible;
		  pointer-events: none;
		  z-index: 0;
		}

		.svg-decoration img {
		  height: 100%;
		  display: block;
		}
	}

    .hero-content p {
      font-size: 1.1rem;
      color: #ddd;
    }

    .service-compare {
      position: relative;
      z-index: 1;
      margin-top: 100px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 5rem;
	  text-decoration: none;
    }

	.service-compare .service-box button {
	  padding: 0.5rem 1.2rem;
	  background: transparent;
	  color: white;
	  border: 1px solid white;
	  border-radius: 6px;
	  cursor: pointer;
	  font-size: 1rem;
	  text-decoration: none;
	}

	.service-box a {
		text-decoration: none;
	}

	.service-compare .service-box button:hover{
	  color: black;
	  background-color: white;
	  border: 1px solid white;
	  border-radius: 6px;
	  cursor: pointer;
	  font-size: 1rem;
	}

    .service-box {
      text-align: center;
      max-width: 200px;
	  display: flex;
	  flex-direction: column;
	  align-items: center;
	  justify-content: center;
    }

    .divider {
      height: 150px;
      width: 1px;
      background-color: white;
    }

		.icon-text {
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  gap: 0.5rem;
	  color: white;
	  margin-bottom: 1rem;
	}

	.icon-text img {
	  width: 60px;
	}

	.icon-text span {
	  margin: 0;
	  font-size: 1.2rem;
	}
    .features {
      position: relative;
      z-index: 2;
      margin-top: 100px;
      display: flex;
      justify-content: center;
      gap: 2rem;
      flex-wrap: wrap;
      text-align: left;
    }

@media (max-width: 992px) {
		
	  .service-compare {
      gap: 3rem;
    }
	
	.features { gap: 1.5rem; margin-top: 50px;}
}

    .feature-item {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      max-width: 250px;
    }

	.feature-item img {
	  max-width: 100px;
	}

    .feature-item span {
      font-size: 1rem;
      color: #eee;
    }

@media (max-width: 500px) {
    .landing-hero {
      position: relative;
      height: 1200px;
      background: url('images/landingpage_image.jpg') center center / cover no-repeat;
      display: flex;
      flex-direction: column;
      align-items: center;
      color: white;
      overflow: hidden;
	  margin-top: -20px;
    }
}

/* LANDINGPAGE END */



    .services-overview {
      background-color: #242325;
      color: white;
      padding: 4rem 1rem;
    }

    .services-wrapper {
      display: flex;
      gap: 3rem;
      flex-wrap: wrap;
      justify-content: space-between;
    }

    .services-text {
      flex: 0 1 49%;
      min-width: 300px;
    }

    .services-text a {
      text-decoration: none;
    }

    .services-text .section-label {
      color: #606060;
      font-weight: 600;
      margin-bottom: 1rem;
    }

    .services-text h2 {
      font-size: 1.8rem;
      margin-bottom: 1.2rem;
    }

    .services-text .description {
      font-size: 1.3rem;
      line-height: 1.4;
      margin-bottom: 2rem;
    }

    .learn-more-btn {
      padding: 0.6rem 1.2rem;
      background: white;
      color: #242325;
      border: none;
      cursor: pointer;
      margin-bottom: 60px;
    }

    .services-images {
      flex: 0 1 38%;
      display: flex;
      flex-direction: column;
      gap: 2rem;
      min-width: 280px;
    }

    .image-card {
      padding: 1rem;
      border-radius: 8px;
    }

    .image-placeholder {
      width: 100%;
      height: 190px;
      background-color: #3a3a3a;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #999;
      font-size: 1rem;
      border-radius: 6px;
      margin-bottom: 0.8rem;
    }

	 .image-placeholder img {
   	height: 100%;
    width: 100%;
    object-fit: cover;
    }

    .image-desc {
      font-size: 0.95rem;
      color: #ccc;
    }

    @media (max-width: 992px) {
      .services-wrapper {
        flex-direction: column;
      }

      .services-text,
      .services-images {
        flex: 1 1 100%;
      }
    }
	  
	  	  .core-values-section {
	margin-top: 50px;
	padding-top: 50px;
	height: 350px;
	background-color: #F3F3F3;
}
	
	@media (max-width: 813px) {
	  	  .core-values-section {
	height: 550px;
}
}
	  .core-values-container {
  margin-top: 50px;
  background-color: #F3F3F3;
  color: #606060;
  height: 350px;
  display: flex;
  align-items: center;
}

.core-values-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.corevalue-title {
  font-size: 1.1rem;
  color: #606060;
  margin-bottom: 2rem;
  font-weight: 600;
  text-align: center;
}	  
	  
.core-value-item {
  flex: 1 1 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.core-value-item img {
  color: #606060;
  margin-bottom: 1rem;
  max-width: 130px;
}

.core-value-item p {
  font-size: 1.1rem;
  font-weight: bold;
  color: #606060;
}

/* Responsive Handling */
@media (max-width: 768px) {

  .core-values-section {
    height: auto;
    padding: 3rem 0;
  }

  .core-values-wrapper {
    flex-direction: column;
    gap: 3rem;
  }

  .core-value-item {
    flex: 1 1 100%;
  }
}

.cold-chain-highlight {
  position: relative;
  width: 100%;
}

.cold-chain-image img {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 100px;
}

.cold-chain-content {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 40px;
  margin-top: -90px;
}

.cold-chain-content img {
  min-width: 60px;
  max-width: 60px;
}

.cold-chain-content p {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #808080;
  flex: 1;
  max-width: 700px;
}
	@media (max-width: 813px) {
	.cold-chain-content {
	  padding-top: 0px;
	  margin-top: -50px;
	}
}


@media (max-width: 768px) {
  .cold-chain-content {
    flex-direction: column;
    text-align: center;
    position: relative;
    padding-top: 0px;
	margin-top: 50px;
  }
}


.customer-slider-section {
  margin-top: 60px;
  background-color: #fff;
  padding: 2rem 1rem;
  text-align: center;
}

.customer-title {
  font-size: 1.4rem;
  color: #606060;
  margin-bottom: 2rem;
  font-weight: bold;
}

.slider-wrapper {
  position: relative;
  max-width: 90%;
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.logo-slide {
  flex: 0 0 200px;
  max-width: 200px;
  margin: 0 1rem;
}

.logo-slide img {
  width: 100%;
  height: auto;
  transition: transform 0.3s;
  cursor: pointer;
}

.logo-slide img:hover {
  transform: scale(1.05);
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #808080;
  z-index: 10;
}

.slider-btn.left {
  left: 10px;
}

.slider-btn.right {
  right: 10px;
}

@media (max-width: 768px) {
  .logo-slide {
    flex: 0 0 150px;
    max-width: 150px;
    margin: 0 0.5rem;
  }

  .slider-btn {
    font-size: 1.5rem;
  }
}

/* FOOTER */
.footer-section {
  background-color: #242325;
  color: white;
  padding: 2rem 5%;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  min-height: 170px;
  margin-top: 30px;
}

.footer-col {
  flex: 1;
  min-width: 260px;
  margin: 0.5rem;
}

.logo-col {
  display: flex;
  align-items: flex-start;
}

.footer-logo {
  max-width: 260px;
  height: auto;
  margin-top: 25px;
  margin-bottom: 25px;
}

.footer-icon-text {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0.1rem;
}

.footer-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.footer-divider {
  height: 2px;
  background-color: #2B4C64;
  margin: 1rem 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.9rem;
}

.footer-social a {
  margin-left: 1rem;
}

.footer-social img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    height: auto;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    gap: 10px;
  }
}
/* FOOTER END */


/* ABOUT US */


/* ABOUT US SECTION 1*/
.about-hero-img {
	  width: 100%;
	  height: 700px;
	  object-fit: cover;
	  display: block;
	}

	.about-section {
	  position: relative;
	  background-color: #fff;
	  height: auto;
	  padding: 75px 0 100px;
	  overflow: hidden;
	}

	.about-decoration {
	  position: absolute;
	  right: 0;
	  top: 0;
	  height: 100%;
	  width: 400px;
	  object-fit: contain;
	  z-index: 0;
	}

	.about-content {
	  position: relative;
	  z-index: 1;
	}

	.about-content h2 {
	  font-size: 2rem;
	  font-weight: bold;
	  margin-bottom: 1rem;
	}

	.about-description {
	  font-size: 1rem;
	  color: #333;
	  max-width: 800px;
	  margin-bottom: 50px;
	}

	.about-journey {
	  display: flex;
	  gap: 1rem;
	  align-items: flex-start;
	}

	.journey-line {
	  width: 15px;
	  background-color: #4DA6DD;
	  flex-shrink: 0;
	  border-radius: 8px;
	}

	.journey-items {
	  display: flex;
	  flex-direction: column;
	  gap: 2rem;
	}

	.journey-item {
	  display: flex;
	  align-items: flex-start;
	  gap: 1rem;
	}

	.journey-item img {
	  width: 75px;
	  height: 75px;
	  object-fit: contain;
	}

	.journey-item p {
	  font-size: 1rem;
	  color: #333;
	  margin: 0;
	  line-height: 1.5;
	}

	@media (max-width: 768px) {
	  .about-section {
		padding: 50px 0;
	  }

	  .about-decoration {
		display: none;
	  }

	  .journey-item {
		flex-direction: column;
		align-items: flex-start;
	  }

	  .journey-line {
		width: 5px;
	  }
	}