/* Why Choose Us Section */
.why-choose-us {
  background: linear-gradient(to bottom right, #071424, #081424);
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.why-choose-us-container {
    background: linear-gradient(to bottom right, #071424, #091628);
    padding: 40px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 100, 255, 0.3);
    max-width: 1200px;
}

.why-choose-us-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
  max-width: 1200px;
}

.why-text {
  flex: 1 1 50%;
  padding: 20px;
}

.why-text h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
  margin-bottom: 15px;
}

.why-text p {
  font-size: 1rem;
  color: #e5e7eb; /* Tailwind text-gray-100 */
}

/* Featured Card */
.why-card {
  flex: 1 1 40%;
  background: linear-gradient(to bottom right, #0b1220, #07101b);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  transition: all 0.3s ease;
  text-align: right;
  max-width: fit-content;
}

.why-card:hover {
  box-shadow: 0 6px 18px rgba(0,100,255,0.5);
}

.why-card h3 {
  color: white;
  font-weight: 600;
  margin-bottom: 10px;
}

.why-card p {
  color: #9ca3af; /* Tailwind gray-400 */
  font-size: 0.95rem;
}

/* Buttons */
.why-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 0 20px;
}

.btn-primary {
  background: black;
  color: white;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #111;
}

.btn-secondary {
  background: transparent;
  color: white;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid white;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: black;
}
@media screen and (max-width: 768px) {
  .why-choose-us-inner {
    flex-direction: column;
    align-items: center;
  }
  .why-text, .why-card {
    flex: 1 1 100%;
    text-align: center;
  }
  .why-card {
    text-align: center;
    max-width: 100%;
  }
  .why-buttons {
    justify-content: center;
  }
    
}
