.community-section {
  padding: 80px 20px;
  background: #f7faf9;
}

.community-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #2e7d32;
}

.section-subtitle {
  margin: 10px 0 50px;
  font-size: 18px;
  color: #555;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.community-card {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.community-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.community-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #e8f5e9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.community-icon i {
  font-size: 32px;
  color: #2e7d32;
}

.community-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #222;
}

.community-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* ========== SERVICES GRIDS ========== */
.services-grid,
.services-grid-custom {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

/* ========== SERVICE CARD (UNIFIED) ========== */
.service-card,
.service-box {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.service-card:hover,
.service-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
}

/* ========== SERVICE ICON (UNIFIED) ========== */
.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: rgba(46, 125, 50, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon i {
  font-size: 1.8rem;
  color: var(--primary);
}

/* ========== SERVICE TEXT ========== */
.service-card h3,
.service-box h4 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
}

.service-card p,
.service-box p {
  color: var(--light);
  line-height: 1.7;
}

/* ========== SERVICE BOX VARIANTS ========== */
.service-box.primary {
  border-left: 5px solid var(--primary);
}

.service-box.secondary {
  border-left: 5px solid var(--secondary);
}

.service-box.accent {
  border-left: 5px solid var(--accent);
}

/* ========== CATEGORY TITLE ========== */
.service-category-title {
  margin: 3rem 0 1.5rem;
  font-size: 1.6rem;
  color: var(--primary);
}

.service-icon i,
.service-icon-large i {
  font-size: 1.6rem;
  color: var(--primary);
}

.service-category-title i {
  margin-right: 0.6rem;
  color: var(--primary);
}

.service-card:hover .service-icon i {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

.highlight-key {
  font-style: italic;              /* Slight emphasis through italics */
  font-weight: 500;                /* Medium weight for readability */
  color: #f5f5f5;                  /* Soft, neutral color */
  border-bottom: 1px dotted rgba(255, 255, 255, 0.3); /* Optional delicate underline */
  padding-bottom: 1px;             /* Small spacing for underline */
  transition: color 0.3s ease, border-color 0.3s ease;
}

.highlight-key:hover {
  color: #ffffff;                  /* Slightly brighter on hover */
  border-color: rgba(255, 255, 255, 0.6); /* Subtle interaction */
}

.highlight-key-out {
  font-style: italic;              /* Slight emphasis through italics */
  font-weight: 600;
  color: #2d7a5f;
  /* background: linear-gradient(120deg, rgba(45, 122, 95, 0.1), rgba(91, 168, 141, 0.08)); */
  padding: 2px 6px;
  /* border-radius: 4px; */
  /* border-bottom: 2px solid #2d7a5f; */
  transition: all 0.3s ease;
  display: inline-block;
}

.highlight-key-out:hover {
  background: linear-gradient(120deg, rgba(45, 122, 95, 0.15), rgba(91, 168, 141, 0.12));
  color: #1a4d36;
  border-bottom-color: #1a4d36;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(45, 122, 95, 0.15);
}


