/* =============================================
   DatabricksTraining.in — Shared Stylesheet
   Sreyobhilashi IT | Trainer Venu
   ============================================= */

/* ---- CSS VARIABLES ---- */
:root {
  --navy:   #03101e;
  --navy2:  #061524;
  --navy3:  #091c2e;
  --card:   #0c1e35;
  --card2:  #0f2340;
  --orange: #f97316;
  --orng2:  #fb923c;
  --orng3:  #fda763;
  --gold:   #f59e0b;
  --teal:   #0ea5e9;
  --teal2:  #06b6d4;
  --green:  #22c55e;
  --red:    #ef4444;
  --bdr:    rgba(255,255,255,0.08);
  --bdr2:   rgba(255,255,255,0.14);
  --text:   #eef3ff;
  --muted:  #7a94b8;
  --dim:    #364e68;
  --glow-o: rgba(249,115,22,.22);
  --glow-t: rgba(14,165,233,.18);
  --H: 'Bricolage Grotesque', sans-serif;
  --B: 'Plus Jakarta Sans', sans-serif;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--navy); color: var(--text); font-family: var(--B); overflow-x: hidden; line-height: 1.65; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--B); }
ul { list-style: none; }

/* ---- TOPBAR ---- */
.topbar {
  background: linear-gradient(90deg,#080200,#1a0900,#080200);
  border-bottom: 1px solid rgba(249,115,22,.2);
  text-align: center; padding: 9px 16px;
  font-size: .79rem; color: var(--orng2); font-weight: 500;
  position: relative; overflow: hidden; z-index: 999;
}
.topbar::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg,transparent,rgba(249,115,22,.07),transparent);
  animation: shimmer 3.5s infinite;
}
.topbar b { color: var(--gold); }
.topbar a { color: var(--orng3); font-weight: 700; margin-left: 10px; text-decoration: underline; }
@keyframes shimmer { 0%{transform:translateX(-100%)} 100%{transform:translateX(100%)} }

/* ---- NAVIGATION ---- */
#nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(3,16,30,.96); backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--bdr); transition: box-shadow .3s;
}
#nav.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,.7); }
.nav-wrap {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  height: 68px; display: flex; align-items: center; gap: 14px;
}
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo img { height: 44px; width: auto; }
.logo-txt { font-family: var(--H); font-size: .93rem; font-weight: 700; line-height: 1.2; }
.logo-txt small { display: block; font-size: .58rem; color: var(--muted); font-weight: 400; font-family: var(--B); }
.nav-links { display: flex; gap: 2px; flex: 1; }
.nav-links a {
  padding: 6px 11px; border-radius: 8px; font-size: .8rem; font-weight: 500;
  color: var(--muted); transition: all .2s; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--orange); background: rgba(249,115,22,.08); }
.nav-right { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.nav-phone {
  display: flex; align-items: center; gap: 6px; font-size: .76rem;
  color: var(--muted); border: 1px solid var(--bdr); padding: 6px 12px;
  border-radius: 8px; white-space: nowrap; transition: all .2s;
}
.nav-phone:hover { color: var(--text); border-color: var(--bdr2); }
.nav-phone b { color: var(--teal); }
.btn-nav {
  background: linear-gradient(135deg,var(--orange),#c45500); color: #fff;
  padding: 8px 18px; border-radius: 9px; font-size: .83rem; font-weight: 700;
  white-space: nowrap; box-shadow: 0 0 18px var(--glow-o);
  transition: all .2s; border: none; cursor: pointer;
}
.btn-nav:hover { transform: translateY(-1px); box-shadow: 0 4px 24px var(--glow-o); }
.ham {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 7px; background: none; border: 1px solid var(--bdr); border-radius: 8px;
}
.ham span { width: 20px; height: 2px; background: var(--text); border-radius: 1px; display: block; transition: .3s; }

/* ---- MOBILE NAV ---- */
#mobNav {
  display: none; position: fixed; top: 68px; left: 0; right: 0; z-index: 999;
  background: rgba(3,16,30,.98); backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--bdr); padding: 14px 20px 20px;
  flex-direction: column; gap: 3px; max-height: calc(100vh - 68px); overflow-y: auto;
}
#mobNav.open { display: flex; }
#mobNav a {
  padding: 11px 14px; border-radius: 9px; color: var(--muted);
  font-size: .87rem; font-weight: 500; transition: all .2s;
  display: flex; align-items: center; gap: 9px;
}
#mobNav a:hover { color: var(--text); background: rgba(255,255,255,.06); }
#mobNav .mob-cta {
  background: var(--orange); color: #fff !important; font-weight: 700 !important;
  justify-content: center; margin-top: 6px; border-radius: 10px !important;
}
#mobNav .mob-call {
  background: rgba(14,165,233,.08); border: 1px solid rgba(14,165,233,.2);
  color: var(--teal) !important; font-weight: 600 !important; justify-content: center;
}
#mobNav .mob-sep {
  height: 1px; background: var(--bdr); margin: 4px 0;
}

/* ---- BREADCRUMB ---- */
.breadcrumb-wrap { background: var(--navy2); border-bottom: 1px solid var(--bdr); padding: 10px 24px; }
.breadcrumb {
  max-width: 1280px; margin: 0 auto; font-size: .72rem; color: var(--dim);
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.breadcrumb a { color: var(--muted); transition: color .2s; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep { color: var(--dim); }
.breadcrumb .current { color: var(--orange); }

/* ---- BUTTONS ---- */
.btn-primary {
  background: linear-gradient(135deg,var(--orange),#c45500); color: #fff;
  padding: 13px 28px; border-radius: 11px; font-weight: 700; font-size: .88rem;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 24px var(--glow-o); transition: all .25s; border: none; cursor: pointer;
}
.btn-primary:hover { background: linear-gradient(135deg,var(--orng2),var(--orange)); transform: translateY(-2px); }
.btn-ghost {
  background: rgba(255,255,255,.05); color: var(--text); padding: 13px 22px;
  border-radius: 11px; font-weight: 600; font-size: .88rem; border: 1px solid var(--bdr2);
  display: inline-flex; align-items: center; gap: 8px; transition: all .2s; cursor: pointer;
}
.btn-ghost:hover { background: rgba(255,255,255,.09); border-color: rgba(249,115,22,.3); }
.btn-wa {
  background: #25d366; color: #fff; padding: 11px 22px; border-radius: 10px;
  font-weight: 700; font-size: .87rem; display: inline-flex; align-items: center;
  gap: 8px; transition: all .2s; border: none; cursor: pointer;
}
.btn-wa:hover { background: #1db954; transform: translateY(-1px); }

/* ---- HERO ---- */
.hero {
  padding: 52px 24px 0; background: var(--navy);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle,rgba(249,115,22,.09) 0%,transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle,rgba(14,165,233,.06) 0%,transparent 65%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 390px; gap: 48px;
  align-items: start; position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(249,115,22,.1); border: 1px solid rgba(249,115,22,.25);
  border-radius: 100px; padding: 5px 16px; font-size: .71rem; font-weight: 700;
  color: var(--orng2); letter-spacing: .05em; text-transform: uppercase; margin-bottom: 16px;
}
.hero-live {
  width: 7px; height: 7px; border-radius: 50%; background: var(--orange);
  animation: blink 1.4s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.hero h1 {
  font-family: var(--H); font-size: clamp(1.9rem,3.5vw,2.9rem); font-weight: 800;
  letter-spacing: -.04em; line-height: 1.09; margin-bottom: 14px;
}
.hero h1 em { font-style: normal; color: var(--orange); }
.hero-desc { font-size: .95rem; color: var(--muted); line-height: 1.82; max-width: 600px; margin-bottom: 20px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.hm-tag {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.05); border: 1px solid var(--bdr);
  padding: 5px 13px; border-radius: 8px; font-size: .75rem; font-weight: 600; color: var(--muted);
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 22px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 14px; }
.ht { display: flex; align-items: center; gap: 6px; font-size: .75rem; color: var(--dim); }
.ht-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }

/* ---- HERO IMAGE CARD ---- */
.hero-img-card {
  border-radius: 16px; overflow: hidden; border: 1px solid var(--bdr);
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
}
.hero-img-card img { width: 100%; display: block; }

/* ---- ENROLL CARD (Hero sidebar) ---- */
.hsc {
  background: var(--card); border: 1px solid var(--bdr);
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.55); position: sticky; top: 80px;
}
.hsc-thumb {
  width: 100%; aspect-ratio: 16/9;
  background: linear-gradient(135deg,var(--navy3),var(--card2));
  display: flex; align-items: center; justify-content: center;
}
.hsc-thumb img { width: 100%; height: 100%; object-fit: cover; }
.hsc-thumb-placeholder { text-align: center; padding: 20px; }
.hsc-play {
  width: 56px; height: 56px; background: rgba(249,115,22,.2);
  border: 2px solid rgba(249,115,22,.4); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; cursor: pointer; transition: all .2s; margin: 0 auto 10px;
}
.hsc-play:hover { background: rgba(249,115,22,.35); transform: scale(1.08); }
.hsc-body { padding: 20px; }
.hsc-price-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 4px; }
.hsc-price { font-family: var(--H); font-size: 1.9rem; font-weight: 800; color: var(--orange); line-height: 1; }
.hsc-orig { font-size: .82rem; color: var(--dim); text-decoration: line-through; }
.hsc-save { font-size: .68rem; background: rgba(34,197,94,.12); border: 1px solid rgba(34,197,94,.25); color: var(--green); padding: 2px 9px; border-radius: 100px; font-weight: 700; }
.hsc-emi { font-size: .72rem; color: var(--teal2); font-weight: 600; margin-bottom: 14px; }

/* ---- FORMS ---- */
.form-success { display: none; background: rgba(34,197,94,.08); border: 1px solid rgba(34,197,94,.25); border-radius: 10px; padding: 14px; text-align: center; margin-bottom: 12px; }
.form-success.show { display: block; }
.form-success h4 { color: var(--green); font-size: .92rem; margin-bottom: 4px; }
.form-success p { color: var(--muted); font-size: .74rem; }
.form-title { font-weight: 700; font-size: .86rem; margin-bottom: 12px; color: var(--text); }
.fg { margin-bottom: 10px; }
.fl { font-size: .66rem; font-weight: 600; color: var(--muted); margin-bottom: 5px; display: block; text-transform: uppercase; letter-spacing: .04em; }
.fi {
  width: 100%; background: rgba(255,255,255,.04); border: 1px solid var(--bdr);
  border-radius: 9px; padding: 10px 12px; color: var(--text); font-family: var(--B);
  font-size: .82rem; outline: none; transition: border-color .2s;
  -webkit-appearance: none; appearance: none;
}
.fi:focus { border-color: rgba(249,115,22,.5); }
.fi::placeholder { color: var(--dim); }
.fi option { background: var(--navy2); }
.frow2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.form-btn {
  width: 100%; background: linear-gradient(135deg,var(--orange),#c45500); color: #fff;
  padding: 13px; border-radius: 10px; font-weight: 700; font-size: .88rem; border: none;
  box-shadow: 0 4px 18px var(--glow-o); margin-top: 4px; font-family: var(--B);
  transition: all .2s; display: flex; align-items: center; justify-content: center; gap: 8px; cursor: pointer;
}
.form-btn:hover { background: linear-gradient(135deg,var(--orng2),var(--orange)); transform: translateY(-1px); }
.form-btn:disabled { background: var(--dim); box-shadow: none; cursor: not-allowed; transform: none; }
.hsc-includes { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--bdr); display: flex; flex-direction: column; gap: 7px; }
.hi { display: flex; align-items: center; gap: 8px; font-size: .76rem; color: var(--muted); }

/* ---- HIGHLIGHTS BAR ---- */
.hl-bar { background: var(--navy2); border-top: 1px solid var(--bdr); border-bottom: 1px solid var(--bdr); }
.hl-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(5,1fr); }
.hlb { padding: 20px; border-right: 1px solid var(--bdr); text-align: center; transition: background .2s; }
.hlb:last-child { border-right: none; }
.hlb:hover { background: rgba(249,115,22,.04); }
.hlb-n { font-family: var(--H); font-size: 1.55rem; font-weight: 800; color: var(--orange); line-height: 1; margin-bottom: 3px; }
.hlb-l { font-size: .69rem; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }

/* ---- SECTIONS ---- */
.section { padding: 68px 24px; }
.container { max-width: 1280px; margin: 0 auto; }
.content-grid { display: grid; grid-template-columns: 1fr 360px; gap: 48px; align-items: start; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); margin-bottom: 14px; }
.eyebrow::before { content: ''; width: 22px; height: 2px; background: var(--orange); border-radius: 1px; }
.sec-h { font-family: var(--H); font-size: clamp(1.65rem,2.6vw,2.3rem); font-weight: 800; letter-spacing: -.035em; line-height: 1.1; margin-bottom: 10px; }
.sec-h em { font-style: normal; color: var(--orange); }
.sec-p { color: var(--muted); font-size: .93rem; line-height: 1.8; max-width: 560px; margin-bottom: 26px; }
.text-center { text-align: center; }
.text-center .eyebrow { justify-content: center; }
.text-center .sec-p { margin-left: auto; margin-right: auto; }

/* ---- CARDS ---- */
.card { background: var(--card); border: 1px solid var(--bdr); border-radius: 14px; padding: 22px; transition: all .3s; }
.card:hover { border-color: rgba(249,115,22,.25); transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,.4); }
.card-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.card-grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }

/* ---- WHO IS FOR ---- */
.wif-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 14px; }
.wif-card { background: var(--card); border: 1px solid var(--bdr); border-radius: 13px; padding: 16px; transition: all .3s; }
.wif-card:hover { border-color: rgba(249,115,22,.25); transform: translateY(-3px); }
.wif-ic { font-size: 1.6rem; margin-bottom: 8px; }
.wif-t { font-weight: 700; font-size: .84rem; margin-bottom: 4px; }
.wif-d { font-size: .76rem; color: var(--muted); line-height: 1.65; }

/* ---- TOOLS CHIPS ---- */
.tools-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.tool-chip { display: flex; align-items: center; gap: 6px; background: rgba(255,255,255,.05); border: 1px solid var(--bdr); border-radius: 9px; padding: 6px 13px; font-size: .77rem; font-weight: 600; color: var(--muted); transition: all .2s; }
.tool-chip:hover { border-color: rgba(249,115,22,.3); color: var(--text); background: rgba(249,115,22,.06); }

/* ---- CURRICULUM ---- */
.concepts-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; margin-top: 14px; }
.concept-card { background: var(--card); border: 1px solid var(--bdr); border-radius: 12px; padding: 16px; transition: all .3s; }
.concept-card:hover { border-color: rgba(249,115,22,.22); }
.cc-num { font-family: var(--H); font-size: .72rem; font-weight: 800; color: var(--orange); margin-bottom: 6px; }
.cc-title { font-weight: 700; font-size: .84rem; margin-bottom: 4px; }
.cc-pts { display: flex; flex-direction: column; gap: 3px; }
.cc-pts li { font-size: .75rem; color: var(--muted); display: flex; align-items: flex-start; gap: 6px; line-height: 1.5; }
.cc-pts li::before { content: '▸'; color: var(--teal2); flex-shrink: 0; margin-top: 1px; }

/* Toggle full curriculum */
.curr-toggle-wrap { margin-top: 20px; }
.curr-toggle-btn {
  display: flex; align-items: center; gap: 10px;
  background: rgba(249,115,22,.08); border: 1px solid rgba(249,115,22,.2);
  border-radius: 11px; padding: 14px 20px; cursor: pointer; width: 100%;
  font-size: .86rem; font-weight: 700; color: var(--orng2); transition: all .2s; font-family: var(--B);
}
.curr-toggle-btn:hover { background: rgba(249,115,22,.14); }
.curr-toggle-btn .arr { margin-left: auto; transition: transform .3s; }
.curr-toggle-btn.open .arr { transform: rotate(180deg); }
.full-curr { display: none; margin-top: 12px; }
.full-curr.open { display: block; }

/* Accordion modules */
.mod { background: var(--card); border: 1px solid var(--bdr); border-radius: 13px; overflow: hidden; transition: border-color .3s; margin-bottom: 8px; }
.mod.open { border-color: rgba(249,115,22,.3); }
.mod-hd { display: flex; align-items: center; gap: 12px; padding: 16px 18px; cursor: pointer; transition: background .2s; user-select: none; }
.mod-hd:hover { background: rgba(255,255,255,.03); }
.mod-num { width: 34px; height: 34px; border-radius: 9px; background: rgba(249,115,22,.1); border: 1px solid rgba(249,115,22,.2); display: flex; align-items: center; justify-content: center; font-family: var(--H); font-size: .74rem; font-weight: 800; color: var(--orange); flex-shrink: 0; }
.mod-info { flex: 1; min-width: 0; }
.mod-title { font-family: var(--H); font-weight: 700; font-size: .87rem; line-height: 1.3; margin-bottom: 3px; }
.mod-sub { display: flex; gap: 10px; flex-wrap: wrap; }
.mod-tag { font-size: .64rem; color: var(--dim); display: flex; align-items: center; gap: 4px; }
.mod-arrow { color: var(--dim); font-size: 1rem; transition: transform .3s; flex-shrink: 0; }
.mod.open .mod-arrow { transform: rotate(180deg); color: var(--orange); }
.mod-body { display: none; padding: 0 18px 16px; border-top: 1px solid var(--bdr); }
.mod.open .mod-body { display: block; }
.topic-list { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; margin-top: 12px; }
.tpc { display: flex; align-items: flex-start; gap: 7px; padding: 5px 8px; border-radius: 7px; font-size: .79rem; color: var(--muted); transition: background .2s; line-height: 1.5; }
.tpc:hover { background: rgba(255,255,255,.04); color: var(--text); }
.tpc::before { content: '▸'; color: var(--teal2); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.badge-row { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 10px; padding-top: 10px; border-top: 1px dashed var(--bdr); }
.badge { font-size: .62rem; font-weight: 700; padding: 3px 9px; border-radius: 100px; }
.b-lab { background: rgba(14,165,233,.1); border: 1px solid rgba(14,165,233,.2); color: var(--teal); }
.b-quiz { background: rgba(245,158,11,.1); border: 1px solid rgba(245,158,11,.2); color: var(--gold); }
.b-proj { background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.2); color: var(--green); }

/* ---- SIDEBAR ---- */
.sidebar-sticky { position: sticky; top: 80px; display: flex; flex-direction: column; gap: 14px; }
.sidebar-card { background: var(--card); border: 1px solid var(--bdr); border-radius: 16px; padding: 18px; }
.sc-title { font-family: var(--H); font-weight: 700; font-size: .87rem; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.batch-list { display: flex; flex-direction: column; gap: 7px; }
.bl { display: flex; justify-content: space-between; align-items: center; padding: 9px 12px; background: rgba(255,255,255,.04); border: 1px solid var(--bdr); border-radius: 9px; font-size: .78rem; }
.bl-t { font-weight: 600; }
.bl-s { color: var(--teal); font-size: .7rem; font-weight: 700; }
.bl-hot { border-color: rgba(249,115,22,.25) !important; }
.bl-hot .bl-t { color: var(--orange); }
.bl-hot .bl-s { color: var(--orange); }
.contact-box { background: linear-gradient(135deg,rgba(249,115,22,.08),rgba(14,165,233,.05)); border: 1px solid rgba(249,115,22,.18); border-radius: 14px; padding: 16px; text-align: center; }
.cb-title { font-family: var(--H); font-weight: 700; margin-bottom: 4px; font-size: .88rem; }
.cb-sub { font-size: .74rem; color: var(--muted); margin-bottom: 12px; }
.cb-btns { display: flex; flex-direction: column; gap: 7px; }
.cb-wa { background: #25d366; color: #fff; padding: 10px; border-radius: 9px; font-weight: 700; font-size: .8rem; text-align: center; display: flex; align-items: center; justify-content: center; gap: 7px; transition: opacity .2s; }
.cb-wa:hover { opacity: .9; }
.cb-call { background: rgba(255,255,255,.06); border: 1px solid var(--bdr2); color: var(--text); padding: 9px; border-radius: 9px; font-weight: 600; font-size: .79rem; text-align: center; display: flex; align-items: center; justify-content: center; gap: 7px; transition: all .2s; }
.cb-call:hover { background: rgba(255,255,255,.1); }

/* ---- COURSE SUMMARY TABLE ---- */
.summary-table { display: flex; flex-direction: column; gap: 0; }
.st-row { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; border-bottom: 1px solid var(--bdr); font-size: .78rem; }
.st-row:last-child { border-bottom: none; }
.st-label { color: var(--muted); }
.st-val { font-weight: 700; }

/* ---- TESTIMONIALS ---- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
  margin-top: 28px;
}

.t-card {
  background: var(--card);
  border: 1px solid var(--bdr);
  border-radius: 14px;
  padding: 20px;
  transition: all .3s;
  cursor: pointer;
}

.t-card:hover {
  border-color: rgba(249,115,22,.35);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,.4);
}

.t-stars {
  color: var(--gold);      /* ✅ gold stars */
  font-size: .82rem;
  margin-bottom: 9px;
  letter-spacing: 3px;
}

.t-quote {
  font-size: .83rem;
  color: var(--muted);     /* ✅ muted blue-grey */
  line-height: 1.76;
  margin-bottom: 14px;
  font-style: italic;
}

.t-auth {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--bdr);
}

.t-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .8rem;
  color: #fff;
  flex-shrink: 0;
}

.t-name {
  font-weight: 700;
  font-size: .83rem;
       /* ✅ Fcolor: var(--text); IXED — was missing, caused black text */
}

.t-role {
  font-size: .68rem;
  color: var(--dim);
  margin-top: 1px;
}

.t-placed {
  font-size: .69rem;
  color: var(--teal2);     /* ✅ teal/green color */
  font-weight: 600;
  margin-top: 2px;
}

/* Mobile responsive */
@media(max-width:768px) {
  .testi-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:480px) {
  .testi-grid { grid-template-columns: 1fr; }
}
/* ---- SALARY CARDS ---- */
.salary-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 16px; }
.sal-card { background: var(--card); border: 1px solid var(--bdr); border-radius: 13px; padding: 18px; text-align: center; transition: all .3s; }
.sal-card:hover { border-color: rgba(249,115,22,.25); }
.sal-card.featured { border-color: rgba(249,115,22,.3); }
.sal-level { font-size: .7rem; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); margin-bottom: 5px; font-weight: 700; }
.sal-range { font-family: var(--H); font-size: 1.25rem; font-weight: 800; color: var(--orange); margin-bottom: 4px; }
.sal-card.featured .sal-range { color: var(--orng2); }
.sal-exp { font-size: .72rem; color: var(--dim); }

/* ---- FAQ ---- */
.faq-list { display: flex; flex-direction: column; gap: 7px; margin-top: 12px; }
.faq-item { background: var(--card); border: 1px solid var(--bdr); border-radius: 12px; overflow: hidden; transition: border-color .3s; }
.faq-item.open { border-color: rgba(249,115,22,.3); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 15px 18px; cursor: pointer; font-size: .87rem; font-weight: 600; gap: 12px; user-select: none; }
.faq-q:hover { background: rgba(255,255,255,.03); }
.faq-arrow { color: var(--dim); font-size: 1rem; transition: transform .3s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--orange); }
.faq-a { display: none; padding: 0 18px 15px; font-size: .83rem; color: var(--muted); line-height: 1.78; border-top: 1px solid var(--bdr); }
.faq-item.open .faq-a { display: block; padding-top: 13px; }

/* ---- ENROLL BANNER ---- */
.enroll-banner {
  background: linear-gradient(135deg,var(--card2),#0c1c32);
  border: 1px solid rgba(249,115,22,.2); border-radius: 20px;
  padding: 44px; text-align: center; position: relative; overflow: hidden;
}
.enroll-banner::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle,rgba(249,115,22,.09),transparent 65%);
  pointer-events: none;
}
.enroll-banner h2 { font-family: var(--H); font-size: 1.9rem; font-weight: 800; letter-spacing: -.03em; margin-bottom: 8px; }
.enroll-banner p { color: var(--muted); font-size: .9rem; margin-bottom: 22px; max-width: 500px; margin-left: auto; margin-right: auto; }
.enroll-price { display: flex; align-items: baseline; justify-content: center; gap: 12px; margin-bottom: 6px; }
.enroll-amt { font-family: var(--H); font-size: 2.6rem; font-weight: 800; color: var(--orange); line-height: 1; }
.enroll-orig { font-size: 1.1rem; color: var(--dim); text-decoration: line-through; }
.enroll-save { font-size: .77rem; color: var(--green); font-weight: 700; margin-bottom: 22px; }
.enroll-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 18px; }
.enroll-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.et { display: flex; align-items: center; gap: 6px; font-size: .74rem; color: var(--dim); }
.et-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
/* ---- TRAINER CARD ---- */
.trainer-wrap {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--bdr);
  border-radius: 20px;
  padding: 36px;
  margin-top: 12px;
}

.trainer-photo {
  text-align: center;
}

.trainer-avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  border: 3px solid var(--orange);
  margin: 0 auto 14px;
  box-shadow: 0 0 0 5px rgba(249,115,22,0.15);
  display: block;
}

/* Remove img styling since we no longer use <img> tag */
.trainer-avatar img {
  display: none;
}

.trainer-name {
  font-family: var(--H);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 2px;
}

.trainer-role {
  font-size: .78rem;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 10px;
}

.trainer-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 4px;
}

.trainer-rating {
  font-size: .71rem;
  color: var(--muted);
}

.trainer-bio {
  font-size: .87rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 18px;
}

.trainer-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.ts {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--bdr);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
}

.ts-n {
  font-family: var(--H);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 3px;
}

.ts-l {
  font-size: .66rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.trainer-prev {
  font-size: .71rem;
  color: var(--dim);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 8px;
}

.trainer-companies {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tc-tag {
  background: rgba(255,255,255,.06);
  border: 1px solid var(--bdr2);
  padding: 5px 13px;
  border-radius: 8px;
  font-size: .74rem;
  font-weight: 700;
  color: var(--muted);
}
/* ---- QUICK CONTACT BAR ---- */
.quick-contact {
  background: var(--navy2); border-top: 1px solid var(--bdr); border-bottom: 1px solid var(--bdr);
  padding: 20px 24px;
}
.qc-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.qc-label { font-family: var(--H); font-size: .85rem; font-weight: 700; flex-shrink: 0; }
.qc-form { display: flex; gap: 8px; flex: 1; flex-wrap: wrap; align-items: center; }
.qc-input {
  flex: 1; min-width: 160px; background: rgba(255,255,255,.04); border: 1px solid var(--bdr);
  border-radius: 9px; padding: 10px 14px; color: var(--text); font-family: var(--B);
  font-size: .82rem; outline: none; transition: border-color .2s;
}
.qc-input:focus { border-color: rgba(249,115,22,.5); }
.qc-input::placeholder { color: var(--dim); }
.qc-select {
  flex: 1; min-width: 180px; background: rgba(255,255,255,.04); border: 1px solid var(--bdr);
  border-radius: 9px; padding: 10px 14px; color: var(--text); font-family: var(--B);
  font-size: .82rem; outline: none; -webkit-appearance: none; appearance: none; cursor: pointer;
}
.qc-select option { background: var(--navy2); }
.qc-btn {
  background: linear-gradient(135deg,var(--orange),#c45500); color: #fff;
  padding: 10px 22px; border-radius: 9px; font-weight: 700; font-size: .82rem;
  border: none; cursor: pointer; transition: all .2s; white-space: nowrap;
  box-shadow: 0 0 14px var(--glow-o);
}
.qc-btn:hover { transform: translateY(-1px); }
.qc-success { display: none; font-size: .8rem; color: var(--green); font-weight: 600; }
.qc-success.show { display: flex; align-items: center; gap: 6px; }

/* ---- COURSE CARDS (Homepage) ---- */
.course-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 28px; }
.course-card {
  background: var(--card); border: 1px solid var(--bdr); border-radius: 16px;
  overflow: hidden; transition: all .3s; display: flex; flex-direction: column;
}
.course-card:hover { border-color: rgba(249,115,22,.3); transform: translateY(-4px); box-shadow: 0 14px 40px rgba(0,0,0,.5); }
.cc-img { width: 100%; aspect-ratio: 16/9; overflow: hidden; background: var(--navy3); }
.cc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.course-card:hover .cc-img img { transform: scale(1.04); }
.cc-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.cc-tag { font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--orange); margin-bottom: 7px; }
.cc-title { font-family: var(--H); font-weight: 700; font-size: .95rem; line-height: 1.3; margin-bottom: 8px; }
.cc-desc { font-size: .78rem; color: var(--muted); line-height: 1.65; flex: 1; margin-bottom: 14px; }
.cc-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 1px solid var(--bdr); }
.cc-price { font-family: var(--H); font-weight: 800; font-size: .95rem; color: var(--orange); }
.cc-link { font-size: .78rem; font-weight: 700; color: var(--teal); display: flex; align-items: center; gap: 4px; transition: color .2s; }
.cc-link:hover { color: var(--orng2); }

/* ---- STATS SECTION ---- */
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 20px; }
.stat-card { text-align: center; }
.stat-n { font-family: var(--H); font-size: 2rem; font-weight: 800; color: var(--orange); line-height: 1; margin-bottom: 6px; }
.stat-l { font-size: .77rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }

/* ---- COMPANIES TICKER ---- */
.ticker-section { background: var(--navy2); border-top: 1px solid var(--bdr); border-bottom: 1px solid var(--bdr); padding: 14px 0; overflow: hidden; }
.ticker-inner { display: flex; width: max-content; animation: ticker 28s linear infinite; }
.ticker-inner:hover { animation-play-state: paused; }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.ticker-item { display: flex; align-items: center; gap: 6px; padding: 0 24px; font-size: .78rem; font-weight: 700; color: var(--muted); white-space: nowrap; text-transform: uppercase; letter-spacing: .04em; }
.ticker-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--orange); }
.ticker-label { color: var(--dim); font-size: .72rem; }

/* ---- FOOTER ---- */
footer { background: var(--navy2); border-top: 1px solid var(--bdr); }
.foot-inner { max-width: 1280px; margin: 0 auto; padding: 48px 24px 26px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.fb-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.fb-brand img { height: 42px; width: auto; }
.fb h4, .fc h4 { font-family: var(--H); font-weight: 700; font-size: .83rem; margin-bottom: 13px; color: var(--text); }
.fb p { font-size: .77rem; color: var(--muted); line-height: 1.7; margin-bottom: 13px; }
.fb-phones { display: flex; flex-direction: column; gap: 6px; }
.fp { font-size: .77rem; color: var(--muted); }
.fp a { color: var(--muted); transition: color .2s; }
.fp a:hover { color: var(--orange); }
.fc li { margin-bottom: 7px; }
.fc li a { font-size: .77rem; color: var(--muted); transition: color .2s; display: flex; align-items: center; gap: 5px; }
.fc li a:hover { color: var(--orange); }
.foot-bottom { max-width: 1280px; margin: 0 auto; padding: 16px 24px; border-top: 1px solid var(--bdr); display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.foot-bottom > div { font-size: .72rem; color: var(--dim); }
.socials { display: flex; gap: 8px; }
.soc { width: 30px; height: 30px; border-radius: 7px; border: 1px solid var(--bdr2); display: flex; align-items: center; justify-content: center; font-size: .7rem; font-weight: 700; color: var(--muted); transition: all .2s; text-transform: uppercase; }
.soc:hover { border-color: rgba(249,115,22,.4); color: var(--orange); }

/* ---- WHATSAPP FLOAT ---- */
.wa-float { position: fixed; bottom: 80px; right: 22px; width: 52px; height: 52px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.45rem; box-shadow: 0 6px 22px rgba(37,211,102,.4); z-index: 990; transition: transform .2s; }
.wa-float:hover { transform: scale(1.1); }
.wa-tip { position: absolute; right: 62px; background: var(--card2); border: 1px solid var(--bdr); color: var(--text); font-size: .72rem; font-weight: 600; white-space: nowrap; padding: 5px 11px; border-radius: 8px; opacity: 0; pointer-events: none; transition: opacity .2s; }
.wa-float:hover .wa-tip { opacity: 1; }

/* ---- STICKY MOBILE CTA ---- */
#sticky-mob { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 950; background: rgba(3,16,30,.97); backdrop-filter: blur(14px); border-top: 1px solid rgba(249,115,22,.25); padding: 10px 16px; align-items: center; justify-content: space-between; gap: 10px; }
.sm-info { flex: 1; min-width: 0; }
.sm-label { font-size: .66rem; color: var(--orange); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.sm-batch { font-size: .78rem; font-weight: 700; color: var(--text); }
.sm-btns { display: flex; gap: 8px; flex-shrink: 0; }
.sm-call { background: rgba(255,255,255,.08); border: 1px solid var(--bdr2); color: var(--text); padding: 8px 14px; border-radius: 9px; font-size: .78rem; font-weight: 600; white-space: nowrap; }
.sm-enroll { background: var(--orange); color: #fff; padding: 8px 16px; border-radius: 9px; font-size: .78rem; font-weight: 700; white-space: nowrap; cursor: pointer; border: none; }

/* ---- REVEAL ANIMATION ---- */
/*.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); } */

.reveal { opacity: 0; transform: translateY(20px); }  /* starts invisible */
.reveal.in { opacity: 1; }  /* JS adds .in → becomes visible */


/* ---- RESPONSIVE ---- */
@media(max-width:1100px){
  .hero-inner, .content-grid { grid-template-columns: 1fr; }
  .hsc, .sidebar-sticky { position: static; }
  .foot-inner { grid-template-columns: 1fr 1fr; }
  .trainer-wrap { grid-template-columns: 1fr; }
  .trainer-photo { display: flex; flex-direction: column; align-items: center; }
  .course-cards { grid-template-columns: repeat(2,1fr); }
}
@media(max-width:768px){
  .nav-links, .nav-phone { display: none; }
  .ham { display: flex; }
  .hero { padding: 34px 18px 0; }
  .section { padding: 48px 18px; }
  .hl-inner { grid-template-columns: repeat(3,1fr); }
  .wif-grid, .testi-grid, .salary-grid { grid-template-columns: 1fr 1fr; }
  .concepts-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .course-cards { grid-template-columns: 1fr 1fr; }
  #sticky-mob { display: flex; }
  .enroll-banner { padding: 26px 18px; }
  .enroll-amt { font-size: 2.1rem; }
  .qc-form { flex-direction: column; }
  .qc-input, .qc-select { min-width: unset; width: 100%; }
  .foot-inner { grid-template-columns: 1fr 1fr; }
  .topic-list { grid-template-columns: 1fr; }
}
@media(max-width:480px){
  .wif-grid, .testi-grid, .salary-grid, .course-cards { grid-template-columns: 1fr; }
  .foot-inner { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.78rem; }
  .card-grid-3, .card-grid-2 { grid-template-columns: 1fr; }
}
