/* ===========================
   IT Training Website - Main CSS
   =========================== */

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

:root {
  --navy: #0d1b6e;
  --blue: #1565c0;
  --red: #e53935;
  --gold: #ffd54f;
  --green: #25d366;
  --white: #ffffff;
  --bg: #f0f4ff;
  --text: #1a1a2e;
  --muted: #666;
  --border: #e8eaf6;
  --font-head: 'Nunito', sans-serif;
  --font-body: 'Roboto', sans-serif;
}

body { font-family: var(--font-body); color: var(--text); background: var(--bg); }

a { text-decoration: none; }

/* ── TOP BAR ── */
.topbar {
  background: var(--navy);
  padding: 9px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar span {
  font-size: 12px;
  color: #c5cae9;
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar-wa {
  background: var(--green);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-head);
  padding: 6px 14px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(120deg, #0d1b6e 0%, #1a237e 50%, #1565c0 100%);
  padding: 36px 24px 32px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 10px;
  font-weight: 800;
  font-family: var(--font-head);
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 10px;
}
.hero h1 .hl { color: var(--gold); }
.hero-sub {
  font-size: 13px;
  color: #c5cae9;
  line-height: 1.7;
  margin-bottom: 18px;
  font-weight: 300;
}
.check-list { list-style: none; margin-bottom: 20px; }
.check-list li {
  font-size: 13px;
  color: #e8eaf6;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
}
.check-list li i { color: #69f0ae; font-size: 16px; flex-shrink: 0; }
.stats-mini { display: flex; gap: 24px; }
.sm { text-align: center; }
.sm .n { font-family: var(--font-head); font-size: 22px; font-weight: 900; color: var(--gold); }
.sm .l { font-size: 10px; color: #c5cae9; margin-top: 2px; }

/* ── LEAD FORM ── */
.form-box {
  background: var(--white);
  border-radius: 14px;
  padding: 22px 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
}
.form-box h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.form-box > p {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 14px;
}
.urgency-pill {
  background: #fff3e0;
  border: 1px solid #ffc107;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 11px;
  color: #e65100;
  font-weight: 700;
  font-family: var(--font-head);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.form-box input,
.form-box select {
  width: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13px;
  font-family: var(--font-body);
  margin-bottom: 10px;
  color: var(--text);
  background: #fafafa;
  outline: none;
  transition: border-color 0.2s;
}
.form-box input:focus,
.form-box select:focus { border-color: var(--navy); }
.sbtn {
  width: 100%;
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 13px;
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--font-head);
  font-weight: 900;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.sbtn:hover { background: #c62828; }
.sbtn:active { transform: scale(0.98); }
.fnote { font-size: 10px; color: #999; text-align: center; margin-top: 8px; }

/* ── SECTIONS COMMON ── */
.sec-hd { text-align: center; margin-bottom: 28px; }
.sec-hd h2 {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 6px;
}
.sec-hd p { font-size: 13px; color: var(--muted); }
.sec-hd .bar {
  width: 48px; height: 3px;
  background: var(--red);
  border-radius: 2px;
  margin: 10px auto 0;
}

/* ── COURSES ── */
.courses-sec {
  padding: 48px 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.course-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.cc {
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cc:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(13,27,110,0.12); }
.cc-top { padding: 18px 16px; border-bottom: 1px solid #f0f4ff; }
.cc-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  font-family: var(--font-head);
  padding: 3px 9px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.badge-green { background: #e8f5e9; color: #2e7d32; }
.badge-orange { background: #fff3e0; color: #e65100; }
.badge-blue { background: #e3f2fd; color: #0d47a1; }
.cc h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 7px;
}
.dur { font-size: 11px; color: #888; display: flex; align-items: center; gap: 4px; }
.cc-body { padding: 14px 16px; }
.feat-list { list-style: none; }
.feat-list li {
  font-size: 12px;
  color: #555;
  display: flex;
  gap: 7px;
  align-items: flex-start;
  padding: 4px 0;
  line-height: 1.4;
}
.feat-list li i { color: var(--blue); font-size: 13px; margin-top: 1px; flex-shrink: 0; }
.cc-footer {
  padding: 12px 16px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f0f4ff;
}
.fee-tag {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
}
.enrol-btn {
  background: var(--navy);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 11px;
  font-family: var(--font-head);
  font-weight: 700;
  transition: background 0.2s;
}
.enrol-btn:hover { background: var(--blue); }

/* ── PAY AFTER PLACEMENT ── */
.pay-band {
  background: linear-gradient(120deg, #1b5e20, #2e7d32);
  padding: 40px 24px;
  text-align: center;
}
.pay-band h2 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
}
.pay-band > p { font-size: 13px; color: #c8e6c9; margin-bottom: 24px; font-weight: 300; }
.pay-cards {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
}
.pay-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 18px 20px;
  text-align: center;
  min-width: 160px;
}
.pay-card i { font-size: 26px; color: #69f0ae; margin-bottom: 8px; display: block; }
.pay-card h4 { font-family: var(--font-head); font-size: 13px; font-weight: 800; color: var(--white); margin-bottom: 4px; }
.pay-card p { font-size: 11px; color: #c8e6c9; }

/* ── WHY US ── */
.why-sec { background: var(--white); padding: 48px 24px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  max-width: 1000px;
  margin: 0 auto;
}
.wc {
  background: #f0f4ff;
  border-radius: 12px;
  padding: 18px 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.wc-ic {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wc-ic i { font-size: 18px; color: var(--gold); }
.wc h4 { font-family: var(--font-head); font-size: 13px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.wc p { font-size: 11px; color: var(--muted); line-height: 1.5; }

/* ── STATS ── */
.stats-band { background: var(--navy); padding: 36px 24px; }
.stats-inner {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}
.si { text-align: center; }
.si .sn { font-family: var(--font-head); font-size: 32px; font-weight: 900; color: var(--gold); }
.si .sl { font-size: 11px; color: #c5cae9; margin-top: 4px; }

/* ── TESTIMONIALS ── */
.testi-sec { padding: 48px 24px; max-width: 1000px; margin: 0 auto; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}
.tc {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 18px;
}
.stars { color: #ffc107; font-size: 13px; letter-spacing: 2px; margin-bottom: 10px; }
.quote { font-size: 12px; color: #555; line-height: 1.7; margin-bottom: 14px; font-weight: 300; }
.tp { display: flex; align-items: center; gap: 10px; }
.av {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #e3f2fd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: #0d47a1;
  flex-shrink: 0;
}
.tn { font-size: 12px; font-weight: 600; color: var(--text); }
.tr { font-size: 10px; color: #999; }

/* ── WHATSAPP CTA ── */
.cta-wa { background: #25d366; padding: 36px 24px; text-align: center; }
.cta-wa h2 { font-family: var(--font-head); font-size: 22px; font-weight: 900; color: var(--white); margin-bottom: 8px; }
.cta-wa > p { font-size: 13px; color: rgba(255,255,255,0.85); margin-bottom: 18px; }
.wa-btn {
  background: var(--white);
  color: #075e54;
  padding: 13px 30px;
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--font-head);
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s;
}
.wa-btn:hover { transform: scale(1.03); }
.wa-btn i { font-size: 20px; color: #25d366; }

/* ── CONTACT BAR ── */
.contact-bar { background: #1a1a2e; padding: 18px 24px; text-align: center; }
.contact-bar .ph {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 1px;
}
.contact-bar p { font-size: 12px; color: #9fa8da; margin-top: 4px; }

/* ── FOOTER ── */
.footer {
  background: #111;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer p { font-size: 11px; color: #666; }
.footer a { color: #aaa; }
.footer a:hover { color: var(--white); }
