.elementor-1871 .elementor-element.elementor-element-40041aa1{--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-1871 .elementor-element.elementor-element-2756c048{--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-1871 .elementor-element.elementor-element-6616ce39{--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-1871 .elementor-element.elementor-element-65f1cded{--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-1871 .elementor-element.elementor-element-3cc36464{--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-1871 .elementor-element.elementor-element-40041aa1{--content-width:1600px;}.elementor-1871 .elementor-element.elementor-element-2756c048{--content-width:1600px;}.elementor-1871 .elementor-element.elementor-element-6616ce39{--content-width:1600px;}.elementor-1871 .elementor-element.elementor-element-65f1cded{--content-width:1600px;}.elementor-1871 .elementor-element.elementor-element-3cc36464{--content-width:1600px;}}/* Start custom CSS for html, class: .elementor-element-6e13634a */.hero-wise.no-bg-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 100px 40px;
  background-color: #f8fafa;
  gap: 40px;
}

.hero-text {
  flex: 1 1 500px;
  max-width: 600px;
}

.hero-text h1 {
  font-size: 48px;
  color: #0c1c2c;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 20px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 40px;
}

.hero-image {
  flex: 1 1 400px;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

/* Add floating animation */
.floating img {
  animation: floatY 4s ease-in-out infinite;
}

@keyframes floatY {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.wise-button {
  display: inline-block;
  background-color: #b87333;
  color: #fff;
  padding: 12px 28px;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 2px 4px rgba(184, 115, 51, 0.3);
}

.wise-button:hover {
  background-color: #9e622b;
  color: #ffffff; /* Keep text white */
  box-shadow: 0 4px 8px rgba(184, 115, 51, 0.4);
  transform: translateY(-2px);
}

.wise-button.secondary {
  background-color: transparent;
  color: #b87333;
  border: 2px solid #b87333;
}

.wise-button.secondary:hover {
  background-color: rgba(184, 115, 51, 0.08);
  color: #9e622b;
  border-color: #9e622b;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-wise.no-bg-box {
    flex-direction: column;
    text-align: center;
    padding: 60px 20px;
  }

  .hero-text h1 {
    font-size: 36px;
  }

  .hero-text p {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .hero-wise.no-bg-box {
    padding: 50px 16px;
    gap: 30px;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-text h1 {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .hero-text p {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .hero-image {
    max-width: 100%;
  }

  .hero-image img {
    max-width: 240px;
    margin: 0 auto;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .wise-button {
    width: 100%;
    max-width: 260px;
    padding: 12px 20px;
    font-size: 15px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-1487bb46 */.cards-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 20px;
}

.cards-intro {
  text-align: center;
  margin-bottom: 60px;
}

.cards-intro h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.cards-intro p {
  font-size: 18px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.cards-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 60px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 80px 40px;
  justify-items: center;
}

.service-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  padding: 60px 40px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card:hover {
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
  transform: translateY(-8px);
}

.icon {
  margin-bottom: 30px;
}

.icon i {
  font-size: 64px;
  color: #b66a2e;
  transition: 0.3s ease;
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #222;
}

.service-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* Button style */
.wise-button.small {
  display: inline-block;
  background-color: #b87333;
  color: #ffffff;
  padding: 10px 22px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(184, 115, 51, 0.3);
}

.wise-button.small:hover {
  background-color: #9e622b;
  box-shadow: 0 4px 8px rgba(184, 115, 51, 0.4);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .cards-wrapper {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .cards-intro h2 {
    font-size: 28px;
  }

  .service-card {
    padding: 40px 30px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-3ddd70d1 */.split-section {
  background-color: #f8fafa;
  padding: 100px 40px;
  max-width: 1600px;
  margin: 0 auto;
}

.split-content {
  display: flex;
  gap: 80px;
  align-items: center;
  flex-wrap: wrap;
}

.split-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.split-image img {
  max-width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.split-image img:hover {
  transform: translateY(-8px);
}

.split-text {
  flex: 1;
  min-width: 300px;
}

.split-text h2 {
  font-size: 34px;
  color: #1a1a1a;
  margin-bottom: 30px;
  font-weight: 700;
}

.split-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
  .split-content {
    flex-direction: column;
    text-align: center;
  }

  .split-text h2 {
    font-size: 28px;
  }
}
/* Accent line under heading */
.heading-accent {
  display: block;
  width: 60px;
  height: 4px;
  background-color: #b66a2e;
  margin-bottom: 20px;
  border-radius: 2px;
}

/* Alternate layout */
.split-content.reverse {
  flex-direction: row-reverse;
}

@media (max-width: 768px) {
  .split-section {
    padding: 50px 16px;
  }

  .split-content {
    gap: 40px;
    flex-direction: column;
    text-align: center;
  }

  .split-content.reverse {
    flex-direction: column;
  }

  .split-image img {
    max-width: 240px;
    margin: 0 auto;
  }

  .split-text {
    max-width: 100%;
  }

  .split-text h2 {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .split-text p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .heading-accent {
    margin-left: auto;
    margin-right: auto;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-3b16fea7 */.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 */
/* Start custom CSS for html, class: .elementor-element-1eb1ae6e */.wise-faq-section {
  max-width: 1000px;
  margin: 100px auto;
  padding: 0 20px;
  font-family: 'Roboto', sans-serif;
}

.faq-heading {
  font-size: 32px;
  margin-bottom: 50px;
  text-align: center;
  color: #1a1a1a;
}

.faq-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  background-color: #ffffff;
}

.faq-item {
  border-bottom: 1px solid #eee;
}

.faq-question {
  background: #fff;
  border: none;
  width: 100%;
  padding: 20px;
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #b66a2e;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #fdfdfd;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 20px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 20px;
}

/* Arrow Styling */
.faq-question .arrow {
  width: 10px;
  height: 10px;
  border-right: 2px solid #b66a2e;
  border-bottom: 2px solid #b66a2e;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  margin-left: 10px;
}

.faq-item.active .arrow {
  transform: rotate(-135deg);
}/* End custom CSS */