.elementor-1158 .elementor-element.elementor-element-448278a{--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-1158 .elementor-element.elementor-element-41bcd2f{width:100%;max-width:100%;margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-41bcd2f *//* CTA SECTION - BRIO BLACK & GREEN THEME */
.omni-cta {
  position: relative;
  min-height: 420px;
  /* Keep the handshake image or swap for a lush field if preferred */
  background-image: url("https://images.unsplash.com/photo-1521791136064-7986c2920216");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  overflow: hidden;
  padding: 80px 24px;
  box-sizing: border-box;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  font-family: 'Inter', -apple-system, sans-serif;
}

/* DARK OVERLAY - Transitioning from Black to a Deep Forest tint */
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.85), 
    rgba(10, 10, 10, 0.92)
  );
}

/* CONTENT */
.cta-content {
  position: relative;
  max-width: 720px;
  text-align: center;
  z-index: 1;
  animation: fadeUp 0.8s ease both;
}

/* EYEBROW - Green Accent */
.cta-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 22px;
  color: #22c55e; /* BRIO GREEN */
}

/* HEADING */
.cta-content h2 {
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 22px;
  color: #ffffff;
}

/* TEXT */
.cta-content p {
  font-size: 17px;
  line-height: 1.7;
  color: #d1d5db; /* Light grey for readability against black */
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* BUTTON - Brio Green Glow */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #22c55e;
  color: #052e16; /* Dark green text for contrast */
  padding: 16px 42px;
  border-radius: 8px; /* Slightly more "industrial/professional" than pill-shape */
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-button:hover {
  background: #16a34a; /* Darker green on hover */
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(34, 197, 94, 0.3);
  color: #ffffff;
}

/* ANIMATION */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* MOBILE OPTIMISATION */
@media (max-width: 768px) {
  .omni-cta { padding: 80px 20px; }
  .cta-content h2 { font-size: 28px; }
  .cta-button { width: 100%; }
}


/* Force Pure Black Background and White Text */
html, body {
    background-color: #000000 !important;
    color: #ffffff !important;
    margin: 0;
    padding: 0;
    /* Prevents white flashes during scrolling/loading */
    min-height: 100%;
}

/* Optional: Ensures links are visible on black */
a {
    color: #2ecc71; /* Using your Brio Green */
}/* End custom CSS */