/* Why Choose Us Section Styling */
.why-choose-us {
  background: linear-gradient(rgba(0, 141, 210, 0.05), rgba(0, 141, 210, 0.05)), #fff;
  padding: 80px 0;
  position: relative;
}

.why-choose-us .section-title h2 {
  color: var(--primary-color);
}

.why-box {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 1;
  border-bottom: 4px solid var(--accent-color);
}

.why-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 141, 210, 0.2);
}

.why-box:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 0;
  background: var(--primary-color);
  transition: all 0.5s ease;
  z-index: -1;
}

.why-box:hover:before {
  height: 100%;
}

.icon-wrapper {
  width: 70px;
  height: 70px;
  background: rgba(0, 141, 210, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.why-box:hover .icon-wrapper {
  background: var(--accent-color);
}

.icon-wrapper i {
  font-size: 30px;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.why-box:hover .icon-wrapper i {
  color: var(--dark-color);
}

.why-box h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 10px;
  transition: all 0.3s ease;
}

.why-box h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent-color);
  transition: all 0.3s ease;
}

.why-box:hover h3:after {
  width: 60px;
}

.why-box p {
  font-size: 15px;
  line-height: 24px;
  color: var(--text-color);
  margin-bottom: 0;
}

.feature-number {
  position: absolute;
  bottom: 10px;
  right: 15px;
  font-size: 60px;
  font-weight: 900;
  color: rgba(0, 141, 210, 0.1);
  transition: all 0.3s ease;
}

.why-box:hover .feature-number {
  color: rgba(176, 203, 31, 0.2);
}

.btn-apply {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 35px;
  border-radius: 50px;
  transition: 0.5s;
  color: var(--dark-color);
  background: var(--accent-color);
  box-shadow: 0 5px 15px rgba(176, 203, 31, 0.4);
}

.btn-apply:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 141, 210, 0.3);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .why-box {
    margin-bottom: 30px;
  }
  
  .why-box h3 {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .why-choose-us {
    padding: 60px 0;
  }
  
  .icon-wrapper {
    width: 60px;
    height: 60px;
  }
  
  .icon-wrapper i {
    font-size: 25px;
  }
  
  .feature-number {
    font-size: 50px;
  }
}

@media (max-width: 576px) {
  .why-box {
    padding: 20px;
  }
  
  .why-box h3 {
    font-size: 18px;
  }
  
  .feature-number {
    font-size: 40px;
    bottom: 5px;
    right: 10px;
  }
}
