.feature-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 15px 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}
.section-title p {
  font-size: 1.2rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}
.feature-card {
  background: white;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 25px;
  height: 340px;
  width: 100%;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  background-color: rgba(245, 188, 83, 0.64);
}

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #333;
}
.feature-card p {
  color: #666;
  line-height: 1.5;
  font-size: 1.02rem;
  margin-bottom: 0;
}

.nav-pills {
  border: none;
  gap: 10px;
  margin-bottom: 40px;
}

.nav-pills .nav-item {
  margin: 0;
}

.nav-pills .nav-link {
  border: none;
  border-radius: 50px;
  padding: 12px 25px;
  color: #333;
  background: #f5f5f5;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.nav-pills .nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #4a6cf7, #6a11cb);
  transition: width 0.3s ease;
}

.nav-pills .nav-link:hover {
  background: #caf3ca;
}

.nav-pills .nav-link.active {
  background: linear-gradient(135deg, #4a6cf7, #6a11cb);
  color: white;
  box-shadow: 0 4px 15px rgba(106, 17, 203, 0.3);
}

.nav-pills .nav-link.active::before {
  width: 100%;
}

.nav-pills .nav-link.active .tab-icon {
  transform: scale(1.2);
}

.tab-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.animated-slide {
  animation: slideIn 0.6s ease forwards;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.indus-wrap-box {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  margin-top: 20px;
}

.industry-center-image img {
  border-radius: 10px 0 0 10px;
  height: 100%;
  object-fit: cover;
}

.indus-desc-box {
  padding: 30px;
}

.indus-title {
  color: #2c3e50;
  margin-bottom: 20px;
  font-weight: 700;
}

.discover-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #4a6cf7, #6a11cb);
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.discover-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(106, 17, 203, 0.4);
  color: white;
}

.product-example-tags span {
  background: #e9ecef;
  padding: 5px 15px;
  border-radius: 50px;
  margin-right: 10px;
  margin-bottom: 10px;
  font-size: 0.8rem;
  color: #555;
}

.product-example-img {
  max-height: 40px;
  margin-right: 15px;
}

.slider-item p {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.slider-item a:not(.discover-btn) {
  color: #4a6cf7;
  text-decoration: none;
  font-weight: 600;
}

.slider-item a:not(.discover-btn):hover {
  text-decoration: underline;
}
@media (max-width: 767px) {
  .counter-item {
    margin: auto;
    text-align: center;
  }
  .counter-content img {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .feature-card {
    height: 530px;
  }
}

@media (min-width: 992px) {
  .feature-card {
    height: 400px;
  }
}

@media (min-width: 1200px) {
  .feature-card {
    height: 330px;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .feature-card {
    height: 360px;
  }
}
@media (min-width: 320px) and (max-width: 575.98px) {
  .feature-card {
    min-height: 370px;
  }
}
@media (max-width: 320px) {
  .feature-card {
    min-height: 440px;
  }
}
