/* General Styles */
body {
    font-family: 'poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000;
    margin-top: 80px;
}

/* Menu Styles */
/* Navbar General Styling */
.navbar {
    background-color: #000; /* Background hitam */
    padding: 0 20px; /* Padding horizontal */
    height: 80px; /* Tinggi navbar */
    display: flex; /* Flexbox utama untuk tata letak */
    align-items: center !important; /* Tengah secara vertikal */
    justify-content: space-between; /* Logo di kiri, menu di kanan */
    z-index: 10;
    margin-bottom: 0;
}

.navbar .container {
    margin-bottom: 0;
}

/* Logo Styling */
.navbar-brand {
    display: flex;
    align-items: center; /* Posisikan logo di tengah secara vertikal */
}

.navbar-brand img {
    height: 40px; /* Sesuaikan tinggi logo */
    width: auto; /* Proporsi logo tetap */
}

/* Menu Items Styling */
.navbar-nav {
    display: flex;
    justify-content: center; /* Memposisikan secara horizontal */
    align-items: center; /* Memposisikan secara vertikal */
    width: 100%; /* Mengambil seluruh lebar navbar */
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .nav-item {
    padding: 0 15px; /* Menambahkan sedikit jarak antar item */
  }

  .navbar-collapse {
    display: flex;
    justify-content: center; /* Memastikan isi navbar dipusatkan */
    align-items: center;
  }

  .navbar {
    height: 80px; /* Atur tinggi navbar agar lebih jelas */
  }

/* Menu Link Styling */
.navbar-nav .nav-link {
    padding: 10px 15px; /* Jarak sekeliling teks */
    font-size: 16px;
    color: #fff; /* Warna teks putih */
    text-decoration: none; /* Hapus garis bawah */
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #00B7C2; /* Warna hover */
}

/* Actions (Language & Login) Styling */
.actions {
    display: flex;
    align-items: center; /* Tengah secara vertikal */
    gap: 15px; /* Jarak antar elemen */
}

/* Language Dropdown */
.language {
    position: relative;
}

.language-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.language-btn:hover {
    color: #00B7C2;
}

.language-dropdown {
    display: none;
    position: absolute;
    background-color: #333;
    list-style: none;
    padding: 5px 0;
    margin: 0;
    top: 100%;
    right: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 100;
    border-radius: 4px;
    width: 100px;
}

.language-dropdown li {
    text-align: center;
}

.language-dropdown a {
    display: block;
    padding: 8px 10px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.language-dropdown a:hover,
.language-dropdown a.active {
    background-color: #00B7C2;
    color: #fff;
}

.language:hover .language-dropdown {
    display: block;
}

/* Login Button */
.login-btn {
    background-color: #00B7C2;
    border: none;
    color: #fff;
    padding: 8px 15px;
    text-decoration: none;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease-in-out;
}

.login-btn:hover {
    background-color: #cc7a00;
    color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .navbar {
        flex-direction: column; /* Susun navbar secara vertikal */
        height: auto; /* Biarkan tinggi otomatis */
        align-items: flex-start; /* Logo tetap di kiri */
    }

    .navbar-nav {
        width: 100%; /* Lebar penuh */
        flex-direction: column; /* Susun menu secara vertikal */
        align-items: flex-start; /* Sejajarkan ke kiri */
    }

    .nav-link {
        padding: 10px 0;
    }

    .actions {
        width: 100%;
        justify-content: flex-end; /* Posisi tombol login tetap kanan */
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .navbar {
        height: auto;
        margin-bottom: 0;
    }
    .navbar-brand img {
        max-height: 32px;
    }

    .login-btn {
        font-size: 14px;
        padding: 6px 10px;
    }

    .language-btn {
        font-size: 14px;
    }

    .language-dropdown a {
        font-size: 12px;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh; /* Tinggi penuh viewport */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.tagline {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #00B7C2;
}

.banner-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Memastikan gambar mengisi area tanpa distorsi */
    z-index: -1;
}

.text-container {
    position: absolute;
    top: 50%;
    left: 7%;
    transform: translateY(-50%);
    max-width: 40%;
    color: #fff; /* Warna teks agar kontras */
    text-align: left;
}

.text-container h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.text-container h2 {
    font-size: 1.8rem;
    font-weight: normal;
    margin-bottom: 15px;
}

.text-container p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-primary {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
}

@media (max-width: 768px) {
    .container.text-container {
        max-width: 90%;
        left: 5%;
    }
    .banner-img {
        width: 100%;
        height: 90%;
    }
}


/* Section Styling */
.service-section {
    background-color: #f8f9fa; /* Sama dengan information-section */
    padding: 50px 0; /* Ruang vertikal */
}

.service-section .container-section {
    max-width: 1200px; /* Sesuai dengan information-section */
    margin: 0 auto; /* Pusatkan konten */
    display: grid; /* Gunakan grid untuk tata letak */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Kolom responsif */
    gap: 20px; /* Jarak antar kartu */
}

.service-card {
    background-color: #fff;
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Tambahkan bayangan */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Efek hover */
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.service-card .icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.service-card h5 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
}

.service-card .service-text {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}

/* Responsiveness */
@media (max-width: 768px) {
    .service-section .container-section {
        grid-template-columns: 1fr; /* Satu kolom untuk layar kecil */
    }

    .service-card {
        padding: 15px;
    }

    .service-card h5 {
        font-size: 1rem;
    }

    .service-card .service-text {
        font-size: 0.85rem;
    }
}


/* Information Section */

.information-section {
    background-color: #f8f9fa; /* Warna latar belakang lembut */
    padding: 30px 0; /* Memberikan ruang vertikal */
}

.information-section .container-form {
    max-width: 1200px;
    margin: 0 auto; /* Pusatkan konten */
}

.information-section h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.container-form h1 .text-primary {
    color: #00B7C2 !important;
}

.information-section p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.information-section .btn-primary {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.information-section .btn-primary:hover {
    background-color: #0056b3;
}

.information-section .img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 10px; /* Tambahkan efek sudut membulat */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Tambahkan bayangan */
}

/* Responsiveness */
@media (max-width: 768px) {
    .information-section h1 {
        font-size: 2rem;
    }

    .information-section p {
        font-size: 0.9rem;
    }

    .information-section .btn-primary {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}


/* Cek Harga */
.container {
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 40px;

}

.form-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 30px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.form-inputs {
    flex: 1;
}

.form-label {
    font-weight: bold;
    font-size: 0.9rem;
    color: #333;
}

.form-control,
.form-select {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 0.8rem;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

@media (max-width: 768px) {
    .form-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-image {
        max-width: 100%;
        margin-left: 10px;
        margin-top: 20px;
    }
}
.form-image img {
    width: 100%;
    height: auto;
    margin-left: 10px;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.form-image p {
    font-size: 1rem;
    color: #000;
    margin: 0.5rem 0;
}

.container .btn-primary {
    background-color: #00B7C2;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
}

.container .btn-primary:hover {
    background-color: #00B7C2;
    border-color: #00B7C2;
}

ul {
    padding: 0;
    margin: 0;
}

ul li:hover {
    background-color: none;
}

/* Expansion Section */
.expansion-section {
    padding: 40px 15px;
    background-color: #00B7C2;
}

.container-form {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.expansion-section h1 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
}

.expansion-section p {
    font-size: 1rem;
    color: #fff;
    line-height: 1.6;
}

.expansion-section .btn-primary {
    background-color: #fff;
    color: #00B7C2;
}

.expansion-section .btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}

.expansion-section img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto; /* Center horizontally */
}

.expansion-section .col-md-6.text-center {
    display: flex;
    justify-content: center;
    align-items: center; /* Center vertically */
    height: 100%; /* Ensure the column fills the available space */
}

@media (max-width: 768px) {
    .expansion-section .row {
        flex-direction: column;
        text-align: center;
    }

    .expansion-section h1 {
        font-size: 2rem;
    }

    .expansion-section p {
        font-size: 0.95rem;
    }

    .expansion-section img {
        max-width: 90%;
        margin-top: 20px;
    }

    .expansion-section .btn-primary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .expansion-section h1 {
        font-size: 1.8rem;
    }

    .expansion-section p {
        font-size: 0.9rem;
    }
}


/* Order Section */
.order-section {
    background-color: #00B7C2;
}

.order-section h1 {
    font-size: 2rem;
    line-height: 1.4;
    color: #fff;
}

.container-form h3 {
    color: #000;
    text-align: center;
    margin-top: auto;
    margin-bottom: 20px;
}

.order-section label {
    margin-top: auto;
    margin-bottom: 20px;
}

.order-section p {
    font-size: 1rem;
    color: #6c757d;
    color: #fff;
}

/* Container styles */
.order-section .container-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

/* Form container */
.order-section .container-form .bg-light {
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* Form label and input styles */
.order-section .form-label {
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.order-section .form-control {
    border-radius: 5px;
    border: 1px solid #ced4da;
    margin-bottom: 15px;
}

/* Button styles */
.order-section .btn {
    background-color: #00B7C2;
    border-color: #007bff;
    padding: 10px 15px;
    font-size: 1rem;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.order-section .btn:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 992px) {
    .order-section .col-md-6 {
        margin-bottom: 30px;
    }

    .order-section h1 {
        font-size: 1.75rem;
        text-align: center;
    }

    .order-section p {
        font-size: 0.95rem;
        text-align: center;
    }

    .order-section .bg-light {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .order-section h1 {
        font-size: 1.5rem;
    }

    .order-section p {
        font-size: 0.9rem;
    }

    .order-section .btn {
        font-size: 0.9rem;
        padding: 8px 12px;
    }
}

@media (max-width: 576px) {
    .order-section h1 {
        font-size: 1.3rem;
    }

    .order-section p {
        font-size: 0.85rem;
    }

    .order-section .bg-light {
        padding: 15px;
    }
}

/* Client Section */
.client-section {
    background-color: #fff;
    text-align: center;
    padding: 30px 0;
    text-align: center;
    margin: 20px 20px;
}

.container h2 .text-primary {
    color: #00B7C2 !important;
}

.client-section .slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.slide-track {
    display: flex;
    white-space: nowrap;
    transform: translateX(0);
    transition: transform 0.2s linear; /* Tambahan jika ingin efek mulus */
    width: calc(110px * 25); /* Sesuaikan jumlah duplikasi logo */
}

.client-section .slide-track {
    display: flex;
    margin-top: 20px;
    gap: 30px; /* Add spacing between logos */
    animation: scroll 20s linear infinite; /* Infinite scrolling animation */
}

.slide {
    display: inline-block;
}

.client-section .slide {
    flex: 0 0 auto;
    width: 150px; /* Adjust logo size */
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-section .slide img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Infinite scrolling keyframes */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.client-section .slider {
    background-color: white; /* Warna latar untuk debugging */
}

.client-section .slide-track {
    background-color: white; /* Warna latar untuk memastikan animasi */
}

@media (max-width: 768px) {
    .client-section .slide {
        width: 80px;
        height: 80px;
    }
}

/* Footer section */
.footer-section {
    background-color: #000;
    color: #fff;
    padding: 2rem 0;
}

.cursor-pointer {
    cursor: pointer;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.d-flex {
    display: flex;
}

.gap-3 {
    gap: 1rem;
}

.align-items-center {
    align-items: center;
}

.flex-row {
    flex-direction: row;
}

@media (max-width: 768px) {
    .footer-section {
        text-align: center;
        position: relative;
    }
    .d-flex.gap-3 {
      justify-content: center;
      align-items: center;
    }
}

/* About Section */
.about-section {
    color: white;
    text-align: left;
    padding: 100px 100px; /* Tambahkan padding agar teks tidak terlalu mepet */
    position: relative;
    margin-top: 70px;
}

.about-section span {
    color: #00B7C2;
}

.about-section .container {
    max-width: 1100px;
}

.about-section .container h5 {
    color: #fff;
}

header {
    position: relative;
    z-index: 10; /* Pastikan menu tidak tertutup oleh image */
}

/* Vision Section */
.vission-image {
    height: 80%;
}

/* Mision Section */
.container-mision {
    padding: 20px 0;
}
.mission-text {
    flex: 1;
    max-width: 50%;
    text-align: right;
}
.mission-text h1 {
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 30px;
}
.mission-text .btn {
    padding: 10px 20px;
    background: #00B7C2;
    color: white;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    border-radius: 30px;
    margin-top: 30px;
}
.mission-text .btn:hover {
    background: #008a94;
}

@media (max-width: 768px) {
    .mission-container {
        flex-direction: column;
        text-align: center;
    }
    .mission-text {
        text-align: left;
        width: 100%;
    }
    .mission-image img {
        width: 100%;
    }
}


/* Order Section */

/* Contact Us Section */
.contact-us-container {
  display: flex;
  background: rgba(0, 0, 0, 0.7) url('img/block/contactus_bg.png') no-repeat center;
  background-size: cover;
  padding: 40px;
  max-width: 1400px;
  width: 100%;
  color: #fff;
  margin-top: 50px;
}

.form-section {
  flex: 1;
  padding: 20px;
}

.form-section h2 {
  color: #00B7C2;
  font-size: 30px;
  margin-bottom: 20px;
}

.form-section label {
  display: block;
  margin-top: 10px;
  font-weight: bold;
}

.form-section input, textarea {
  background: transparent;
  color: #fff;
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 15px;
  border: 2px solid #fff;
  border-radius: 4px;
  font-size: 16px;
}

.form-section button {
  background-color: #00B7C2;
  color: #fff;
  border: none;
  padding: 12px 20px;
  margin-top: 40px;
  font-size: 16px;
  border-radius: 50px;
  cursor: pointer;
  width: 100%;
}

.form-section button:hover {
  background-color: #008aa3;
}

.info-section {
  flex: 1;
  padding: 20px;
  text-align: left;
}

.info-section img {
  max-width: 100%;
  border-radius: 8px;
  margin-top: 80px;
}

.info-details p {
  margin: 10px 0;
}

@media (max-width: 768px) {
  .contact-us-container {
    flex-direction: column;
  }

  .info-section img {
    margin-top: 10px;
  }
  .info-section {
    margin-top: 20px;
  }
}

/* Service Section */
.services-section {
    position: relative;
    width: 100%;
    background-color: #000;
    color: #fff;
    display: flex;
    line-height: 1.6;
    padding: 20px 0;
}
.services-section .container {
    width: 90%;
    max-width: 1728px;
    margin: auto;
}
.container .section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}
.text-content {
    flex: 1;
    max-width: 50%;
}
.text-content h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}
.text-content ul {
    list-style: none;
    padding: 0;
}
.text-content ul li {
    font-weight: bold;
    margin-bottom: 5px;
}
.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #00B7C2;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
}
.image-content {
    flex: 1;
    max-width: 50%;
    text-align: right;
}
.image-content img {
    width: 100%;
    max-width: 600px; /* Batasi ukuran gambar */
    display: block;
    margin-left: auto; /* Dorong gambar ke kanan */
}
.image-content h4 {
    color: #fff; /* Warna putih */
    font-weight: bold;
    margin-top: 20px; /* Jarak atas agar tidak terlalu dekat */
    text-align: right;
}
.icons {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    margin-top: 20px;
}
.icons div {
    text-align: center;
}

.icons img {
    width: 50px;
}
.icon img {
    width: 40px;
}
@media (max-width: 768px) {
    .container .section {
        flex-direction: column;
        text-align: center;
        margin-top: 40px;
    }
    .text-content, .image-content {
        max-width: 100%;
    }
}


/* Tracking section */
.tracking-container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #00B7C2;
}
.tracking-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
}
.tracking-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px; /* Jarak antara input dan button */
    width: 800px;
    margin: 0 auto;
}
/* Search Bar */
.tracking-search {
    width: 100%;
    padding: 15px 60px 15px 20px;
    border-radius: 50px;
    border: none;
    font-size: 1.2rem;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}
.search-btn {
    background: #00B7C2;
    color: white;
    border: none;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.3s ease;
}
.search-btn:hover {
    background: #0096a2;
}
.container-tracking {
  font-family: 'poppins', sans-serif;
  background-color: #00B7C2;
  display: flex; /* Mengatur kontainer menjadi flex */
  flex: wrap;
  flex-direction: row; /* Membuat elemen anak disusun secara horizontal */
  gap: 20px;
  padding: 20px;
  max-width: auto;
}

.left-column {
  width: 35%; /* Lebar untuk kolom kiri */
  display: flex;
  flex-direction: column; /* Membuat elemen dalam kolom kiri berurutan ke bawah */
  gap: 20px;
}

.right-column {
  width: 65%; /* Lebar untuk kolom kanan */
}

.task-section {
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background-color: #fff;
}

.container-tracking h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

/* Timeline styling */
.timeline-item {
  margin-bottom: 15px;
  position: relative;
  padding-left: 40px;
}

.timeline-item::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #4caf50;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 5px;
}

.status {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 10px;
  font-size: 0.9em;
}

.status.completed {
  background-color: #e8f5e9;
  color: #4caf50;
}

.status.assigned {
  background-color: #ffecb3;
  color: #ff9800;
}

.status.created {
  background-color: #e3f2fd;
  color: #2196f3;
}

/* Tabs styling */
.tabs {
  display: flex;
  border-bottom: 2px solid #ddd;
  margin-bottom: 20px;
}

.tab {
  padding: 10px 20px;
  cursor: pointer;
}

.tab.active {
  border-bottom: 2px solid #4caf50;
  font-weight: bold;
}

.tab-content {
  display: none;
}

.tab-content h4 {
    margin-top: 20px;
    margin-bottom: 20px;
}

.tab-content.active {
  display: block;
}

/* Responsive layout for mobile */
@media (max-width: 768px) {
  .container {
    flex-direction: column; /* Berubah menjadi kolom pada layar kecil */
  }

  .left-column,
  .right-column {
    width: 100%; /* Lebar penuh untuk semua kolom */
  }
}
/* Responsiveness */
@media (max-width: 768px) {
    .tracking-title {
        font-size: 1.5rem;
    }
    .tracking-form {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    .tracking-search {
        width: 100%;
    }
    .search-btn {
        width: 100%;
    }
}


.task-history {
    font-size: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 122px;
    position: relative;
    padding-bottom: 25px;
    text-transform: capitalize
}

.task-history:before {
    content: '';
    width: 0;
    border-right: 2px dashed #333;
    position: absolute;
    top: 21px;
    left: 103px;
    bottom: -7px
}

.task-history:after {
    content: '';
    height: 12px;
    width: 12px;
    border-radius: 50%;
    position: absolute;
    left: 97px;
    top: 11px;
    margin-top: -3px;
    border: 1px solid #333
}

.task-history:first-child:after {
    border-color: #4caf50;
}

.task-history:last-child:before {
    display: none
}

.task-history .day{
    font-weight: 500;
    position: absolute;
    left: 0;
    top: 0;
    text-align: center;
    width: 80px;
}

.task-history .text{
  font-weight: 600;
}

.task-history .text .textValue{
    font-weight: normal;
    color: #333;
  }

.task-history .text p{
    margin: 0px;
}