/* ============================================================= */
/* Recruitment Partners Page - Clean & Mobile Friendly CSS        */
/* (No HTML changes required)                                     */
/* ============================================================= */

/* ---------- Hero (Breadcrumb) ---------- */
.section-breadcrumb .hero-subtitle {
  font-size: 22px;
  margin-bottom: 30px;
  opacity: 0.95;
}

.hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero-partner-btn {
  padding: 18px 35px;
  font-size: 16px;
  font-family: "Poppins-SemiBold";
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 200px;
  text-align: center;
}

.hero-request-btn {
  border: 2px solid;
}

/* ---------- Main Value Proposition ---------- */
.main-value-prop {
  padding: 70px 0;
  background: linear-gradient(135deg, #f8fafb 0%, #ffffff 100%);
  position: relative;
}

.main-value-prop::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(
    180deg,
    rgba(11, 76, 151, 0.02) 0%,
    transparent 100%
  );
}

.value-content {
  position: relative;
  z-index: 2;
}

.value-badge {
  display: inline-block;
  background: linear-gradient(
    135deg,
    var(--bs-blue) 0%,
    var(--bs-light-blue) 100%
  );
  color: #fff;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-family: "Poppins-Medium";
  margin-bottom: 25px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@media (max-width:768px) {
.value-badge {
display: flex;
text-align: center;
justify-content: center;
align-items: center;

}

}



.main-value-prop h2 {
  font-family: "Poppins-bold";
  font-size: 42px;
  color: var(--bs-blue);
  margin-bottom: 25px;
  line-height: 1.2;
}

.lead-text {
  font-size: 18px;
  color: var(--bs-Grey);
  line-height: 1.7;
  margin-bottom: 20px;
  font-family: "Poppins-Medium";
}

.secondary-text {
  font-size: 16px;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* CTA */
.value-cta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
}

.cta-primary {
  padding: 15px 30px;
  font-size: 16px;
  font-family: "Poppins-SemiBold";
}

.btn-outline-primary {
  padding: 14px 28px;
  border: 2px solid var(--bs-blue);
  color: var(--bs-blue);
  background: transparent;
  border-radius: 8px;
  font-size: 16px;
  font-family: "Poppins-Medium";
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: var(--bs-blue);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(11, 76, 151, 0.3);
}

/* Visual */
.value-visual {
  position: relative;
}

.visual-container {
  position: relative;
  max-width: 500px;
  margin-left: auto;
}

.main-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.rounded-lg {
  border-radius: 20px;
}

/* Floating badge (only badge-1 exists in HTML) */
.floating-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.floating-badge {
  position: absolute;
  background: #fff;
  padding: 12px 16px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  font-family: "Poppins-Medium";
  color: var(--bs-blue);
  animation: float 3s ease-in-out infinite;
}

.badge-1 {
  top: 20px;
  left: -20px;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.floating-badge i {
  width: 20px;
  height: 20px;
  background: var(--bs-Gradient);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

@media (max-width: 768px) {
  .value-visual {
    margin: 30px 0;
  }
}

/* ---------- Why Partner With Us ---------- */
.why-partner-with-us {
  padding: 50px 0;
  background: linear-gradient(135deg, #f8fbff 0%, #f0f7ff 100%);
}

.section-header {
  margin-bottom: 60px;
}

.section-title {
  font-family: "Poppins-bold";
  font-size: 42px;
  color: var(--bs-blue);
  margin-bottom: 15px;
  text-align: center;
}

.section-subtitle {
  font-size: 18px;
  color: var(--bs-Grey);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}
.partner-offer-section .section-subtitle {
    font-size: 20px;
    max-width: 900px;
}

.partner-benefits-row {
  display: flex;
  gap: 30px;
  margin-top: 60px;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}

.benefit-card-modern {
  flex: 0 1 260px;
  min-width: 230px;
  background: #fff;
  padding: 40px 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.benefit-card-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--bs-Gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.benefit-card-modern:hover::before {
  transform: scaleX(1);
}

.benefit-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--bs-light-blue);
}

.benefit-icon-wrapper {
  position: relative;
  margin-bottom: 25px;
}

.benefit-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  background: var(--bs-Gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: all 0.3s ease;
}

.benefit-card-modern:hover .benefit-icon {
  transform: scale(1.1);
}

.benefit-icon i {
  font-size: 24px;
  color: #fff;
}

.benefit-content h4 {
  font-family: "Poppins-SemiBold";
  font-size: 18px;
  color: var(--bs-blue);
  margin-bottom: 15px;
  line-height: 1.3;
}

.benefit-content p {
  font-size: 15px;
  color: var(--bs-Grey);
  line-height: 1.6;
  margin: 0;
}

.benefits-footer .trust-indicators {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}

.trust-item {
  color: var(--bs-blue);
  font-size: 18px;
}

@media (max-width:768px) {
.benefits-footer .trust-indicators {
flex-direction: column;
gap: 15px;

}

}


/* ---------- Technology Platform ---------- */
.technology-platform {
  padding: 70px 0;
}

.tech-content h2 {
  font-family: "Poppins-bold";
  font-size: 38px;
  color: var(--bs-blue);
  margin-bottom: 25px;
}

.tech-content .lead {
  font-size: 18px;
  color: var(--bs-Grey);
  margin-bottom: 20px;
  line-height: 1.6;
}

.secondary-desc {
  font-size: 16px;
  color: var(--bs-Grey);
  margin-bottom: 40px;
  line-height: 1.6;
}

.tech-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.tech-features .feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.feature-icon i {
  color: var(--text-color);
  font-size: 18px;
  font-weight: bold;
}

.feature-content h5 {
  font-family: "Poppins-SemiBold";
  font-size: 16px;
  color: var(--bs-blue);
  margin-bottom: 8px;
}

.feature-content p {
  font-size: 14px;
  color: var(--bs-Grey);
  margin: 0;
  line-height: 1.5;
}

.platform-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.platform-image img {
  width: 100%;
  height: auto;
  display: block;
}


.platform-overlay{
  position: absolute;
  inset: 0;
  pointer-events: none; 
}


.overlay-stats{
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  border-radius: 12px;
  padding: 10px 12px;
}

.platform-overlay .overlay-stat .stat-label, 
.platform-overlay .overlay-stat .stat-number {
color: #fff !important;
}

.tech-footer {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #e9ecef;
}


@media (max-width: 768px) { 
.platform-overlay .overlay-stat .stat-number {
font-size: 32px;


}
.overlay-stat {
text-align: center;

}


}



/* ---------- Partnership Process ---------- */
.partnership-process {
  padding: 70px 0;
  background: #fff;
  position: relative;
}

.process-timeline {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 80px;
  position: relative;
  gap: 20px;
  flex-wrap: wrap;
}

.timeline-connector {
  position: absolute;
  top: 65px;
  left: 12%;
  right: 12%;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--bs-blue) 0%,
    var(--bs-light-blue) 25%,
    var(--bs-blue) 50%,
    var(--bs-light-blue) 75%,
    var(--bs-blue) 100%
  );
  background-size: 200% 100%;
  animation: timelineFlow 3s ease-in-out infinite alternate;
  border-radius: 3px;
  z-index: 1;
  box-shadow: 0 2px 10px rgba(11, 76, 151, 0.3);
}

@keyframes timelineFlow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

.step-content h4 {
  font-family: "Poppins-SemiBold";
  font-size: 18px;
  color: var(--bs-blue);
  margin-bottom: 15px;
  line-height: 1.3;
}

.step-content p {
  font-size: 15px;
  color: var(--bs-Grey);
  line-height: 1.6;
}

.step-card {
  flex: 1;
  max-width: 280px;
  min-width: 230px;
  background: #fff;
  padding: 30px 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  z-index: 2;
  height: 320px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--bs-light-blue);
}

.step-number-wrapper {
  position: relative;
  margin-bottom: 25px;
}

.step-number {
  width: 70px;
  height: 70px;
  background: var(--bs-Gradient);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-family: "Poppins-bold";
  margin: 0 auto;
  box-shadow: 0 8px 25px rgba(11, 76, 151, 0.3);
  transition: all 0.3s ease;
  position: relative;
  z-index: 3;
  border: 4px solid #fff;
}

.step-number-wrapper h4 {
  margin: 15px;
}

.step-card:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(11, 76, 151, 0.4);
}

/* Dot connector between steps (desktop only) */
@keyframes dotPulse {
  0%,
  100% {
    transform: translateY(-50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translateY(-50%) scale(1.2);
    opacity: 0.8;
  }
}

.step-card:not(:last-child) .step-number::after {
  content: "";
  position: absolute;
  right: -45px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--bs-blue);
  border-radius: 50%;
  z-index: 4;
  box-shadow: 0 2px 8px rgba(11, 76, 151, 0.3);
  animation: dotPulse 2s ease-in-out infinite;
}

.process-footer p {
  margin: 30px 0;
}

/* ---------- Impact Benefits (Gains Lists) ---------- */
.impact-benefits {
  padding: 70px 0;
  /* background: var(--bs-gray); */
  background: linear-gradient(135deg, #1a4d80 0%, #2d5f8f 100%);
}

.impact-subtitle p {
margin: 30px 0;
color: var(--bs-Grey);

}

.partner-gains {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.partner-gains h3 {
  font-family: "Poppins-bold";
  font-size: 32px;
  /* color: var(--bs-blue); */
  color: #fff;
  margin-bottom: 20px;
}

.gains-intro {
  font-size: 18px;
  /* color: var(--bs-Grey); */
  color: #fff;
  margin-bottom: 40px;
}

.gains-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  text-align: left;
  margin-bottom: 40px;
}

.gain-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.gain-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.gain-icon i {
  color: var(--text-color);
  font-size: 18px;
}

.gain-item span {
  font-size: 16px;
  color: var(--bs-Grey);
  line-height: 1.5;
}

.gains-footer {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.gains-footer p {
  font-size: 16px;
  /* color: var(--bs-Grey); */
  color: #fff;
  line-height: 1.6;
  font-style: italic;
}

/* ---------- Partner CTA Section ---------- */
.partner-cta-section {
  padding: 70px 0;
  background: var(--bs-Gradient);
  color: #fff;
  text-align: center;
}

.cta-content h2 {
  font-family: "Poppins-bold";
  font-size: 38px;
  margin-bottom: 25px;
  color: #fff;
  line-height: 1.2;
}

.cta-content p {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.95;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.large-btn {
  padding: 20px 40px;
  font-size: 18px;
  font-family: "Poppins-SemiBold";
}

@media (max-width: 768px) {
  .large-btn {
    padding: 20px 6px;
  }
}

.btn-outline {
  background: transparent;
  color: #fff !important;
  border: 2px solid #fff;
  padding: 18px 35px;
  font-size: 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #fff;
  color: var(--bs-blue) !important;
}

/* ---------- Partnership Form Section ---------- */
.partnership-form-section {
  padding: 70px 0;
  background: #fff;
}

.form-container {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  border-top: 4px solid var(--bs-blue);
  max-width: 100%;
  width: 100%;
}

.form-header {
  text-align: center;
  margin-bottom: 50px;
}

.form-header h3 {
  font-family: "Poppins-bold";
  font-size: 32px;
  color: var(--bs-blue);
  margin-bottom: 20px;
}

.form-header p {
  font-size: 16px;
  color: var(--bs-Grey);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.partnership-form-modern {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.partnership-form-modern label {
  font-family: "Poppins-Medium";
  font-size: 14px;
  color: var(--bs-blue);
  margin-bottom: 8px;
}

.partnership-form-modern input:not([type="checkbox"]),
.partnership-form-modern select,
.partnership-form-modern textarea {
  padding: 16px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 16px;
  color: var(--bs-Grey);
  background: #fff;
  transition: all 0.3s ease;
  font-family: "Poppins-regular";
}

.partnership-form-modern input:not([type="checkbox"]):focus,
.partnership-form-modern select:focus,
.partnership-form-modern textarea:focus {
  outline: none;
  border-color: var(--bs-light-blue);
  box-shadow: 0 0 0 4px rgba(37, 117, 252, 0.1);
}

.partnership-form-modern textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  text-align: center;
  margin-top: 20px;
}

.submit-btn-modern {
  padding: 18px 65px;
  max-width: none;
  font-size: 16px;
  font-family: "Poppins-SemiBold";
  border: none;
  border-radius: 10px;
  transition: all 0.3s ease;
display: block;       
margin: 0 auto;

}

.submit-btn-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(11, 76, 151, 0.3);
}

/* Compliance Notice (shown after submit button) */
.compliance-notice {
  background: #f8f9fa;
  border-left: 4px solid #0066cc;
  padding: 20px;
  /* margin: 25px 0; */
  border-radius: 4px;
}

.compliance-notice .warning-text {
  margin: 0 0 15px 0;
  color: #d63031;
  font-weight: 600;
}

.compliance-notice .warning-text i {
  margin-right: 5px;
}

.compliance-notice .notice-title {
  margin: 0 0 10px 0;
  font-weight: 600;
  color: #2d3436;
}

.compliance-notice ul {
  margin: 0;
  padding-left: 20px;
  color: #2d3436;
}

.compliance-notice ul li {
  margin-bottom: 8px;
}

.form-note {
  font-size: 14px;
  color: var(--bs-Grey);
  margin-top: 15px;
  font-style: italic;
}

/* ---------- FAQ Section with Accordion ---------- */
.faq-section {
  padding: 70px 0;
  background: linear-gradient(135deg, #f8fbff 0%, #f0f7ff 100%);
}

.faq-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.faq-header {
  margin-bottom: 50px;
}

.faq-header .section-title {
  font-family: "Poppins-bold";
  font-size: 36px;
  color: var(--bs-blue);
  margin-bottom: 15px;
}

.faq-header .section-subtitle {
  font-size: 16px;
  color: var(--bs-Grey);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-accordion-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-accordion-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.faq-accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  cursor: pointer;
  background: #fff;
  transition: all 0.3s ease;
  user-select: none;
}

.faq-accordion-header:hover {
  background: #f8f9fa;
}

.faq-accordion-item.active .faq-accordion-header {
  background: #f0f7ff;
  border-bottom: 1px solid #e3f2ff;
}

.faq-accordion-header h6 {
  font-family: "Poppins-SemiBold";
  font-size: 18px;
  color: var(--bs-blue);
  margin: 0;
  flex: 1;
  padding-right: 20px;
}

.faq-toggle-icon {
  font-size: 14px;
  color: var(--bs-blue);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-accordion-item.active .faq-toggle-icon {
  transform: rotate(180deg);
}

.faq-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 30px;
}

.faq-accordion-item.active .faq-accordion-content {
  max-height: 500px;
  padding: 20px 30px 30px 30px;
}

.faq-accordion-content p {
  font-size: 16px;
  color: var(--bs-Grey);
  line-height: 1.7;
  margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .faq-section {
    padding: 50px 0;
  }

  .faq-header .section-title {
    font-size: 28px;
  }

  .faq-header .section-subtitle {
    font-size: 14px;
  }

  .faq-accordion-header {
    padding: 20px 20px;
  }

  .faq-accordion-header h6 {
    font-size: 16px;
  }

  .faq-accordion-content {
    padding: 0 20px;
  }

  .faq-accordion-item.active .faq-accordion-content {
    padding: 15px 20px 25px 20px;
  }

  .faq-accordion-content p {
    font-size: 14px;
  }
}

/* FAQ Sidebar */
.faq-sidebar {
  position: sticky;
  top: 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.faq-card h5 {
  font-family: "Poppins-bold";
  font-size: 24px;
  color: var(--bs-blue);
  margin-bottom: 30px;
  text-align: center;
}

.faq-item {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e9ecef;
}

.faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

@media (max-width:768px) {
.faq-card h5 {
margin-top: 30px;

}

}


.faq-item h6 {
  font-family: "Poppins-SemiBold";
  font-size: 20px;
  color: var(--bs-blue);
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 18px;
  color: var(--bs-Grey);
  line-height: 1.6;
  margin: 0;
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
  align-items: stretch;
}

.impact-stats .stat-item {
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 14px;
  padding: 18px 16px;
  text-align: center;

  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;

  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.impact-stats .stat-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.impact-stats .stat-number {
  font-size: 23px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.3px;
}

.impact-stats .stat-label {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
}

.value-cta{
  display: flex;
 width: 55% !important; 
  gap: 15px;
  align-items: stretch;     
}

.value-cta a{
 display: flex !important;
  width: 100% !important;     
  max-width: 100% !important; 
  box-sizing: border-box !important;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: "Poppins-SemiBold";
}




@media (max-width: 768px){
  .value-cta a{
    padding:12px 14px;
    font-size:14px;
  }

.process-cta {
display: block;        
  margin: 0 auto;

}

}




@media (max-width: 768px) {
  .impact-stats .stat-number {
    font-size: 28px;
  }
  .impact-stats .stat-item {
    padding: 16px 14px;
  }
}

/* ============================================================= */
/* Responsive (Mobile)                                            */
/* ============================================================= */
@media (max-width: 768px) {
  /* General padding */
  .main-value-prop,
  .technology-platform,
  .partnership-process,
  .impact-benefits,
  .partner-cta-section,
  .partnership-form-section {
    padding: 50px 0;
  }

  /* Hero */
  .section-breadcrumb .hero-subtitle {
    font-size: 16px;
    margin-bottom: 18px;
  }

  .hero-partner-btn {
    width: 100%;
    min-width: 0;
  }

  /* Titles */
  .form-header h3,
  .partner-gains h3,
  .section-title {
    font-size: 24px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .main-value-prop h2 {
    font-size: 30px;
    text-align: center;
  }

  .tech-content h2 {
    font-size: 24px !important;
    text-align: center;
  }

  .cta-content h2 {
    font-size: 24px !important;
  }

.value-cta {
flex-direction: column;


}


  /* Value CTA buttons full width */
  .value-cta a {
    width: 100%;
    text-align: center;
  }

  /* Keep badge inside image on mobile */
  .badge-1 {
    left: 10px;
    top: 10px;
  }

  /* Benefits stack */
  .partner-benefits-row {
    flex-direction: column;
    gap: 18px;
  }

  .benefit-card-modern {
    padding: 28px 18px;
    min-width: 0;
  }

  /* Tech features */
  .tech-features .feature {
    padding: 16px;
    gap: 14px;
  }

  /* Process becomes vertical */
  .process-timeline {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
  }

  .timeline-connector {
    top: 80px;
    bottom: 80px;
    left: 50%;
    right: auto;
    width: 3px;
    height: auto;
    transform: translateX(-50%);
    background: linear-gradient(
      180deg,
      var(--bs-blue) 0%,
      var(--bs-light-blue) 25%,
      var(--bs-blue) 50%,
      var(--bs-light-blue) 75%,
      var(--bs-blue) 100%
    );
  }

  .step-card {
    max-width: 360px;
    width: 92%;
    height: auto;
    min-height: 260px;
  }

  .step-card:not(:last-child) .step-number::after {
    display: none;
  }

  /* Gains list */
  .gains-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* CTA buttons full width */
  .cta-buttons a {
    width: 100%;
    text-align: center;
  }

  /* Form */
  .form-container {
    padding: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Disable sticky sidebar on mobile */
  .faq-sidebar {
    position: static;
    top: auto;
  }
}

.buttons.apply-now-btn-header .btn.MainBtn{
  /* width: 140px; */
}

/* ---------- Partner Statistics Section ---------- */
.partner-stats-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #1a4d80 0%, #2d5f8f 100%);
  position: relative;
  overflow: hidden;
}

.partner-stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.partner-stats-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

.partner-stat-item {
  text-align: center;
  padding: 20px 15px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.partner-stat-item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.partner-stat-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

.partner-stat-icon::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.partner-stat-item:hover .partner-stat-icon::after {
  opacity: 1;
}

.partner-stat-icon i {
  font-size: 32px;
  color: #ffffff;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.partner-stat-content {
  margin-top: 15px;
}

.partner-stat-content p {
  font-size: 15px;
  font-family: "Poppins-Medium";
  color: #ffffff;
  line-height: 1.5;
  margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .partner-stats-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .partner-stats-section {
    padding: 50px 0;
  }

  .partner-stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .partner-stat-icon {
    width: 60px;
    height: 60px;
  }

  .partner-stat-icon i {
    font-size: 28px;
  }

  .partner-stat-content p {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .partner-stats-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .partner-stat-item {
    padding: 25px 20px;
  }

  .partner-stat-icon {
    width: 65px;
    height: 65px;
  }

  .partner-stat-icon i {
    font-size: 30px;
  }

  .partner-stat-content p {
    font-size: 15px;
  }
}

/* ---------- Partnership Steps Row (New 5-Step Layout) ---------- */
.partnership-steps-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  margin-top: 50px;
  margin-bottom: 40px;
}

.partnership-step-item {
  text-align: center;
  /* padding: 30px 20px; */
  padding: 30px 10px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.partnership-step-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--bs-light-blue);
}

.partnership-step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bs-Gradient);
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(11, 76, 151, 0.3);
}

.partnership-step-item:hover .partnership-step-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(11, 76, 151, 0.4);
}

.partnership-step-icon i {
  font-size: 32px;
  color: #fff;
}

.partnership-step-content {
  text-align: center;
}

.partnership-step-content h4 {
  font-family: "Poppins-SemiBold";
  font-size: 18px;
  color: var(--bs-blue);
  margin-bottom: 15px;
  line-height: 1.3;
}

.partnership-step-content p {
  font-size: 14px;
  color: var(--bs-Grey);
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design for Partnership Steps */
@media (max-width: 1200px) {
  .partnership-steps-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .partnership-steps-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 40px;
  }

  .partnership-step-item {
    padding: 25px 15px;
  }

  .partnership-step-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }

  .partnership-step-icon i {
    font-size: 28px;
  }

  .partnership-step-content h4 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .partnership-step-content p {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .partnership-steps-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .partnership-step-item {
    padding: 25px 20px;
  }

  .partnership-step-icon {
    width: 75px;
    height: 75px;
  }

  .partnership-step-icon i {
    font-size: 30px;
  }

  .partnership-step-content h4 {
    font-size: 17px;
  }

  .partnership-step-content p {
    font-size: 14px;
  }
}

/* ============================================================= */
/* Partnership Page (/partnership) - additions                   */
/* ============================================================= */

/* ---------- Form section headers & checkboxes (shared form pattern) ---------- */
.form-section-header {
  margin: 20px 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e0e0e0;
}

.form-section-header h4 {
  margin: 0 0 5px;
  color: var(--bs-blue);
  font-family: "Poppins-SemiBold";
  font-size: 18px;
  font-weight: 600;
}

.form-section-header .section-note {
  color: #666;
  font-size: 14px;
  margin: 0;
}

.checkbox-group {
  margin-bottom: 15px;
}

.checkbox-group label {
  display: flex;
  align-items: flex-start;
  font-weight: normal;
  font-size: 14px;
  line-height: 1.5;
}

.checkbox-group input[type="checkbox"] {
  margin-right: 10px;
  margin-top: 3px;
  flex-shrink: 0;
}

.checkbox-group label span {
  flex: 1;
}

.checkbox-group a {
  color: #007bff;
  text-decoration: underline;
}

.checkbox-group a:hover {
  color: #0056b3;
}

.form-text.text-muted {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  color: #6c757d;
}

/* ---------- Our Global Reach visual card ---------- */
.reach-visual-card {
  background: var(--bs-Gradient);
  border-radius: 20px;
  padding: 50px 35px;
  text-align: center;
  color: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.reach-visual-icon {
  font-size: 56px;
  opacity: 0.9;
  margin-bottom: 15px;
}

.reach-visual-number {
  font-family: "Poppins-bold";
  font-size: 48px;
  line-height: 1.1;
}

.reach-visual-label {
  font-size: 16px;
  font-family: "Poppins-Medium";
  opacity: 0.95;
  margin-bottom: 25px;
}

.region-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.region-badge {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 25px;
  padding: 8px 16px;
  font-size: 13px;
  font-family: "Poppins-Medium";
}

@media (max-width: 768px) {
  .reach-visual-card {
    margin-top: 30px;
    padding: 40px 25px;
  }
}

/* ---------- What We Offer Our Partners (4-card grid) ---------- */
.partner-offer-section {
  padding: 70px 0;
  background: var(--bs-gray);
}

.partner-offer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.partner-offer-card {
  position: relative;
  background: #fff;
  padding: 35px 25px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.partner-offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--bs-light-blue);
}

.partner-offer-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bs-Gradient);
  border-radius: 50%;
}

.partner-offer-icon i {
  font-size: 26px;
  color: #fff;
}

.partner-offer-card h4 {
  font-family: "Poppins-SemiBold";
  font-size: 17px;
  color: var(--bs-blue);
  margin-bottom: 12px;
}

.partner-offer-card p {
  font-size: 14px;
  color: var(--bs-Grey);
  line-height: 1.6;
  margin: 0;
}

.offer-badge-soon {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--bs-Gradient);
  color: #fff;
  font-size: 11px;
  font-family: "Poppins-Medium";
  padding: 4px 12px;
  border-radius: 20px;
}

@media (max-width: 1200px) {
  .partner-offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .partner-offer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 35px;
  }
}