
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px;
}

.hero-text {
  width: 45%;
}

.hero-text h1 {
  font-size: 36px;
  color: #5F6B09;
}
.hero-img{
  width: 48%;
  display:flex;
  justify-content:end;
}

.hero-img img{
  width: 320px;
  height: 320px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 18px 30px rgba(0,0,0,.12);
}


.hero-text p {
  margin: 20px 0;
  line-height: 1.7;
}

.hero-text button {
  padding: 10px 22px;
  background: #5F6B09;
  color: #fff;
  border: none;
  border-radius: 25px;
  cursor: pointer;
}


.services {
  padding: 60px 80px;
}

.services h2 {
  color: #5F6B09;
  margin-bottom: 30px;
}

.services p {
  padding: 12px;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center 30%;
}

.service-card h4 {
  padding: 12px;
  text-align: center;
  color: #5F6B09;
}
.service-card:hover {
  transform: translateY(-5px);
}


.financing {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px;
  background: #fff;
}

.fin-text {
  width: 45%;
}

.fin-text h2 {
  font-size: 36px;
  color: #5F6B09;
}

.fin-text p {
  line-height: 1.7;
  margin: 20px 0;
}

.fin-img img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;    
}


.button a {
  padding: 10px 22px;
  background: #5F6B09;
  color: #fff;
  border-color: #5F6B09;
  border-radius: 25px;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
}


.projects-section {
  background: #fff;
  padding: 80px;
  position: relative;
}

.projects-section h2 {
  margin-bottom: 40px;
  font-size: 18px;
  color: #5F6B09;
}

.projects {
  position: relative;
}

.project-box {
  width: 420px;
  padding: 15px 18px;
  border: 1.5px solid #5F6B09;
  border-radius: 3px;
  background: #fff;
  margin-bottom: 35px;
  font-size: 14px;
  line-height: 1.6;
  height: auto;
  overflow-wrap: break-word;
  word-break: normal;
}
.project-box p {
  margin: 0;
  line-height: 1.6;
}


.project-box.left {
  margin-left: 0;
}

.project-box.right {
  margin-left: 220px;
}
@media (max-width: 768px) {

 
  .hero,
  .financing,
  .services,
  .projects-section {
    padding: 30px 20px;
  }

  
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    width: 100%;
  }

  .hero-img {
    width: 100%;
    justify-content: center;
    margin-top: 20px;
  }

  .hero-img img {
    width: 220px;
    height: 220px;
  }


  .service-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .financing {
    flex-direction: column;
    text-align: center;
  }

  .fin-text {
    width: 100%;
  }

  .fin-img {
    margin-top: 20px;
  }

  .fin-img img {
    width: 220px;
    height: 220px;
  }


  .project-box {
    width: 100%;
    margin-left: 0 !important;
    box-sizing: border-box;
  }


  .projects {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

