body{
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
}

.bg-navbar {
    background: linear-gradient(90deg, #052450, #0094da);
}

.navbar-brand{
    padding-right: 50px;
    padding-left: 30px;
} 

/* ------ BATAS NAVBAR ------ */

.logo{
    height:50px;
    width:auto;
}

/* ------ BATAS LOGO ------ */

.menu-active{
    font-weight: bold;
    color: #f4f4f4 !important;  
    font-weight: 500;  
}

.menu-tidak-active{    
    color: #e7e7e7 !important;
    font-weight: 500;
    opacity: 0.7;
}

.hover-menu:hover{
    font-weight: bold;
    color: #f4f4f4 !important;
    opacity: 1;
}

.menu-hover:hover{
    background: #0094da;
    color:white;
}

/* ------ BATAS MENU ------ */


.gambar-slider{
    margin-top: 4%;
    width: 100%;
    height: 95vh;
    object-fit: contain;
}

.btn-slider {
    background-image: linear-gradient(#0B70FF, #000000);
    width: 40px;
    height: 40px;
    border-radius: 40px;
    margin-top: 25%;
    margin-left: 3%;
    margin-right: 3%;
}
    
.btn-slider:hover{
    background-color: #007bff;
}

/* -------- BATAS SLIDER ------------- */

hr{
    border: 1.5px solid #007bff;
    width: 15%;
}

.garis{
    border: 1.5px solid #007bff;
    width: 15%;
}

.bg-gray{
	background-color:#e9fbff;
}

.judul-parameter{
    background: linear-gradient(90deg, #0094da, #b8e9ff); 
    padding-left: 10px; 
    padding-top: 10px; 
    padding-bottom: 10px; 
    color: white; 
    border-radius: 15px;
}

.gambar-parameter{
    border-radius: 15px;
}

.gambar-product{
    width: 100%;
    height: 250px;
    object-fit: contain;
    border-radius: 25px;
    position: relative;
    z-index: 1;
}

.product {
  position: relative;
  overflow: hidden; /* biar gradasi nggak keluar dari card */
}

/* Tambahkan overlay transparan */
.product::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(#0094da, #fff8f8);
  opacity: 0; /* awalnya tidak terlihat */
  transition: opacity 0.3s ease;
  z-index: 2; /* di atas gambar */
}

/* Saat hover */
.product:hover::before {
  opacity: 0.5; /* atur tingkat transparansi di sini */
}

.contact{
    background: linear-gradient(90deg, #cae5ff, #f9fdff);
    opacity:0.9;
    margin-bottom: -50px;
}

.footer{
    height: 80px;
    line-height: 80px;
    background-color:#031a39;
}
    




/*=========================== START MOBILE ================*/
    

@media (max-width: 768px) {
    .gambar-slider{
        margin-top: 2%;
        width: 100%;
        height: 30vh;
        object-fit: contain;
    }

    .btn-slider {
        background-image: linear-gradient(#0B70FF, #000000);
        width: 25px;
        height: 25px;
        border-radius: 30px;
        margin-top: 30%;
        margin-left: 3%;
        margin-right: 3%;
    }

    .nama-pt {
        font-size: 16px;
    }
}

