/* Hide scrollbar */
#serviceSlider::-webkit-scrollbar {
  display: none;
}
#serviceSlider {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Card Styling */
.card {
  width:300px;
  height:400px;
  border-radius: 8px;
  overflow:hidden;
  position:relative;
  flex-shrink:0;
  transition:0.3s;
  padding: 0;
}

.card img {
  width:100%;
  height:100%;
  object-fit:cover;
}

.card .overlay {
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.65);
}

.card h3 {
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:20px;
  color:#fff;
  font-size:30px;
  font-weight:600;
}

/* Hover effect (desktop premium feel) */
.card img:hover {
  transform:translateY(-8px) scale(1.03);
}

.solution-card {
  background:#fff;
  padding:30px;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
  border: 1px solid #2F4D41;
  transition:0.3s;
}

.solution-card:hover {
  transform:translateY(-8px);
  box-shadow:0 15px 40px rgba(47, 77, 65, 0.2);
}

.solution-card h3 {
  color:#2F4D41;
  margin-bottom:10px;
}

.solution-card p {
  color:#555;
}


.industry-pill {
  padding:12px 20px;
  border-radius:50px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.15);
  font-weight:500;
  transition:all 0.3s ease;
  cursor: default;
  backdrop-filter: blur(6px);
}

/* Hover effect */
.industry-pill:hover {
  background:#C7C949;
  color:#2F4D41;
  transform:scale(1.05);
}


.learn-more-btn1 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 1px solid #2f4d41;
  color: #2f4d41;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 10px 18px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.learn-more-btn1 .arrow1 {
  display: inline-block;
  background: #2f4d41;
  color: #fff;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  font-size: 12px;
  transform: rotate(-40deg);
  transition: all 0.3s ease;
}

.learn-more-btn1:hover {
  background: #c9ca49;
  /* Soft purple hover background */
  color: #2f4d41;
  border-color: #2f4d41;
  transform: none !important;
  transition: all 0.3s ease;
}

.learn-more-btn1:hover .arrow1 {
  background: #2f4d41;
  /* Keep circle same dark */
  color: #c9ca49;
  transform: none !important;
}