.elementor-1879 .elementor-element.elementor-element-4798dc9{--display:flex;}.elementor-1879 .elementor-element.elementor-element-2fbde2e{--display:flex;--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;}.elementor-1879 .elementor-element.elementor-element-77d66ff{--display:flex;--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;}.elementor-1879 .elementor-element.elementor-element-69d67d8{--display:flex;--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;}@media(min-width:768px){.elementor-1879 .elementor-element.elementor-element-4798dc9{--content-width:1600px;}.elementor-1879 .elementor-element.elementor-element-2fbde2e{--content-width:1600px;}.elementor-1879 .elementor-element.elementor-element-77d66ff{--content-width:1600px;}.elementor-1879 .elementor-element.elementor-element-69d67d8{--content-width:1600px;}}/* Start custom CSS for html, class: .elementor-element-d311b27 */.hero-partner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f8fafa;
  padding: 100px 60px;
  max-width: 1600px;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
  gap: 60px;
  flex-wrap: wrap;
}

.hero-partner-content {
  flex: 1 1 500px;
}

.hero-partner-content h1 {
  font-size: 42px;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.hero-partner-content p {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
  max-width: 600px;
}

.hero-partner-illustration {
  flex: 1 1 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-partner-illustration img {
  max-width: 100%;
  height: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  transition: transform 0.5s ease;
}

.hero-partner-illustration.floating img:hover {
  transform: translateY(-8px);
}

@media (max-width: 992px) {
  .hero-partner {
    flex-direction: column-reverse;
    text-align: center;
    padding: 60px 30px;
  }

  .hero-partner-content h1 {
    font-size: 32px;
  }

  .hero-partner-content p {
    font-size: 16px;
  }
}

.wise-button {
  background-color: #B66A2E;
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.wise-button:hover {
  background-color: #a15822;
  color: white; /* Ensures text stays white on hover */
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .hero-partner {
    flex-direction: column-reverse;
    text-align: center;
    padding: 60px 20px;
  }

  .hero-partner-content {
    flex: none;
    max-width: 100%;
  }

  .hero-partner-illustration {
    flex: none;
    max-width: 100%;
    margin-bottom: 40px;
  }

  .hero-partner-content h1 {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .hero-partner-content p {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .wise-button {
    font-size: 16px;
    padding: 12px 24px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-33a0f8c */.partners-section {
  background-color: #f9f9f9;
  padding: 100px 20px;
  text-align: center;
  overflow-x: auto; /* enables scroll on smaller screens */
}

.partners-header h2 {
  font-size: 42px;
  margin-bottom: 10px;
}

.partners-header p {
  font-size: 18px;
  color: #555;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.partner-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.partner-name {
  background-color: white;
  color: #222;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: -20px;
  margin-left: 16px;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  position: relative;
}

.partner-card {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #fff;
  height: 220px;
  border-radius: 16px;
  width: 100%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .partner-name {
    font-size: 14px;
    padding: 6px 10px;
    margin-left: 12px;
  }

  .partner-card {
    height: 180px;
  }
}

.partner-description {
  margin-top: 16px;
  font-size: 15px;
  color: #444;
  line-height: 1.5;
  padding: 0 5px;
  max-width: 100%;
  text-align: center;
}

@media (max-width: 992px) {
  .partners-section {
    padding: 60px 20px;
  }

  .partners-header h2 {
    font-size: 32px;
  }

  .partners-header p {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .partner-name {
    font-size: 15px;
    padding: 6px 10px;
    margin-left: 12px;
  }

  .partner-card {
    height: 180px;
  }

  .partner-description {
    font-size: 14px;
    padding: 0 10px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-cb4d3f5 */.partner-benefits {
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 20px;
  text-align: center;
}

.benefits-header h2 {
  font-size: 38px;
  margin-bottom: 20px;
}

.benefits-header p {
  font-size: 18px;
  color: #555;
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 40px;
  justify-items: center;
}

.benefit-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  padding: 50px 30px;
  transition: all 0.3s ease;
  text-align: center;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.benefit-card i {
  font-size: 48px;
  color: #b66a2e;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.benefit-card:hover i {
  transform: scale(1.1);
  text-shadow: 0 0 8px rgba(182, 106, 46, 0.4);
}

.benefit-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #222;
}

.benefit-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* Mobile responsiveness */
@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    padding: 40px 25px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-ff6c13e */.cta-section {
  background: #f8fafa;
  padding: 100px 20px;
}

.cta-container {
  background: #ffffff;
  padding: 60px 40px;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.cta-container h2 {
  font-size: 32px;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.cta-container p {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* Reuse your existing Wise Solutions button style */
.wise-button {
  display: inline-block;
  background-color: #b87333;
  color: #ffffff;
  padding: 12px 28px;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 8px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(184, 115, 51, 0.3);
}

.wise-button:hover {
  background-color: #9e622b;
  box-shadow: 0 4px 8px rgba(184, 115, 51, 0.4);
  transform: translateY(-2px);
}/* End custom CSS */