:root {
  --tlkef-ink: #1e293b;
  --tlkef-muted: #475569;
  --tlkef-green: #0f4e36;
  --tlkef-green-dark: #082c1e;
  --tlkef-gold: #d9941e;
  --tlkef-red: #991b1b;
  --tlkef-blue: #1e40af;
  --tlkef-cream: #faf9f6;
  --tlkef-soft: #f0f4f1;
  --tlkef-white: #ffffff;
  --tlkef-border: #e2e8f0;
  --tlkef-shadow: 0 20px 40px rgba(15, 78, 54, 0.05);
  --tlkef-shadow-lg: 0 25px 50px -12px rgba(15, 78, 54, 0.1);
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--tlkef-ink);
  background: var(--tlkef-white);
  font-family: "Nunito Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.8;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
  font-family: "Nunito Sans", Arial, sans-serif;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--tlkef-green-dark);
}

a {
  color: var(--tlkef-green);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

a:hover,
a:focus {
  color: var(--tlkef-gold);
  text-decoration: none;
}

img {
  max-width: 100%;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 9999;
  padding: 10px 14px;
  color: var(--tlkef-white);
  background: var(--tlkef-red);
  border-radius: 4px;
  font-weight: 600;
}

.skip-link:focus {
  top: 16px;
  color: var(--tlkef-white);
}

.tlkef-topbar {
  color: rgba(255, 255, 255, 0.9);
  background: var(--tlkef-green-dark);
  font-size: 13px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tlkef-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 40px;
}

.tlkef-topbar-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.tlkef-topbar a {
  color: rgba(255, 255, 255, 0.9);
}

.tlkef-topbar a:hover {
  color: var(--tlkef-gold);
}

.tlkef-topbar .fa {
  color: var(--tlkef-gold);
  margin-right: 6px;
}

.tlkef-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 8px 32px rgba(15, 78, 54, 0.04);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding: 12px 0;
}

.tlkef-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 380px;
  color: var(--tlkef-green-dark);
  white-space: normal;
}

.tlkef-brand img {
  width: 85px;
  height: 85px;
  object-fit: contain;
  border-radius: 8px;
}

.tlkef-brand strong,
.tlkef-brand small {
  display: block;
  line-height: 1.15;
}

.tlkef-brand strong {
  font-size: 20px;
  font-weight: 800;
  color: var(--tlkef-green-dark);
}

.tlkef-brand small {
  color: var(--tlkef-muted);
  font-size: 14px;
  font-weight: 600;
}

.tlkef-navbar .nav-link {
  color: var(--tlkef-ink);
  font-family: "Nunito Sans", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 16px;
  position: relative;
  transition: color 0.3s ease;
}

.tlkef-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--tlkef-green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tlkef-navbar .nav-link:hover {
  color: var(--tlkef-green);
  background: transparent;
}

.tlkef-navbar .nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.tlkef-navbar .nav-link.active {
  color: var(--tlkef-green);
  background: rgba(15, 78, 54, 0.06);
  border-radius: 6px;
}

.tlkef-navbar .nav-link.active::after {
  display: none;
}

@media (min-width: 992px) {
  .tlkef-navbar .navbar-nav .nav-item {
    margin-left: 8px;
    margin-right: 8px;
  }
  .tlkef-nav-cta {
    margin-left: 20px;
  }
}

.tlkef-nav-cta,
.btn-primary-modern,
.btn-light-modern,
.btn-outline-modern {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 24px;
  border-radius: 30px;
  font-family: "Nunito Sans", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.tlkef-nav-cta,
.btn-primary-modern {
  color: var(--tlkef-white);
  background: var(--tlkef-red);
  border: 2px solid var(--tlkef-red);
}

.tlkef-nav-cta:hover,
.btn-primary-modern:hover,
.btn-primary-modern:focus {
  color: var(--tlkef-white);
  background: var(--tlkef-green);
  border-color: var(--tlkef-green);
}

.btn-light-modern {
  color: var(--tlkef-ink);
  background: var(--tlkef-white);
  border: 2px solid var(--tlkef-white);
}

.btn-outline-modern {
  color: var(--tlkef-white);
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.74);
}

.btn-outline-modern:hover,
.btn-light-modern:hover {
  color: var(--tlkef-ink);
  background: var(--tlkef-gold);
  border-color: var(--tlkef-gold);
}

.tlkef-menu-button {
  width: 44px;
  height: 44px;
  color: var(--tlkef-white);
  background: var(--tlkef-green);
  border: 0;
  border-radius: 4px;
}

.section-pad {
  padding: 86px 0;
}

.section-muted {
  background: var(--tlkef-soft);
}

.section-dark {
  color: var(--tlkef-white);
  background: var(--tlkef-green-dark);
}

.section-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--tlkef-red);
  font-family: "Nunito Sans", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-dark .section-kicker,
.tlkef-home-hero .section-kicker,
.page-hero .section-kicker,
.tlkef-footer-cta .section-kicker {
  color: var(--tlkef-gold);
}

.section-title {
  margin: 0 0 18px;
  color: var(--tlkef-ink);
  font-size: 38px;
  line-height: 1.18;
  font-weight: 800;
}

.section-dark .section-title {
  color: var(--tlkef-white);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.lead-text {
  color: var(--tlkef-ink);
  font-size: 19px;
  line-height: 1.65;
}

.tlkef-home-hero {
  position: relative;
  min-height: 670px;
  color: var(--tlkef-white);
  background: var(--tlkef-green-dark);
}

.tlkef-home-hero .carousel,
.tlkef-home-hero .carousel-inner,
.tlkef-home-hero .carousel-item {
  min-height: 670px;
}

.tlkef-home-hero .carousel-item img {
  height: 670px;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.04);
}

.tlkef-home-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14, 37, 29, 0.92), rgba(14, 37, 29, 0.62) 48%, rgba(14, 37, 29, 0.2)),
    linear-gradient(0deg, rgba(14, 37, 29, 0.72), rgba(14, 37, 29, 0.06));
  pointer-events: none;
}

.tlkef-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  padding-bottom: 42px;
}

.tlkef-hero-copy {
  max-width: 760px;
  padding: 34px 0;
}

.tlkef-hero-copy h1 {
  margin: 0 0 22px;
  color: var(--tlkef-white);
  font-size: 58px;
  line-height: 1.08;
  font-weight: 800;
}

.tlkef-hero-copy p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 20px;
}

.tlkef-hero-actions,
.tlkef-inline-actions,
.tlkef-footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.tlkef-hero-dots {
  z-index: 4;
  bottom: 24px;
}

.tlkef-hero-dots li {
  width: 28px;
  height: 5px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
}

.tlkef-hero-dots .active {
  background: var(--tlkef-gold);
}

.tlkef-impact-strip {
  position: relative;
  z-index: 5;
  margin-top: -58px;
}

.tlkef-impact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  background: var(--tlkef-white);
  border: 1px solid var(--tlkef-border);
  border-radius: 8px;
  box-shadow: var(--tlkef-shadow);
}

.tlkef-impact-grid div {
  padding: 24px;
  border-right: 1px solid var(--tlkef-border);
}

.tlkef-impact-grid div:last-child {
  border-right: 0;
}

.tlkef-impact-grid strong {
  display: block;
  color: var(--tlkef-red);
  font-family: "Nunito Sans", Arial, sans-serif;
  font-size: 30px;
  line-height: 1.1;
}

.tlkef-impact-grid span {
  display: block;
  color: var(--tlkef-muted);
  margin-top: 5px;
}

.tlkef-image-stack,
.tlkef-donation-card,
.tlkef-form,
.tlkef-contact-card {
  border: 1px solid var(--tlkef-border);
  border-radius: 8px;
  background: var(--tlkef-white);
  box-shadow: var(--tlkef-shadow);
}

.tlkef-image-stack {
  position: relative;
  padding: 14px;
}

.tlkef-image-stack img,
.tlkef-rounded-img {
  width: 100%;
  border-radius: 6px;
}

.tlkef-image-stack img {
  height: 420px;
  object-fit: cover;
}

.tlkef-image-note {
  position: absolute;
  right: 34px;
  bottom: 34px;
  max-width: 290px;
  padding: 18px;
  color: var(--tlkef-white);
  background: var(--tlkef-green-dark);
  border-left: 4px solid var(--tlkef-gold);
  border-radius: 6px;
}

.tlkef-image-note strong,
.tlkef-image-note span {
  display: block;
}

.tlkef-card-grid {
  display: grid;
  gap: 22px;
}

.tlkef-card-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tlkef-card-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tlkef-card-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tlkef-feature-card,
.tlkef-team-card,
.tlkef-project-card {
  background: var(--tlkef-white);
  border: 1px solid var(--tlkef-border);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(16, 34, 28, 0.08);
}

.tlkef-feature-card {
  padding: 26px;
}

.tlkef-feature-card > .fa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  color: var(--tlkef-white);
  background: var(--tlkef-green);
  border-radius: 8px;
  font-size: 19px;
}

.tlkef-feature-card:nth-child(2n) > .fa {
  background: var(--tlkef-red);
}

.tlkef-feature-card:nth-child(3n) > .fa {
  background: var(--tlkef-blue);
}

.tlkef-feature-card h3,
.tlkef-project-card h3,
.tlkef-team-card h3,
.tlkef-contact-card h2 {
  margin: 0 0 10px;
  color: var(--tlkef-ink);
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
}

.tlkef-feature-card p,
.tlkef-project-card p,
.tlkef-contact-card p {
  margin-bottom: 0;
  color: var(--tlkef-muted);
}

.tlkef-feature-card.compact {
  padding: 22px;
}

.tlkef-process-list {
  display: grid;
  gap: 14px;
}

.tlkef-process-list div {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  min-height: 76px;
  padding: 18px;
  background: var(--tlkef-white);
  border: 1px solid var(--tlkef-border);
  border-radius: 8px;
}

.tlkef-process-list strong {
  color: var(--tlkef-red);
  font-family: "Nunito Sans", Arial, sans-serif;
  font-size: 24px;
}

.tlkef-process-list-compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tlkef-process-list-compact div {
  grid-template-columns: 1fr;
}

.tlkef-logo-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.tlkef-logo-row span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 76px;
  padding: 14px;
  color: var(--tlkef-white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  font-family: "Nunito Sans", Arial, sans-serif;
  font-weight: 700;
  text-align: center;
}

.tlkef-inline-actions a {
  font-family: "Nunito Sans", Arial, sans-serif;
  font-weight: 700;
}

.page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  color: var(--tlkef-white);
  background: var(--tlkef-green-dark);
  isolation: isolate;
}

.page-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
}

.page-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(15, 40, 31, 0.92), rgba(15, 40, 31, 0.58), rgba(15, 40, 31, 0.18));
}

.page-hero h1 {
  max-width: 820px;
  margin: 0 0 18px;
  color: var(--tlkef-white);
  font-size: 48px;
  line-height: 1.12;
  font-weight: 800;
}

.page-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 19px;
}

.page-hero-about:before { background-image: url("../../images/002.webp"); }
.page-hero-projects:before { background-image: url("../../assets/images/fpo.webp"); }
.page-hero-donate:before { background-image: url("../../images/slider12.webp"); }
.page-hero-certificates:before { background-image: url("../../images/cer1.webp"); }
.page-hero-gallery:before { background-image: url("../../images/20092301.webp"); }
.page-hero-contact:before { background-image: url("../../images/1.webp"); }

.tlkef-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.tlkef-check-grid span {
  position: relative;
  min-height: 62px;
  padding: 16px 16px 16px 48px;
  background: var(--tlkef-white);
  border: 1px solid var(--tlkef-border);
  border-radius: 8px;
  color: var(--tlkef-ink);
  font-weight: 600;
}

.tlkef-check-grid span:before {
  content: "\f00c";
  position: absolute;
  left: 16px;
  top: 18px;
  width: 22px;
  height: 22px;
  color: var(--tlkef-white);
  background: var(--tlkef-green);
  border-radius: 50%;
  font: normal normal normal 12px/22px FontAwesome;
  text-align: center;
}

.tlkef-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.tlkef-mini-stats div {
  padding: 18px;
  background: var(--tlkef-white);
  border: 1px solid var(--tlkef-border);
  border-radius: 8px;
}

.tlkef-mini-stats strong,
.tlkef-mini-stats span {
  display: block;
}

.tlkef-mini-stats strong {
  color: var(--tlkef-red);
  font-family: "Nunito Sans", Arial, sans-serif;
}

.tlkef-mini-stats span {
  color: var(--tlkef-muted);
  font-size: 14px;
}

.tlkef-team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.tlkef-team-card {
  overflow: hidden;
  text-align: center;
}

.tlkef-team-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.tlkef-team-card h3 {
  margin: 18px 16px 4px;
}

.tlkef-team-card p {
  margin: 0 16px 20px;
  color: var(--tlkef-muted);
}

.tlkef-project-grid {
  display: grid;
  gap: 24px;
}

.tlkef-project-card {
  display: grid;
  grid-template-columns: 310px 1fr;
  overflow: hidden;
}

.tlkef-project-card img {
  width: 100%;
  height: 100%;
  min-height: 245px;
  object-fit: cover;
}

.tlkef-project-card div {
  padding: 28px;
}

.tlkef-project-card strong {
  display: block;
  margin-top: 16px;
  color: var(--tlkef-green-dark);
  font-family: "Nunito Sans", Arial, sans-serif;
}

.tlkef-donation-card {
  position: sticky;
  top: 120px;
  padding: 28px;
}

.tlkef-donation-card h2 {
  margin-bottom: 18px;
  font-size: 28px;
  font-weight: 800;
}

.tlkef-donation-card dl {
  margin: 0 0 20px;
}

.tlkef-donation-card dt {
  color: var(--tlkef-muted);
  font-size: 13px;
  text-transform: uppercase;
}

.tlkef-donation-card dd {
  margin-bottom: 14px;
  color: var(--tlkef-ink);
  font-family: "Nunito Sans", Arial, sans-serif;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.tlkef-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.tlkef-gallery-grid-small {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tlkef-gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 230px;
  color: var(--tlkef-white);
  background: var(--tlkef-green-dark);
  border-radius: 8px;
}

.tlkef-gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.tlkef-gallery-item:hover img,
.tlkef-gallery-item:focus img {
  transform: scale(1.04);
  opacity: 0.82;
}

.tlkef-gallery-item span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 34px 16px 14px;
  color: var(--tlkef-white);
  background: linear-gradient(0deg, rgba(16, 34, 28, 0.9), rgba(16, 34, 28, 0));
  font-weight: 700;
}

.tlkef-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.tlkef-contact-card {
  padding: 28px;
}

.tlkef-contact-card > .fa {
  color: var(--tlkef-red);
  font-size: 28px;
  margin-bottom: 16px;
}

.tlkef-form {
  padding: 28px;
}

.tlkef-form label {
  color: var(--tlkef-ink);
  font-family: "Nunito Sans", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.tlkef-form .form-control {
  min-height: 48px;
  border: 1px solid var(--tlkef-border);
  border-radius: 4px;
}

.tlkef-form textarea.form-control {
  min-height: 150px;
}

.tlkef-map-section iframe {
  display: block;
  width: 100%;
  height: 430px;
  border: 0;
}

.tlkef-footer-cta {
  padding: 58px 0;
  color: var(--tlkef-white);
  background: linear-gradient(135deg, var(--tlkef-green-dark), #214f78);
}

.tlkef-footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.tlkef-footer-cta h2 {
  max-width: 760px;
  margin: 0;
  color: var(--tlkef-white);
  font-size: 34px;
  line-height: 1.2;
  font-weight: 800;
}

.tlkef-footer {
  color: rgba(255, 255, 255, 0.78);
  background: #0e211a;
  padding: 64px 0 26px;
}

.tlkef-footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.85fr 1fr 1.2fr;
  gap: 34px;
}

.tlkef-footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--tlkef-white);
  font-family: "Nunito Sans", Arial, sans-serif;
  font-weight: 800;
}

.tlkef-footer-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--tlkef-white);
}

.tlkef-footer h3 {
  color: var(--tlkef-white);
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 16px;
}

.tlkef-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tlkef-footer li {
  margin-bottom: 9px;
}

.tlkef-footer a {
  color: rgba(255, 255, 255, 0.82);
}

.tlkef-footer a:hover {
  color: var(--tlkef-gold);
}

.tlkef-social {
  display: flex;
  gap: 10px;
}

.tlkef-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--tlkef-white);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 4px;
}

.tlkef-contact-list .fa {
  width: 18px;
  color: var(--tlkef-gold);
}

.tlkef-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
}

.tlkef-footer-bottom p {
  margin: 0;
}

.tlkef-top-button {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 2000;
  display: none;
  width: 44px;
  height: 44px;
  color: var(--tlkef-white);
  background: var(--tlkef-red);
  border: 0;
  border-radius: 4px;
  box-shadow: var(--tlkef-shadow);
}

.tlkef-top-button.is-visible {
  display: block;
}

@media (max-width: 1199px) {
  .tlkef-card-grid-4,
  .tlkef-team-grid,
  .tlkef-gallery-grid-small {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tlkef-logo-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .tlkef-topbar-inner,
  .tlkef-footer-cta-inner,
  .tlkef-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .tlkef-nav-cta {
    margin-top: 10px;
  }

  .tlkef-home-hero,
  .tlkef-home-hero .carousel,
  .tlkef-home-hero .carousel-inner,
  .tlkef-home-hero .carousel-item,
  .tlkef-home-hero .carousel-item img {
    min-height: 610px;
    height: 610px;
  }

  .tlkef-hero-copy h1 {
    font-size: 44px;
  }

  .tlkef-impact-grid,
  .tlkef-card-grid-3,
  .tlkef-card-grid-4,
  .tlkef-team-grid,
  .tlkef-contact-grid,
  .tlkef-footer-grid,
  .tlkef-process-list-compact,
  .tlkef-gallery-grid,
  .tlkef-gallery-grid-small {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tlkef-project-card {
    grid-template-columns: 1fr;
  }

  .tlkef-project-card img {
    height: 310px;
  }

  .tlkef-donation-card {
    position: static;
  }
}

@media (max-width: 767px) {
  .section-pad {
    padding: 62px 0;
  }

  .section-title,
  .tlkef-footer-cta h2 {
    font-size: 30px;
  }

  .page-hero {
    min-height: 360px;
  }

  .page-hero h1 {
    font-size: 34px;
  }

  .tlkef-home-hero,
  .tlkef-home-hero .carousel,
  .tlkef-home-hero .carousel-inner,
  .tlkef-home-hero .carousel-item,
  .tlkef-home-hero .carousel-item img {
    min-height: 560px;
    height: 560px;
  }

  .tlkef-hero-copy h1 {
    font-size: 35px;
  }

  .tlkef-hero-copy p,
  .page-hero p,
  .lead-text {
    font-size: 17px;
  }

  .tlkef-impact-strip {
    margin-top: 0;
  }

  .tlkef-impact-grid,
  .tlkef-card-grid-2,
  .tlkef-card-grid-3,
  .tlkef-card-grid-4,
  .tlkef-team-grid,
  .tlkef-contact-grid,
  .tlkef-footer-grid,
  .tlkef-process-list-compact,
  .tlkef-check-grid,
  .tlkef-gallery-grid,
  .tlkef-gallery-grid-small,
  .tlkef-mini-stats,
  .tlkef-logo-row {
    grid-template-columns: 1fr;
  }

  .tlkef-impact-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--tlkef-border);
  }

  .tlkef-impact-grid div:last-child {
    border-bottom: 0;
  }

  .tlkef-image-note {
    position: static;
    max-width: none;
    margin-top: 12px;
  }

  .tlkef-image-stack img {
    height: 300px;
  }
}

@media (max-width: 420px) {
  .tlkef-brand {
    max-width: 245px;
  }

  .tlkef-brand img {
    width: 52px;
    height: 52px;
  }

  .tlkef-brand strong {
    font-size: 14px;
  }

  .tlkef-brand small {
    font-size: 11px;
  }

  .tlkef-hero-actions,
  .tlkef-footer-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .tlkef-process-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

/* --- Added Premium Enhancements --- */

/* Page Hero background for members page */
.page-hero-members:before {
  background-image: url("../../images/001.webp");
}

/* Premium Card Lift Animations */
.tlkef-feature-card,
.tlkef-project-card,
.tlkef-contact-card,
.tlkef-donation-card {
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.tlkef-feature-card:hover,
.tlkef-project-card:hover,
.tlkef-contact-card:hover,
.tlkef-donation-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 35px rgba(16, 34, 28, 0.12);
  border-color: var(--tlkef-green);
}

/* Premium Team Grid/Row and Card Styles */
.tlkef-team-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 30px;
}

.tlkef-team-card-premium {
  /* flex: 1 1 calc(33.333% - 28px); */
  width: 280px;
  background: var(--tlkef-white);
  border: 1px solid var(--tlkef-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(16, 34, 28, 0.05);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  margin: 0 20px;

}

.tlkef-team-card-premium:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(16, 34, 28, 0.12);
  border-color: var(--tlkef-green);
}

.tlkef-team-img-wrapper {
  position: relative;
  /* width: 250px; */
  height: 270px;
  overflow: hidden;
  background-color: var(--tlkef-soft);
}

.tlkef-team-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tlkef-team-card-premium:hover .tlkef-team-img-wrapper img {
  transform: scale(1.06);
}

.tlkef-team-content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.tlkef-team-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--tlkef-ink);
  margin-bottom: 4px;
}

.tlkef-team-designation {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--tlkef-green);
  margin-bottom: 12px;
}

.tlkef-team-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--tlkef-muted);
  margin-bottom: 0;
}

/* Lightbox Styles */
.tlkef-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2100;
  background: rgba(8, 20, 16, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.tlkef-lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.tlkef-lightbox-content {
  position: relative;
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tlkef-lightbox.active .tlkef-lightbox-content {
  transform: scale(1);
}

.tlkef-lightbox-content img {
  max-width: 100%;
  max-height: 76vh;
  object-fit: contain;
  border-radius: 8px;
  border: 4px solid var(--tlkef-white);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  background-color: var(--tlkef-ink);
}

.tlkef-lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  color: var(--tlkef-white);
  background: transparent;
  border: 0;
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
  outline: none !important;
}

.tlkef-lightbox-close:hover {
  color: var(--tlkef-gold);
  transform: scale(1.1);
}

.tlkef-lightbox-caption {
  margin-top: 16px;
  color: var(--tlkef-white);
  font-family: "Nunito Sans", Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

@media (max-width: 991px) {
  .tlkef-team-card-premium {
    flex: 1 1 calc(50% - 28px);
  }
}

@media (max-width: 767px) {
  .tlkef-team-card-premium {
    flex: 1 1 100%;
  }
  
  .tlkef-lightbox-close {
    top: -42px;
    right: 10px;
    font-size: 32px;
  }
}

