/* Custom GridWave Service Styles */
.gradient-icon {
  background: linear-gradient(90deg, #84e2a7, #f7de65);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.kf-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
@media (max-width: 991px) { .kf-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px) { .kf-grid { grid-template-columns: 1fr; } }
.kf-card {
  background: #fff; border: 1px solid rgba(0,0,0,0.05); border-radius: 20px; padding: 40px 30px;
  transition: all 0.4s ease; box-shadow: 0 10px 30px rgba(0,0,0,0.03); text-align: center;
}
.kf-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); border-color: var(--accent); }
.kf-icon { width: 80px; height: 80px; border-radius: 50%; background: var(--accent-light); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 32px; margin: 0 auto 25px auto; transition: all 0.4s ease; }
.kf-card:hover .kf-icon { background: linear-gradient(90deg, #84e2a7, #f7de65); color: #fff; transform: scale(1.1) rotateY(180deg); }
.kf-card:hover .kf-icon i { -webkit-text-fill-color: #fff; }
.kf-card h5 { font-size: 20px; font-weight: 600; margin-bottom: 15px; color: #0C2F25; }
.kf-card p { font-size: 15px; color: #555; margin: 0; }

/* Vertical Timeline Process inside dark theme */
.process-timeline {
  position: relative;
  padding-left: 50px;
}
.process-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,0.1);
}
.pt-item {
  position: relative;
  margin-bottom: 40px;
}
.pt-item:last-child { margin-bottom: 0; }
.pt-dot {
  position: absolute;
  left: -50px;
  width: 42px;
  height: 42px;
  background: #0f172a;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  z-index: 2;
  transition: 0.3s;
}
.pt-item:hover .pt-dot {
  background: linear-gradient(90deg, #84e2a7, #f7de65);
  border-color: transparent;
  color: #0f172a;
}
.pt-content {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 30px;
  border-radius: 20px;
  transition: 0.3s;
}
.pt-item:hover .pt-content {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.1);
}

/* Process Flow (Horizontal) */
.process-flow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  position: relative;
}
.process-step {
  flex: 1 1 18%;
  min-width: 200px;
  background: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.04);
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.02);
}
.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(47, 160, 132, 0.1);
  border-color: rgba(47, 160, 132, 0.3);
}
.ps-icon-wrapper {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #fdfdfd, #f4f4f4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  box-shadow: inset 0 2px 5px rgba(0,0,0,0.02), 0 5px 15px rgba(0,0,0,0.05);
  position: relative;
  z-index: 2;
}
.ps-icon-wrapper i {
  font-size: 28px;
  background: linear-gradient(90deg, #2fa084, #84e2a7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ps-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  background: linear-gradient(90deg, #84e2a7, #f7de65);
  border-radius: 50%;
  color: #0f172a;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.process-step h4 {
  font-size: 18px;
  color: #0f172a;
  margin-bottom: 10px;
  font-weight: 600;
}
.process-step p {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}
@media(min-width: 1200px) {
  .process-step:not(:last-child)::after {
    content: '\f101';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 50px;
    right: -17px;
    color: #2fa084;
    font-size: 24px;
    opacity: 0.4;
    z-index: 0;
  }
}

/* ================= Green Credits Card Section ================= */
.gc-grid-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}
.gc-section-header {
    text-align: center;
    margin-bottom: 80px;
}
.gc-heading {
    font-family: 'Poppins', 'Plus Jakarta Sans', sans-serif;
    font-size: 56px;
    font-weight: 400;
    color: #0f172a;
    margin-bottom: 24px;
    letter-spacing: -1px;
    line-height: 1.15;
}
.gc-description {
    font-size: 22px;
    color: #475569;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
}
.gc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Standard Professional Card */
.border-glow-card {
  background: #ffffff;
  border-radius: 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  padding: 50px 40px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  overflow: hidden;
}

.border-glow-card:hover {
  transform: translateY(-8px);
}

.border-glow-inner {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

/* Hide unused edge light if it's still in HTML */
.edge-light {
  display: none !important;
}

/* Content Styling inside card */
.gc-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 30px;
    transition: all 0.4s ease;
}
.gc-icon-wrapper i {
    background: linear-gradient(90deg, #5de0cc 0%, #fbe046 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease;
}
.border-glow-card:hover .gc-icon-wrapper {
    background: linear-gradient(90deg, #5de0cc 0%, #fbe046 100%);
    transform: scale(1.1) rotate(-5deg);
}
.border-glow-card:hover .gc-icon-wrapper i {
    background: none;
    -webkit-text-fill-color: #ffffff;
    color: #ffffff;
}
.gc-card-title {
    font-family: 'Poppins', 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #1e293b;
    line-height: 1.4;
    margin-bottom: 16px;
}
.gc-card-text {
    font-size: 17px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* Responsive grid */
@media (max-width: 1400px) {
    .gc-grid {
        gap: 30px;
    }
}
@media (max-width: 1199px) {
    .gc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gc-heading {
        font-size: 48px;
    }
}
@media (max-width: 767px) {
    .gc-grid-container {
        padding: 0 20px;
    }
    .gc-grid {
        grid-template-columns: 1fr;
    }
    .gc-heading {
        font-size: 38px;
    }
    .border-glow-card {
        padding: 40px 30px;
    }
    .gc-grid-section {
        padding: 80px 0 !important;
    }
}
