.elementor-177 .elementor-element.elementor-element-b1168e1{--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-177 .elementor-element.elementor-element-209cde5{--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;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-177 .elementor-element.elementor-element-6b75b04{--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-177 .elementor-element.elementor-element-2b4af4c.elementor-element{--align-self:center;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-18d91a1 *//* Hero Background */
.evs-hero {
  background: linear-gradient(135deg, #16a34a, #059669);
  padding: 70px 20px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Layout */
.evs-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

/* Text */
.evs-hero-text {
  flex: 1;
  min-width: 320px;
  margin-right: 30px;
}
.evs-hero-text h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 15px;
}
.evs-hero-text p {
  font-size: 18px;
  margin-bottom: 25px;
  line-height: 1.7;
}
.evs-hero-btn {
  display: inline-block;
  background: #fff;
  color: #064e3b;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}
.evs-hero-btn:hover {
  background: #064e3b;
  color: #fff;
}

/* Graphics */
.evs-hero-graphic {
  flex: 1;
  min-width: 300px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Earth */
.evs-hero-graphic .earth {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, #34d399, #059669);
  border-radius: 50%;
  box-shadow: 0px 0px 20px rgba(0,0,0,0.3);
  position: absolute;
  top: 50px;
  left: 40px;
  animation: rotate 10s linear infinite;
}

/* Leaf */
.evs-hero-graphic .leaf {
  width: 80px;
  height: 40px;
  background: #22c55e;
  border-radius: 50px 50px 0 50px;
  transform: rotate(-30deg);
  position: absolute;
  bottom: 40px;
  left: 80px;
  animation: float 6s ease-in-out infinite;
}

/* Tree */
.evs-hero-graphic .tree {
  width: 40px;
  height: 80px;
  background: #166534;
  border-radius: 0 0 20px 20px;
  position: absolute;
  right: 90px;
  top: 90px;
  animation: float 7s ease-in-out infinite;
}

/* Water Drop */
.evs-hero-graphic .drop {
  width: 40px;
  height: 60px;
  background: #0ea5e9;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  position: absolute;
  right: 50px;
  bottom: 60px;
  animation: float 5s ease-in-out infinite;
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}/* End custom CSS */