

.solution-hero {
 background: linear-gradient(180deg, #0C9C4F 0%, #0BB259 100%);
  padding: 80px 0 100px 0;
  color: #ffffff;
  min-height: 260px;
}

.custom-breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  list-style: none;
  gap: 20px;
}
.custom-breadcrumb .breadcrumb-item,
.custom-breadcrumb .breadcrumb-item a {
  color: #f9f9f9;
  text-decoration: none;
  font-weight: 400;
  line-height: 100%;
  gap: 20px;
  font-size: 16px;
  display: flex;
  align-items: center;
}
.breadcrumb-item + .breadcrumb-item::before {
  color: #f9f9f9;
  content: "/";
  padding-right: 6px;
}

.solution-title {
  font-size: 50px;
  color: #f9f9f9;
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: 0%;
  line-height: 100%;
}
.solution-desc {
  font-size: 16px;
  line-height: 1.6;
  max-width: 900px;
  font-weight: 400;
  color: #f9f9f9;
}

.service-solutions-section {
  background-color: #ffffff;
  padding: 100px 0;
}

.service-solutions-title {
  font-size: 40px;
  width: 100%;
  text-align: center;
  padding-right: 10px;
  font-weight: 700;
  color: #062d1a;
  font-family: "Figtree", sans-serif;
  font-style: bold;
  margin-bottom: 24px;
  line-height: 51px;
  letter-spacing: 0%;
}

.service-solutions-desc {
  font-size: 16px;
  max-width: 850px;
  width: 100%;
  font-weight: 400;
  color: #767676;
  line-height: 100%;
  margin: 0 auto;
 
}

.service-solutions-desc span {
  display: block;
  text-align: center;
}

.insight-section {
  background-color: #ffffff;
  padding: 80px 0;
}

.insight-card {
  border: none;
  border-radius: 0;
  background: #fff;
  position: relative;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.insight-card:hover {
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); 
  transform: translateY(-5px); 
}
.insight-card-img-wrap {
  max-width: 590px;
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.insight-card-img {
  max-width: 590px;
  width: 100%;
  max-height: 222px;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}

.insight-card-overlay {
    position: absolute;
    inset: 0;
   
    background: linear-gradient(
        0.25deg,
        rgba(0, 0, 0, 0) 0.22%,
        rgba(0, 0, 0, 0.5) 75.57%
    );
    z-index: 2; 
    pointer-events: none;
}

.insight-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #ffffff;
  color: #111111;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 20px;
  z-index: 3;
}

.insight-card-body {
  background: #ffffff;
  padding: 24px 16px 20px 16px;
  position: relative;
  width: 492px;
  height: 260px;
  z-index: 3;
  border-radius: 0;
}

.insight-card-title {
  position: absolute;
  font-size: 24px;
  font-weight: 700;
  color: #0B1F2A;
  line-height: 100%;
  margin-bottom: 14px;
  z-index: 9999;
  bottom: 240px;
  background-color: #fff;
  padding: 10px;
  width:500px ;
  margin-left: -16px;
}

.insight-card-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  color: #777777;
  margin-bottom: 14px;
}

.insight-card-meta i {
  margin-right: 5px;
}

.insight-card-divider {
    border: none;
    opacity: 1;
    height: 1.8px; 
    background: linear-gradient(
        90deg, 
        #157442 0%,      
        #157442 0%,     
        rgba(21, 116, 66, 0) 100% 
    );
    margin: 0 0 16px 0;
    width: 80%;
}

.insight-card-desc {
  font-size: 16px;
  color: #64748B;
  max-width: 362px;
  width: 100%;
  line-height: 1.4;
  margin-bottom: 20px;
}

.insight-card-read-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: #157442;
  font-size: 16px;
  font-weight: 500;
}

  

.insight-card-read-more:hover .insight-card__arrow {
  background-color: #0d5a31;
}

.insight-card-read-more:hover {
  color: #0d5a31;
}

