.hero-section {
    position: relative;
    background: url('images/home-mobile.png') no-repeat center center;
    background-size: cover;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-overlay {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 40px;
    margin-left: 60px;
    border-radius: 10px;
    color: white;
    max-width: 600px;
}

.hero-overlay h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.hero-overlay h1 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
}

.btn-get-started {
    display: inline-flex;
    align-items: center;
    background-color: #d0e645;
    color: black;
    font-weight: bold;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    transition: background-color 0.3s;
}

.btn-get-started .circle-arrow {
    background-color: black;
    color: white;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.btn-get-started:hover {
    background-color: #b7d639;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f8f4;
    color: #333;
}

.hero-sector {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 40px;
}

.content-wrapper {
    display: flex;
    flex-wrap: nowrap; /* Prevents wrapping */
    max-width: 1400px;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 120px; /* Space between image and text */
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    max-width: 650px;

    height: 600px;
    display: block;
}

.hero-text {
    flex: 1;
    max-width: 650px;
}

.hero-text h4 {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

.hero-text h1 {
    font-size: 42px;
    font-weight: bold;
    color: #111;
    line-height: 1.3;
}

.green-text {
    color: #7ba525;
}

.hero-text p {
    font-size: 16px;
    line-height: 1.7;
    margin: 15px 0;
}

.cta-button {
    display: inline-block;
    background-color: #7ba525;
    color: #111;
    padding: 14px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #7ba525;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f8f8;

    
    margin: 0;
    padding: 0;
    
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
    color: #222;

}

.features-section {
    padding: 60px 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-box {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.feature-box img {
    width: 60px;
    margin-bottom: 15px;
}

.feature-box h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #111;
}

.feature-box p {
    font-size: 14px;
    line-height: 1.6;
}

.call-to-action {
    background-color: #00b5ad;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.call-to-action img {
    filter: brightness(0) invert(1);
    margin: 0 auto 15px;
}


.requisites {
    padding: 40px 20px;
    text-align: center;
}

.requisites h2 {
    font-size: 28px;
    color: #222;
    border-bottom: 2px dotted #ccc;
    display: inline-block;
    margin-bottom: 50px;
    font-weight: 700;
}

.requisite-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.requisite {
    background: #fff;
    border-radius: 60px;
    padding: 30px 25px;
    width: 330px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.requisite:hover {
    transform: translateY(-5px);
}

.requisite img {
    max-width: 100%;
    height: 120px;
    margin-bottom: 20px;
    object-fit: contain;
}

.requisite h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #111;
}

.requisite p {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
    text-align: justify;
}
.solar-form {
  background: #fff;
  padding: 20px;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  margin: auto;
  margin-top: 20px;
}

.solar-form .form-header {
  background: orange;
  color: white;
  text-align: center;
  padding: 10px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  font-weight: bold;
}

.solar-form input {
  width: 100%;
  margin: 10px 0;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.submit-button {
  background: green;
  color: white;
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
}

.g-recaptcha {
  margin: 10px 0;
}

@keyframes slideInUp {
    from {
      transform: translateY(40px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  .slide-in-up {
    animation: slideInUp 1s ease-out both;
  }
 

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
}

.solar-section h1 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3;
    color: #000;
    margin-bottom: 30px;
}

.highlight-green {
    color: #72b01d; /* bright eco-green */
}

.solar-section p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 5px;
}


.contain {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 10px 20px;
    max-width: 1200px;
    margin: auto;
    gap: 120px;
    flex-wrap: wrap;
}

.image-side img {
    max-width: 100%;
    height: auto;
    width: 450px;
}

.text-side {
    max-width: 550px;
}

.text-side ul {
    padding-left: 20px;
    list-style-type: disc;
    font-size: 16px;
    line-height: 1.8;
}

.text-side li {
    margin-bottom: 15px;
}

.text-side p {
    margin-top: 20px;
    font-weight: 500;
    color: #222;
}
.services-section {
    text-align: center;
    padding: 60px 20px;
    background-color: #f9f9f9;
  }
  
  .services-section h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    font-weight: bold;
    color: #333;
  }
  
  .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .card {
    background-color: #d4f1e3; /* light green similar to image */
    border-radius: 16px;
    padding: 25px 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  }
  
  .card img {
    max-width: 100%;
    height: 140px;
    object-fit: contain;
    margin-bottom: 20px;
  }
  
  .card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #0f5132;
  }
  
  .card p {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.5;
  }
  
 
  
  .smart-approach {
    text-align: center;
    padding: 60px 20px;
    background-color: #f8f9fa;
  }
  
  .smart-approach h2 {
    font-size: 2em;
    margin-bottom: 40px;
    color: #2c2c2c;
    border-bottom: 2px dashed #ccc;
    display: inline-block;
    padding-bottom: 5px;
  }
  
  .approach-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  
  .approach-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    width: 180px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
  }
  
  .approach-card:hover {
    transform: translateY(-5px);
  }
  
  .approach-card img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }
  
  .approach-card h3 {
    font-size: 1rem;
    margin: 10px 0 5px;
    color: #333;
  }
  
  .approach-card p {
    font-size: 0.85rem;
    color: #555;
  }
  .landscape-section {
    margin-top: 30px;
    text-align: center;
  }
  
  .landscape-section img {
    width: 100%;
    height: 500px;
    max-width: 100%;
  }
  .card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-link .card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-link:hover .card {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

  