/* Why Choose Section - Enhanced */
.why-choose-section {
  position: relative;
  width: 100%;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, rgb(0, 0, 0), rgb(0, 0, 0));
  z-index: 1;
  overflow: hidden;
}

/* Title */
.why-choose-section h2 {
  font-size: 2.5rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(0, 221, 235, 0.8);
  margin-bottom: 60px;
  text-align: center;
  z-index: 3;
}

.why-choose-section h2 span {
  color: #00ddeb;
  text-shadow: 0 0 15px rgba(0, 221, 235, 1);
}

/* Grid Layout */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  width: 100%;
  max-width: 1400px;
  padding: 0 5px;
  z-index: 3;
  position: relative;
}

/* Card Styling */
.reason-card {
  position: relative;
  background: rgba(14, 14, 14, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 25px;
  box-shadow: 0 0 20px rgba(0, 221, 235, 0.2);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  animation: fadeInUp 0.6s forwards;
  animation-delay: var(--delay);
}

.reason-card:hover {
  transform: translateY(-5px) rotate(var(--rotate)) !important;
  box-shadow: 0 10px 30px rgba(0, 221, 235, 0.4);
  border-color: rgba(0, 221, 235, 0.4);
}

/* Card Header (Icon + Title) */
.card-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  gap: 15px;
}

/* Square Icon Box */
.icon-box.square {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: rgba(0, 221, 235, 0.1);
  border-radius: 8px !important; /* Square corners */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #00ddeb;
  border: 1px solid rgba(0, 221, 235, 0.3);
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 221, 235, 0.2);
}

.reason-card:hover .icon-box.square {
  background: rgba(0, 221, 235, 0.2);
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(0, 221, 235, 0.4);
}

/* Card Text */
.reason-card h3 {
  font-size: 1.3rem;
  color: #ffffff;
  text-shadow: 0 0 5px rgba(0, 221, 235, 0.5);
  margin: 0;
  line-height: 1.3;
}

.reason-card p {
  font-size: 0.95rem;
  color: #e0e0e0;
  text-shadow: 0 0 3px rgba(0, 221, 235, 0.3);
  line-height: 1.6;
  margin-top: 15px;
}



/* Particles */
.particles {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.particles span {
  position: absolute;
  width: 5px;
  height: 5px;
  background: #00ddeb;
  border-radius: 50%;
  box-shadow: 0 0 10px #00ddeb, 0 0 20px #00ddeb;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .why-choose-section h2 {
      font-size: 2rem;
      margin-bottom: 40px;
  }
  
  .why-choose-grid {
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .why-choose-section {
      padding: 60px 15px;
  }
  
  .why-choose-section h2 {
      font-size: 1.8rem;
  }
  
  .reason-card {
      transform: none !important;
      padding: 20px;
  }
  
  .reason-card:hover {
      transform: translateY(-5px) !important;
  }
}

@media (max-width: 576px) {
  .why-choose-section h2 {
      font-size: 1.5rem;
      margin-bottom: 30px;
  }
  
  .why-choose-grid {
      grid-template-columns: 1fr;
  }
  
  .card-header {
      gap: 12px;
  }
  
  .icon-box.square {
      width: 45px;
      height: 45px;
      font-size: 1.3rem;
  }
  
  .reason-card h3 {
      font-size: 1.1rem;
  }
}