@import url("../../css/typography.297ff8161de6.css");

.heading-content{
  margin-bottom: 30px;
  text-align: center;
}

.contact-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1e293b;
}

.contact-subheading {
  font-size: 1.125rem;
  color: #64748b;
  margin-bottom: 30px;
}
.formbold-mb-5 {
  margin-bottom: 20px;
}
.formbold-pt-3 {
  padding-top: 12px;
}
.formbold-main-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  flex-wrap: wrap;
}

/* Tech Infographics */
.tech-infographics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 30px 0;
  padding: 20px 0;
}

.info-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.info-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  margin-bottom: 15px;
}

.info-icon svg {
  color: white;
}

.info-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
  text-align: center;
}

.info-text {
  font-size: 0.875rem;
  text-align: center;
  opacity: 0.9;
}

.formbold-form-wrapper {
  margin: 0 auto;
  max-width: 900px;
  width: 100%;
  font-family: "Inter", sans-serif;
  background-color: white;
  padding: 50px 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.formbold-form-label {
  display: block;
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-base);
  margin-bottom: 12px;
}
.formbold-form-label-2 {
  font-weight: 600;
  font-size: var(--font-size-xl);
  margin-bottom: 20px;
}

.formbold-form-input {
  width: 100%;
  padding: 12px 24px;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
  background: white;
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-base);
  color: #6b7280;
  outline: none;
  resize: none;
}
.formbold-form-input:focus {
  border-color: #6a64f1;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
}

.formbold-btn {
  text-align: center;
  font-size: var(--font-size-base);
  border-radius: 6px;
  padding: 14px 32px;
  border: none;
  font-weight: 600;
  background-color: #6a64f1;
  color: white;
  cursor: pointer;
}
.formbold-btn:hover {
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
}

.formbold--mx-3 {
  margin-left: -12px;
  margin-right: -12px;
}
.formbold-px-3 {
  padding-left: 12px;
  padding-right: 12px;
}
.flex {
  display: flex;
}
.flex-wrap {
  flex-wrap: wrap;
}
.w-full {
  width: 100%;
}
@media (min-width: 540px) {
  .sm\:w-half {
    width: 50%;
  }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .formbold-form-wrapper {
    width: 100%;
    padding: 30px 20px;
  }
  
  .formbold-main-wrapper {
    padding: 24px;
  }
  
  .contact-heading {
    font-size: 2rem;
  }
  
  .tech-infographics {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

#error_message{
  margin-bottom: 20px;
  background: #fe8b8e;
  padding: 0px;
  text-align: center;
  font-size: var(--font-size-sm);
  transition: all 0.5s ease;
}