
.input-icon {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #999;
    font-size: 16px;
    pointer-events: none; /* Biar klik nggak kena ikon */
}

.contact-two__input-box input {
    padding-left: 45px; /* Diperbesar dari 40 ke 45px */
}

#myCarousel {
    border-radius: 1rem;
    overflow: hidden;
    max-width: 800px; /* opsional */
    margin: auto;
}

#myCarousel .carousel-item img {
    border-radius: 0; /* biarkan gambar tetap full agar ikut terpotong container */
}

.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #fff;
    border-top: 1px solid #ddd;
    z-index: 9999;
    box-shadow: 0 -1px 6px rgba(0,0,0,0.1);
    }

    .bottom-nav-item {
    flex: 1;
    text-align: center;
    font-size: 12px;
    color: #333;
    text-decoration: none;
    padding-top: 6px;
    }

    .bottom-nav-item i {
    font-size: 18px;
    display: block;
    margin-bottom: 2px;
    }

    .bottom-nav-item:hover,
    .bottom-nav-item:active {
    color: #007bff;
    }

/* Tabs Container */
.custom-tabs {
display: flex;
justify-content: center; /* Menjaga tab tetap di tengah */
align-items: center;     /* Menjaga tab tetap sejajar vertikal */
border-bottom: none;
margin-top: 30px;
gap: 15px;
}

/* Each Tab Button */
.custom-tabs .nav-link {
border: none;
background: #C11425;
color: #ffffff;
padding: 10px 20px;
font-weight: 600;
border-radius: 50px;
transition: all 0.3s ease;
width: 150px;
height: 50px;
box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.custom-tabs .nav-link:hover {
background: #e0e0e0;
color: #000;
}

/* Active Tab */
.custom-tabs .nav-link.active {
background: #007234;
color: #fff;
box-shadow: 0 4px 12px rgba(0,123,255,0.3);
}

.chat-float-container {
position: fixed;
bottom: 20px;
right: 20px;
margin-bottom: 50px;
display: flex;
flex-direction: column-reverse;
align-items: flex-end;
z-index: 1050;
}

.dropdown-box {
margin-bottom: 10px;
border-radius: 10px;
animation: slideInUp 0.3s ease-in-out;
min-width: 220px;
}

@keyframes slideInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  
  /* Responsive Mobile */
  @media (max-width: 576px) {
    .custom-tabs {
      overflow-x: auto; /* Menambahkan scroll horizontal */
      white-space: nowrap; /* Membuat tab tetap dalam satu baris */
      flex-wrap: nowrap;  /* Membatasi tab tetap dalam satu baris */
    }
  
    .custom-tabs .nav-item {
      flex: 0 0 auto; /* Mencegah tab untuk menyusut */
    }
  
    .custom-tabs .nav-link {
      white-space: nowrap; /* Mencegah teks tab agar tetap pada satu baris */
      padding: 10px 15px; /* Sesuaikan padding agar tidak terlalu besar */
    }
  }
  