/* Enhanced Feature Items Styling */

/* Card styling for feature items */
.feature-item {
  border-radius: 15px;
  padding: 30px;
  transition: all 0.3s ease;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  position: relative;
}

.feature-item::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
  transform: rotate(30deg);
  z-index: -1;
}

.feature-item i {
  font-size: 3.5rem;
  margin-bottom: 25px;
  background: linear-gradient(135deg, #ff6b6b, #6a4c93);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.feature-item h3 {
  color: white;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 1.5rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.feature-item p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-size: 1rem;
}

/* Enhanced buttons */
.btn-pill {
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-outline-primary {
  border: 2px solid #4ecdc4;
  color: white;
  background: rgba(78, 205, 196, 0.1);
}

.btn-outline-primary:hover {
  background: #4ecdc4;
  color: #2d3436;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(78, 205, 196, 0.3);
}

.btn-outline-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
  transition: all 0.6s ease;
}

.btn-outline-primary:hover::before {
  left: 100%;
}

/* Enhanced banner section */
.banner {
  position: relative;
  padding: 120px 0 80px;
}

.banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(106, 76, 147, 0.3);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 20px;
  z-index: -1;
}

.banner h1 {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #4ecdc4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 30px;
}

.banner .desc {
  color: white;
  font-size: 1.2rem;
  max-width: 80%;
  margin: 0 auto;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Section enhancements */
.section-1, .section-2 {
  padding: 80px 0;
  position: relative;
}

.section-1::before, .section-2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 20px;
  z-index: -1;
}

.section-1 .title, .section-2 .title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #ffffff 0%, #ff6b6b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .banner h1 {
    font-size: 2.5rem;
  }
  
  .banner .desc {
    font-size: 1rem;
    max-width: 100%;
  }
  
  .section-1 .title, .section-2 .title {
    font-size: 2rem;
  }
}
