.elementor-1853 .elementor-element.elementor-element-e9cf54c{--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;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-1853 .elementor-element.elementor-element-13088df{--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-1853 .elementor-element.elementor-element-bf79faa{--display:flex;}.elementor-1853 .elementor-element.elementor-element-9ef27b0{--display:flex;}.elementor-1853 .elementor-element.elementor-element-7e5e26e{width:100%;max-width:100%;}@media(min-width:768px){.elementor-1853 .elementor-element.elementor-element-13088df{--content-width:1320px;}}/* Start custom CSS for wp-widget-custom_html, class: .elementor-element-8a181c0 *//* General Grid Layout */
.g-cols {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  margin: 40px auto;
  max-width: 1200px;
}

.wpb_column {
  flex: 1;
  min-width: 300px;
}

/* Title Section Styling */
.wpb_text_column h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
  text-align: left;
}

.wpb_text_column p {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
  text-align: left;
  margin: 5px 0;
}

/* Core Values Section */
.w-iconbox {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.w-iconbox-icon {
  margin-right: 15px;
  color: #72767C; /* Icon color */
}

.w-iconbox-title {
  font-size: 20px;
  font-weight: bold;
  color: #333;
}

.w-iconbox-text p {
  font-size: 16px;
  color: #666;
  margin: 5px 0;
}

/* Image Section */
.w-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Responsive Layout */
@media (max-width: 768px) {
  .g-cols {
    flex-direction: column;
    gap: 20px;
  }
}/* End custom CSS */
/* Start custom CSS for wp-widget-custom_html, class: .elementor-element-7e5e26e *//* General Layout */
.full-width-wrapper {
  position: relative;
  width: 100vw; /* Full viewport width */
  margin-left: calc(-50vw + 50%); /* Break out of any parent container */
  overflow: hidden;
}

.stats-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Background Image Overlay */
.l-section-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  z-index: 1;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.5;
}

/* Centered Stats Content */
.stats-content {
  position: relative;
  z-index: 2;
  padding: 50px 20px;
  text-align: center;
  background-color: rgba(128, 128, 128, 0.8);
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.stat {
  flex: 1;
  min-width: 200px;
  text-align: center;
}

.stat h2 {
  font-size: 78px;
  color: white;
  margin: 0;
}

.stat p {
  font-size: 18px;
  color: white;
  margin: 20px 0 0;
}

/* Call-to-Action Section */
.cta-section {
  background-color: #E8F8F5; /* Orange background */
  padding: 50px 20px; /* Add padding for spacing */
  text-align: center;
  color: white;
  position: relative; /* Ensure it follows the stats content */
}

.cta-container {
  max-width: 1200px; /* Center content */
  margin: 0 auto;
}

.cta-section p {
  font-size: 24px;
  margin: 0 0 15px;
}


/* Base Button Styles */
.animated-button {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  color: white; /* Initial text color */
  background-color: #16a571; /* Green background initially */
  border: 2px solid #16a571; /* Green border */
  border-radius: 8px;
  cursor: pointer;
  margin-left: 50px;
  overflow: hidden;
  transition: color 0.3s ease;
}

/* Inner hover effect */
.animated-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  background-color: white; /* Hover background color */
  z-index: 0; /* Behind text */
  transition: left 0.3s ease;
}

/* Text stays above hover effect */
.animated-button span {
  position: relative;
  z-index: 1; /* Ensure text stays above the hover effect */
}

/* Hover state */
.animated-button:hover {
  color: #16A571; /* Change text color to green on hover */
}

.animated-button:hover::before {
  left: 0; /* Move background into view */
}




/* Responsive Layout */
@media (max-width: 768px) {
  .stats-container {
    flex-direction: column;
    gap: 20px;
  }
}/* End custom CSS */