/* ============================================
   Tech Green Steps — Platform (UCHCHI) Hero Section
   ============================================ */

:root {
  --color-bg: #ffffff;
  --color-dark: #221d27;
  --color-green: #0e3b26;
  --color-gray: #6b6b6b;
  --color-gray-light: #9a9a9a;
  --color-accent: #d9a441;
  --color-card-bg: #f5f8f7;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --container-max: min(1600px, 94%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--color-dark);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ---------- Hero Section ---------- */

.ph-hero {
  background-color: #ffffff;
}

.ph-hero__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 56px 24px 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.ph-hero__content {
  max-width: 540px;
}

/* Breadcrumb */
.breadcrumb {
  font-family: var(--font-body);
  font-size: 14px;
  margin-bottom: 26px;
  color: var(--color-gray-light);
}

.breadcrumb__link {
  color: var(--color-dark);
  font-weight: 500;
}

.breadcrumb__link:hover {
  text-decoration: underline;
}

.breadcrumb__sep {
  margin: 0 8px;
  color: var(--color-gray-light);
}

.breadcrumb__current {
  color: var(--color-gray-light);
}

.breadcrumb__current--active {
  color: var(--color-green);
  font-weight: 600;
}

/* Title */
.ph-hero__title {
  font-family: var(--font-heading);
  font-size: 54px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-green);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

/* Subtitle */
.ph-hero__subtitle {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 14px;
}

/* Accent underline */
.ph-hero__underline {
  display: block;
  width: 46px;
  height: 3px;
  background-color: var(--color-accent);
  margin-bottom: 22px;
}

/* Description text */
.ph-hero__text {
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--color-gray);
  max-width: 460px;
  margin-bottom: 30px;
}

/* Buttons */
.ph-hero__btns {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 44px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 1.5px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-green);
  color: #ffffff;
}
.btn-primary:hover {
  background: #0a2c1c;
  transform: translateY(-1px);
}

.btn-outline {
  background: #ffffff;
  color: var(--color-dark);
  border-color: #D8DEDA;
}
.btn-outline:hover {
  border-color: var(--color-green);
  color: var(--color-green);
}

/* Feature icons row */
.ph-hero__features {
  display: flex;
  gap: 34px;
}

.ph-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 90px;
}

.ph-feature__icon {
  width: 52px;
  height: 52px;
  border-radius: 80%;
  background-color: #eaf3ec;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.ph-feature:hover .ph-feature__icon {
  background-color: var(--color-green);
  transform: translateY(-3px);
}

.ph-feature:hover .ph-feature__icon i {
  color: #ffffff;
}

.ph-feature__icon i {
  font-size: 20px;
  color: var(--color-green);
  transition: color 0.25s ease;
}

.ph-feature__label {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-dark);
}

/* ---------- Visual ---------- */

.ph-hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ph-hero__img {
  width: 100%;
  height: 400px; 
}

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
  .ph-hero__title {
    font-size: 46px;
  }
  .ph-hero__features {
    gap: 22px;
  }
}

@media (max-width: 900px) {
  .ph-hero__container {
    grid-template-columns: 1fr;
  }
  .ph-hero__visual {
    order: -1;
  }
  .ph-hero__content {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .ph-hero__container {
    padding: 40px 20px 50px;
  }
  .ph-hero__title {
    font-size: 38px;
  }
  .ph-hero__subtitle {
    font-size: 16px;
  }
  .ph-hero__btns {
    flex-wrap: wrap;
  }
  .ph-hero__features {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
  }
  .ph-feature {
    max-width: 78px;
  }
}

/* ============================================================
   ABOUT UCHCHI
   ============================================================ */

.au {
  background-color: #ffffff;
  padding: 30px 24px 70px;
}

.au__container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.au__heading {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--color-green);
  margin-bottom: 14px;
}

.au__para {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.75;
  color: var(--color-gray);
  margin-bottom: 6px;
  max-width: 560px;
}

.au__card {
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid #ececec;
  box-shadow: 0 10px 30px -12px rgba(15, 40, 30, 0.12);
  padding: 26px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.au__card:hover {
  box-shadow: 0 20px 40px -16px rgba(15, 40, 30, 0.22);
  transform: translateY(-4px);
  border-color: var(--color-green);
}

.au__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--color-green);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: transform 0.25s ease;
}

.au__card:hover .au__icon {
  transform: scale(1.08);
}

.au__card-text p {
  font-family: var(--font-heading);
  font-size: 16.5px;
  font-weight: 600;
  color: var(--color-dark);
  line-height: 1.4;
}

/* ============================================================
   KEY FEATURES
   ============================================================ */

.kf {
  background-color: #ffffff;
  padding: 20px 24px 70px;
}

.kf__container {
  max-width: var(--container-max);
  margin: 0 auto;
  border-top: 1px solid #ececec;
  padding-top: 50px;
}

.kf__heading {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--color-green);
  text-align: center;
  margin-bottom: 12px;
}

.kf__underline {
  display: block;
  width: 46px;
  height: 3px;
  background-color: var(--color-accent);
  margin: 0 auto 40px;
}

.kf__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.kf__card {
  background-color: #ffffff;
  border: 1px solid #ececec;
  border-radius: 12px;
  padding: 26px 18px;
  text-align: center;
  box-shadow: 0 4px 14px -10px rgba(15, 40, 30, 0.1);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.kf__card:hover {
  box-shadow: 0 16px 36px -20px rgba(15, 40, 30, 0.25);
  transform: translateY(-5px);
  border-color: var(--color-green);
}

.kf__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #eaf3ec;
  color: var(--color-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 16px;
  transition: background-color 0.25s ease, transform 0.25s ease, color 0.25s ease;
}

.kf__card:hover .kf__icon {
  background-color: var(--color-green);
  color: #ffffff;
  transform: scale(1.08);
}

.kf__title {
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--color-green);
  margin-bottom: 8px;
}

.kf__desc {
  font-family: var(--font-body);
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--color-gray);
}

/* ============================================================
   BENEFITS OF UCHCHI
   ============================================================ */

.bf {
  background-color: #ffffff;
  padding: 0 24px 80px;
}

.bf__container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.bf__card {
  background-color: var(--color-card-bg);
  border: 1px solid #eef1f0;
  border-radius: 18px;
  padding: 40px 44px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 50px;
  transition: box-shadow 0.25s ease;
}

.bf__card:hover {
  box-shadow: 0 16px 40px -22px rgba(15, 40, 30, 0.2);
}

.bf__heading {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-green);
  margin-bottom: 12px;
  white-space: nowrap;
}

.bf__underline {
  display: block;
  width: 40px;
  height: 3px;
  background-color: var(--color-accent);
}

.bf__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.bf__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px;
  border-radius: 10px;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.bf__item:hover {
  background-color: #ffffff;
  transform: translateY(-3px);
}

.bf__item i {
  flex-shrink: 0;
  font-size: 22px;
  color: var(--color-green);
  margin-top: 4px;
  transition: transform 0.25s ease;
}

.bf__item:hover i {
  transform: scale(1.12);
}

.bf__item-text h3 {
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--color-dark);
  line-height: 1.35;
  margin-bottom: 6px;
}

.bf__item-text p {
  font-family: var(--font-body);
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--color-gray);
}

/* ---- Responsive ---- */

@media (max-width: 1024px) {
  .kf__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .bf__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .au__container {
    grid-template-columns: 1fr;
  }
  .bf__card {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .bf__heading {
    white-space: normal;
  }
}

@media (max-width: 600px) {
  .kf__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bf__grid {
    grid-template-columns: 1fr;
  }
  .au__card {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .kf__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   HEADER + FOOTER (matching site home page)
   ============================================================ */

:root {
  --green-dark: #0E3D2C;
  --green-primary: #12523A;
  --gold: #D4AF37;
  --text-dark: #16241D;
  --text-muted: #7C8781;
  --border-light: #E7EAE8;
  --header-container-width: min(1600px, 94%);
}

html { scroll-behavior: smooth; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--header-container-width);
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-mark {
  height: 50px;
  width: auto;
  border-radius: 50%;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.3px;
  color: var(--text-dark);
}

.logo-subtitle {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 2.2px;
  color: var(--text-muted);
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.1px;
  color: var(--text-dark);
  position: relative;
  padding-bottom: 22px;
  transition: color 0.2s ease;
}

.nav-link:hover { color: var(--green-primary); }

.nav-link.active {
  color: var(--text-dark);
  font-weight: 600;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 18px;
  width: 100%;
  height: 2.5px;
  background: var(--green-primary);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: 0.25s ease;
}

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  background: var(--green-dark);
  overflow: hidden;
  padding-top: 20px;
}

.footer-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.208) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.5;
  pointer-events: none;
}

.footer-top {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 25px;
}

.logo-title-light { color: #ffffff; font-family: var(--font-heading); font-weight: 700; font-size: 1.05rem; letter-spacing: 0.3px; }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.footer-nav a {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s ease;
}
.footer-nav a:hover { color: #ffffff; }

.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.footer-social a:hover {
  background: #ffffff;
  color: var(--green-dark);
  border-color: #ffffff;
}

.footer-bottom {
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 16px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-legal-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s ease;
}

.footer-legal-links a:hover {
  color: #ffffff;
}

.footer-legal-dot {
  color: rgba(255,255,255,0.35);
  font-size: 0.7rem;
}

@media (max-width: 560px) {
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ---------- Header/Footer Responsive ---------- */
@media (max-width: 991px) {
  .main-nav {
    position: fixed;
    top: 88px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid var(--border-light);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .main-nav.open { max-height: 400px; }
  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 32px 20px;
  }
  .nav-link { padding: 12px 0; width: 100%; }
  .nav-link.active::after { display: none; }

  .nav-toggle { display: flex; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .footer-top { flex-direction: column; align-items: flex-start; }

  .header-inner { height: 74px; gap: 12px; }
  .main-nav { top: 74px; }
  .logo-mark { height: 40px; }
  .logo-title { font-size: 0.92rem; }
  .logo-subtitle { font-size: 0.56rem; letter-spacing: 1.6px; }
}

@media (max-width: 420px) {
  .logo-text { display: flex; }
  .logo-title { font-size: 0.72rem; letter-spacing: 0.1px; }
  .logo-subtitle { font-size: 0.46rem; letter-spacing: 1.2px; }
  .logo { gap: 8px; }
  .header-inner { justify-content: space-between; }
}


.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  font-size: 15px;   /* ← icon size க்காக இது add pannunga */
}