/* =============================================
   IITS DigiPro Academy — style.css
   Initiative IT Solutions, Virar West
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Syne:wght@400;600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── BRAND COLORS (from IITS Logo) ── */
:root {
  --red:       #c0392b;
  --red-light: #e74c3c;
  --navy:      #1b2a4a;
  --navy-light:#2e4a82;
  --gold:      #e8a020;
  --gold-light:#f5c842;
  --teal:      #006d5b;
  --teal-light:#00a884;

  --white:     #ffffff;
  --off-white: #f8f9fc;
  --light-gray:#f0f2f8;
  --border:    #e2e6f0;
  --text-dark: #0d1220;
  --text-mid:  #3a4460;
  --text-soft: #6a7590;
  --shadow:    rgba(27, 42, 74, 0.10);
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--text-dark);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── STRIPE BAR (logo colors) ── */
.stripe-bar {
  display: flex;
  height: 5px;
  width: 100%;
}
.stripe-bar .s1 { flex: 1; background: var(--red); }
.stripe-bar .s2 { flex: 1; background: var(--navy); }
.stripe-bar .s3 { flex: 1; background: var(--gold); }
.stripe-bar .s4 { flex: 1; background: var(--teal); }

/* =============================================
   NAVBAR
   ============================================= */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px var(--shadow);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-stripes {
  display: flex;
  gap: 3px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 16px var(--shadow);
  flex-shrink: 0;
}
.logo-stripes span { flex: 1; }
.ls1 { background: var(--red); }
.ls2 { background: var(--navy); }
.ls3 { background: var(--gold); }
.ls4 { background: var(--teal); }

/* If using image logo */
.logo-img { height: 44px; width: auto; }

.nav-brand-name {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy);
  line-height: 1.2;
}
.nav-brand-name span { color: var(--red); }
.nav-brand-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  color: var(--text-soft);
  display: block;
  margin-top: 1px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.nav-links a {
  font-family: 'Syne', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-mid);
  padding: 8px 14px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { background: var(--light-gray); color: var(--navy); }
.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 16px rgba(192, 57, 43, 0.3);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s !important;
}
.nav-cta:hover {
  background: var(--red-light) !important;
  box-shadow: 0 8px 24px rgba(192, 57, 43, 0.4) !important;
  transform: translateY(-1px);
}

/* ── Mobile Nav Toggle ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0d1a36 100%);
  min-height: calc(100vh - 75px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* grid pattern overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

/* color orb accents */
.hero::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,160,32,0.12), transparent 65%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.hero-left {
  padding: 5rem 3rem 5rem 5rem;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 7px 18px;
  border-radius: 40px;
  margin-bottom: 2rem;
}
.hero-badge .pill {
  background: var(--red);
  color: white;
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}
.hero-badge span:last-child {
  font-family: 'Syne', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 6vw, 6rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}
.hero-title .t-white { color: var(--white); display: block; }
.hero-title .t-gold  {
  display: block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-title .t-small {
  display: block;
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  color: var(--teal-light);
  letter-spacing: 0.06em;
  margin-top: 0.3rem;
}
.hero-desc {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 2rem;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 2.5rem;
}
.hero-tag {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75);
  font-family: 'Syne', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 6px;
  letter-spacing: 0.04em;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── BUTTONS ── */
.btn {
  font-family: 'Syne', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn-red   { background: var(--red);        color: white; box-shadow: 0 6px 22px rgba(192,57,43,0.35); }
.btn-red:hover   { background: var(--red-light);  box-shadow: 0 10px 30px rgba(192,57,43,0.5); }
.btn-teal  { background: var(--teal);       color: white; box-shadow: 0 6px 22px rgba(0,109,91,0.35); }
.btn-teal:hover  { background: var(--teal-light); box-shadow: 0 10px 30px rgba(0,168,132,0.5); }
.btn-navy  { background: var(--navy);       color: white; box-shadow: 0 6px 22px rgba(27,42,74,0.35); }
.btn-navy:hover  { background: var(--navy-light); box-shadow: 0 10px 30px rgba(27,42,74,0.5); }
.btn-gold  { background: var(--gold);       color: var(--navy); box-shadow: 0 6px 22px rgba(232,160,32,0.35); }
.btn-gold:hover  { background: var(--gold-light); box-shadow: 0 10px 30px rgba(232,160,32,0.5); }
.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.25);
  box-shadow: none;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.08);
  border-color: white;
}

/* ── HERO RIGHT / STATS ── */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem;
  position: relative;
  z-index: 1;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
  max-width: 360px;
}
.stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 1.8rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}
.stat-card:hover { transform: translateY(-4px); }
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.sc-red::before   { background: var(--red); }
.sc-navy::before  { background: #4a6fa5; }
.sc-gold::before  { background: var(--gold); }
.sc-teal::before  { background: var(--teal-light); }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  line-height: 1;
}
.sc-red .stat-num   { color: var(--red-light); }
.sc-navy .stat-num  { color: #7aa0e0; }
.sc-gold .stat-num  { color: var(--gold-light); }
.sc-teal .stat-num  { color: var(--teal-light); }
.stat-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
}

/* =============================================
   SECTION SHARED
   ============================================= */
.section { padding: 5rem 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-eye {
  font-family: 'Syne', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.eye-red   { color: var(--red); }
.eye-navy  { color: var(--navy-light); }
.eye-gold  { color: var(--gold); }
.eye-teal  { color: var(--teal); }

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.95;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}
.hi-red   { color: var(--red); }
.hi-navy  { color: var(--navy); }
.hi-gold  { color: var(--gold); }
.hi-teal  { color: var(--teal); }

.section-desc {
  color: var(--text-soft);
  font-size: 0.95rem;
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

/* ── BG VARIANTS ── */
.bg-white     { background: var(--white); }
.bg-light     { background: var(--off-white); }
.bg-navy      { background: var(--navy); }

/* =============================================
   CERT BANNER
   ============================================= */
.cert-banner {
  background: linear-gradient(135deg, var(--navy), #0d1a36);
  border-radius: 20px;
  padding: 3.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(27,42,74,0.2);
}
.cert-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red) 0 25%, var(--navy-light) 25% 50%, var(--gold) 50% 75%, var(--teal) 75% 100%);
}
.cert-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: white;
  line-height: 0.95;
  margin-bottom: 1rem;
}
.cert-title .hi-gold { color: var(--gold-light); }
.cert-desc { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.7; max-width: 520px; }
.cert-badge {
  background: rgba(255,255,255,0.07);
  border: 2px solid var(--gold);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  min-width: 170px;
  box-shadow: 0 0 30px rgba(232,160,32,0.2);
  flex-shrink: 0;
}
.cert-badge-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}
.cert-badge-seal { font-size: 2.5rem; display: block; margin-bottom: 0.5rem; }
.cert-badge-text {
  font-family: 'Syne', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}

/* =============================================
   COURSE MINI CARDS (Home)
   ============================================= */
.courses-mini {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.cm-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}
.cm-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  transition: height 0.2s;
}
.cm-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px var(--shadow); }
.cm-card:hover::before { height: 5px; }
.cmc-red::before   { background: var(--red); }
.cmc-navy::before  { background: var(--navy); }
.cmc-gold::before  { background: var(--gold); }
.cmc-teal::before  { background: var(--teal); }
.cmc-red:hover   { border-color: var(--red); }
.cmc-navy:hover  { border-color: var(--navy); }
.cmc-gold:hover  { border-color: var(--gold); }
.cmc-teal:hover  { border-color: var(--teal); }
.cm-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.cm-title { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 800; color: var(--text-dark); margin-bottom: 0.5rem; }
.cm-sub   { font-size: 0.85rem; color: var(--text-soft); line-height: 1.6; }
.cm-tag   { display: inline-block; margin-top: 1.2rem; font-family: 'Syne', sans-serif; font-size: 0.65rem; font-weight: 700; padding: 4px 12px; border-radius: 20px; letter-spacing: 0.08em; }
.tag-red  { background: rgba(192,57,43,0.08);  border: 1px solid rgba(192,57,43,0.2);  color: var(--red); }
.tag-navy { background: rgba(27,42,74,0.08);   border: 1px solid rgba(27,42,74,0.2);   color: var(--navy); }
.tag-gold { background: rgba(232,160,32,0.1);  border: 1px solid rgba(232,160,32,0.25);color: var(--gold); }
.tag-teal { background: rgba(0,109,91,0.08);   border: 1px solid rgba(0,109,91,0.2);   color: var(--teal); }

/* =============================================
   WHY CARDS
   ============================================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
}
.why-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 0 0 16px 16px;
  opacity: 0;
  transition: opacity 0.25s;
}
.wc-r::before  { background: var(--red); }
.wc-n::before  { background: var(--navy); }
.wc-g::before  { background: var(--gold); }
.wc-t::before  { background: var(--teal); }
.why-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px var(--shadow); }
.why-card:hover::before { opacity: 1; }
.why-icon { font-size: 2rem; margin-bottom: 1rem; }
.why-card h3 { font-family: 'Syne', sans-serif; font-size: 0.9rem; font-weight: 700; margin-bottom: 0.6rem; color: var(--text-dark); }
.why-card p  { font-size: 0.83rem; line-height: 1.65; color: var(--text-soft); }

/* =============================================
   TOOLS MARQUEE
   ============================================= */
.tools-wrap {
  padding: 3rem 0;
  background: var(--light-gray);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.tools-wrap .tw-head { padding: 0 2rem 1.5rem; max-width: 1200px; margin: 0 auto; }
.tools-marquee {
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
  mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
}
.tools-track {
  display: flex;
  gap: 12px;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.tool-pill {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text-mid);
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 40px;
  white-space: nowrap;
  letter-spacing: 0.05em;
  transition: all 0.2s;
  cursor: default;
  box-shadow: 0 2px 8px var(--shadow);
}
.tool-pill:hover { border-color: var(--navy); color: var(--navy); }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================================
   COURSE DETAIL CARDS (courses.html)
   ============================================= */
.course-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.course-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.course-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px var(--shadow); }
.course-header {
  padding: 2rem 2.5rem;
  position: relative;
}
.course-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.ch-red .course-header   { background: rgba(192,57,43,0.05);  border-bottom: 1px solid rgba(192,57,43,0.12); }
.ch-red .course-header::before   { background: linear-gradient(90deg, var(--red), var(--red-light)); }
.ch-navy .course-header  { background: rgba(27,42,74,0.05);   border-bottom: 1px solid rgba(27,42,74,0.12); }
.ch-navy .course-header::before  { background: linear-gradient(90deg, var(--navy), var(--navy-light)); }
.ch-gold .course-header  { background: rgba(232,160,32,0.05); border-bottom: 1px solid rgba(232,160,32,0.15); }
.ch-gold .course-header::before  { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.ch-teal .course-header  { background: rgba(0,109,91,0.05);   border-bottom: 1px solid rgba(0,109,91,0.12); }
.ch-teal .course-header::before  { background: linear-gradient(90deg, var(--teal), var(--teal-light)); }

.course-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.ch-red  .course-label { color: var(--red); }
.ch-navy .course-label { color: var(--navy-light); }
.ch-gold .course-label { color: var(--gold); }
.ch-teal .course-label { color: var(--teal); }

.course-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  line-height: 0.95;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}
.course-duration {
  display: inline-block;
  margin-top: 0.9rem;
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.06em;
}
.ch-red  .course-duration { background: rgba(192,57,43,0.08); border: 1px solid rgba(192,57,43,0.2); color: var(--red); }
.ch-navy .course-duration { background: rgba(27,42,74,0.07);  border: 1px solid rgba(27,42,74,0.2);  color: var(--navy); }
.ch-gold .course-duration { background: rgba(232,160,32,0.09);border: 1px solid rgba(232,160,32,0.25);color: var(--gold); }
.ch-teal .course-duration { background: rgba(0,109,91,0.08);  border: 1px solid rgba(0,109,91,0.2);  color: var(--teal); }

.course-body { padding: 1.8rem 2.5rem; background: var(--off-white); }
.module-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.84rem;
}
.module-list li:last-child { border-bottom: none; }
.module-num {
  flex-shrink: 0;
  width: 24px; height: 24px;
  font-family: 'Syne', sans-serif;
  font-size: 0.6rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  margin-top: 1px;
  color: white;
}
.ch-red  .module-num { background: var(--red); }
.ch-navy .module-num { background: var(--navy); }
.ch-gold .module-num { background: var(--gold); color: var(--navy); }
.ch-teal .module-num { background: var(--teal); }
.module-info strong { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.83rem; display: block; color: var(--text-dark); margin-bottom: 2px; }
.module-info span   { color: var(--text-soft); font-size: 0.77rem; }

/* =============================================
   BATCH CARDS
   ============================================= */
.batch-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.batch-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}
.batch-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px var(--shadow); }
.batch-card.popular { border-width: 2px; }
.bc-r.popular { border-color: var(--red); }
.bc-n.popular { border-color: var(--navy); }
.bc-g.popular { border-color: var(--gold); }
.batch-top {
  padding: 1.8rem;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.batch-top::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.bc-r .batch-top::before { background: var(--red); }
.bc-n .batch-top::before { background: var(--navy); }
.bc-g .batch-top::before { background: var(--gold); }
.batch-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.7rem;
  color: var(--text-dark);
}
.batch-time {
  font-family: 'Syne', sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--text-soft);
  margin-top: 4px;
}
.batch-body { padding: 1.5rem 1.8rem; }
.batch-body li {
  font-size: 0.82rem;
  color: var(--text-soft);
  padding: 5px 0;
  padding-left: 16px;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.batch-body li:last-child { border-bottom: none; }
.bc-r .batch-body li::before { content: '✓'; position: absolute; left: 0; color: var(--red); font-weight: 700; }
.bc-n .batch-body li::before { content: '✓'; position: absolute; left: 0; color: var(--navy); font-weight: 700; }
.bc-g .batch-body li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* =============================================
   ECOMMERCE PAGE
   ============================================= */
.ec-hero {
  background: linear-gradient(135deg, var(--navy), #0d1a36);
  border-radius: 20px;
  padding: 4rem;
  position: relative;
  overflow: hidden;
  margin-bottom: 4rem;
  box-shadow: 0 20px 60px rgba(27,42,74,0.2);
}
.ec-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red) 0 25%, var(--navy-light) 25% 50%, var(--gold) 50% 75%, var(--teal) 75% 100%);
}
.ec-hero h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: white;
  line-height: 0.95;
  margin-bottom: 1rem;
}
.ec-hero p { color: rgba(255,255,255,0.6); font-size: 0.95rem; line-height: 1.7; max-width: 560px; }

.ec-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ec-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 16px var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.ec-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px var(--shadow); }
.ec-card:nth-child(1):hover { border-color: var(--red); }
.ec-card:nth-child(2):hover { border-color: var(--navy); }
.ec-card:nth-child(3):hover { border-color: var(--gold); }
.ec-card:nth-child(4):hover { border-color: var(--teal); }
.ec-card:nth-child(5):hover { border-color: var(--red); }
.ec-card:nth-child(6):hover { border-color: var(--navy); }
.ec-card-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.ec-card h3 { font-family: 'Syne', sans-serif; font-size: 0.9rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.6rem; }
.ec-card p  { font-size: 0.83rem; color: var(--text-soft); line-height: 1.6; }

/* Price Cards */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.price-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px var(--shadow); }
.price-card.featured { border-width: 2px; border-color: var(--navy); box-shadow: 0 8px 40px rgba(27,42,74,0.18); }
.price-top { padding: 2rem; border-bottom: 1px solid var(--border); position: relative; }
.price-top::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; }
.pc-red  .price-top::before { background: var(--red); }
.pc-navy .price-top::before { background: var(--navy); }
.pc-teal .price-top::before { background: var(--teal); }
.price-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; color: var(--text-dark); }
.price-amount { font-family: 'Bebas Neue', sans-serif; font-size: 3rem; line-height: 1; margin-top: 0.3rem; }
.pc-red  .price-amount { color: var(--red); }
.pc-navy .price-amount { color: var(--navy); }
.pc-teal .price-amount { color: var(--teal); }
.price-per { font-size: 0.75rem; color: var(--text-soft); font-family: 'Syne', sans-serif; margin-top: 4px; }
.price-body { padding: 1.8rem; }
.price-body li { font-size: 0.82rem; color: var(--text-soft); padding: 6px 0 6px 18px; position: relative; border-bottom: 1px solid var(--border); }
.price-body li:last-child { border-bottom: none; }
.pc-red  .price-body li::before { content: '✓'; position: absolute; left: 0; color: var(--red);  font-weight: 700; }
.pc-navy .price-body li::before { content: '✓'; position: absolute; left: 0; color: var(--navy); font-weight: 700; }
.pc-teal .price-body li::before { content: '✓'; position: absolute; left: 0; color: var(--teal); font-weight: 700; }
.enroll-btn {
  width: calc(100% - 3.6rem);
  margin: 0 1.8rem 1.8rem;
  padding: 11px;
  border-radius: 10px;
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  color: white;
  transition: transform 0.2s, box-shadow 0.2s;
}
.enroll-btn:hover { transform: translateY(-2px); }
.eb-red  { background: var(--red);  box-shadow: 0 6px 20px rgba(192,57,43,0.3); }
.eb-navy { background: var(--navy); box-shadow: 0 6px 20px rgba(27,42,74,0.3); }
.eb-teal { background: var(--teal); box-shadow: 0 6px 20px rgba(0,109,91,0.3); }

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-left p { font-size: 0.92rem; color: var(--text-soft); line-height: 1.75; margin-bottom: 1rem; }
.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 2rem; }
.about-hi {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  text-align: center;
  background: var(--white);
  box-shadow: 0 4px 16px var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.about-hi::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.ah-r::before { background: var(--red); }
.ah-n::before { background: var(--navy); }
.ah-g::before { background: var(--gold); }
.ah-t::before { background: var(--teal); }
.about-hi:hover { transform: translateY(-4px); box-shadow: 0 12px 30px var(--shadow); }
.about-hi-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.8rem; }
.ah-r .about-hi-num { color: var(--red); }
.ah-n .about-hi-num { color: var(--navy); }
.ah-g .about-hi-num { color: var(--gold); }
.ah-t .about-hi-num { color: var(--teal); }
.about-hi-label { font-family: 'Syne', sans-serif; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-soft); margin-top: 4px; }
.about-right { display: flex; flex-direction: column; gap: 14px; }
.about-feature {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 16px var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
  border-left-width: 4px;
}
.af-r { border-left-color: var(--red); }
.af-n { border-left-color: var(--navy); }
.af-g { border-left-color: var(--gold); }
.af-t { border-left-color: var(--teal); }
.about-feature:hover { transform: translateX(4px); box-shadow: 0 8px 24px var(--shadow); }
.about-feature h4 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.9rem; color: var(--text-dark); margin-bottom: 0.4rem; }
.about-feature p  { font-size: 0.82rem; color: var(--text-soft); line-height: 1.6; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.8rem;
  box-shadow: 0 4px 16px var(--shadow);
  transition: transform 0.25s;
  border-left-width: 4px;
}
.cc-r { border-left-color: var(--red); }
.cc-n { border-left-color: var(--navy); }
.cc-g { border-left-color: var(--gold); }
.cc-t { border-left-color: var(--teal); }
.contact-card:hover { transform: translateX(4px); }
.contact-card-icon { font-size: 1.5rem; margin-bottom: 0.7rem; }
.contact-card h4 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.88rem; color: var(--text-dark); margin-bottom: 0.4rem; }
.contact-card p, .contact-card a { font-size: 0.85rem; color: var(--text-soft); line-height: 1.65; }
.contact-card a:hover { color: var(--navy); }

.social-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 0.8rem; }
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Syne', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s;
  letter-spacing: 0.04em;
}
.sb-r { background: rgba(192,57,43,0.08); border: 1px solid rgba(192,57,43,0.2); color: var(--red); }
.sb-r:hover { background: var(--red); color: white; }
.sb-n { background: rgba(27,42,74,0.08); border: 1px solid rgba(27,42,74,0.2); color: var(--navy); }
.sb-n:hover { background: var(--navy); color: white; }
.sb-g { background: rgba(232,160,32,0.1); border: 1px solid rgba(232,160,32,0.25); color: var(--gold); }
.sb-g:hover { background: var(--gold); color: var(--navy); }
.sb-t { background: rgba(0,109,91,0.08); border: 1px solid rgba(0,109,91,0.2); color: var(--teal); }
.sb-t:hover { background: var(--teal); color: white; }

/* FORM */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 40px var(--shadow);
  position: relative;
  overflow: hidden;
}
.contact-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red) 0 25%, var(--navy) 25% 50%, var(--gold) 50% 75%, var(--teal) 75% 100%);
}
.contact-form h3 { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--navy); margin-bottom: 1.8rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-family: 'Syne', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-soft); margin-bottom: 0.5rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px 16px;
  color: var(--text-dark);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(27,42,74,0.1); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-submit {
  width: 100%;
  background: var(--red);
  color: white;
  padding: 13px;
  border-radius: 10px;
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 22px rgba(192,57,43,0.3);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  margin-top: 0.5rem;
}
.form-submit:hover { background: var(--red-light); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(192,57,43,0.45); }

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 4rem 2rem 2rem;
  position: relative;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red) 0 25%, var(--navy-light) 25% 50%, var(--gold) 50% 75%, var(--teal) 75% 100%);
}
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
.footer-logo-row { display: flex; align-items: center; gap: 12px; margin-bottom: 1rem; }
.footer-stripes { display: flex; gap: 3px; width: 40px; height: 40px; border-radius: 10px; overflow: hidden; }
.fs1 { flex: 1; background: var(--red); }
.fs2 { flex: 1; background: #4a6fa5; }
.fs3 { flex: 1; background: var(--gold); }
.fs4 { flex: 1; background: var(--teal-light); }
.footer-brand-name { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1rem; color: white; }
.footer-brand-sub  { font-size: 0.72rem; color: rgba(255,255,255,0.4); margin-top: 2px; }
.footer-about-text { font-size: 0.83rem; color: rgba(255,255,255,0.5); line-height: 1.65; margin-top: 0.8rem; }
.iits-reg-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 6px 14px;
  border-radius: 20px;
  font-family: 'Syne', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  margin-top: 1rem;
}
.footer-col h5 {
  font-family: 'Syne', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.2rem;
}
.footer-link {
  display: block;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.6rem;
  transition: color 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.footer-link:hover { color: var(--gold-light); }
.footer-bottom {
  max-width: 1200px;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.3); }

/* =============================================
   PAGE HEADER (inner pages)
   ============================================= */
.page-header {
  background: linear-gradient(135deg, var(--navy), #0d1a36);
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red) 0 25%, var(--navy-light) 25% 50%, var(--gold) 50% 75%, var(--teal) 75% 100%);
}
.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
.page-header-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.page-header h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.5rem, 5vw, 4rem); color: white; margin-bottom: 0.5rem; line-height: 0.95; }
.page-header p  { color: rgba(255,255,255,0.6); font-size: 1rem; max-width: 500px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 1rem; }
.breadcrumb a { font-family: 'Syne', sans-serif; font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.5); letter-spacing: 0.05em; text-transform: uppercase; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,0.3); font-size: 0.8rem; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 3rem 1.5rem 2rem; }
  .hero-right { padding: 2rem 1.5rem 3rem; }
  .why-grid, .ec-features, .price-grid, .batch-grid { grid-template-columns: 1fr 1fr; }
  .courses-mini, .course-grid { grid-template-columns: 1fr; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .cert-banner { grid-template-columns: 1fr; gap: 2rem; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: white;
    border-top: 1px solid var(--border);
    padding: 1rem;
    box-shadow: 0 10px 30px var(--shadow);
    gap: 4px;
  }
}

@media (max-width: 600px) {
  .why-grid, .ec-features, .price-grid, .batch-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
