.elementor-1855 .elementor-element.elementor-element-49f8de4{--display:flex;}.elementor-1855 .elementor-element.elementor-element-2e7179f{--display:flex;}.elementor-1855 .elementor-element.elementor-element-25318cf{--display:flex;}body.elementor-page-1855:not(.elementor-motion-effects-element-type-background), body.elementor-page-1855 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#E3F9F5;}/* Start custom CSS for wp-widget-custom_html, class: .elementor-element-f8ad42a *//* 🔹 Make Section Visible on Scroll */
.about-visible {
    opacity: 1;
    transform: translateY(0);
}

/* 🔹 Content Wrapper */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

/* 🔹 Grid Layout */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* 🔹 Column Styling */
.about-column {
    background: #F8F9FA; /* Light gray background */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* 🔹 Title Styling */
.about-title {
    color: #0A263C; /* Navy blue */
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
}

/* 🔹 List Styling */
.about-list {
    list-style: none !important; /* Removes default bullets */
    padding: 0;
    margin: 0;
}

/* 🔹 Add Custom Dots */
.about-list li {
    font-size: 18px;
    color: #4A4A4A;
    line-height: 1.8;
    padding-left: 25px; /* Space for the dot */
    position: relative;
}

/* 🔹 Insert Explicit Dots Before Each List Item */
.about-list li::before {
    content: "•"; /* Unicode for bullet point */
    font-size: 30px;
    font-weight: bold;
    color: #4A4A4A; /* Dark gray dot */
    position: absolute;
    left: 0;
    top: 50%; /* Centers it properly */
    transform: translateY(-50%);
}

/* 🔹 First Column - Align Dots with First Sentence */
.about-column:first-child .about-list li::before {
    top: -0.3em; /* Adjusts dynamically with font size */
    transform: none;
}



/* 🔹 Responsive Layout */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-column {
        text-align: center;
    }
}/* End custom CSS */
/* Start custom CSS for wp-widget-custom_html, class: .elementor-element-1c64390 *//* 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 */