 .featured-services .service-item {
  height: 100%;
  padding: 30px 30px;
  border-radius: 8px;
  transition: all 0.4s ease;
  background-color: #ffffff;
  border: 1px solid color-mix(in srgb, #444444, transparent 92%);
  position: relative;
  overflow: hidden;

   transform: translateY(5%); 
  opacity: 0;
  transition: all 0.6s ease-out;
}

.service-item h3 {
  font-weight: 900;
}

.service-item.visible {
  transform: translateY(0); 
  opacity: 1;
}

.service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #9cff01, color-mix(in srgb, #9cff01, #172624 30%));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px color-mix(in srgb, #444444, transparent 90%);
}

.service-item:hover::before {
  transform: scaleX(1);
}

.service-item:hover .service-icon {
  background: linear-gradient(135deg,#9cff01, color-mix(in srgb, #9cff01, #172624 20%));
}

.service-item:hover .service-icon i {
  color: #ffffff;
  transform: scale(1.1);
}

.service-item:hover .service-link {
  opacity: 1;
  transform: translateY(0);
}

.service-item:hover .service-link i {
  transform: translateX(8px);
}
.service-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #9cff01, color-mix(in srgb, #9cff01, #6c5ce7 20%));
  border-radius: 50%;
}
.services .service-icon i {
  font-size: 36px;
  color: #ffffff;
  transition: transform 0.3s ease;
}

 .featured-services .service-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  /* letter-spacing: -0.5px; */
  line-height: 1.3;
}

 .featured-services .service-item p {
  font-size: 14px;
  text-align: justify;
  line-height: 1.7;
  color: color-mix(in srgb, #444444, transparent 20%);
  margin-bottom: 30px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #172624;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-link i {
  font-size: 16px;
  transition: transform 0.3s ease;
}
.clients {
    padding-block-start: 10px;
    padding-block-end: 30px;
}

.clients .client-item {
  padding: 10px;
  text-align: center;
  height: 100%;
  background-color: #ffffff;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, #444444, transparent 90%);
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Larger, responsive logos */
.clients .client-item img {
  height: 140px !important;
  width: auto !important;
  max-width: 100%;
  object-fit: contain;
  transition: all 0.3s ease-in-out;
  filter: grayscale(0);
  opacity: 0.8;
}
.modal-header {
  background-color: #9cff01;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .clients .client-item img {
    height: 100px !important;
  }
}




.clients .client-item:hover {
  transform: translateY(-5px);
  border-color: #9cff01;
}

.clients .client-item:hover img {
  filter: grayscale(100%);
  opacity: 1;
}

.section-title {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
}



.section-title h5:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, #9cff01, transparent 60%);
  left: 0;
  right: 0;
  margin: auto;
}

.member-card {
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 2px 10px color-mix(in srgb, #8fd400, transparent 85%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 6px;
}

.member-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px color-mix(in srgb, #8fd400, transparent 80%);
}

.member-image-wrapper {
  overflow: hidden;
  position: relative;
  border-radius: 6px;
}

.member-image-wrapper img {
  width: 100%;
  /* aspect-ratio: 1/1.1; */
  object-fit: cover;
  transition: transform 0.4s ease;
}

.member-card:hover .member-image-wrapper img {
  transform: scale(1.05);
}

.member-content {
  padding: 6px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.member-name {
  font-size: 0.9rem; /* smaller name text */
  font-weight: 700;
  color: #172624;
  margin-bottom: 0.2rem;
}

.member-role {
  font-size: 0.75rem; /* smaller role text */
  color: #375603;
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}




@media (min-width: 768px) and (max-width: 1024px) {

}

@media (max-width: 767px) {
 
}

/* why choose us  */

.why-choose-us {
  padding: 40px 0;
  background-color: #ffffff;
}

.why-choose-us .features-content {
  padding-right: 30px;
}

.why-choose-us .features-content .lead {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1.5rem;

}

.why-choose-us .features-content p {
  margin-bottom: 2rem;
  color: #444d4d;
}

.why-choose-us .features-content .features-list .feature-item {
  display: flex;
  margin-bottom: 2rem;
}

.why-choose-us .features-content .features-list .feature-item:last-child {
  margin-bottom: 0;
}

.why-choose-us .features-content .features-list .feature-item .feature-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background-color: color-mix(in srgb, #9cff01, transparent 90%);
  color: #9cff01 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-right: 20px;
  transition: all 0.3s ease;
}

.why-choose-us .features-content .features-list .feature-item .feature-icon:hover {
  background-color: #9cff01;
  color: #ffffff !important;
  transform: translateY(-5px);
}

.why-choose-us .features-content .features-list .feature-item .feature-text h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1b2c01;
}

.why-choose-us .features-content .features-list .feature-item .feature-text p {
  font-size: 0.95rem;
  margin-bottom: 0;
  color: #000000;
}

.why-choose-us .features-image {
  position: relative;
}

.why-choose-us .features-image .main-image {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.why-choose-us .features-image .stats-card {
  position: absolute;
  top: -30px;
  left: -30px;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: 3fr;
  gap: 15px;
  z-index: 2;
  width: 150px;
}
.why-choose-us .features-image .stats-card .stat-item {
  text-align: center;
}

.why-choose-us .features-image .stats-card .stat-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1b2c01;
  margin-bottom: 5px;
}

.why-choose-us .features-image .stats-card .stat-item p {
  font-size: 0.8rem;
  margin-bottom: 0;
  color: #1b2c01;
}

.why-choose-us .features-image .experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: #9cff01;
  color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.why-choose-us .features-image .experience-badge .badge-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.why-choose-us .features-image .experience-badge .badge-content .number {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.why-choose-us .features-image .experience-badge .badge-content .text {
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.2;
}


/* properties  */

.real-estate .service-item {
 height: 100%;
  padding: 30px 30px;
  border-radius: 8px;
  transition: all 0.4s ease;
  background-color: #ffffff;
  border: 1px solid color-mix(in srgb, #444444, transparent 92%);
  position: relative;
  overflow: hidden;

   transform: translateY(5%); 
  /* opacity: 0; */
  transition: all 0.6s ease-out;
}
.real-estate .service-item h3{
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
  line-height: 1.3;
}
.real-estate .service-item p {
  font-size: 14px;
  text-align: justify;
  line-height: 1.7;
  color: color-mix(in srgb, #444444, transparent 20%);
  margin-bottom: 10px;
}
.real-estate .service-item ul{
  font-size: 16px;
  list-style-type: none;
  padding-left: 30px;

}
.real-estate .service-item li{
  /* position: relative; */
  /* padding-left: -50px; */
  padding-bottom: 10px;
}
.real-estate .service-item li::before {
  content: "";
  width: 16px;
  height: 16px;
  left: 30px;
  position: absolute;
  background-image: url(../svg/Image.svg);
}

.service-list li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 30px;
  text-align: left;
}

.real-estate .service-list li::before {
  content: "";
  position: absolute;
  left: 0;                  /* aligns marker right next to text */
  top: 6px;
  width: 14px;
  height: 14px;
  background-image: url(../svg/Image.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

@media (max-width: 767px) {
 .why-choose-us {
  padding: 20px 20px 30px 20px;
  background-color: #ffffff;
}
.why-choose-us .features-content {
  padding-bottom: 40px;
}
  .why-choose-us .features-content h2 {
     font-size: 2rem;
   }
    .why-choose-us .features-image .stats-card {
    width: 180px;
    padding: 15px;
    top: -20px;
    left: -10px;
  }
    .why-choose-us .features-image .stats-card .stat-item h3 {
    font-size: 1.2rem;
  }
 
}



/* property  */
/* Services */
.properties-section {
  margin-top: 30px;
}

.property-item img {
	width: 100%;
  height: 300px;
	overflow: hidden;
}

.property-item .down-content {
	background-color: #f7f7f7;
	padding: 20px;
}

.property-item .down-content h4 {
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.25px;
	margin-bottom: 15px;
  display: inline;
}

.property-item .down-content p {
	margin-bottom: 10px;
}
.property-item video {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}


a.filled-button {
	background-color: #9cff01;
	color: #fff;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 700;
	padding: 12px 30px;
	border-radius: 30px;
	display: inline-block;
	transition: all 0.3s;
}

a.filled-button:hover {
	background-color: #fff;
	color: #9cff01;
}

.page-link:hover,
.page-link {
	color: #a4c639;
}

.btn-primary {
	border-color: #a4c639;
	background-color: #a4c639;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:active:focus{
	opacity: 0.6;
	border-color: #a4c639;
	background-color: #a4c639;
}

.service-lead {
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 150%;
}

.service-badge {
  margin-bottom: 20px;
}

.service-badge span {
  display: inline-block;
  padding: 8px 24px;
  background: color-mix(in srgb, #9cff01, transparent 85%);
  color: #000000;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}