/* size container */
.container-client {
    margin-bottom: 6rem;
  }
  .container-featured-product {
    margin-bottom: 6rem;
  }
  .container-civil-product {
    margin-top: 6rem;
  }
  /* .container-product {
    margin-top: 40rem;
  } */

  .container-hero {
    margin-bottom: 6rem;
  }
  /* size container */

  /* Style Splash Screen */
  #splash-screen {
    top: 0;
    left: 0;
    position: fixed;
    width: 100%;
    height: 100vh;
    background: url('../image/splash-background.webp') no-repeat center center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    overflow: hidden;
    transition: opacity 1s ease-out; /* Efek fade-out */
  }

  /* Gaya untuk logo */
  #splash-logo {
    width: 150px; /* Ukuran logo */
    height: auto;
    opacity: 0;
    transform: scale(2.5);
    animation: fadeInZoom 1.5s ease-out forwards;
    z-index: 10;
  }

  /* Lingkaran Animasi */
  .circle {
    position: absolute;
    border: 2px solid white;
    border-radius: 50%;
    animation: spin 2s linear infinite, fadeInOut 2.5s ease-in-out infinite;
  }

  .circle:nth-child(1) {
    width: 200px;
    height: 200px;
    animation-delay: 0s;
  }

  .circle:nth-child(2) {
    width: 250px;
    height: 250px;
    animation-delay: 0.5s;
  }

  .circle:nth-child(3) {
    width: 300px;
    height: 300px;
    animation-delay: 1s;
  }

  /* Animasi fade-in + zoom-in logo */
  @keyframes fadeInZoom {
    0% {
      opacity: 0;
      transform: scale(2.5);
    }
    100% {
      opacity: 1;
      transform: scale(1.3);
    }
  }

  /* Animasi rotasi lingkaran */
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

  /* Animasi fade-in-out untuk lingkaran */
  @keyframes fadeInOut {
    0%, 100% {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
  }

  /* Sembunyikan konten utama saat splash screen tampil */
  #content {
    display: none;
  }
  /*  */


  .marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 20px 0;
    --gap: 50px;
    display: flex;
}

.marquee-content {
    flex-shrink: 0;
    display: flex;
    justify-content: space-around;
    gap: var(--gap);
    min-width: 100%;
    animation: scroll 30s linear infinite;
}

.marquee-content img {
    height: 70px;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.marquee-content img.pp-logo {
    height: 160px;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-100% - var(--gap)));
    }
}

/* Pause animation when hovering */
.marquee:hover .marquee-content {
    animation-play-state: paused;
}




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

  body {
    padding-top: 10rem;
    margin-top: 0;
  }

  /* Navbar styles */
  nav,
  .navbar {
    padding: 24px 80px;
    box-shadow: 0 25px 25px rgba(35, 35, 35, 0.04);
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.8);
    font-family: 'poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
  }

  .navbar-brand {
    padding-left: 2rem;
    position: relative;
    z-index: 1002;
  }

  .navbar-brand img {
    max-height: 90px;
  }

  .navbar-nav {
    flex-grow: 1;
    justify-content: center;
  }

  .nav-item {
    margin: 0 0.5rem;
    font-weight: bold;
    color: #141B2A;
    position: relative;
  }

  .nav-link {
    color: #141B2A;
    padding: 0.5rem 1rem;
  }

  .nav-link:hover {
    color: #135155;
    cursor: pointer;
  }

  /* Button styles */
  .btn-custom {
    background-color: #2E8C93;
    color: white;
    border: none;
    padding: 8px 24px;
    border-radius: 4px;
    font-weight: 500;
    padding: 12px 18px;
  }

  .btn-custom:hover {
    background-color: #247278;
    color: white;
    cursor: pointer;
  }

  /* Desktop dropdown styles */
  .dropdown-menu-custom {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    min-width: 800px;
    background-color: rgba(17, 111, 117, 0.9);
    border-radius: 16px;
    padding: 24px;
    border: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    display: none;
  }

  .dropdown-menu-custom.show {
    display: flex;
  }

  .dropdown-column {
    flex: 1;
    padding: 0 20px;
    min-width: 350px;
  }

  .dropdown-header {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 1rem;
    margin-bottom: 16px;
    width: 100%;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
  }

  .dropdown-item {
    color: #fff;
    font-size: 14px;
    padding: 8px 0;
    background: transparent;
    transition: color 0.2s ease, padding-left 0.3s ease-out;
  }

  .dropdown-item:hover {
    color: #F7F7F7;
    background: transparent;
    padding-left: 7px;
    cursor: pointer;
  }

  /* Active state */
  .navbar-nav .nav-item .nav-link.active {
    font-weight: bold;
    color: #2E8C93 !important;
  }


  /* Login dropdown styles */
  #dropdownMenuLink {
    background-color: #2E8C93;
    padding: 12px 60px;
    margin-right: 2rem;
    color: white;
    border: none;
    outline: none;
  }

  .login-dropdown .dropdown-menu {
    background-color: #2E8C93;
    color: white;
    padding: 12px;
  }

  .dropdown-toggle-login::after {
    display: none;
  }

  .dropdown-toggle.active {
    color: #2E8C93 !important;
    background-color: rgba(46, 140, 147, 0.1);
    border-radius: 4px;
  }

  /* Mobile styles */
  @media (max-width: 991.98px) {
    nav, .navbar {
      padding: 15px 20px;
    }

    .navbar-brand {
      padding-left: 0;
    }

    .navbar-brand img {
      max-height: 60px;
    }

    #navbarNav {
      height: 100vh;
      width: 100%;
      position: fixed;
      top: 0;
      right: -100%;
      background-color: rgba(255, 255, 255, 0.98);
      transition: all 0.3s ease-in-out;
      padding: 80px 1.5rem 2rem 1.5rem;
      overflow-y: auto;
      z-index: 1000;
    }

    #navbarNav.show {
      right: 0;
    }

    .navbar-overlay {
      display: block;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(3px);
      z-index: 999;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    }

    .navbar-overlay.show {
      opacity: 1;
      visibility: visible;
    }

    .navbar-toggler {
      position: fixed;
      top: 25px;
      right: 20px;
      z-index: 1002;
      background-color: transparent;
      border: none;
      padding: 10px;
    }

    .navbar-toggler:focus {
      outline: none;
      box-shadow: none;
    }

    .nav-item {
      margin: 0.75rem 0;
      width: 100%;
    }

    .nav-link {
      font-size: 18px;
      padding: 1rem;
      display: block;
      width: 100%;
    }

    /* Mobile dropdown styles */
    .dropdown-menu-custom {
      min-width: 100%;
      position: static;
      transform: none;
      background-color: rgba(17, 111, 117, 0.95);
      padding: 1.5rem;
      margin: 0.5rem 0;
      display: none;
      flex-direction: column;
      border-radius: 12px;
    }

    .dropdown-menu-custom.show {
      display: flex;
    }
    .dropdown-menu-custom .dropdown-column:nth-child(2) {
      order: -1; /* This moves the second column (DIVISI IT) to the front */
    }


    .dropdown-column {
      padding: 0;
      margin-bottom: 1.5rem;
      width: 100%;
      min-width: 100%;
    }

    .dropdown-column:last-child {
      margin-bottom: 0;
    }

    .dropdown-header {
      width: 100%;
      margin-bottom: 1rem;
      height: auto;
      padding: 1rem;
      font-size: 18px;
      text-transform: uppercase;
      letter-spacing: 1px;
      background: rgba(255, 255, 255, 0.2);
    }

    .dropdown-item {
      padding: 0.75rem 1rem;
      font-size: 14px;
      border-radius: 6px;
      margin-bottom: 0.5rem;
      transition: background-color 0.3s ease;
    }

    .dropdown-item:hover {
      background-color: rgba(255, 255, 255, 0.1);
      padding-left: 1.25rem;
    }

    .login-dropdown {
      margin-top: 2rem;
      width: 100%;
    }

    #dropdownMenuLink {
      width: 100%;
      text-align: center;
      padding: 12px 20px;
      font-size: 16px;
      border-radius: 8px;
    }

    .dropdown-column + .dropdown-column {
      margin-top: 2rem;
    }
  }

  /* Smaller screen adjustments */
  @media (max-width: 576px) {
    body {
      padding-top: 8rem;
    }

    nav, .navbar {
      padding: 10px 15px;
    }

    .navbar-brand img {
      max-height: 50px;
    }

    #navbarNav {
      padding: 70px 1rem 1.5rem 1rem;
    }

    .navbar-toggler {
      top: 20px;
      right: 15px;
    }

    .dropdown-item {
      font-size: 13px;
      padding: 10px 14px;
    }
  }/* Smaller screen adjustments */
    /* hero section */

  /* Feature Label Styles */
  .btn-custom-hero {
    background-color: #fff;
    color: #2E8C93;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    padding: 12px 18px;
  }

  .btn-custom-hero:hover {
    background-color: #247278;
    color: white;
  }
  .feature-label {
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.16);
    padding: 16px;
    color: #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    white-space: nowrap;
  }

  /* Carousel Caption Styles */
  .carousel-caption {
    font-family: 'Poppins', sans-serif;
    top: 10%;
    text-align: left;
    left: 5%;
    transform: translateX(0);
  }



  /* Carousel Controls */
  /* Slide Indicators */
  .carousel-footer {
    position: absolute;
    bottom: 5%;
    width: 100%;
    padding: 0 2rem;
    max-width: 1200px; /* Tambahkan max-width yang sama dengan container */
    margin: 0 auto; /* Untuk center alignment */
    left: 0;
    right: 0;
  }

  .carousel-navigation {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .carousel-indicators {
    position: static;
    margin: 0;
    /* margin-left: 1rem; */
  }

  /* Pastikan padding container untuk tombol Produk Kami sama dengan margin-left carousel-indicators */
  .container {
    padding: 0 1rem;
  }

  .carousel-control {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
  }

  .carousel-control:hover {
    background: rgba(255, 255, 255, 0.3);
  }

  /* Glassmorphism Card */
  .card-hero {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 16px;
  }

  .card-hero .card-body {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    padding: 16px;
  }

  /* Membungkus card-hero-img dan card-hero-text dalam satu baris */
  .card-hero .card-hero-content {
    display: flex;
    align-items: center;
    gap: 16px; /* Jarak antara gambar dan teks */
  }

  .card-hero .card-hero-img {
    width: 100px;
    height: 100px;
    overflow: hidden;
    display: flex;
  }

  .card-hero .card-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .card-hero .card-hero-text {
    font-size: 16px;
    color: white;
    font-weight: bold;
    max-width: 200px;
    text-align: left;
  }

  /* Tetap berada di bawah */
  .card-hero .card-hero-icon {
    margin-top: 16px;
  }

  .card-hero .card-hero-icon img {
    width: 50px;
    height: 50px;
  }

  .hero-label {
    font-size: 45px;
    line-height: 1.5;
    font-weight: bold;
  }
  .hero-text {
    margin-bottom: 2rem;
  }
    /* hero section end */

    /* client section start */
    .client-text {
      font-family: 'poppins';
      color:  #24273B;
      font-size: 16px;
    }
    .card-client {
      padding: 1rem;
      margin-top: 4rem;
      margin-bottom: 4rem;
      position: relative;
      border: none;
      outline: none;
      border-radius: 16px;
    }
    .card-client-pp {
      padding: 1rem;
      margin-top: 4rem;
      margin-bottom: 4rem;
      position: relative;
      border: none;
      outline: none;
      border-radius: 16px;
    }
    .client-list .row {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
  }
  .card-image img {
      max-width: 100%;
      height: auto;
      object-fit: cover;
  }

    /* client section end */

    /* featured product section start */
    .project-section {
      padding: 50px 0;
      background-color: #f8f9fa;
  }

  .carousel-card {
      position: relative;
      border-radius: 15px;
      overflow: hidden;
      margin: 0 10px;
  }

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

  .carousel-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 30%;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .carousel-card-title {
      position: absolute;
      bottom: 15px;
      left: 80px;
      color: white;
      z-index: 2;
      font-weight: 500;
      font-size: 1.2rem;
  }

  .carousel-controls {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 40px;
  }

  .carousel-control-prev,
  .carousel-control-next {
      position: static;
      width: 50px;
      height: 50px;
      background-color: #2A9D8F;
      border-radius: 50%;
      opacity: 1;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .carousel-control-prev:hover,
  .carousel-control-next:hover {
      background-color: #238579;
      transform: scale(1.1);
  }

  .carousel-control-prev i,
  .carousel-control-next i {
      color: white;
      font-size: 1.2rem;
  }

  .section-title {
      font-size: 2.2rem;
      font-weight: 600;
      margin-bottom: 1rem;
      font-family: 'poppins';
      color: #2d3436;
  }

  .section-subtitle {
      color: #636e72;
      margin-bottom: 3rem;
      font-size: 1.1rem;
      font-family: 'poppins';
  }

  .project-card img:hover {
    transform: scale(1.05);
    cursor: pointer;
}
  .row {
      margin: 0 -10px;
  }

  /* .col-md-4 {
      padding: 0;
  } */
    /* featured product section end */

    /* featured civil product section start */
    .carousel-container {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      font-family: 'poppins';
  }

  .heading {
      color: #333;
      text-align: center;
      margin-bottom: 10px;
      font-weight: 600;
  }

  .subheading {
      color: #666;
      text-align: center;
      margin-bottom: 30px;
  }

  .project-card {
      height: 200px;
      position: relative;
      border-radius: 8px;
      overflow: hidden;
      margin-bottom: 20px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }

  .project-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  .project-title {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 15px;
      background: rgba(0,0,0,0.6);
      color: white;
      font-weight: 500;
      text-align: center;
  }

  .image-button {
      position: absolute;
      top: 15px;
      right: 15px;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      border: none;
  }

  .controls-container {
      display: flex;
      justify-content: center;
      margin-top: 20px;
  }

  .control-button {
      width: 50px;
      height: 50px;
      background-color: #2A9D8F;
      color: white;
      border: none;
      border-radius: 50%;
      margin: 0 10px;
      cursor: pointer;
      font-size: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .carousel-inner {
      /* padding: 20px; */
      background-color: white;
      border-radius: 12px;
  }

  /* Modal style */
  .modal-content {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    font-family: 'poppins';
  }

  /* Modal header styling */
  .modal-title {
    color: white;
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.3;
  }

  .btn-close {
    background-color: white;
    opacity: 0.8;
    border-radius: 50%;
    padding: 0.5rem;
    margin: -0.5rem -0.5rem -0.5rem auto;
  }

  /* Modal body styling */
  .modal-body {
    padding: 0.75rem 0;
  }

  /* Carousel styling */
  .carousel {
    position: relative;
    margin-bottom: 0.5rem;
  }

  /* .carousel-item img {
    border-radius: 6px;
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 60vh;
  } */

  /* Thumbnail preview container */
  .thumbnail-preview {
    display: flex;
    gap: 8px;
    padding: 0.5rem 0;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }

  .thumbnail {
    width: 80px;
    height: 50px;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s;
    object-fit: cover;
  }

  .thumbnail.active {
    opacity: 1;
    border: 2px solid white;
  }

  /* Custom navigation buttons */
  .modal-footer {
    border-top: none;
    justify-content: space-between;
    padding: 0.5rem 0;
    flex-wrap: wrap;
    gap: 10px;
  }

  .nav-buttons {
    display: flex;
    gap: 0.75rem;
  }

  .carousel-control {
    background-color: #2E8C93;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .carousel-control:hover {
    background: #2E8C93;
  }

  .carousel-control i {
    color: white;
  }


  /* Carousel styling */

  /* modal style */
    /* featured civil product section end */

  /* product section start */
  .container-product {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    font-family: 'poppins';
  }

  .container-product h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .card-product {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 1rem;
    margin-top: 4rem;
    margin-bottom: 4rem;
    border: none;
    outline: none;
    border-radius: 16px;
  }

  .number-circle {
    width: 50px;
    height: 50px;
    background: #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    position: absolute;
  }

  .card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
  }

  .card-body h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: bold;
  }

  .card-body > p {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }

  .img-product {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem auto;
    max-width: 900px;
  }

  .img-product img {
    max-width: 100%;
    height: auto;
  }

  div .card-text {
    text-align: center;
    max-width: 1080px;
    margin: 0 auto;
  }

  .card-text h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 1rem;
    font-weight: bold;
  }

  .card-text p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    padding-bottom: 3rem; /* Tambahkan ruang ekstra */
  }
  .btn-card-custom {
    font-family: 'poppins';
    padding: 10px;
    text-align: center;
    color:  #2E8C93;
    background-color: rgba(46, 140, 147, 0.08);
    border: 3px solid #2E8C93;
    border-radius: 10px;
  }
  .btn-card-custom:hover {
    border: 3px solid #2E8C93;
    color:  #2E8C93;
    background-color: rgba(46, 140, 147, 0.2);
  }
  /* product section end */


  /* footer section start */
  .card-footer {
    padding: 2rem;
    font-size: 16px;
    font-family: 'Poppins';
    color: #fff;
    background-image: url('../image/footer.webp');
    background-size: cover;
    background-position: center;
  }

  .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
  }

  .call-center {
    text-align: right;
  }

  .call-center-text {
    font-size: 22px;
    font-family: 'Poppins';
    color: #fff;
  }


  .footer-check-container {
    display: flex;
    gap: 30px; /* Jarak antar item */
    font-family: 'Poppins';
  }

  .check-item {
    display: flex;
    align-items: center;
    gap: 10px; /* Jarak antara icon dan text */
  }

  .footer-circle-check {
    width: 25px;
    height: 25px;
    background-color: #00D47E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; /* Mencegah icon mengecil */
  }

  .check-text {
    display: flex;
    align-items: center;
  }

  .check-text p {
    margin: 0;
    white-space: nowrap; /* Mencegah text wrap */
  }

  /* footer section end */

  .container-text-product {
    font-family: 'poppins';
    font-weight
  }

  /* More Items Link Style */
  .more-items {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.1) !important;
    margin-top: 10px;
    text-align: center;
    border-radius: 4px;
    transition: all 0.3s ease;
  }

  .more-items i {
    margin-right: 5px;
  }

  .more-items:hover {
    background-color: #1d7d76;
    cursor: pointer;
  }

  /* Modal Styles */
  .modal-content {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 16px;
  }

  .modal-header {
    border-bottom: 1px solid rgba(46, 140, 147, 0.2);
    padding: 1.5rem;
  }

  .modal-title {
    color: #2E8C93;
    font-weight: 600;
  }

  .modal-body {
    padding: 2rem;
  }

  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
  }

  .product-item {
    background: #fff;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }

  .product-item:hover {
    transform: translateY(-5px);
    cursor: pointer;
  }

  .product-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
  }

  .product-item h6 {
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
    height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .btn-custom-modal {
    background-color: #2E8C93;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
  }

  .btn-custom-modal:hover {
    background-color: #1d7d76;
    cursor: pointer;
  }


  @media (max-width: 768px) {
    body {
        padding-top: 4rem;
        margin-top: 0;
      }
    .container-brigde {
      margin-bottom: 5rem;
    }
    .hero-label {
      font-size: 24px;
    }
    .automation-jembatan-hero img {
      max-width: 100%; /* Gambar tidak akan melebihi lebar container */
      height: 100px; /* Menjaga proporsi gambar */
      display: block;
      margin: 20px auto;
    }
    .automation-bridge-label {
      font-size: 24px;
      font-family: 'poppins';
      line-height: 1.4;
      margin: 1.5rem 0;
      font-weight: bold;
    }
    .bridge-img img {
      max-width: 100%; /* Gambar tidak akan melebihi lebar container */
      height: 100%; /* Menjaga proporsi gambar */
    }
    .navbar-brand {
      padding-left: 0px;
    }
    .navbar-brand img {
      max-height: 50px;
    }
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 20px; /* Sesuaikan padding */
    }
    .navbar-brand {
      margin-left: 0;
      padding-left: 0;
    }

    .navbar-toggler {
      margin-right: 0;
    }
    .footer-content {
      flex-direction: column;
    }

    .footer-content .card-text{
      text-align: left;
    }

    .call-center {
      text-align: left;
      margin-top: 25px;
    }

    .call-center-text {
      font-size: 22px;
      font-family: 'Poppins';
      color: #fff;
    }

    .footer-check-container {
      display: flex;
      flex-direction: column;
  }

  .check-item {
      display: flex;
      align-items: center;
      margin-top: 5px;
      margin-bottom: 5px;
      /* gap: 14px; */
  }

  .check-item .check-text-2 {
    margin-right: 20px;
  }

  .card-footer {
    padding: 1rem;
  }

  .footer-circle-check {
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #00ff9d;
      width: 24px;
      height: 24px;
      border-radius: 50%;
  }

  .footer-circle-check i {
      font-size: 12px;
      color: #000000;
  }

  .check-text p {
      margin: 0;
      font-size: 14px;
      color: #ffffff;
      font-weight: 400;
  }

  .footer-card-text {
    font-size: 14px;
  }

    .section-title {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 1rem;
      font-family: 'poppins';
      color: #2d3436;
  }

  .section-subtitle {
      color: #636e72;
      margin-bottom: 3rem;
      font-size: 1rem;
      font-family: 'poppins';
  }

  .carousel-card img {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .carousel-card::after {
    height: 25%;
  }

  .card-client {
    border-radius: 20px;
    padding: 1rem;
    position: relative;
    border: none;
    outline: none;
    border-radius: 16px;
  }
  .card-client-pp {
    padding: 1rem;
    position: relative;
    border: none;
    outline: none;
    border-radius: 16px;
  }
  .card-image img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
  }
  .feature-label {
    font-size: 10px;
    padding: 12px;
  }

  .login-dropdown .dropdown-menu {
    background-color: #2E8C93;
    color: white;
    padding-left: 8rem;
    padding-right: 110px;
  }

  .client-list .row {
    flex-direction: column;
    align-items: center;
  }

  .client-list .col {
    width: 100%;
    max-width: 250px;
  }

  .card-client, .card-client-pp {
    margin: 1rem 0;
  }

  .client-text {
    text-align: center;
  }

  .card-image img, .card-image-pp img {
    width: 100%;
    margin: auto;
  }

  .container-hero {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero-label {
    font-size: 15px;
    font-weight: bold;
  }

  #carouselExampleCaptions .carousel-item {
    height: 100vh;
    width: 100%;
  }

  #carouselExampleCaptions .carousel-item img {
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  /* Adjust caption positioning for better mobile view */
  .carousel-caption {
    bottom: 20%;
    padding: 0 15px;
  }

  /* Adjust text sizes for mobile */
  .hero-label {
    font-size: 26px;
    line-height: 1.3;
  }

  .hero-text {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 1rem;
    /* text-align: justify; */
  }

  .carousel-footer {
    bottom: 10%;
    padding: 0 1rem;
  }

  .carousel-control {
    width: 35px;
    height: 35px;
  }

  .carousel-indicators {
    display: none;
  }
  .nav-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }

  .card-body h2 {
    text-align: center;
    font-size: 1.5rem;
  }
  .card-body > p {
    text-align: center;
    font-size: 1rem;
  }
  .card-text h3 {
    font-size: 16px;
  }

  .number-circle {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }

  .card-text p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  .carousel-container {
    max-width: 1200px;

  }
  .modal-content {
    padding: 1rem;
  }

  .modal-title {
    font-size: 1.1rem;
  }

  .thumbnail {
    width: 60px;
    height: 40px;
  }

  .carousel-control {
    width: 32px;
    height: 32px;
  }

  .modal-footer {
    flex-direction: column;
    align-items: center;
  }

  .thumbnail-preview {
    order: 1;
    margin-bottom: 0.5rem;
  }

  .nav-buttons {
    order: 2;
  }
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
  }

  .product-item {
    padding: 0.8rem;
  }

  .product-item img {
    height: 100px;
  }

  .product-item h6 {
    font-size: 14px;
    height: 35px;
  }

  .btn-custom-modal {
    padding: 6px 12px;
    font-size: 12px;
  }

  .modal-body {
    padding: 1rem;
  }
  .control-button:hover {
      background: #468F8B;
      cursor: pointer;
    }

    .thumbnail:hover {
      opacity: 0.8;
      cursor: pointer;
    }
  }

  .carousel-container.civil-product {
    background-color: #F2F4F3;
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding: 60px 20px;
    width: 100%; /* Make it full width */
    max-width: 100%; /* Ensure no max-width limit */
}

.carousel-container.it-product {
    background-image: url('../image/index/background-divisi-it.png'); /* Ganti dengan path gambarmu */
    background-size: cover; /* agar gambar menutupi seluruh area */
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    padding: 60px 20px;
}

.it-product .carousel-inner {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
}

.col-md-4 {
    margin-top: 20px;
}


.civil-product .carousel-inner {
    background-color:  #F2F4F3;
    border-radius: 20px;
}