.solutions-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 40px 60px;
  color: #1f2a44;
  text-align: center;
  margin-bottom: 40px;
  background-color: #fbfaf7;
}
.btn-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.solutions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.solutions-card {
  background: white;
  border-radius: 12px;
  padding: 40px 30px 15px 30px;
  text-align: start;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.solutions-card h3 {
  font-size: 24px;
  font-weight: 600;
  color: #5c1f2e;
  text-align: start;

  margin-bottom: 16px;
}
.solutions-card ol {
  font-size: 16px;
  font-weight: 600;
  color: #4b5563;
  line-height: 1.6;
  text-align: start;
  list-style-type: none;
}
ol li::before {
  content: "● "; /* Or any other bullet character like "▪ ", "● ", etc. */
  /* Optional: Add styling to the bullet */
  color: #4b5563; /* Example: set bullet color */
  margin-right: 0.5em; /* Example: space between bullet and text */
}
.solutions-card a {
  color: #4b5563;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  font-size: 18px;
  font-weight: 400;
  padding-top: 5px;
}
.solutions-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: start;
  justify-content: start;
  border-radius: 50%;
}

.solutions-icon img {
  width: 56px;
  height: 56px;
}
@media (min-width: 768px) {
  .solutions-grid {
    grid-template-columns: repeat(3, 2fr);
  }
  .solutions-card a {
    justify-content: flex-end;
  }
}

.solution-p-sec {
  border-top: 1px solid #b1b1b1;
  border-bottom: 1px solid #b1b1b1;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 50px;
  padding: 40px 40px;
}
.solutions-partners {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

.solutions-partners h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
}

.solutions-partners h6 {
  font-size: 16px;
  font-weight: 400;
  color: #d1d5db;
}
@media (min-width: 768px) {
  .solution-p-sec {
    flex-direction: row;
    margin: 0 60px;

    padding: 40px 60px;
  }
}
/*# form */
.request-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 40px;
}

.form-group {
  margin-bottom: 24px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-col {
  flex: 1;
}

label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
}

.required {
  color: #dc2626;
}

input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 16px;
  color: #374151;
  background-color: #f9fafb;
  transition: all 0.2s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #3b82f6;
  background-color: white;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
}

textarea {
  resize: none;
  min-height: 100px;
  font-family: inherit;
}

.security-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;

  border-radius: 8px;
  padding: 16px;
  margin-top: 24px;
  font-size: 14px;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .request-wrapper {
    padding: 24px 20px;
    border-radius: 8px;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .form-group {
    margin-bottom: 20px;
  }

  input[type="text"],
  input[type="email"],
  select,
  textarea {
    padding: 14px 16px;
    font-size: 16px; /* Prevents zoom on iOS */
  }

  .security-notice {
    padding: 14px;
    font-size: 13px;
  }
}

/* Small mobile adjustments */
@media (max-width: 480px) {
  .request-wrapper {
    padding: 20px 16px;
  }

  .security-notice {
    padding: 12px;
  }
}
