/* About Hero =================================================================================== */



/* Why Choose Us ========================================= */
.why-choose {
  padding: 120px 0;
  background: #fff;
}

.why-choose-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 60px;
}

.why-left {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Customer Box */
.customers-box {
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.customers-box h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.customers-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.customers-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.customers-list img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.customers-list strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
}

.customers-list span {
  font-size: 0.8rem;
  color: #666;
}

/* Floating Shield Badge */
.shield-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shield-badge img {
  position: absolute;
  width: 100%;
  height: auto;
}

.shield-tick {
  width: 26px;
  height: 26px;
}

/* Features Card */
.features-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid #f0f0f0;
}

.feature-item {
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.feature-item img {
  max-width: 60px;
  height: auto;
}

/* Divider lines */
.features-card .feature-item:nth-child(1),
.features-card .feature-item:nth-child(2) {
  border-bottom: 1px solid #eee;
}
.features-card .feature-item:nth-child(1),
.features-card .feature-item:nth-child(3) {
  border-right: 1px solid #eee;
}


.why-right .why-tag {
  display: inline-block;
  background: #fea557;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 18px;
}

.why-right h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.why-right p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 22px;
  max-width: 500px;
}

.why-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
}

.why-points img {
  width: 18px;
  height: 18px;
}

/* Responsive */
@media (max-width: 992px) {
  .why-choose-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .why-left {
    align-items: center;
  }
  .why-right {
    text-align: center;
  }
  .why-points li {
    justify-content: center;
  }
}

