/* Fonts */
:root {
  --default-font: "Plus Jakarta Sans", sans-serif;
  --heading-font: "Plus Jakarta Sans", sans-serif;
  --nav-font: "Plus Jakarta Sans", sans-serif;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #151515; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #f5a603; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #312f2f; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: rgba(
    255,
    255,
    255,
    0.905
  ); /* The default color of the main navmenu links */
  --nav-hover-color: #ffc451; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ffc451; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/*--------------------------------------------------------------
# Classes for styling that doesn't exist in bootstrap
--------------------------------------------------------------*/
.color-white {
  color: #ffffff;
}

.color-accent {
  color: var(--accent-color);
}

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #2a2727;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0.8);
  --heading-color: #ffffff;
  --contrast-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 0 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
  padding: 10px;
}

.header .logo img {
  max-height: 60px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 32px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .logo span {
  color: var(--accent-color);
  font-size: 32px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  font-size: 14px;
  padding: 8px 30px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
  border: 2px solid var(--accent-color);
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--default-color);
  background: var(--accent-color);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(0, 0, 0, 0);
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: rgba(0, 0, 0, 0.8);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), white 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: color-mix(in srgb, var(--accent-color), white 90%);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    background-color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    transform: rotate(180deg);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding: 60px 0;
}

.footer .footer-top .footer-logo img {
  max-height: 80px;
}

.footer .footer-top .icon {
  font-size: 24px;
}

.footer .footer-social a {
  font-size: 30px;
  color: var(--default-color);
  transition: color 0.3s ease;
}

.footer .footer-social a:hover {
  color: var(--accent-color);
}

.footer .footer-bottom {
  background-color: var(--accent-color);
  color: var(--default-color);
  font-weight: 500;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #000;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  border: solid rgb(255, 255, 255) 1px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: white;
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title nav ol li + li {
  padding-left: 10px;
}

.page-title nav ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 0px 0;
  scroll-margin-top: 85px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section {
    scroll-margin-top: 58px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.home {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 120px 0 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home .swiper-slide {
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.537);
  width: 100%;
  font-size: 700;
  text-shadow: 2px 1px 9px #1f1f1f;
}

.home .swiper-slide .subtitle {
  font-size: clamp(2rem, 2.5vw, 3rem);
  line-height: 1.2;
  color: #fff;
  font-weight: 700;
  opacity: 0.9;
}

.home .swiper-slide .main-title {
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  line-height: 1.2;
  font-weight: bold;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Values Section
--------------------------------------------------------------*/
.values {

  background-image: url("../img/values/values-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.values::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.796);
  z-index: 1;
}
.values > * {
  position: relative;
  z-index: 2;
}
.highlight-circle {
  position: absolute;
  pointer-events: none;
  z-index: 2;
  border-radius: 50%;
  width: 180px;
  height: 180px;

  background-image: radial-gradient(
      circle at 30% 30%,
      rgba(255, 250, 230, 0.8) 0%,
      rgba(255, 240, 200, 0.4) 40%,
      rgba(255, 255, 255, 0) 100%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.4) 0%,
      rgba(255, 230, 150, 0.2) 30%,
      rgba(255, 200, 100, 0.05) 100%
    );
  background-blend-mode: screen;
  filter: blur(2px);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.value-item {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  /* max-width: 90%; */
  width: 100%;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  z-index: 5;
  transition: opacity 0.4s ease, visibility 0s linear 0.4s;
}

.value-item.visible {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s ease;
}

@media (min-width: 992px) {
  .value-item {
    text-align: left;
    left: auto;
    transform: none;
    max-width: 300px;
  }

  #value-sustainable {
    left: 0;
  }
  #value-measurable {
    left: 20%;
  }
  #value-attitude {
    left: 40%;
  }
  #value-respect {
    left: 60%;
  }
  #value-teamwork {
    left: 77%;
  }
}

/*--------------------------------------------------------------
# About Us Section
--------------------------------------------------------------*/
/* .about {
  position: relative;
  padding: 150px 0;
  padding: 40;
  align-items: center;
  display: flex;
}

.about img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  user-select: none;
}

.about:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to right, rgb(0 0 0 / 61%), rgb(0 0 0 / 71%), transparent);
}

@media screen and (max-width: 768px) {
  .about:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 35%);
    position: absolute;
    inset: 0;
    z-index: 2;
  }
}

.about .container {
  position: relative;
  z-index: 3;
} */

/*--------------------------------------------------------------
# Our Work Section
--------------------------------------------------------------*/

.our-work .nav-link {
  background-color: #464646;
  border-radius: 0;
  width: 150px;
  color: rgba(255, 255, 255, 0.5);
}

.our-work .nav-link.active,
.our-work .nav-link:hover {
  background-color: var(--accent-color);
  color: white;
}

.our-work .nav-link:disabled {
  cursor: not-allowed;
}

.our-work .tab-pane .cards-row {
  margin-top: 60px;
  row-gap: 60px;
}

.our-work .tab-pane .card {
  background-color: rgba(39, 39, 39, 0.7);
  color: var(--accent-color);
  padding-top: 30%;
  height: 250px;
}
.our-work .tab-pane .card img {
  width: 100%;
  user-select: none;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -40%);
}
.our-work .tab-pane .card-body {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.our-work .tab-pane .card-body h3 {
  /* Assuming text is in a span inside card-body */
  min-width: 0; /* Allows shrinking in flex container */
  /* If you want it to wrap, remove white-space: nowrap; */
  white-space: normal; /* Allows text to wrap */
  overflow-wrap: break-word; /* Helps with long words */
}

.our-work .tab-pane .card-desc {
  color: rgb(209, 208, 208);
  text-align: CENTER;
}
/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/


    .stats-item {
      text-align: center;
      padding: 40px 20px;
      position: relative;
    }

    .stats-item:not(:last-child)::after {
      content: "";
      position: absolute;
      top: 20%;
      right: 0;
      width: 2px;
      height: 60%;
      background-color: white;
    }

    .stats-number {
      font-size: 64px;
      font-weight: 700;
      color: #f5a603;
      margin-bottom: 10px;
    }

    .stats-text {
      font-size: 20px;
      font-weight: 500;
      color: white;
    }

    @media (max-width: 767.98px) {
      .stats-item::after {
        display: none;
      }
    }



/*--------------------------------------------------------------
# Career Section
--------------------------------------------------------------*/

.unity-card {
  width: 180px;              
  height: 460px;             
  transition: width 0.35s ease;
  cursor: pointer;
}

/* IMAGE */
.unity-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 1.5rem;
}

.unity-card h6,
.unity-card p {
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
}

.unity-card:hover {
  width: 260px;             
}

.unity-card:hover h6,
.unity-card:hover p {
  opacity: 1;
  transform: translateY(0);
}

.unity-image-wrapper {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-radius: 1.5rem;
}

.unity-image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35),
    rgba(0, 0, 0, 0.55)
  );
  transition: background 0.3s ease;
}

.unity-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  pointer-events: none;
}

.unity-letter {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.unity-title {
  position: absolute;
  font-size: 1.3rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(12px);
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.9);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.unity-card:hover .unity-letter {
  opacity: 0;
  transform: scale(0.85);
}

.unity-card:hover .unity-title {
  opacity: 1;
  transform: translateY(0);
}

.unity-card:hover .unity-image-wrapper::after {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.75)
  );
}

/* Mobile: selalu tampilkan teks */
@media (max-width: 767.98px) {
    .unity-card h6,
    .unity-card p {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    /* Optional: hilangkan efek hover memperbesar card di mobile */
    .unity-card {
        width: 180px;  /* tetap ukuran normal */
        cursor: default;
    }
}

  /* Custom styles */
    .hero {
  background-color: #ffffff;
  min-height: 40vh; /* atur tinggi sesuai kebutuhan */
  display: flex;
  align-items: center;     /* vertical center */
  justify-content: center; /* horizontal center */
  text-align: center;
}


    .badge-solution {
      border: 1px solid #dcdcdc;
      border-radius: 20px;
      padding: 4px 14px;
      font-size: 14px;
      color: #6c757d;
      display: inline-block;
      margin-bottom: 16px;
    }

    .title-main {
      font-weight: 700;
      font-size: 36px;
    }

    .title-main span {
      color: #f5a603;
    }

   .section-green {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  padding: 60px 0;
}

/* video background */
.section-green .bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
}

/* overlay */
.section-green::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 80%);
  z-index: 1;
}

/* konten */
.section-green .container {
  position: relative;
  z-index: 2;
}



    .verifiable {
      font-size: 28px;
      font-weight: 600;
      color: #2ee59d;
    }

   .timeline {
  position: relative;
  height: 200px;
  width: 40px;
}
@media (max-width: 767.98px) {
  .timeline {
    display: none;
  }
}


.dot {
  position: absolute;
  border-radius: 50%;
  background-color: #f5a603;
}

/* titik atas */
.dot-top {
  width: 17px;
  height: 17px;
  top: 0;
  left: 5px;
  opacity: 0.6;
}

/* titik tengah (lebih besar) */
.dot-middle {
  width: 25px;
  height: 25px;
  top: 50%;
  left: 27px; /* geser ke kiri agar terlihat melengkung */
  transform: translateY(-50%);
}

/* titik bawah */
.dot-bottom {
  width: 17px;
  height: 17px;
  bottom: 0;
  left: 5px;
  opacity: 0.6;
}


    .item-title {
      color: #f5a603;
      font-weight: 600;
      font-size: 20px;
      margin-bottom: 4px;
    }



/* =========================
   BASE UNDERLINE
   ========================= */
.underline-white,
.underline-orange {
  position: relative;
  display: inline-block;
}

/* struktur garis (SATU SUMBER) */
.underline-white::before,
.underline-white::after,
.underline-orange::before,
.underline-orange::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 3px; /* SATU NILAI */
  background-color: var(--underline-color);
  transition: width 0.35s ease;
}

/* garis ATAS */
.underline-white::before,
.underline-orange::before {
  top: -1px; 
  left: 0;
}

/* garis BAWAH */
.underline-white::after,
.underline-orange::after {
  bottom: -1px; 
  right: 0;
}

/* animasi */
.underline-white:hover::before,
.underline-white:hover::after,
.underline-orange:hover::before,
.underline-orange:hover::after {
  width: 100%;
}

/* WARNA */
.underline-white {
  --underline-color: #ffffff;
}

.underline-orange {
  --underline-color: #fea629;
}



.same-height {
  height: 450px; 
}

.preview-card {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  background: #f5f5f5;
}

.preview-card img,
.preview-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.preview-card:hover img,
.preview-card:hover video {
  transform: scale(1.08);
}

.preview-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(255, 161, 60, 0.527) 0%,   
    rgba(255, 161, 60, 0.351) 18%,  
    rgba(255, 160, 60, 0.0) 35%   
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.preview-card:hover::after {
  opacity: 1;
}


.card-label {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  right: 1.2rem; 
  background: #fff;
  padding: 1.3rem 1.4rem;
  border-radius: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  z-index: 2;
}


/* teks utama */
.card-label .label-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: #111;
}

/* teks pendamping */
.card-label .label-desc {
  font-size: 0.9rem;
  color: #555;
}



.section-services {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  padding: 60px 0;
  min-height: 90vh;
}

/* video background */
.section-services .bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
   filter: brightness(0.40);
  z-index: 0;
}

/* overlay */
.section-services::after {
  content: "";
  position: absolute;
  inset: 0;
  
  z-index: 1;
}

/* konten */
.section-services .container {
  position: relative;
  z-index: 2;
}


.our-clients {
      background: #fff;
      overflow: hidden;
    }

    .clients-wrapper {
      width: 100%;
      overflow: hidden;
      position: relative;
    }

    .clients-track {
      display: flex;
      will-change: transform;
    }

    .client-logo {
      flex: 0 0 auto;
      width: 180px;
      padding: 0 120px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .client-logo img {
      max-height: 90px;
      opacity: .85;
      transition: .3s;
    }

    .client-logo img:hover {
      opacity: 1;
      transform: scale(1.15);
    }

    @media (max-width: 768px) {
      .client-logo {
        width: 140px;
      }
      .client-logo img {
        max-height: 40px;
      }
    }

@media (max-width: 768px) {
  .clients-track {
    display: flex;
    flex-wrap: wrap;
    transform: none !important;
    animation: none !important; 
  }

  .client-logo {
    padding: 10px;
    width: 30%; 
    flex: 0 0 auto;
    justify-content: center;
  }

  .client-logo img {
    max-height: 40px; 
  }
}

    .process-card {
      perspective: 1000px;
    }

    .process-inner {
      position: relative;
      width: 100%;
      height: 260px;
      transition: transform 0.6s ease;
      transform-style: preserve-3d;
    }

    .process-card:hover .process-inner {
      transform: rotateY(180deg);
    }

    .process-front,
    .process-back {
      position: absolute;
      width: 100%;
      height: 100%;
      backface-visibility: hidden;
      border-radius: 0.375rem;
      box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
      padding: 2rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .process-front {
      background-color: #ffffff;
    }

    .process-back {
      background-color: #fea629;
      color: #ffffff;
      transform: rotateY(180deg);
    }

    .process-icon {
      width: 60px;
      height: 60px;
      background-color: #fea629;
      color: #fff;
      font-size: 30px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
    }

    .process-back p {
      margin: 0;
      font-size: 0.95rem;
    }


    .contact-hero {
      background:
       linear-gradient(rgb(0 0 0 / 61%), rgb(0 0 0 / 69%)), url(../img/contact-bg.webp) center / cover no-repeat;
    padding: 120px 0;
}

  .contact-title {
            font-size: 3rem;
            font-weight: 700;
            color: #0b0d17;
        }

        .contact-subtitle {
            color: #6c757d;
            max-width: 420px;
        }

        .contact-info a {
            color: #1bc47d;
            text-decoration: none;
            font-weight: 500;
        }

        .form-control, .form-select {
            border-radius: 6px;
            padding: 14px;
            font-size: 0.95rem;
        }

        .form-control::placeholder {
            color: #adb5bd;
        }

        .btn-submit {
            background: #1bc47d;
            border: none;
            padding: 12px 28px;
            font-weight: 600;
            border-radius: 6px;
        }

        .btn-submit:hover {
            background: #17a96c;
        }

        .privacy-text {
            font-size: 0.75rem;
            color: #6c757d;
        }

        .privacy-text a {
            color: #1bc47d;
            text-decoration: none;
        }
		
		.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.info-item i {
    font-size: 22px;
    color: #f5b400;
    transition: transform 0.3s ease; 
}

.info-item i:hover {
    transform: scale(1.3); 
}

/* MAP */
.map-section {
   background-color: #f9f9f9;
}
.map-section iframe {
    width: 100%;
    height: 450px;
    border: none;
    background-color: white !important;
}

.contact {

  background-image: url("../img/contact/contact-bg3.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.796);
  z-index: 1;
}
.contact > * {
  position: relative;
  z-index: 2;
}

.contact-divider {
    width: 100%;
    height: 3px;
    background-color: rgb(255, 255, 255);
}

@media (max-width: 767.98px) {
    .text-mobile-center {
        text-align: center !important;
    }
}