.service-choose-section {
  padding: 50px 0;
  background-color: #000000;
  width: 100%;
  display: flex;
  justify-content: center;
}

.service-choose-container {
  width: 100%;
  max-width: 1400px;
  padding: 0 40px;
}

.service-choose-header {
  text-align: center;
  margin-bottom: 40px;
  width: 100%;
}

.service-choose-title {
  font-size: 42px;
  font-family: var(--font-heading);
  color: #ffffff;
  margin-bottom: 25px;
  font-weight: 700;
  line-height: 1.25;
}

.service-choose-title span {
  color: #54b248;
}

.service-choose-subtitle {
  font-size: 18px;
  font-family: var(--font-body);
  color: #ffffff;
  max-width: 1000px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 500;
}

.service-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.choose-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 25px 30px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  min-height: 220px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: none;
  position: relative;
  overflow: hidden;
}

/* Right Line Effect */
.choose-card::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background-color: #54b248;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 5;
}

/* Bottom Line Effect - Right to Left */
.choose-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 6px;
  background-color: #54b248;
  transition: width 0.4s ease;
  z-index: 5;
}

.choose-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.1);
}

.choose-card:hover::before {
  opacity: 1;
}

.choose-card:hover::after {
  width: 100%;
}

.choose-icon-box {
  width: 60px;
  height: 60px;
  background-color: transparent;
  /* Changed to transparent for clean icon feel */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  color: #54b248;
}

.choose-custom-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Ensuring icons are perfectly green as requested / design match */
  filter: brightness(0) saturate(100%) invert(60%) sepia(35%) saturate(1000%) hue-rotate(65deg) brightness(85%) contrast(85%);
}

.choose-card h3 {
  font-size: 26px;
  font-family: var(--font-heading);
  color: #54b248;
  margin-bottom: 12px;
  font-weight: 600;
  line-height: 1.3;
}

.choose-card p {
  font-size: 18px;
  font-family: var(--font-body);
  color: #000000;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 1200px) {
  .service-choose-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .service-choose-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .choose-card {
    padding: 30px 20px;
    min-height: auto;
  }

  .service-choose-title {
    font-size: 32px;
  }

  .service-choose-section {
    padding: 40px 0;
  }
}
