
    /* ✅ Top Bar */
    .top-bar {
      background: #1a1a1a;
      color: #fff;
      font-size: 14px;
      padding: 5px 0;
    }
    .top-bar a {
      color: #fff;
      margin-left: 10px;
    }

    /* ✅ Middle Bar */
    .middle-bar {
      background: #fff;
      padding: 15px 0;
      border-bottom: 1px solid #eee;
    }
    .middle-bar .logo {
      font-size: 22px;
      font-weight: bold;
      line-height: 1.2;
    }
    .middle-bar .info-item {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .middle-bar .info-item i {
      font-size: 28px;
      color: #f4a100;
    }
    .middle-bar .info-text {
      font-size: 14px;
      line-height: 1.2;
    }
    .middle-bar .info-text span {
      font-weight: bold;
      display: block;
    }

    /* ✅ Navbar */
    .navbar {
      background: black !important;
    }
    .navbar-nav .nav-link {
      color: #fff !important;
      font-weight: 600;
      text-transform: uppercase;
      padding: 12px 15px;
    }
    .navbar-nav .nav-link.active {
      border-bottom: 3px solid #f4a100;
    }
    .get-quote {
      background: #f4a100;
      color: #fff;
      font-weight: bold;
      padding: 12px 25px;
      border-radius: 50px 0 0 50px;
      margin-left: 20px;
      text-decoration: none;
      white-space: nowrap;
    }
    .get-quote:hover {
      background: #d98c00;
      color: #fff;
    }

    /* ✅ Search Box */
    .search-box {
      position: relative;
    }
    .search-box input {
      border-radius: 50px;
      border: none;
      padding: 5px 40px 5px 15px;
    }
    .search-box i {
      position: absolute;
      right: 12px;
      top: 50%;
      transform: translateY(-50%);
      color: #333;
    }
/* Hilangkan background putih saat transisi */
.carousel-vertical .carousel-inner {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
  background: #000; /* fallback background */
}

.carousel-vertical .carousel-item {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 1s ease-in-out;
  opacity: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.carousel-vertical .carousel-item.active {
  opacity: 1;
  z-index: 1;
  position: relative;
}

/* Efek transisi bawah -> atas */
.carousel-vertical .carousel-item-next.carousel-item-start,
.carousel-vertical .active.carousel-item-end {
  transform: translateY(-100%);
}

.carousel-vertical .carousel-item-prev.carousel-item-end,
.carousel-vertical .active.carousel-item-start {
  transform: translateY(100%);
}




/* ✅ Service Section */
.services-section h2 {
  text-transform: uppercase;
}

/* ✅ Service Card */
.service-card {
  background: transparent;
  border: none;
}

/* ✅ Overlay Card */
.overlay-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.overlay-card img {
  display: block;
  width: 100%;
  transition: transform 0.5s ease;
  border-radius: 6px;
}

.overlay-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 38, 76, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  border-radius: 6px;
}

.overlay-card:hover img {
  transform: scale(1.1);
}

.overlay-card:hover .overlay {
  opacity: 1;
}

/* ✅ Button Overlay */
.overlay-card .overlay button {
  border: 2px solid #fdd835;
  background: transparent;
  color: #fff;
  padding: 10px 25px;
  font-weight: bold;
  transition: 0.3s;
}

.overlay-card .overlay button:hover {
  background: #fdd835;
  color: #222;
}

/* ✅ Icon Box */
.icon-box {
  width: 50px;
  height: 50px;
  background: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 22px;
  color: #222;
}

.icon-box.yellow {
  background: #fdd835;
  color: #fff;
}
/* Project Item */
.project-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.project-item img {
  transition: transform 0.4s ease, filter 0.4s ease;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.project-item:hover img {
  transform: scale(1.1);
  filter: brightness(60%); /* bikin lebih gelap */
}

/* Overlay */
.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(34, 34, 34, 0.6); /* gelap transparan */
  color: #fff;
  opacity: 0;
  transition: opacity 0.4s ease;
  text-align: center;
}

.project-overlay h5 {
  font-size: 16px;
  font-weight: 600;
}

.project-item:hover .project-overlay {
  opacity: 1;
}

/* ✅ Responsive */
@media (max-width: 768px) {
  .services-section h2 {
    font-size: 2rem;
  }
  .icon-box {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}


/* Title underline */
.projects-section .line {
  width: 80px;
  height: 3px;
  background: #fdd835;
  margin: 0 auto;
  position: relative;
}

.projects-section .line::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #222;
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
}

/* Tabs */
.project-tabs .nav-link {
  color: #555;
  font-weight: 500;
  margin: 0 8px;
  border: none;
  background: transparent;
  position: relative;
}

.project-tabs .nav-link.active,
.project-tabs .nav-link:hover {
  color: #fdd835;
}

.project-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: #fdd835;
}

/* Project Image */
.projects-section img {
  transition: transform 0.4s ease;
  cursor: pointer;
  width: 100%;
  height: 220px;      /* kamu bisa ubah sesuai kebutuhan */
  object-fit: cover;  /* biar crop proporsional */
}

.projects-section img:hover {
  transform: scale(1.05);
}


















    .about-section {
      padding: 60px 0;
      background: url(https://www.agencontainer.co.id/jasa-web/industri/assets/images/bg3.jpg)center center / cover no-repeat;
      width: 100%;
      background-attachment: fixed; /* kunci background */
    }

    /* Left Side */
    .about-left {
      position: relative;
    }
    .about-left img {
      width: 85%;
      height: auto;
    }
    .about-menu {
      position: absolute;
      top: 50px;
      left: 350px; /* maju ke kanan */
      background: #1a1a1a;
      border-radius: 6px;
      overflow: hidden;
      width: 260px;
      z-index: 10;
    }
    .about-menu .nav-link {
      color: #fff;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      padding: 15px;
      text-align: left;
    }
    .about-menu .nav-link small {
      display: block;
      font-size: 13px;
      opacity: 0.9;
    }
    .about-menu .nav-link i {
      margin-right: 8px;
      color: #f4a100;
    }
    .about-menu .nav-link.active {
      background: #f4a100;
      color: #000;
      font-weight: bold;
    }
    .about-menu .nav-link.active i {
      color: #000;
    }

    /* Right Content */
    .about-content {
      padding: 40px;
      background: rgba(255, 255, 255, 0.9); /* putih 70% transparan */
    }
    .about-content h6 {
      color: #0d6efd;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .about-content h2 {
      font-weight: 700;
      margin-bottom: 20px;
    }
    .about-content p {
      color: #555;
      margin-bottom: 30px;
    }

    /* Stats */
    .about-stats .stat-item {
      text-align: center;
      padding: 20px;
    }
    .about-stats .stat-item i {
      font-size: 40px;
      color: #f4a100;
      margin-bottom: 10px;
    }
    .about-stats .stat-item h3 {
      font-size: 24px;
      font-weight: 700;
      color: #f4a100;
    }
    .about-stats .stat-item p {
      font-size: 14px;
      color: #333;
      margin: 0;
    }


 .testimonial-section {
            background-color: #f8f9fa;
            padding: 50px 0;
            text-align: center;
        }
        .testimonial-card {
            background-color: #fff;
            border-radius: 15px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        .testimonial-card img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin-bottom: 15px;
        }
        .testimonial-card .rating {
            color: #ffca08;
            margin-bottom: 10px;
        }
        .testimonial-card .name {
            font-weight: bold;
            color: #333;
        }
        .testimonial-card .quote {
            font-style: italic;
            color: #666;
        }

  .counter-section {
  background: #f8f9fa url("https://www.agencontainer.co.id/jasa-web/industri/assets/images/bg3.jpg") no-repeat center center;
  background-size: cover;
  background-attachment: fixed; /* kunci background */
}
.bungkus {
 background: red;
}
.counter-section h2 {
  color: #000;
}

.counter-section p {
  font-size: 18px;
  color: #555;
}

.counter-section .underline {
  width: 40px;
  height: 3px;
  background: #fdd835; /* kuning */
  margin: 8px auto;
}

/* Responsive */
@media (max-width: 768px) {
  .counter-section h2 {
    font-size: 2rem;
  }
  .counter-section p {
    font-size: 16px;
  }
  .counter-section .underline {
    width: 30px;
    height: 2px;
  }
}

 /* team */
.team-section {
  background: black;
  color: #fff;
  padding: 60px 0;
}



.team-section h2 {
  color: #fff;
}

.team-section .underline {
  width: 50px;
  height: 3px;
  background: #fdd835; /* kuning */
  margin-top: 10px;
}

.team-card {
  background: #2c2c2c;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card img {
  width: 100%;
  height: auto;
  display: block;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.team-info {
  background: #2c2c2c;
}

.team-info h5 {
  font-size: 16px;
  letter-spacing: 1px;
}

.team-info p {
  margin-bottom: 0;
}

 /* Patner */

.partners-section {
  background: #fff;
}

.partners-section h4 {
  font-size: 22px;
  color: #333;
}

.partner-logo img {
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
  max-height: 80px;
}

.partner-logo img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}


    /* Responsive */

@media (max-width: 768px) {
  .about-menu {
    top: 20px;
    left: 70%;
    transform: translateX(-50%); /* biar center di tengah gambar */
    width: 50%;                  /* biar muat di layar mobile */
    border-radius: 6px;
    background: rgba(26, 26, 26, 0.85);
  }

  .about-menu .nav-link {
    text-align: center;
    padding: 10px;
    font-size: 14px;
  }
}




















































    /* ✅ Responsive */
    @media (max-width: 991px) {
      .middle-bar .info-item {
        justify-content: flex-start;
        margin-bottom: 15px;
      }
      .middle-bar .d-flex.gap-5 {
        flex-direction: column;
        gap: 15px !important;
      }
    }
    @media (max-width: 575px) {
      .top-bar .d-flex {
        flex-direction: column;
        text-align: center;
        gap: 5px;
      }
      .search-box {
        display: none; /* sembunyikan search di layar kecil */
      }
    }
  