.active:hover{
    position: relative;
  	background:none;
  	box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.25) !important;
  	color: rgb(114, 177, 51);
  	font-size: 20px;
  	font-style: bold;
  	transform: translate(0%, 10%);
  	
  }
  .site-menu li a:hover {
  color: rgb(114, 177, 51);
  text-decoration: none;
}

.site-menu li.active a {
  font-weight: 700;
}

  .h4-featues{
	color: rgba(16, 58, 16, 0.918);
	font-size: 24px;
	font-weight: 800;
display: flex;
margin-left: 0rem;
  }

  .features-text{
	justify-content: center;
	align-items: center;
	color: black;
	animation: fadeInUp 1s ease-in-out forwards;
  }

  .section-bg{
	opacity: 0.65;
  }
  
  .feature-s{
	background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 9px;
    box-shadow: 0 3px 5px rgba(8, 31, 10, 0.582);
    animation: fadeInUp 1s ease-in-out forwards;
	animation-delay: 0.5s;
  }
 .site-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;        /* prevents stretching */
  background-color: #fff;  /* nice contrast */
  padding: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.site-logo:hover {
  transform: scale(1.05);
}
@media (min-width: 992px) {
  .site-logo {
    width: 90px;
    height: 90px;
  }
}
.call-us {
  gap: 6px;
}

/* --------- Modal overlay --------- */
/* --------- Modal overlay --------- */
.ypl-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.55);
}

/* --------- Modal card --------- */
.ypl-modal-content {
  background: #fff;
  margin: 8% auto;
  padding: 16px 18px;
  border-radius: 16px;
  width: 90%;
  max-width: 360px;
  max-height: 75vh; /* important: makes it fit inside screen */
  overflow-y: auto; /* allows scroll if content is long */
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  position: relative;
}

/* --------- Close button --------- */
.close-btn {
  position: absolute;
  right: 12px;
  top: 10px;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  color: #444;
}

/* --------- Title --------- */
.ypl-modal-content h2 {
  text-align: center;
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  color: #222;
}

/* --------- Form --------- */
#registerForm {
  display: grid;
  gap: 8px;
}

#registerForm label {
  font-size: 12px;
  color: #555;
  font-weight: 600;
}

#registerForm input {
  padding: 9px 10px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
  outline: none;
  width: 100%;
}

#registerForm input:focus {
  border-color: #1a73e8;
  box-shadow: 0 0 0 3px rgba(26,115,232,0.15);
}

#registerForm .register-btn {
  background: #1a73e8;
  color: #fff;
  border: none;
  padding: 10px 0;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 6px;
}

/* --------- Mobile fit --------- */
@media (max-width: 420px) {
  .ypl-modal-content {
    width: 95%;
    margin: 6% auto;
  }
  
}
.instagram-slider-wrap {
  width: 100%;
  padding: 20px 0;
  overflow: hidden;
}
.instagram-slider:hover {
  animation-play-state: paused;
}

.instagram-slider {
  display: flex;
  gap: 15px;
  flex-wrap: nowrap;          /* important: keeps one line */
  align-items: center;
  animation: slide 25s linear infinite; /* auto sliding */
}

.instagram-slider .item {
  width: 180px;
  height: 180px;
  overflow: hidden;
  border-radius: 0; /* removes circle */
  border: 3px solid #fff;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
  flex: 0 0 auto;
}


.instagram-slider .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Slide animation */
@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.heading {
  font-size: 30px;
  color: #0d4f2b;
  font-weight: 700;
  margin-bottom: 20px;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.impact-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  transition: transform 0.2s ease;
}

.impact-card:hover {
  transform: translateY(-6px);
}

.impact-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.impact-card h3 {
  font-size: 18px;
  margin: 6px 0;
  color: #1f3f2f;
}

.impact-card p {
  font-size: 14px;
  line-height: 1.5;
  color: #555;
}
@media (max-width: 768px) {
  .impact-grid {
    grid-template-columns: 1fr;
  }
  .list-unstyled .links a{
      font-size:2px;
  }
}

/* Projects Section */
.projects-item {
  border: 1px solid #eee;
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
}

.projects-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.projects-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.projects-item:hover img {
  transform: scale(1.05);
}

.projects-item .date {
  display: inline-block;
  padding: 6px 12px;
  background: #1a73e8;
  color: #fff;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

.projects-item h3 {
  font-size: 18px;
  margin: 12px 0;
  font-weight: 700;
}

.projects-item p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.projects-item .more2 {
  color: #1a73e8;
  font-weight: 700;
}

/* Responsive Design */
@media (max-width: 768px) {
  .projects-item img {
    height: 200px;
  }
  h2{
    font-size:12px;
}
}

@media (max-width: 576px) {
  .projects-item img {
    height: 180px;
  }
  .list-unstyled .links li a{
      font-size:2px;
  }
}

.footer-links{
    list-etyle:none;
}


.executive{
    
}