@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  --green-dark: #1a5632;
  --green-primary: #1e7a3a;
  --green-light: #2e9e4e;
  --green-pale: #e8f5ec;
  --gold: #d4a017;
  --gold-light: #f0d060;
  --white: #ffffff;
  --off-white: #f8faf9;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 14px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 { font-family: 'Outfit', sans-serif; line-height: 1.2; }

a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 20px; max-width: 1400px; margin: 0 auto;
}

.logo img { height: 55px; width: auto; }

.nav-menu { display: flex; align-items: center; gap: 4px; }

.nav-item { position: relative; }

.nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 10px 14px; font-size: 0.9rem; font-weight: 500;
  color: var(--gray-700); border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}
.nav-link:hover { color: var(--green-primary); background: var(--green-pale); }

.nav-link .arrow { font-size: 0.65rem; transition: transform 0.3s ease; }
.nav-item:hover .arrow { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: 100%; left: 0; min-width: 220px;
  background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all 0.3s ease;
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

.dropdown a {
  display: block; padding: 10px 16px; font-size: 0.88rem;
  color: var(--gray-600); border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}
.dropdown a:hover { background: var(--green-pale); color: var(--green-primary); }

.btn-apply-nav {
  display: inline-flex; align-items: center; padding: 10px 24px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  color: var(--white); font-size: 0.9rem; font-weight: 600;
  border-radius: 50px; border: none; cursor: pointer;
  transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(30,122,58,0.3);
}
.btn-apply-nav:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(30,122,58,0.4); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 5px; }
.hamburger span { width: 26px; height: 3px; background: var(--gray-700); border-radius: 3px; transition: all 0.3s ease; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('images/home.jpg') center/cover no-repeat;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  //background: linear-gradient(135deg, rgba(26,86,50,0.92) 0%, rgba(30,122,58,0.85) 50%, rgba(46,158,78,0.75) 100%);
}

.hero-content {
  position: relative; z-index: 2; max-width: 700px;
  padding: 80px 0; animation: fadeInUp 1s ease;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px; color: var(--gold-light);
  font-size: 0.85rem; font-weight: 500; margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero h1 {
  font-size: 3.5rem; font-weight: 900; color: var(--white);
  margin-bottom: 20px; letter-spacing: -1px;
}
.hero h1 span { color: var(--gold-light); }

.hero p {
  font-size: 1.15rem; color: rgba(255,255,255,0.9);
  margin-bottom: 36px; max-width: 580px; line-height: 1.8;
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 36px; background: var(--gold); color: var(--gray-900);
  font-size: 1rem; font-weight: 700; border-radius: 50px;
  border: none; cursor: pointer; transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(212,160,23,0.4);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(212,160,23,0.5); background: var(--gold-light); }

.btn-green {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 36px; background: var(--gold); color: var(--gray-900);
  font-size: 1rem; font-weight: 700; border-radius: 50px;
  border: none; cursor: pointer; transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(28,123,61,0.4);
}
.btn-green:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(28,123,61,0.5); background: var(--gold-light); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 36px; background: transparent;
  border: 2px solid rgba(255,255,255,0.5); color: var(--white);
  font-size: 1rem; font-weight: 600; border-radius: 50px;
  cursor: pointer; transition: all 0.3s ease;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); transform: translateY(-3px); }

.hero-stats {
  display: flex; gap: 40px; margin-top: 50px;
  padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.2);
}
.hero-stat h3 { font-size: 2rem; color: var(--gold-light); font-weight: 800; }
.hero-stat p { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-top: 4px; }

.hero-shape {
  position: absolute; right: -100px; bottom: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05);
}

/* ===== SECTIONS COMMON ===== */
.section { padding: 50px 0; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 18px; background: var(--green-pale);
  color: var(--green-primary); font-size: 0.82rem;
  font-weight: 600; border-radius: 50px; 
  text-transform: uppercase; letter-spacing: 1px;
}
.section-title {
  font-size: 2.5rem; font-weight: 800; color: var(--gray-900);
  margin-bottom: 16px; letter-spacing: -0.5px;
}
.section-subtitle {
  font-size: 1.1rem; color: var(--gray-500); max-width: 600px;
  line-height: 1.8;
}

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 20px; }
.about-img-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.about-img-wrap img { width: 100%; height: 450px; object-fit: cover; border-radius: var(--radius-lg); }
.about-img-badge {
  position: absolute; bottom: 20px; left: 20px; padding: 16px 24px;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(10px);
  border-radius: var(--radius-md); box-shadow: var(--shadow-md);
}
.about-img-badge h4 { font-size: 1.5rem; color: var(--green-primary); font-weight: 800; }
.about-img-badge p { font-size: 0.82rem; color: var(--gray-500); }

.about-text h3 { font-size: 2rem; color: var(--gray-900); margin-bottom: 20px; font-weight: 800; }
.about-text p { color: var(--gray-600); margin-bottom: 16px; line-height: 1.8; }
.about-text .highlight {
  padding: 20px 24px; background: var(--green-pale); border-left: 4px solid var(--green-primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 24px 0;
  font-weight: 500; color: var(--green-dark);
}

/* ===== WHY MATTERS ===== */
.why-matters { background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 100%); color: var(--white); position: relative; overflow: hidden; }
.why-matters .section-tag { background: rgba(255,255,255,0.15); color: var(--gold-light); }
.why-matters .section-title { color: var(--white); }
.why-matters .section-subtitle { color: rgba(255,255,255,0.8); }

.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 20px; }
.why-img { border-radius: var(--radius-lg); overflow: hidden; }
.why-img img { width: 100%; height: 400px; object-fit: cover; border-radius: var(--radius-lg); }
.why-text p { color: rgba(255,255,255,0.85); margin-bottom: 16px; font-size: 1.05rem; line-height: 1.8; }
.why-text .quote {
  padding: 24px; background: rgba(255,255,255,0.1); border-radius: var(--radius-md);
  border-left: 4px solid var(--gold); margin-top: 24px;
  font-size: 1.15rem; font-style: italic; color: var(--gold-light);
}

/* ===== WHAT WE PROVIDE ===== */
.provide-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px;
}
.provide-card {
  padding: 36px 28px; background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200); transition: all 0.4s ease;
  position: relative; overflow: hidden;
}
.provide-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--green-primary), var(--gold));
  transform: scaleX(0); transition: transform 0.4s ease;
}
.provide-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.provide-card:hover::before { transform: scaleX(1); }

.provide-icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  background: var(--green-pale); display: flex; align-items: center;
  justify-content: center; font-size: 1.5rem; margin-bottom: 20px;
  color: var(--green-primary);
}
.provide-card h4 { font-size: 1.15rem; color: var(--gray-900); margin-bottom: 10px; font-weight: 700; }
.provide-card p { font-size: 0.92rem; color: var(--gray-500); line-height: 1.7; }

/* ===== TRAINING PROGRAMS ===== */
.training-bg { background: var(--gray-50); }
.training-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 50px; }
.training-img img { width: 100%; height: 600px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.training-list { display: flex; flex-direction: column; gap: 16px; }
.training-item {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 24px; background: var(--white);
  border-radius: var(--radius-md); border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}
.training-item:hover { border-color: var(--green-primary); box-shadow: var(--shadow-sm); transform: translateX(8px); }
.training-check {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--green-pale); display: flex;
  align-items: center; justify-content: center;
  color: var(--green-primary); font-weight: 700; flex-shrink: 0;
}
.training-item span { font-weight: 500; color: var(--gray-700); }

/* ===== PROGRAM JOURNEY ===== */
.journey-track { display: flex; justify-content: space-between; align-items: flex-start; margin-top: 60px; position: relative; }
.journey-track::before {
  content: ''; position: absolute; top: 35px; left: 50px; right: 50px; height: 3px;
  background: linear-gradient(90deg, var(--green-primary), var(--gold));
}
.journey-step { text-align: center; position: relative; z-index: 2; flex: 1; }
.journey-num {
  width: 70px; height: 70px; border-radius: 50%; margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 800; border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
}
.journey-step h4 { font-size: 0.95rem; color: var(--gray-800); font-weight: 700; margin-bottom: 6px; }
.journey-step p { font-size: 0.82rem; color: var(--gray-500); max-width: 130px; margin: 0 auto; }

/* ===== IMPACT NUMBERS ===== */
.impact {
  background: linear-gradient(135deg, var(--green-dark), var(--green-primary));
  color: var(--white); text-align: center;
}
.impact .section-tag { background: rgba(255,255,255,0.15); color: var(--gold-light); }
.impact .section-title { color: var(--white); }
.impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 50px; }
.impact-card {
  padding: 40px 20px; background: rgba(255,255,255,0.08);
  border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,0.12);
  transition: all 0.3s ease;
}
.impact-card:hover { background: rgba(255,255,255,0.14); transform: translateY(-5px); }
.impact-card h3 { font-size: 2.8rem; font-weight: 900; color: var(--gold-light); margin-bottom: 8px; }
.impact-card p { font-size: 0.95rem; color: rgba(255,255,255,0.8); }

/* ===== SUCCESS STORIES ===== */
.stories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
.story-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--gray-200);
  transition: all 0.4s ease;
}
.story-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.story-card img { width: 100%; height: 240px; object-fit: cover; }
.story-body { padding: 24px; }
.story-body h4 { font-size: 1.15rem; color: var(--gray-900); margin-bottom: 4px; }
.story-loc { font-size: 0.82rem; color: var(--green-primary); font-weight: 500; margin-bottom: 12px; }
.story-body p { font-size: 0.92rem; color: var(--gray-500); line-height: 1.7; margin-bottom: 16px; }
.story-link { color: var(--green-primary); font-weight: 600; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 6px; }
.story-link:hover { gap: 10px; }

/* ===== SPONSORS ===== */
.sponsors-bg { background: var(--gray-50); text-align: center; }
.sponsor-logos {
  display: flex; justify-content: center; align-items: center;
  gap: 50px; flex-wrap: wrap; margin-top: 50px;
}
.sponsor-logo {
  width: 160px; height: 130px; background: var(--white);
  border-radius: var(--radius-md); display: flex;
  align-items: center; justify-content: center;
  border: 1px solid var(--gray-200); padding: 16px;
  transition: all 0.3s ease; color: var(--gray-400);
  font-weight: 700; font-size: 0.85rem;
}
.sponsor-logo:hover { box-shadow: var(--shadow-md); border-color: var(--green-primary); }
.sponsors-cta { margin-top: 50px; }

/* ===== NEWS ===== */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
.news-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--gray-200);
  transition: all 0.4s ease;
}
.news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.news-card img { width: 100%; height: 200px; object-fit: cover; }
.news-body { padding: 24px; }
.news-date { font-size: 0.8rem; color: var(--green-primary); font-weight: 600; margin-bottom: 8px; }
.news-body h4 { font-size: 1.05rem; color: var(--gray-900); margin-bottom: 10px; font-weight: 700; line-height: 1.4; }
.news-body p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.7; }

/* ===== FINAL CTA ===== */
.final-cta {
  background: linear-gradient(135deg, var(--green-dark), var(--green-primary));
  text-align: center; padding: 100px 0; position: relative; overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px; border-radius: 50%;
  background: rgba(255,255,255,0.03);
}
.final-cta h2 { font-size: 2.8rem; color: var(--white); margin-bottom: 16px; font-weight: 900; }
.final-cta p { font-size: 1.15rem; color: rgba(255,255,255,0.85); margin-bottom: 36px; max-width: 550px; margin-left: auto; margin-right: auto; }

/* ===== FOOTER ===== */
.footer { background: var(--gray-900); color: var(--gray-300); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-brand img {    margin-bottom: 16px; width: 45%; border-radius: 10px; }
.footer-imgss a img {
    width: 85%;
    height: auto;
    border-radius: 10px;
}
.footer-imgss {
    display: flex;
    gap: 20px;
}
.footer-brand p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.8; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.08); display: flex;
  align-items: center; justify-content: center;
  color: var(--gray-400); transition: all 0.3s ease;
}
.footer-social a:hover { background: var(--green-primary); color: var(--white); }

.footer h4 { color: var(--white); font-size: 1rem; margin-bottom: 20px; font-weight: 700; }
.footer-links a { display: block; padding: 6px 0; color: var(--gray-500); font-size: 0.9rem; transition: all 0.3s ease; }
.footer-links a:hover { color: var(--green-light); padding-left: 8px; }

.footer-contact p { display: flex; align-items: center; gap: 10px; color: var(--gray-500); font-size: 0.9rem; margin-bottom: 12px; }

.footer-bottom {
  margin-top: 50px; padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center; font-size: 0.85rem; color: var(--gray-500);
}

/* ===== INNER PAGE GLOBAL ELEMENTS ===== */
.page-header {
  position: relative;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 100%);
  color: var(--white);
  padding: 130px 0 70px;
  overflow: hidden;
  margin-top: 75px;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.page-header h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.page-header p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 650px;
  line-height: 1.6;
}
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
  font-weight: 500;
}
.breadcrumbs a {
  color: rgba(255,255,255,0.8);
}
.breadcrumbs a:hover {
  color: var(--gold-light);
}
.breadcrumbs span {
  color: var(--gold-light);
}

/* ===== FAQ ACCORDION ===== */
.faq-container {
  max-width: 800px;
  margin: 30px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item:hover {
  border-color: var(--green-primary);
  box-shadow: var(--shadow-md);
}
.faq-header {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--gray-900);
  font-size: 1.05rem;
  user-select: none;
}
.faq-icon {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
  color: var(--green-primary);
}
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  padding: 0 24px;
  color: #000000;
  font-size: 0.95rem;
  line-height: 1.7;
  background: var(--off-white);
  text-align: start;
}
.faq-item.active .faq-content {
  padding: 24px;
    max-height: none !important;
}
.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* ===== FORM STYLING ===== */
:root {
  --white: #ffffff;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --green-primary: #15803d;
  --green-pale: #dcfce7;
  --gold: #eab308;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

/* ==================== BASE STYLES ==================== */
.section.training-bg {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f8fafc, #e0f2e9);
}

.container { 
  max-width: 1200px; 
  margin: 0 auto; 
  width: 100%;
  padding: 0 15px;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  padding: 40px 30px;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  width: 100%;
}

.form-title-block { 
  text-align: center; 
  margin-bottom: 35px; 
}

.form-title-block h3 { 
  font-size: 1.75rem; 
  color: var(--gray-900); 
}

h3 {
  color: var(--green-primary);
  margin: 32px 0 16px;
  border-bottom: 2px solid var(--gray-200);
  padding-bottom: 10px;
  font-size: 1.4rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.form-group { 
  margin-bottom: 20px; 
}

.form-group.full-width { 
  grid-column: span 2; 
}

.form-label {
  display: block;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 8px;
  font-size: 0.92rem;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: 1rem;
}

/* ==================== CHECKBOX GROUP ==================== */
.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin: 15px 0;
}

.checkbox-group label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  padding: 8px 10px;
  border-radius: 6px;
  transition: background 0.2s;
  cursor: pointer;
}

.checkbox-group label:hover {
  background: var(--green-pale);
}

.checkbox-group input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--green-primary);
}

/* ==================== UPLOAD ZONES ==================== */
.upload-zone {
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius-md);
  padding: 32px 20px;
  text-align: center;
  background: var(--gray-50);
  cursor: pointer;
  transition: all 0.3s;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.upload-zone:hover { 
  border-color: var(--green-primary); 
  background: var(--green-pale); 
}

.upload-zone input[type="file"] {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

/* Submit Button */
.btn-form-submit {
  background: var(--gold);
  color: var(--gray-900);
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  display: block;
  margin: 35px auto 0;
  width: 100%;
  max-width: 340px;
}

/* Success Message */
.form-success-message {
  text-align: center;
  padding: 60px 20px;
  display: none;
}

.success-icon-wrap {
  width: 90px; 
  height: 90px;
  background: #dcfce7;
  color: #15803d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  margin: 0 auto 25px;
}

/* ==================== RESPONSIVE FIXES ==================== */
@media (max-width: 768px) {
  .form-card {
    padding: 25px 18px;
  }

  .section.training-bg {
    padding: 40px 10px;
  }

  .form-grid {
    grid-template-columns: 1fr !important;
    gap: 18px;
  }

  .form-group.full-width {
    grid-column: span 1;
  }

  /* Checkbox - Force vertical on mobile */
  .checkbox-group {
    grid-template-columns: 1fr !important;
    gap: 10px;
  }

  .checkbox-group label {
    padding: 12px 14px;
    font-size: 1rem;
  }

  /* Upload Zones - Bigger touch area */
  .upload-zone {
    padding: 40px 20px;
    min-height: 140px;
    font-size: 1rem;
  }

  .btn-form-submit {
    max-width: 100%;
    padding: 16px 24px;
  }
}

@media (max-width: 480px) {
  .form-card {
    padding: 20px 15px;
  }

  .checkbox-group label {
    padding: 14px 12px;
  }

  .upload-zone {
    padding: 45px 15px;
  }

  .form-control {
    padding: 12px 14px;
  }
}
/* File Upload Zone */
.upload-zone {
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  background: var(--gray-50);
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}
.upload-zone:hover {
  border-color: var(--green-primary);
  background: var(--green-pale);
}
.upload-zone-icon {
  font-size: 1.8rem;
  color: var(--green-primary);
  margin-bottom: 10px;
}
.upload-zone p {
  font-size: 0.88rem;
  color: var(--gray-600);
  margin-bottom: 4px;
}
.upload-zone span {
  font-size: 0.75rem;
  color: var(--gray-400);
}
.file-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.uploaded-file-info {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--green-dark);
  font-weight: 500;
}
.uploaded-file-info i {
  font-size: 1rem;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 15px;
}
.checkbox-group input {
  margin-top: 4px;
  width: 16px;
  height: 16px;
  accent-color: var(--green-primary);
  cursor: pointer;
}
.checkbox-group label {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.5;
  cursor: pointer;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 35px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
}
.btn-form {
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-form-prev {
  background: var(--gray-100);
  color: var(--gray-700);
  border: 1px solid var(--gray-300);
}
.btn-form-prev:hover {
  background: var(--gray-200);
  transform: translateY(-2px);
}
.btn-form-next {
  background: var(--green-primary);
  color: var(--white);
}
.btn-form-next:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(30,122,58,0.25);
}
.btn-form-submit {
  background: var(--gold);
  color: var(--gray-900);
  font-weight: 700;
}
.btn-form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212,160,23,0.3);
}

.form-success-message {
  text-align: center;
  padding: 40px 20px;
  display: none;
  animation: scaleUp 0.4s ease;
}
.success-icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 20px;
}
.form-success-message h3 {
  font-size: 1.8rem;
  color: var(--gray-900);
  margin-bottom: 12px;
}
.form-success-message p {
  color: var(--gray-600);
  max-width: 500px;
  margin: 0 auto 24px;
  line-height: 1.7;
}

/* ===== GALLERY STYLING ===== */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 20px;
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  cursor: pointer;
  transition: all 0.3s ease;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--green-primary);
  color: var(--white);
  border-color: var(--green-primary);
  box-shadow: 0 4px 12px rgba(30,122,58,0.2);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all 0.4s ease;
  position: relative;
}
.gallery-item.hidden {
  display: none;
}
.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-info {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,86,50,0.92) 0%, rgba(26,86,50,0.45) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: all 0.3s ease;
}
.gallery-item:hover .gallery-info {
  opacity: 1;
}
.gallery-info span {
  font-size: 0.78rem;
  color: var(--gold-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.gallery-info h4 {
  font-size: 1.15rem;
  color: var(--white);
  font-weight: 700;
}

/* ===== CONTACT US SPLIT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-info-card {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 100%);
  color: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.contact-info-card h3 {
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 24px;
}
.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 30px;
}
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail-text h4 {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 4px;
}
.contact-detail-text p {
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 500;
}
.contact-map {
  margin-top: 30px;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 220px;
  border: 1px solid rgba(255,255,255,0.1);
}

/* ===== ANIMATIONS & KEYFRAMES ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scaleUp {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { opacity: 0; transform: translateY(30px); transition: all 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero h1 { font-size: 2.8rem; }
  .provide-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .stories-grid, .news-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-menu { display: none; position: fixed; top: 75px; left: 0; right: 0; bottom: 0; background: var(--white); flex-direction: column; padding: 20px; gap: 0; overflow-y: auto; }
  .nav-menu.active { display: flex; }
  .hamburger { display: flex; }
  .dropdown { position: static; box-shadow: none; opacity: 1; visibility: visible; transform: none; padding-left: 16px; display: none; }
  .nav-item:hover .dropdown { display: block; }
  .btn-apply-nav { width: 100%; justify-content: center; margin-top: 12px; }

  .hero { min-height: auto; padding-bottom: 150px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .about-grid, .why-grid, .training-grid { grid-template-columns: 1fr; gap: 30px; }
  .provide-grid { grid-template-columns: 1fr; }
  .journey-track { flex-direction: column; align-items: center; gap: 30px; }
  .journey-track::before { display: none; }
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .stories-grid, .news-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .section-title { font-size: 2rem; }
  .sponsor-logos { gap: 20px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .impact-grid { grid-template-columns: 1fr; }
  .impact-card h3 { font-size: 2.2rem; }
}



/* ===== PROGRAM INTRO SECTION ===== */
    .program-intro { background: var(--off-white); padding: 100px 0; }
    .program-intro-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 60px; align-items: center; margin-top: 40px;
    }
    .program-intro-img {
      border-radius: var(--radius-lg); overflow: hidden;
      box-shadow: var(--shadow-lg);
    }
    .program-intro-img img {
      width: 100%; height: 420px; object-fit: cover;
    }
    .program-intro-text p {
      color: var(--gray-600); line-height: 1.85; font-size: 1.05rem; margin-bottom: 16px;
    }
    .program-intro-text .highlight {
      padding: 20px 24px; background: var(--green-pale);
      border-left: 4px solid var(--green-primary);
      border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
      margin-top: 24px; font-weight: 500;
      color: var(--green-dark); font-size: 0.97rem;
    }

    /* ===== JOB PLACEMENT SECTION ===== */
    .job-placement-section {
      padding: 100px 0;
      background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 100%);
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .job-placement-section::before {
      content: '';
      position: absolute;
      bottom: -100px; left: -100px;
      width: 400px; height: 400px;
      border-radius: 50%;
      background: rgba(255,255,255,0.03);
    }
    .job-placement-section .section-tag {
      background: rgba(255,255,255,0.15);
      color: var(--gold-light);
    }
    .job-placement-section h2 {
      font-size: 2.4rem; font-weight: 800;
      color: var(--white); margin-bottom: 50px;
      position: relative; z-index: 2;
    }
    .placement-big-number {
      position: relative; z-index: 2;
      display: inline-flex;
      flex-direction: column;
      align-items: center;
    }
    .placement-number-badge {
      background: rgba(255,255,255,0.1);
      border: 2px solid rgba(255,255,255,0.2);
      border-radius: var(--radius-xl);
      padding: 50px 70px;
      backdrop-filter: blur(10px);
      display: inline-block;
      position: relative;
    }
    .placement-number {
      font-size: 7rem;
      font-weight: 900;
      color: var(--gold-light);
      line-height: 1;
      letter-spacing: -4px;
      display: block;
    }
    .placement-percent {
      font-size: 3.5rem;
      color: var(--gold-light);
      font-weight: 900;
      vertical-align: super;
      line-height: 1;
    }
    .placement-label {
      font-size: 1.3rem;
      color: var(--white);
      font-weight: 700;
      margin-top: 12px;
      display: block;
    }
    .placement-sublabel {
      font-size: 0.95rem;
      color: rgba(255,255,255,0.75);
      margin-top: 8px;
      display: block;
    }

    /* ===== HIGHLIGHT / SKILLS TOMORROW SECTION ===== */
    .highlight-section { padding: 50px 0; background: var(--white); }
    .highlight-cards-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px; margin-top: 50px;
    }
    .highlight-card {
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: var(--radius-lg);
      padding: 40px 32px;
      text-align: center;
      transition: all 0.4s ease;
      position: relative; overflow: hidden;
    }
    .highlight-card::after {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
      background: linear-gradient(90deg, var(--green-primary), var(--gold));
      transform: scaleX(0); transition: transform 0.4s ease;
    }
    .highlight-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: transparent; }
    .highlight-card:hover::after { transform: scaleX(1); }
    .highlight-card-icon {
      width: 72px; height: 72px;
      border-radius: 50%;
      background: var(--green-pale);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.8rem; color: var(--green-primary);
      margin: 0 auto 24px;
      transition: all 0.3s ease;
    }
    .highlight-card:hover .highlight-card-icon {
      background: var(--green-primary);
      color: var(--white);
    }
    .highlight-card h4 {
      font-size: 1.2rem; font-weight: 800;
      color: var(--gray-900); margin-bottom: 14px;
    }
    .highlight-card p {
      font-size: 0.93rem; color: var(--gray-500); line-height: 1.75;
    }
    @media (max-width: 768px) {
        .highlight-cards-grid {
    grid-template-columns: repeat(1, 1fr) !important;
}
    }

    /* ===== PROGRAMS OFFERED ===== */
    .programs-section { padding: 100px 0; background: var(--gray-50); }
    .courses-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px; margin-top: 50px;
    }
    .course-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid var(--gray-200);
      transition: all 0.4s ease;
    }
    .course-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
    .course-card-top {
      padding: 32px 28px 24px;
      background: linear-gradient(135deg, var(--green-pale) 0%, #f0fdf4 100%);
      position: relative;
    }
    .course-icon-wrap {
      width: 64px; height: 64px;
      background: var(--green-primary);
      border-radius: var(--radius-md);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem; color: var(--white);
      margin-bottom: 16px;
      box-shadow: 0 4px 14px rgba(30,122,58,0.3);
    }
    .course-card-top h4 {
      font-size: 1.2rem; font-weight: 800;
      color: var(--gray-900); margin-bottom: 0;
    }
    .course-card-body {
      padding: 20px 28px 28px;
    }
    .course-card-body p {
      font-size: 0.92rem; color: var(--gray-500); line-height: 1.75;
      margin-bottom: 16px;
    }
    .course-tag {
      display: inline-flex; align-items: center; gap: 5px;
      padding: 5px 14px;
      background: var(--green-pale);
      color: var(--green-primary);
      font-size: 0.78rem; font-weight: 600;
      border-radius: 50px;
    }
    
     @media (max-width: 768px) {
        .courses-grid {
    grid-template-columns: repeat(1, 1fr) !important;
}
    }
    /* Extra Form Responsiveness */
.form-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

@media (max-width: 480px) {
  .form-card {
    padding: 25px 18px;
  }
  .form-grid {
    gap: 16px;
  }
  .upload-zone {
    padding: 40px 15px;
  }
  #age_box {
    min-height: 50px;
  }
}
/* Improved Checkbox Responsiveness */
.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  margin: 15px 0;
}

.checkbox-group label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  padding: 10px 12px;
  border-radius: 6px;
  transition: background 0.2s;
  cursor: pointer;
  word-break: break-word;
  hyphens: auto;
}

@media (max-width: 768px) {
  .checkbox-group {
    grid-template-columns: 1fr !important;
    gap: 10px;
  }
  
  .checkbox-group label {
    padding: 12px 14px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .checkbox-group label {
    padding: 14px 12px;
    font-size: 0.97rem;
  }
}

/* ===== IT CERTIFICATES RESPONSIVE VERTICAL LAYOUT ===== */
#certTable {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0 20px;
}

#certTable th,
#certTable td {
    padding: 12px 10px;
    border: 1px solid var(--gray-200);
    text-align: left;
}

#certTable th {
    background: #f1f5f9;
    font-weight: 600;
    color: var(--gray-800);
}

/* Desktop: Keep as Table */
@media (min-width: 769px) {
    .cert-table-wrapper {
        overflow-x: auto;
    }
}

/* Mobile: Convert to Vertical Cards */
@media (max-width: 768px) {
    #certTable,
    #certTable thead,
    #certTable tbody,
    #certTable th,
    #certTable td,
    #certTable tr {
        display: block;
    }

    #certTable thead {
        display: none;
    }

    #certTable tr {
        margin-bottom: 20px;
        background: var(--white);
        border: 1px solid var(--gray-200);
        border-radius: var(--radius-md);
        padding: 15px;
        box-shadow: var(--shadow-sm);
    }

    #certTable td {
        border: none;
        padding: 8px 0;
        position: relative;
        padding-left: 45%;
    }

    #certTable td:before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        width: 40%;
        font-weight: 600;
        color: var(--green-primary);
        font-size: 0.9rem;
    }

    #certTable input.form-control {
        width: 100%;
        padding: 10px 12px;
    }
}
.icon-list {
    list-style: none;
    padding: 0;
}

.icon-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
}

.icon-list i {
    color: #28a745;
    margin-right: 10px;
}
.hero-btns.abt a.btn-primary {
    padding: 10px 36px !important;
}

.servpoints {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

@media (max-width: 768px) {
    .servpoints {
    flex-direction: column;
    }
}
.points {
    padding: 10px 0px;
        width: 50%;
}
span.section-tag.serv {
    margin-bottom: 10px;
}