@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* ===== SECTION ===== */
.lcf-impact-section {
  font-family: 'Open Sans', sans-serif;
  padding: 60px 20px;
  max-width: 1300px;
  margin: 0 auto;
}

/* ===== HEADER ===== */
.lcf-impact-header {
  text-align: center;
  margin-bottom: 50px;
}

.lcf-top-label {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #1e5c2e;
  margin-bottom: 10px;
}

.lcf-main-heading {
    font-family: 'Open Sans', sans-serif;
    font-size: 35px;
    font-weight: 700;
    color: #106e44;
    margin: 0 0 16px;
    line-height: 1.2;
}

.lcf-sub-text {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 20px;
}

.lcf-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.lcf-divider span {
  display: block;
  width: 50px;
  height: 2px;
  background: #1e5c2e;
  border-radius: 2px;
}

.lcf-divider i {
  color: #1e5c2e;
  font-size: 16px;
}

/* ===== SWIPER WRAPPER ===== */
.lcf-swiper-wrap {
  position: relative;
  padding: 0 40px;
}

/* ===== ARROWS ===== */
.lcf-swiper-prev,
.lcf-swiper-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  background: #1e5c2e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
}

.lcf-swiper-prev { left: 0; }
.lcf-swiper-next { right: 0; }

.lcf-swiper-prev i,
.lcf-swiper-next i {
  color: #fff;
  font-size: 14px;
}

.lcf-swiper-prev:hover,
.lcf-swiper-next:hover {
  background: #154a22;
}

/* ===== CARD ===== */
.lcf-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden; 
	border:1px solid #c8e8cc;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
}
 

/* ===== CARD IMAGE ===== */
.lcf-card-img {
  position: relative;
  width: 100%;
  height: 220px;
}

.lcf-card-img img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  display: block;
}

.lcf-card-img-placeholder {
  width: 100%;
  height: 100%;
  background: #c8e8cc;
}

/* Icon circle over image */
.lcf-card-icon-wrap {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  z-index: 2;
}

.lcf-card-icon-wrap i {
  color: #1e5c2e;
  font-size: 22px;
}

/* ===== CARD BODY ===== */
.lcf-card-body {
  padding: 10px 10px 10px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.lcf-card-title {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1e5c2e;
  text-align: center;
  margin: 12px 0 12px;
  line-height: 1.4;
  font-style: italic;
}

.lcf-card-desc {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #444;
  line-height: 1.75; 
  margin-bottom: 16px;
  flex: 1;
	text-align:center;
}

/* ===== TAGS ===== */
.lcf-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 20px;
}

.lcf-tag {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #f0f9f2;
  border: 1px solid #c8e8cc;
  border-radius: 20px;
  padding: 5px 10px;
  font-size: 11px;
  color: #1e5c2e;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
}

.lcf-tag i {
  font-size: 11px;
  color: #1e5c2e;
}

/* ===== BUTTON ===== */
.lcf-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #1e5c2e;
  color: #fff !important;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 20px;
  border-radius: 8px;
  text-decoration: none !important;
  transition: background 0.3s, transform 0.2s;
  letter-spacing: 0.5px;
  margin-top: auto;
}

.lcf-card-btn:hover {
  background: #154a22;
  transform: scale(1.02);
  color: #fff !important;
}

.lcf-card-btn i {
  font-size: 13px;
}

/* ===== PAGINATION DOTS ===== */
.lcf-pagination {
  margin-top: 30px !important;
  position: relative !important;
  bottom: auto !important;
}

.lcf-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #c8e8cc;
  opacity: 1;
}

.lcf-pagination .swiper-pagination-bullet-active {
  background: #1e5c2e;
  width: 28px;
  border-radius: 5px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .lcf-main-heading { font-size: 30px; }
  .lcf-swiper-wrap  { padding: 0 36px; }
}

@media (max-width: 480px) {
  .lcf-main-heading { font-size: 24px; }
  .lcf-sub-text     { font-size: 14px; }
}
