e  body {
      font-family: 'Poppins', sans-serif;
    }



    /* navbar */
    .navbar {
      background-color: #123244;
      padding: 10px 0;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .navbar-brand {
      display: flex;
      align-items: center;
      color: white;
      font-weight: 600;
      font-size: 1.4rem;
      text-transform: uppercase;
      text-decoration: none;
    }

    .navbar-brand img {
      height: 50px;
      margin-right: 12px;
    }

    .navbar-nav .nav-link {
      color: white !important;
      font-weight: 500;
      padding: 8px 15px;
      transition: all 0.3s ease;
    }

    .navbar-nav .nav-link:hover {
      color: #ffd369 !important;
      background-color: transparent;
    }

    .dropdown-menu {
      background-color: #123244;
      border: none;
      padding: 10px 0;
    }

    .dropdown-item {
      color: #fff;
      padding: 10px 20px;
      transition: background 0.3s;
    }

    .dropdown-item:hover {
      background-color: #0a1f2c;
      color: #ffd369;
    }

    .navbar-toggler {
      border: none;
      background-color: transparent;
    }

    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }



    /* slider */
  
  #heroSlider img {
    height: 500px;
    object-fit: cover;
  }

  @media (max-width: 768px) {
    #heroSlider img {
      height: 250px;
    }
  }



  /* product */
   .product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
  }

  .product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }

  .product-card img {
    height: 200px;
    object-fit: contain;
  }

  .product-card .card-body {
    padding: 15px;
    border-top: 1px solid rgba(0,0,0,0.05);
  }
  
  
  
  
  
  
  /*PRODUCT-DETAIL*/
  .custom-container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 15px;
}

.custom-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.custom-col {
  flex: 1 1 48%;
}

.slider-container {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  box-sizing: border-box;
}

.slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
}

.navigation {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 15px;
}

.navigation button {
  background-color: rgba(0,0,0,0.6);
  border: none;
  color: white;
  padding: 10px 18px;
  font-size: 22px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s;
}

.navigation button:hover {
  background-color: #000;
}

.table-wrapper h2 {
  color: #123244;
  font-weight: 700;
}

.table-wrapper h3 {
  margin-top: 10px;
  color: #666;
}

.table-container {
  margin-top: 20px;
  background: #f8f9fa;
  padding: 15px;
  border-radius: 10px;
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .custom-row {
    flex-direction: column;
  }

  .custom-col {
    flex: 1 1 100%;
  }

  .slide img {
    height: 250px;
  }
}

  

  /* footer  */
    .footer-link {
    color: #bbbbbb;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
  }

  .footer-link:hover {
    color: #ffc107;
    padding-left: 5px;
  }

  footer h5 {
    font-weight: 600;
  }

  footer i {
    color: #ffc107;
    margin-right: 6px;
  }
  
  .float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
    font-size:42px;
	box-shadow: 2px 2px 3px #999;
    z-index:100;
}

.my-float{
	margin-top:16px;
}
