      html {
  scroll-behavior: smooth;
}
  header {
    background-color: #0d6efd;
    color: #fff;
    padding: 2rem 0;
    text-align: center;
    margin-bottom: 2rem;
  }
  header h1 {
    font-weight: 700;
    letter-spacing: 1px;
  }
  .case-study-card {
    background: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .case-study-card,
  .icon-list:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
  }
  .case-image {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
  }
   .icon-list {
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem 2rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    margin: auto;
  }
  .icon-list-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
  }
  .icon-list-item i {
    font-size: 1.5rem;
    color: #0d6efd;
    margin-right: 1rem;
    min-width: 30px;
    text-align: center;
  }
  .icon-list-item:last-child {
    margin-bottom: 0;
  }
  .shadow:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.15);
    transition: 0.3s ease-in-out;
}
.btn-outline-warning-custom {
    color: #f2a41d;
    border-color: #f2a41d;
    background-color: transparent;
    transition: all 0.3s ease;
  }

  .btn-outline-warning-custom:hover {
    background-color: #f2a41d;
    color: white;
    border-color: #f2a41d;
  }

  /* Product Section */
.product-card {
  border:none!important;
  position: relative;
  overflow: visible; 
  /* background-color: #0f3054; */
  background: linear-gradient(145deg, #f0f4ff, #d9e4ff);
  padding-top: 40px;
  margin-bottom: 50px; 
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.product-image {
  transition: all 0.5s ease;
  display: block;
  margin: 0 auto;
  width: 70%;
  height: 180px;
  object-fit: contain;
  position: relative;
  z-index: 2;
}

.product-card:hover .product-image {
  transform: translateY(-60px) scale(1.15) rotate(-10deg);
  z-index: 3;
}

.overlay-content {
  position: absolute;
  bottom: 15px;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 4;
}

.product-card:hover .overlay-content {
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .product-card:hover .product-image {
    transform: translateY(-40px) scale(1.05);
  }
}
.text-color{
  color: #0f3054;
}


/* Header Section */
.banner-image {
  background-image: url('{{asset("assets/images/logo/s1.jpg") }}');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 420px;
  width: 100%;
  display: flex;
  align-items: center;
  padding-left: 40px; 
}

.banner-image h1 {
  font-size: 2.8rem;
  font-weight: 700;
  background: rgba(0,0,0,0.4);
  padding: 10px 20px;
  border-radius: 6px;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .banner-image {
    height: 250px;
    padding-left: 15px;
  }
  .banner-image h1 {
    font-size: 1.6rem;
    line-height: 1.3;
    text-align: left;
  }
}