/* Why Choose Us Section Styles */
#Why-Choose-Us {
  padding: 80px 20px;
  background: linear-gradient(to bottom, #ffffff 0%, #0A2463 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

#Why-Choose-Us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.03)"/></svg>');
  background-size: cover;
}

.why-choose-us-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}


#Why-Choose-Us .section-title::after {
  background: linear-gradient(to right, #FFD166, #FFFFFF, #FFD166);
}

#Why-Choose-Us .section-subtitle {
  margin-bottom: 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 70px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px 25px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFD166 0%, #FF9E4A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 5px 15px rgba(255, 209, 102, 0.3);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-icon i {
  font-size: 2rem;
  color: #0A2463;
}

.feature-card h3 {
  color: #0A2463;
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

.feature-card p {
  color: rgba(10, 36, 99, 0.8);
  line-height: 1.6;
  font-size: 1rem;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #FFD166;
  margin-bottom: 10px;
  font-family: "Montserrat", sans-serif;
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Animation for features */
.feature-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.feature-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
}

@media screen and (max-width: 768px) {
  #Why-Choose-Us {
    padding: 60px 15px;
  }
  
  #Why-Choose-Us .section-title {
    font-size: 2.3rem;
  }
  
  #Why-Choose-Us .section-subtitle {
    font-size: 1.1rem;
  }
  
  .feature-card {
    padding: 25px 20px;
  }
  
  .feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }
  
  .feature-icon i {
    font-size: 1.8rem;
  }
  
  .feature-card h3 {
    font-size: 1.3rem;
  }
  
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 480px) {
  #Why-Choose-Us .section-title {
    font-size: 2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .stat {
    padding: 15px;
  }
  
  .stat-number {
    font-size: 2.2rem;
  }
  
  .stat-label {
    font-size: 1rem;
  }
}