*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
/* Brand tokens: assets/brand.css via seo-meta */
main#main-content { overflow-x: clip; }
a { text-decoration: none; color: inherit; }

/* ── HERO ── */
.hero { background: var(--white); padding: 80px 5% 60px; display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.hero-text { flex: 1; max-width: 560px; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--navy); color: #fff; font-size: 11px; font-weight: 600; letter-spacing: 2px; padding: 5px 14px; border-radius: 4px; text-transform: uppercase; margin-bottom: 18px; }
.hero-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 20px;
  text-transform: lowercase;
}
.hero-title .hero-brand {
  font-family: 'Yatra One', cursive;
  font-size: 58px;
  font-weight: 400;
  line-height: 1.05;
  color: var(--orange);
  letter-spacing: 0.5px;
  text-transform: none;
  margin-bottom: 10px;
}
.hero-title-main {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
  letter-spacing: -0.03em;
}
.hero-title-accent {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--orange);
  letter-spacing: -0.03em;
}
.hero-sub { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 32px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.btn-p,
a.btn-p {
  background: var(--orange);
  color: #fff;
  padding: 13px 26px;
  border-radius: 7px;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.btn-p:hover,
a.btn-p:hover { background: var(--orange-d); transform: translateY(-2px); color: #fff; }
.form-status.success { color: #27ae60; }
.form-status.error { color: #c0392b; }
.btn-s,
a.btn-s {
  background: transparent;
  color: var(--blue);
  padding: 13px 26px;
  border-radius: 7px;
  border: 2px solid var(--blue);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.btn-s:hover,
a.btn-s:hover { background: var(--blue); color: #fff; transform: translateY(-2px); }
.hero-stats { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-stat-num { font-family: 'Yatra One', cursive; font-size: 30px; color: var(--orange); }
.hero-stat-lbl { font-size: 11px; color: var(--muted); font-weight: 500; margin-top: 2px; }

/* Code box */
.coding-animation { flex: 0 0 460px; }
.code-container { background: #1a1a2e; border-radius: 14px; overflow: hidden; box-shadow: 0 20px 48px rgba(0,0,0,.3); border: 1px solid rgba(255,255,255,.08); }
.code-header { background: rgba(255,255,255,.05); padding: 12px 16px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.08); }
.code-dots { display: flex; gap: 7px; }
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.r { background: #FF5F57; } .dot.y { background: #FFBD2E; } .dot.g { background: #28CA42; }
.code-title { color: rgba(255,255,255,.5); font-size: 13px; font-family: 'Courier New', monospace; }
.code-content { padding: 18px; font-family: 'Courier New', monospace; font-size: 12.5px; line-height: 1.7; }
.code-line { margin-bottom: 2px; opacity: 0; animation: codeIn .4s ease forwards; }
.code-line:nth-child(1){animation-delay:.1s} .code-line:nth-child(2){animation-delay:.25s} .code-line:nth-child(3){animation-delay:.4s} .code-line:nth-child(4){animation-delay:.55s} .code-line:nth-child(5){animation-delay:.7s} .code-line:nth-child(6){animation-delay:.85s} .code-line:nth-child(7){animation-delay:1s} .code-line:nth-child(8){animation-delay:1.15s} .code-line:nth-child(9){animation-delay:1.3s} .code-line:nth-child(10){animation-delay:1.45s} .code-line:nth-child(11){animation-delay:1.6s} .code-line:nth-child(12){animation-delay:1.75s}
@keyframes codeIn { from{opacity:0;transform:translateX(-8px)} to{opacity:1;transform:translateX(0)} }
.kw{color:#ff79c6;font-weight:600} .mod{color:#8be9fd} .fn{color:#50fa7b} .cls{color:#ffb86c} .vr{color:#f8f8f2} .pr{color:#66d9ef} .str{color:#f1fa8c} .cm{color:#6272a4;font-style:italic} .nm{color:#bd93f9}

/* TRUST */
.trust-strip { background: var(--navy); padding: 12px 5%; display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; }
.trust-strip span { color: rgba(255,255,255,.8); font-size: 12.5px; font-weight: 500; }
.trust-dot { color: var(--orange); }

/* SECTION */
.section { padding: 72px 5%; }
.section-label { font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; }
.section-title { font-family: 'Yatra One', cursive; font-size: 36px; color: var(--dark); margin-bottom: 14px; line-height: 1.2; }
.section-title span { color: var(--orange); }
.section-sub { font-size: 15px; color: var(--muted); max-width: 580px; line-height: 1.75; }

/* SERVICES */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 48px; }
.service-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 26px; transition: all .25s; position: relative; overflow: hidden; }
.service-card::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--orange); transform: scaleX(0); transition: transform .3s; transform-origin: left; }
.service-card:nth-child(even)::after { background: var(--blue); }
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 14px 32px rgba(0,0,0,.1); }
.svc-icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; font-size: 24px; }
.svc-icon.or { background: #fff5f2; color: var(--orange); }
.svc-icon.bl { background: #f0f8ff; color: var(--blue); }
.service-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.service-card p { font-size: 13.5px; color: var(--muted); line-height: 1.65; }
.svc-tag { display: inline-block; background: var(--off); color: var(--blue); font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 20px; margin-top: 12px; }

/* SPECIALIZATION */
.spec-section { background: linear-gradient(135deg, var(--navy) 0%, #0a0a40 100%); padding: 72px 5%; }
.spec-section .section-label { color: #8be9fd; }
.spec-section .section-title { color: #fff; }
.spec-section .section-sub { color: rgba(255,255,255,.7); }
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 48px; }
.spec-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; padding: 28px; color: #fff; transition: background .2s; }
.spec-card:hover { background: rgba(255,255,255,.1); }
.spec-card h3 { font-size: 20px; font-weight: 600; margin-bottom: 12px; color: #f1fa8c; display: flex; align-items: center; gap: 8px; }
.spec-card h3 svg { flex-shrink: 0; }
.spec-card p { font-size: 14px; color: rgba(255,255,255,.75); line-height: 1.7; margin-bottom: 16px; }

/* ── FIXED: spec-list uses CSS star, no SVG in content ── */
.spec-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.spec-list li {
  font-size: 13px;
  color: rgba(255,255,255,.8);
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 0;
}
.spec-list li::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f005";
  color: var(--orange);
  font-size: 11px;
  flex-shrink: 0;
  line-height: 1;
}

/* Animated course list */
.course-ticker { overflow: hidden; height: 34px; margin: 16px 0; border-radius: 6px; background: rgba(255,255,255,.08); }
.course-track { display: flex; flex-direction: column; animation: tickerScroll 20s linear infinite; }
.course-item { padding: 7px 14px; font-size: 13px; color: #50fa7b; font-weight: 500; white-space: nowrap; display: flex; align-items: center; gap: 6px; }
.course-item svg { flex-shrink: 0; color: #50fa7b; }
@keyframes tickerScroll { 0%{transform:translateY(0)} 100%{transform:translateY(-50%)} }

.stamp-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(50,205,50,.15); border: 1px solid rgba(50,205,50,.4); color: #50fa7b; font-size: 11px; font-weight: 600; padding: 5px 12px; border-radius: 6px; }
.btn-apply { background: var(--orange); color: #fff; padding: 11px 22px; border-radius: 7px; border: none; font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 600; cursor: pointer; transition: all .2s; display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; }
.btn-apply:hover { background: var(--orange-d); transform: translateY(-2px); }

/* PRODUCTS */
.products-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
.product-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 24px; display: flex; gap: 20px; align-items: flex-start; transition: all .25s; position: relative; overflow: hidden; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(0,0,0,.1); border-color: var(--orange); }
.prod-thumb { width: 90px; height: 70px; border-radius: 10px; flex-shrink: 0; background: var(--off); display: flex; align-items: center; justify-content: center; color: var(--orange); }
.prod-body h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; color: var(--dark); }
.prod-body p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.prod-tag { display: inline-block; background: var(--off); color: var(--orange); font-size: 11px; font-weight: 600; padding: 2px 10px; border-radius: 20px; margin-top: 8px; }
.prod-num { position: absolute; right: 16px; top: 12px; font-family: 'Yatra One', cursive; font-size: 36px; color: var(--border); line-height: 1; }

/* BANNER */
.banner { background: var(--navy); padding: 60px 5%; display: flex; align-items: center; gap: 40px; justify-content: space-between; flex-wrap: wrap; }
.banner-text h2,
.banner-text .banner-title { font-family: 'Yatra One', cursive; font-size: 30px; color: #fff; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.banner-text p { color: rgba(255,255,255,.75); font-size: 14px; max-width: 480px; line-height: 1.65; }
.banner-cta,
a.banner-cta {
  background: var(--orange);
  color: #fff;
  padding: 13px 28px;
  border-radius: 8px;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.banner-cta:hover,
a.banner-cta:hover { background: var(--orange-d); transform: translateY(-2px); color: #fff; }

/* TESTIMONIALS */
#testimonials.section { padding-bottom: 32px; background: var(--white); }
#faq.section { padding-top: 32px; }
.testi-section { padding: 1.25rem 0 0; }
.testi-track-wrap { overflow: hidden; position: relative; }
.testi-track-wrap::before, .testi-track-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 48px; z-index: 2; pointer-events: none; }
.testi-track-wrap::before { left: 0; background: linear-gradient(to right, var(--white), transparent); }
.testi-track-wrap::after { right: 0; background: linear-gradient(to left, var(--white), transparent); }
.testi-track { display: flex; gap: 16px; animation: scroll-left 28s linear infinite; width: max-content; cursor: grab; }
.testi-track:active { cursor: grabbing; }
.testi-track:hover { animation-play-state: paused; }
.testi-card { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 20px 22px; width: 280px; flex-shrink: 0; transition: border-color .2s, box-shadow .2s; box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04); }
.testi-card:hover { border-color: var(--orange); }
.stars { color: var(--orange); font-size: 13px; letter-spacing: 2px; margin-bottom: 11px; }
.testi-quote { font-size: 13.5px; color: var(--dark); line-height: 1.75; margin-bottom: 16px; font-style: italic; }
.testi-quote p { margin: 0; }
.testi-name { font-style: normal; font-weight: 600; font-size: 13px; }
.testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  padding: 0;
  margin: 0;
  color: inherit;
}
.testi-avatar { width: 38px; height: 38px; border-radius: 50%; overflow: hidden; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 500; color: #fff; }
.testi-name { font-size: 13px; font-weight: 500; color: var(--dark); }
.testi-city { font-size: 11px; color: var(--muted); }
@keyframes scroll-left { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* FAQ */
.faq-list { max-width: 820px; margin: 28px auto 0; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--off); border-radius: 12px; overflow: hidden; border: 1px solid var(--border); }
.faq-q { padding: 17px 22px; font-size: 15px; font-weight: 600; color: var(--dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: background .2s; gap: 12px; }
.faq-q:hover { background: #f0f4f8; }
.faq-q.open { color: var(--orange); background: #fff5f0; }
.faq-arrow { font-size: 20px; transition: transform .3s; color: var(--orange); flex-shrink: 0; }
.faq-q.open .faq-arrow { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .25s; }
.faq-a.open { max-height: 200px; padding: 0 22px 16px; }
.faq-a p { font-size: 13.5px; color: var(--muted); line-height: 1.7; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 48px; }
.contact-form-box { background: #fff; border-radius: 14px; padding: 30px; border: 1px solid var(--border); }
.contact-form-box h3 { font-size: 20px; font-weight: 600; margin-bottom: 22px; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.form-group label { font-size: 12px; font-weight: 600; color: var(--muted); letter-spacing: .4px; }
.form-group input, .form-group textarea, .form-group select { padding: 11px 13px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 14px; font-family: 'Poppins', sans-serif; outline: none; transition: border-color .2s; width: 100%; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--orange); }
.form-group textarea { resize: vertical; min-height: 100px; }
.contact-info-box { display: flex; flex-direction: column; gap: 18px; }
.contact-info-card { background: #fff; border-radius: 14px; padding: 26px; border: 1px solid var(--border); }
.contact-info-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 18px; }
.info-row { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; }
.info-row:last-child { margin-bottom: 0; }
.info-icon { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-icon.or { background: #fff5f2; color: var(--orange); }
.info-icon.bl { background: #f0f8ff; color: var(--blue); }
.info-detail h4 { font-size: 13.5px; font-weight: 600; margin-bottom: 3px; }
.info-detail p { font-size: 13px; color: var(--muted); line-height: 1.5; }
.info-detail a { color: var(--orange); }

/* MODALS */
.modal-brand { font-family: 'Yatra One', cursive; font-size: 22px; color: var(--dark); margin: 0; }
.modal-heading { font-size: 19px; font-weight: 700; color: var(--dark); margin: 0 0 5px; }
#loginModalTitle,
#registerModalTitle { color: var(--muted); font-size: 13px; font-weight: 500; margin-top: 6px; }
#internshipModalTitle { font-size: 19px; }
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 2000; align-items: center; justify-content: center; padding: 20px; }
.modal-box { background: #fff; border-radius: 16px; padding: 36px; width: 100%; max-width: 440px; position: relative; max-height: 90vh; overflow-y: auto; }
.modal-close { position: absolute; top: 14px; right: 16px; background: none; border: none; font-size: 22px; cursor: pointer; color: var(--muted); line-height: 1; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero { flex-direction: column; padding: 48px 5% 40px; text-align: center; gap: 36px; }
  .hero-text { max-width: 100%; }
  .hero-title { align-items: center; }
  .hero-title .hero-brand { font-size: 48px; }
  .hero-title-main,
  .hero-title-accent { font-size: 34px; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .coding-animation { width: 100%; flex: unset; }
  .services-grid { grid-template-columns: 1fr; }
  .banner { flex-direction: column; text-align: center; }
  .section { padding: 52px 5%; }
  #testimonials.section { padding-bottom: 28px; }
  #faq.section { padding-top: 28px; }
  .section-title { font-size: 28px; }
}
@media (max-width: 540px) {
  .hero-title .hero-brand { font-size: 42px; }
  .hero-title-main,
  .hero-title-accent { font-size: 28px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn-p, .btn-s { width: 100%; max-width: 280px; text-align: center; }
}
@media (max-width: 400px) {
  .hero-title .hero-brand { font-size: 36px; }
  .hero-title-main,
  .hero-title-accent { font-size: 24px; }
}
