.elementor-435 .elementor-element.elementor-element-df262a2{--display:flex;--min-height:670px;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:center;--padding-top:3%;--padding-bottom:3%;--padding-left:0%;--padding-right:0%;}:root{--page-title-display:none;}@media(min-width:768px){.elementor-435 .elementor-element.elementor-element-df262a2{--content-width:950px;}}@media(max-width:1024px){.elementor-435 .elementor-element.elementor-element-df262a2{--min-height:618px;--padding-top:4%;--padding-bottom:4%;--padding-left:4%;--padding-right:4%;}.elementor-435 .elementor-element.elementor-element-7774296{padding:0px 0px 0px 0px;}}@media(max-width:767px){.elementor-435 .elementor-element.elementor-element-df262a2{--min-height:588px;}}/* Start custom CSS for html, class: .elementor-element-30cebe1 *//* ===== Funding Calculator UI ===== */
.fc-card-emoji {
  display: block;
  font-size: 26px;
  margin-bottom: 8px;
text-align: center;
}


#funding-calculator.fc-modal {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 40px 36px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  position: relative;
}

/* Header */
.fc-header {
  margin-bottom: 24px;
}

.fc-header h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #111827;
}

/* step text + percentage row */
.fc-step-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 10px;
}

#fc-step-text {
  font-weight: 400;
}

#fc-step-percent {
  font-weight: 500;
}

/* Progress bar */
.fc-progress {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: #e5e7eb;
  overflow: hidden;
}
.fc-card-subtitle {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: #6b7280; /* muted grey */
}

.fc-progress-bar {
  height: 100%;
  width: 20%; /* 5 steps => 20% each */
  background: #d4af37;
  border-radius: inherit;
  transition: width 0.3s ease;
}

/* Step title */
.fc-step h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 20px 0 12px;
  color: #111827;
}

/* Description text inside steps */
.fc-step p {
  font-size: 15px;
  color: #4b5563;
  margin-bottom: 18px;
}

/* Grid for cards (3 per row) */
.fc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 8px;
  margin-bottom: 24px;
}

/* Cards (business type / industry) */
.fc-card {
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  padding: 18px 18px 16px;
  text-align: left;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.2s ease;
  outline: none;
}

.fc-card-title {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 4px;
  color: #111827;
  text-wrap: auto;

}

.fc-card-title.ic{
  text-align: center;

}

.fc-card-subtitle {
  font-size: 14px;
  color: #6b7280;
  text-wrap: auto;
}

/* Hover for non-selected cards */
.fc-card:hover:not(.fc-card--active) {
  border-color: #d4af37;
  background: #fffaf0;
  box-shadow: 0 12px 30px rgba(148, 163, 184, 0.25);
  transform: translateY(-2px);
}

/* Active card with gradient */
.fc-card.fc-card--active {
  background: linear-gradient(135deg, #d4af37, #4ecdc4);
  border-color: transparent;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.35);
}

.fc-card.fc-card--active .fc-card-title,
.fc-card.fc-card--active .fc-card-subtitle {
  color: #ffffff;
}

/* Slider step (Step 3) */
#fc-amount-range {
  width: 100%;
  margin: 10px 0 8px;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 999px;
  background: #e5e7eb;
  outline: none;
}

/* Slider thumb */
#fc-amount-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #d4af37;
  border: 3px solid #ffffff;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.25);
  cursor: pointer;
}

#fc-amount-range::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #d4af37;
  border: 3px solid #ffffff;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.25);
  cursor: pointer;
}

#fc-amount-range::-moz-range-track {
  height: 6px;
  border-radius: 999px;
  background: #e5e7eb;
}

/* Slider labels */
.fc-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 8px;
}

.fc-amount-display {
  text-align: center;
  margin: 10px 0 20px;
}

#fc-amount-text {
  font-size: 32px;
  font-weight: 700;
  color: #d4af37;
}

/* Summary box on Step 4 */
.fc-summary {
  background: #f3faf9;
  border-radius: 16px;
  padding: 16px 18px;
  margin-bottom: 20px;
  border: 1px solid #e0f2fe;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 8px 18px;
}

.fc-summary div {
  font-size: 14px;
  color: #374151;
}

.fc-summary strong {
  font-weight: 600;
  color: #111827;
}

/* Result cards (company list) */
.fc-result-card {
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  padding: 18px 20px 16px;
  margin-bottom: 14px;
  box-shadow: 0 4px 14px rgba(148, 163, 184, 0.18);
}

.fc-result-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.fc-result-header h4 {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  color: #111827;
}

.fc-tag {
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 999px;
  background: #e0f2fe;
  color: #0369a1;
  font-weight: 500;
}

.fc-summary-text {
  font-size: 14px;
  color: #4b5563;
  margin: 4px 0 10px;
}

.fc-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: 13px;
  color: #4b5563;
  margin-bottom: 8px;
}

.fc-meta-row strong {
  color: #111827;
}

.fc-benefits {
  font-size: 13px;
  color: #4b5563;
  margin-bottom: 6px;
}

.fc-benefits strong {
  color: #111827;
}

/* we removed the "View details" link in JS, but keeping base style just in case */
.fc-link {
  font-size: 13px;
  font-weight: 500;
  color: #2563eb;
  text-decoration: none;
}

.fc-link:hover {
  text-decoration: underline;
}

/* Navigation buttons */
.fc-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
}

.fc-btn {
  border-radius: 999px;
  padding: 9px 22px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  background: #f9fafb;
  color: #111827;
  transition: all 0.2s ease;
}

/* Next button default */
.fc-btn.fc-next {
  margin-left: auto;
  background: #d4af37;
  color: #fff;
  border-color: #d4af37;
}

/* Prev button default */
.fc-btn.fc-prev {
  color: #be185d;
  border-color: #f9a8d4;
  background: #ffffff;
}

/* Hover effects */
.fc-btn.fc-next:hover {
  background: #b8952c;   /* darker gold */
  border-color: #b8952c;
  box-shadow: 0 8px 20px rgba(148, 163, 184, 0.35);
  transform: translateY(-1px);
}

.fc-btn.fc-prev:hover {
  background: #fdf2f8;
  box-shadow: 0 8px 20px rgba(148, 163, 184, 0.35);
  transform: translateY(-1px);
}

/* Optional close button (if you add it) */
.fc-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: none;
  background: #f3f4f6;
  color: #4b5563;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fc-close:hover {
  background: #e5e7eb;
}

.fc-connect-btn {
  display: inline-block;
  margin-top: 10px;
  background: #d4af37;
  color: #fff;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid #d4af37;
  transition: all 0.2s ease;
}

.fc-connect-btn:hover {
  background: #b8952c;
  border-color: #b8952c;
  box-shadow: 0 8px 20px rgba(148, 163, 184, 0.35);
  transform: translateY(-1px);
  color: #111827 !important;
}

/* ===== Manual Amount Input Field (Step 3) ===== */
.fc-amount-manual {
  margin-top: 25px;
  margin-bottom: 30px;
}

.fc-amount-manual label {
  font-weight: 600;
  font-size: 0.95rem;
  color: #111827;
  margin-bottom: 6px;
  display: block;
}

.fc-amount-input-wrapper {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  border-radius: 12px;
  padding: 10px 14px;
  transition: all 0.2s ease;
}

.fc-amount-input-wrapper:focus-within {
  border-color: #d4af37;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.25);
}

.fc-amount-currency {
  font-size: 1rem;
  color: #6b7280;
  font-weight: 600;
}

#fc-amount-input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
}

.fc-amount-manual small {
  margin-top: 6px;
  display: block;
  font-size: 0.8rem;
  color: #9ca3af;
}

/* 2 columns only for step 1 grid */
.fc-grid.fc-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* ===== Step 5: Bid / enquiry summary & form ===== */

/* Step 5 summary box */
.fc-bid-summary {
  background: #f3faf9;
  border-radius: 16px;
  padding: 16px 18px;
  margin-bottom: 20px;
  border: 1px solid #e0f2fe;
}

.fc-bid-company-main {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.fc-bid-company-main h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #111827;
}

/* Bid form layout */
.fc-bid-form {
  margin-top: 10px;
}

.fc-bid-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.fc-bid-field label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: #111827;
  margin-bottom: 4px;
}

.fc-bid-field input,
.fc-bid-field textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  padding: 10px 12px;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.2s ease;
}

.fc-bid-field input:focus,
.fc-bid-field textarea:focus {
  border-color: #d4af37;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.25);
}

.fc-bid-nav {
  margin-top: 12px;
}

.fc-bid-message {
  margin-top: 12px;
  font-size: 0.9rem;
  padding: 8px 12px;
  border-radius: 12px;
}

.fc-bid-message--success {
  background: #ecfdf3;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.fc-bid-message--error {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  #funding-calculator.fc-modal {
    padding: 20px 18px 22px;
    border-radius: 16px;
  }

  .fc-grid {
    grid-template-columns: 1fr;
  }

  .fc-summary {
    grid-template-columns: 1fr;
  }

  .fc-meta-row {
    flex-direction: column;
  }

  .fc-bid-grid {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */