/* ==========================================================================
   NEXT-GEN AI GRAPHIC & VIDEO EDITING COURSE — HYDERABAD
   style.css
   --------------------------------------------------------------------------
   Design language matched to courses.digibulltech.com:
     · Palette   — true black canvas, lime #b8ef43 as the single accent
     · Type      — Outfit (body) + Space Grotesk (headings)
     · Motion    — 0.4s cubic-bezier(.23,1,.32,1); blur-in reveals at 0.9s
     · Surfaces  — 3% white cards, 10% borders, 20px backdrop blur
     · Icons     — 1.8px line art, currentColor
   --------------------------------------------------------------------------
   Contents
   01. Design tokens
   02. Base & typography
   03. Utilities
   04. Buttons, pills & badges
   05. Floating nav bar
   06. Hero
   07. Section shell
   08. Cards (shared surface)
   09. Trust: tools, badges, testimonials
   10. Curriculum timeline
   11. AI features + comparison table
   12. Hyderabad advantage
   13. Careers
   14. Projects
   15. Long-form guide + People Also Ask
   16. FAQ accordion
   17. Final CTA
   18. Footer
   19. Floating widgets
   20. Modal
   21. Motion system
   22. Responsive breakpoints
   23. Reduced motion, print, forced colors
   ========================================================================== */

/* ==========================================================================
   01. DESIGN TOKENS
   ========================================================================== */
:root {
  /* --- Brand ------------------------------------------------------------ */
  --primary-brand:       #b8ef43;
  --primary-brand-deep:  #8fc422;
  --primary-brand-glow:  rgba(184, 239, 67, 0.40);
  --primary-brand-line:  rgba(184, 239, 67, 0.25);
  --primary-brand-soft:  rgba(184, 239, 67, 0.12);

  /* --- Surfaces --------------------------------------------------------- */
  --bg-black:      #000000;
  --bg-deep:       #050505;
  --bg-elevated:   #0a0a0a;
  --bg-card:       rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.08);
  --bg-glass:      rgba(10, 10, 10, 0.55);

  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-glass:  rgba(255, 255, 255, 0.10);
  --border-strong: rgba(255, 255, 255, 0.16);

  /* --- Text ------------------------------------------------------------- */
  --text-white: #FFFFFF;
  --text-dim:   #A0A0A0;
  --text-faint: #7D7D7D;
  --text-dark:  #000000;

  /* --- Type ------------------------------------------------------------- */
  --font-main:    'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Space Grotesk', 'Outfit', -apple-system, sans-serif;

  --fs-display: clamp(2.6rem, 7.2vw, 6.5rem);
  --fs-h2:      clamp(1.95rem, 4.4vw, 3.6rem);
  --fs-h3:      clamp(1.35rem, 2.2vw, 1.95rem);
  --fs-h4:      clamp(1.05rem, 1.5vw, 1.3rem);
  --fs-lead:    clamp(1.02rem, 1.55vw, 1.3rem);
  --fs-body:    clamp(0.94rem, 1.05vw, 1.02rem);
  --fs-small:   0.85rem;
  --fs-label:   0.72rem;

  /* --- Shape ------------------------------------------------------------ */
  --r-sm:   8px;
  --r-md:   12px;
  --r-lg:   16px;
  --r-xl:   24px;
  --r-2xl:  32px;
  --r-pill: 100px;

  /* --- Elevation -------------------------------------------------------- */
  --shadow-inset:     inset 0 1px 0 rgba(255, 255, 255, 0.08);
  --shadow-btn:       0 10px 20px rgba(184, 239, 67, 0.20);
  --shadow-btn-hover: 0 15px 30px var(--primary-brand-glow);
  --shadow-card:      0 20px 40px rgba(0, 0, 0, 0.50), 0 0 20px rgba(184, 239, 67, 0.06);
  --shadow-lift:      0 40px 80px rgba(0, 0, 0, 0.65), 0 0 40px rgba(184, 239, 67, 0.10);

  /* --- Motion ----------------------------------------------------------- */
  --dur-fast:  0.25s;
  --dur-base:  0.40s;
  --dur-slow:  0.90s;
  --ease-out:  cubic-bezier(0.23, 1, 0.32, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);

  /* --- Layout ----------------------------------------------------------- */
  --nav-height:    90px;
  --gutter:        clamp(20px, 4vw, 48px);
  --container-max: 1300px;
  --container-narrow: 900px;
  --section-pad:   clamp(88px, 11vw, 168px);
}

/* ==========================================================================
   02. BASE & TYPOGRAPHY
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg-black);
  color: var(--text-white);
  font-family: var(--font-main);
  font-size: var(--fs-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Ambient lime wash — kept very low so black stays black */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(58rem 40rem at 8% -8%, rgba(184, 239, 67, .055), transparent 62%),
    radial-gradient(48rem 34rem at 96% 22%, rgba(184, 239, 67, .035), transparent 60%),
    linear-gradient(180deg, var(--bg-black), var(--bg-deep) 55%, var(--bg-black));
  pointer-events: none;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 0.55em;
}
h1 { font-size: var(--fs-display); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); letter-spacing: -0.01em; }

p { margin: 0 0 1.1em; color: var(--text-dim); }
strong { color: var(--text-white); font-weight: 500; }

a { color: inherit; text-decoration: none; transition: color var(--dur-fast) var(--ease-soft); }
a:hover { color: var(--primary-brand); }

img, video, svg { max-width: 100%; display: block; }
ul, ol { margin: 0 0 1.2em; padding-left: 1.15em; }
li { margin-bottom: 0.45em; color: var(--text-dim); }

:focus-visible {
  outline: 2px solid var(--primary-brand);
  outline-offset: 3px;
  border-radius: 6px;
}

::selection { background: var(--primary-brand); color: var(--text-dark); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-black); }
::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, .12); border-radius: 20px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-brand-line); }

/* ==========================================================================
   03. UTILITIES
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: var(--container-narrow); }

/* Shared glass surface.
   Note: backdrop-filter is applied only to surfaces that actually sit over
   moving content (nav, hero chips, modal, floating widgets). In-flow cards sit
   on the flat black canvas, where a 20px blur of nothing costs compositing time
   without changing a pixel. */
.glass {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-inset);
}

/* Accent text — solid lime, matching the reference site's headline highlight */
.grad-text {
  color: var(--primary-brand);
  text-shadow: 0 0 34px rgba(184, 239, 67, .28);
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute;
  top: -60px; left: 16px;
  z-index: 2000;
  padding: 12px 20px;
  background: var(--primary-brand);
  color: var(--text-dark);
  font-weight: 600;
  border-radius: 0 0 var(--r-md) var(--r-md);
  transition: top var(--dur-base) var(--ease-out);
}
.skip-link:focus { top: 0; color: var(--text-dark); }

.inline-link {
  color: var(--primary-brand);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.fineprint { font-size: var(--fs-small); color: var(--text-faint); line-height: 1.65; }

/* ==========================================================================
   04. BUTTONS, PILLS & BADGES
   ========================================================================== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
  text-align: center;
  border: 1px solid transparent;
  border-radius: var(--r-md);
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
  transition: var(--transition);
}

.btn--primary {
  background: var(--primary-brand);
  color: var(--text-dark);
  font-weight: 600;
  box-shadow: var(--shadow-btn);
}
.btn--primary:hover,
.btn--primary:focus-visible {
  color: var(--text-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-btn-hover);
}
/* Light sweep across the face of the button on hover */
.btn--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 25%, rgba(255, 255, 255, .55) 50%, transparent 75%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease-out);
}
.btn--primary:hover::after { transform: translateX(120%); }

.btn--ghost {
  background: rgba(255, 255, 255, .04);
  color: var(--text-white);
  border-color: var(--border-glass);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: rgba(255, 255, 255, .09);
  border-color: var(--primary-brand-line);
  color: var(--text-white);
  transform: translateY(-3px);
}

.btn--sm { padding: 11px 22px; font-size: 0.86rem; }
.btn--lg { padding: 18px 38px; font-size: 1rem; }

.btn__icon { width: 18px; height: 18px; flex: none; }

/* Trailing arrow slides forward on hover */
.btn__arrow { width: 16px; height: 16px; flex: none; transition: transform var(--dur-base) var(--ease-out); }
.btn:hover .btn__arrow { transform: translateX(5px); }

/* Pills (tool chips, trust badges, tech stack) */
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 4px 0 18px; padding: 0; list-style: none; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-dim);
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border-glass);
  border-radius: var(--r-pill);
  transition: var(--transition);
}
.chip:hover {
  color: var(--text-white);
  border-color: var(--primary-brand-line);
  background: var(--primary-brand-soft);
}

.badge {
  display: inline-block;
  padding: 6px 14px;
  font-family: var(--font-heading);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
}
.badge--ai {
  color: var(--primary-brand);
  background: var(--primary-brand-soft);
  border: 1px solid var(--primary-brand-line);
}

/* ==========================================================================
   05. FLOATING NAV BAR
   ========================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: auto;
  display: block;
  padding: 18px var(--gutter) 0;
  pointer-events: none;
  transition: padding var(--dur-base) var(--ease-out);
}
.site-header.is-scrolled { padding-top: 12px; }

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 68px;
  max-width: var(--container-max);
  margin-inline: auto;
  padding: 0 14px 0 24px;
  border: 1px solid transparent;
  border-radius: var(--r-xl);
  background: transparent;
  pointer-events: auto;
  transition: var(--transition);
}
.site-header.is-scrolled .nav {
  background: rgba(5, 5, 5, .62);
  border-color: var(--border-glass);
  box-shadow: var(--shadow-card);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  margin-right: auto;
  flex-shrink: 0;
}
.nav__logo {
  height: 26px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(184, 239, 67, .2));
}
.nav__brand-text {
  position: relative;
  padding-left: 13px;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.25;
  white-space: nowrap;
}
/* Divider stroke between logo and title, as on the reference site */
.nav__brand-text::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 1px; height: 20px;
  margin-top: -10px;
  background: var(--border-strong);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav__links li { margin: 0; }
.nav__links a {
  position: relative;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-dim);
  transition: color var(--dur-fast) var(--ease-soft);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -7px;
  width: 0; height: 1px;
  background: var(--primary-brand);
  transition: width var(--dur-base) var(--ease-out);
}
.nav__links a:hover { color: var(--text-white); }
.nav__links a:hover::after,
.nav__links a.is-active::after { width: 100%; }
.nav__links a.is-active { color: var(--text-white); }
.nav__links-cta { display: none; }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  padding: 11px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border-glass);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: var(--transition);
}
.nav__toggle:hover { border-color: var(--primary-brand-line); background: var(--primary-brand-soft); }
.nav__toggle span {
  display: block;
  height: 1.5px;
  width: 100%;
  margin: 4px 0;
  background: var(--text-white);
  border-radius: 2px;
  transition: transform var(--dur-base) var(--ease-out), opacity var(--dur-fast) var(--ease-soft);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* ==========================================================================
   06. HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + 48px) 0 96px;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media video,
.hero__fallback {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.90) 0%, rgba(0,0,0,.66) 42%, rgba(0,0,0,.97) 100%),
    linear-gradient(90deg, rgba(0,0,0,.86) 0%, rgba(0,0,0,.45) 55%, transparent 100%);
}
.hero__glow {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(44rem 30rem at 12% 34%, rgba(184, 239, 67, .10), transparent 62%),
    radial-gradient(38rem 26rem at 88% 72%, rgba(184, 239, 67, .06), transparent 62%);
}
.hero__inner { position: relative; z-index: 2; }

.breadcrumb { margin-bottom: 24px; }
.breadcrumb ol {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  margin: 0; padding: 0; list-style: none;
  font-size: 0.78rem; color: var(--text-faint);
}
.breadcrumb li { margin: 0; color: var(--text-faint); }
.breadcrumb li + li::before { content: "/"; margin-right: 8px; opacity: .5; }
.breadcrumb a { color: var(--text-faint); }
.breadcrumb a:hover { color: var(--primary-brand); }
.breadcrumb [aria-current="page"] { color: var(--text-dim); }

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 20px;
  margin-bottom: 26px;
  font-family: var(--font-heading);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-white);
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border-glass);
  border-radius: var(--r-pill);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.pulse-dot {
  position: relative;
  width: 8px; height: 8px; flex: none;
  background: var(--primary-brand);
  border-radius: 50%;
}
.pulse-dot::after {
  content: "";
  position: absolute; inset: 0;
  border: 1px solid var(--primary-brand);
  border-radius: 50%;
  animation: pulse-ring 3.4s ease-out infinite;
}

.hero__title { margin-bottom: 0.3em; max-width: 15ch; }
.hero__sub {
  max-width: 60ch;
  font-size: var(--fs-lead);
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-dim);
  margin-bottom: 38px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 660px;
  margin: 0 0 38px;
  padding: 0;
  list-style: none;
}
.hero__stats li {
  margin: 0;
  padding: 18px 20px;
  background: rgba(0, 0, 0, .34);
  border: 1px solid var(--border-glass);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-inset);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: var(--transition);
}
.hero__stats li:hover {
  transform: translateY(-4px);
  border-color: var(--primary-brand-line);
  background: var(--bg-card-hover);
}
.hero__stats strong {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.4vw, 2.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--primary-brand);
}
.hero__stats span { font-size: 0.8rem; color: var(--text-faint); }

.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-bottom: 28px; }

.hero__note { font-size: 0.9rem; color: var(--text-dim); }
.hero__phone {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--primary-brand);
}

.hero__scroll {
  position: absolute;
  left: 50%; bottom: 28px;
  z-index: 3;
  transform: translateX(-50%);
  width: 24px; height: 40px;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-pill);
}
.hero__scroll span {
  position: absolute;
  left: 50%; top: 9px;
  width: 3px; height: 7px;
  margin-left: -1.5px;
  background: var(--primary-brand);
  border-radius: 2px;
  animation: scroll-hint 2.2s var(--ease-soft) infinite;
}

/* ==========================================================================
   07. SECTION SHELL
   ========================================================================== */
.section { padding: var(--section-pad) 0; position: relative; }
.section--tight { padding-block: clamp(64px, 8vw, 120px); }
.section--alt {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .015) 22%, rgba(255, 255, 255, .015) 78%, transparent);
  border-block: 1px solid var(--border-subtle);
}

.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-family: var(--font-heading);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--primary-brand);
}
.section__eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--primary-brand);
  opacity: .7;
}
.section__title { max-width: 20ch; margin-bottom: 0.45em; }
.section__lead {
  max-width: 62ch;
  font-size: var(--fs-lead);
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-dim);
  margin-bottom: 56px;
}
.subsection__title { margin: 76px 0 32px; font-size: var(--fs-h3); }
.section__cta { margin-top: 56px; }

/* ==========================================================================
   08. CARDS — one shared surface treatment
   ========================================================================== */
.tool-card, .testimonial, .timeline__card, .feature-card,
.hyd-card, .outcome-card, .project-card, .paa__item, .faq__item, .final-cta__card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: var(--transition);
}
/* Hairline that lights up along the top edge on hover */
.tool-card::before, .testimonial::before, .timeline__card::before, .feature-card::before,
.hyd-card::before, .outcome-card::before, .project-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .22), transparent);
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease-out);
}
.tool-card:hover, .testimonial:hover, .timeline__card:hover, .feature-card:hover,
.hyd-card:hover, .outcome-card:hover, .project-card:hover,
.tool-card:focus-within, .feature-card:focus-within, .project-card:focus-within {
  background: var(--bg-card-hover);
  border-color: var(--primary-brand-line);
  box-shadow: var(--shadow-lift);
  transform: translateY(-6px);
}
.tool-card:hover::before, .testimonial:hover::before, .timeline__card:hover::before,
.feature-card:hover::before, .hyd-card:hover::before, .outcome-card:hover::before,
.project-card:hover::before { opacity: 1; }

/* ==========================================================================
   09. TRUST: TOOLS, BADGES, TESTIMONIALS
   ========================================================================== */
.tools {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin: 0 0 38px;
  padding: 0;
  list-style: none;
}
.tool-card {
  margin: 0;
  padding: clamp(24px, 2.4vw, 34px);
  text-align: center;
}
.tool-card img {
  width: 52px; height: 52px;
  margin: 0 auto 16px;
  object-fit: contain;
}
.tool-card h3 { font-size: var(--fs-h4); margin-bottom: 0.3em; }
.tool-card p { font-size: var(--fs-small); color: var(--text-faint); margin-bottom: 16px; }

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.trust-badges li {
  margin: 0;
  padding: 10px 22px;
  font-size: 0.84rem;
  color: var(--text-dim);
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border-glass);
  border-radius: var(--r-pill);
  transition: var(--transition);
}
.trust-badges li:hover { border-color: var(--primary-brand-line); background: var(--primary-brand-soft); color: var(--text-white); }
.trust-badges strong { color: var(--primary-brand); font-family: var(--font-heading); font-weight: 600; }

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.testimonial { margin: 0; padding: clamp(24px, 2.4vw, 34px); }
.testimonial__stars { color: var(--primary-brand); letter-spacing: 4px; font-size: 0.85rem; margin-bottom: 16px; }
.testimonial blockquote { margin: 0 0 22px; }
.testimonial blockquote p { font-size: var(--fs-body); color: var(--text-dim); margin: 0; }
.testimonial__person { display: flex; align-items: center; gap: 14px; }
.testimonial__person img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--primary-brand-line);
  background: var(--bg-elevated);
}
.testimonial__person span { display: flex; flex-direction: column; line-height: 1.4; }
.testimonial__person strong { font-family: var(--font-heading); font-weight: 500; }
.testimonial__person small { font-size: 0.78rem; color: var(--text-faint); }

/* ==========================================================================
   10. CURRICULUM TIMELINE
   ========================================================================== */
.timeline { position: relative; margin: 0; padding: 0; list-style: none; }
.timeline::before {
  content: "";
  position: absolute;
  left: 27px; top: 14px; bottom: 14px;
  width: 1px;
  background: linear-gradient(180deg, var(--primary-brand), var(--primary-brand-line) 45%, transparent);
}
.timeline__item { position: relative; margin: 0 0 26px; padding-left: 84px; }
.timeline__marker {
  position: absolute;
  left: 0; top: 6px;
  display: grid;
  place-items: center;
  width: 55px; height: 55px;
  background: var(--bg-elevated);
  border: 1px solid var(--primary-brand-line);
  border-radius: 50%;
  box-shadow: 0 0 0 8px var(--bg-black), 0 0 24px rgba(184, 239, 67, .12);
}
.timeline__marker span {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: var(--primary-brand);
}
.timeline__card { padding: clamp(26px, 2.6vw, 40px); }
.timeline__head { margin-bottom: 16px; }
.timeline__month {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary-brand);
}
.timeline__card h4 { margin: 28px 0 14px; color: var(--text-white); }
.timeline__project {
  margin: 0;
  padding: 18px 22px;
  font-size: var(--fs-body);
  color: var(--text-dim);
  background: var(--primary-brand-soft);
  border: 1px solid var(--primary-brand-line);
  border-radius: var(--r-md);
}

.checklist { list-style: none; padding: 0; margin: 0 0 18px; }
.checklist li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 0.62em;
  font-size: var(--fs-body);
}
/* Line-art check mark drawn in CSS, matching the 1.8px icon language */
.checklist li::before {
  content: "";
  position: absolute;
  left: 2px; top: 0.52em;
  width: 11px; height: 6px;
  border-left: 1.8px solid var(--primary-brand);
  border-bottom: 1.8px solid var(--primary-brand);
  transform: rotate(-45deg);
}

/* ==========================================================================
   11. AI FEATURES + COMPARISON TABLE
   ========================================================================== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.feature-card { padding: clamp(26px, 2.6vw, 38px); }
.feature-card__icon {
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  margin-bottom: 22px;
  color: var(--primary-brand);
  background: var(--primary-brand-soft);
  border: 1px solid var(--primary-brand-line);
  border-radius: var(--r-md);
  transition: var(--transition);
}
.feature-card:hover .feature-card__icon {
  background: var(--primary-brand);
  color: var(--text-dark);
  border-color: var(--primary-brand);
}
.feature-card__icon svg { width: 24px; height: 24px; }
.feature-card__list { list-style: none; padding: 0; margin: 20px 0 0; }
.feature-card__list li {
  position: relative;
  padding-left: 18px;
  font-size: var(--fs-small);
  color: var(--text-faint);
}
.feature-card__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.72em;
  width: 8px; height: 1px;
  background: var(--primary-brand);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border-glass);
  border-radius: var(--r-lg);
  background: var(--bg-card);
  box-shadow: var(--shadow-inset);
  -webkit-overflow-scrolling: touch;
}
table { width: 100%; border-collapse: collapse; min-width: 660px; }
caption { text-align: left; }
thead th {
  padding: 18px 20px;
  font-family: var(--font-heading);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: left;
  color: var(--primary-brand);
  background: rgba(255, 255, 255, .025);
  border-bottom: 1px solid var(--border-glass);
  white-space: nowrap;
}
tbody th, tbody td {
  padding: 16px 20px;
  font-size: var(--fs-small);
  text-align: left;
  vertical-align: top;
  color: var(--text-dim);
  border-bottom: 1px solid var(--border-subtle);
}
tbody th { color: var(--text-white); font-weight: 500; font-family: var(--font-heading); }
tbody tr:last-child th, tbody tr:last-child td { border-bottom: 0; }
tbody tr { transition: background var(--dur-fast) var(--ease-soft); }
tbody tr:hover { background: rgba(255, 255, 255, .03); }

.save {
  display: inline-block;
  padding: 4px 14px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--primary-brand);
  background: var(--primary-brand-soft);
  border: 1px solid var(--primary-brand-line);
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.table-note { margin-top: 16px; font-size: var(--fs-small); color: var(--text-faint); }

/* ==========================================================================
   12. HYDERABAD ADVANTAGE
   ========================================================================== */
.hyd-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 20px;
  margin-bottom: 52px;
}
.hyd-card { padding: clamp(26px, 2.6vw, 36px); }
.hyd-card h3 { font-size: var(--fs-h4); }
.hyd-card p { margin: 0; font-size: var(--fs-body); }

.stat-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.stat-strip li {
  margin: 0;
  padding: 30px 24px;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-inset);
  transition: var(--transition);
}
.stat-strip li:hover { border-color: var(--primary-brand-line); transform: translateY(-4px); }
.stat-strip strong {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.8vw, 2.7rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  color: var(--primary-brand);
}
.stat-strip span { font-size: 0.82rem; color: var(--text-faint); }

/* ==========================================================================
   13. CAREERS
   ========================================================================== */
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 20px;
  margin-top: 38px;
}
.outcome-card { padding: clamp(26px, 2.6vw, 38px); }
.outcome-card h3 { font-size: var(--fs-h4); }

/* ==========================================================================
   14. PROJECTS
   ========================================================================== */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 20px;
}
.project-card { padding: clamp(28px, 2.6vw, 38px); }
.project-card__num {
  display: block;
  margin-bottom: 18px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--primary-brand);
}
.project-card h3 { font-size: var(--fs-h4); max-width: 24ch; }
.project-card p { font-size: var(--fs-body); }
.stack { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.stack li {
  margin: 0;
  padding: 6px 14px;
  font-size: 0.74rem;
  color: var(--text-faint);
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border-glass);
  border-radius: var(--r-pill);
  transition: var(--transition);
}
.project-card:hover .stack li { border-color: var(--primary-brand-line); color: var(--text-dim); }

/* ==========================================================================
   15. LONG-FORM GUIDE + PEOPLE ALSO ASK
   ========================================================================== */
.prose h3 {
  margin: 52px 0 16px;
  font-size: var(--fs-h3);
  scroll-margin-top: calc(var(--nav-height) + 20px);
}
.prose h4 { margin: 0 0 8px; font-size: 1rem; color: var(--text-white); }
.prose p, .prose li { font-size: var(--fs-body); line-height: 1.75; }
.prose ul, .prose ol { padding-left: 1.25em; }
.prose > ul li, .prose > ol li { margin-bottom: 0.75em; }
.prose ol::marker, .prose li::marker { color: var(--primary-brand); }

.paa { display: grid; gap: 14px; margin-top: 22px; }
.paa__item {
  padding: 24px 26px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-inset);
}
.paa__item:hover { border-color: var(--primary-brand-line); background: var(--bg-card-hover); }
.paa__item p { margin: 0; font-size: var(--fs-body); }

/* ==========================================================================
   16. FAQ ACCORDION
   ========================================================================== */
.faq { display: grid; gap: 14px; }
.faq__item { padding: 0; }
.faq__item[open] { border-color: var(--primary-brand-line); background: var(--bg-card-hover); }
.faq__item summary {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  cursor: pointer;
  list-style: none;
  transition: background var(--dur-fast) var(--ease-soft);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { background: rgba(255, 255, 255, .03); }
.faq__item summary h3 {
  flex: 1;
  margin: 0;
  font-size: var(--fs-h4);
  font-weight: 500;
  line-height: 1.45;
}
/* Line-art chevron */
.faq__item summary::after {
  content: "";
  flex: none;
  width: 10px; height: 10px;
  border-right: 1.8px solid var(--primary-brand);
  border-bottom: 1.8px solid var(--primary-brand);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform var(--dur-base) var(--ease-out);
}
.faq__item[open] summary::after { transform: rotate(225deg) translate(-3px, -3px); }
.faq__answer { padding: 0 26px 24px; }
.faq__answer p:last-child, .faq__answer ul:last-child, .faq__answer ol:last-child { margin-bottom: 0; }
.faq__answer li { font-size: var(--fs-body); }

/* ==========================================================================
   17. FINAL CTA
   ========================================================================== */
.final-cta { padding: var(--section-pad) 0; }
.final-cta__card {
  padding: clamp(44px, 6vw, 88px) clamp(24px, 5vw, 72px);
  text-align: center;
  border-radius: var(--r-2xl);
  background:
    radial-gradient(38rem 22rem at 50% 0%, rgba(184, 239, 67, .10), transparent 62%),
    var(--bg-card);
}
.final-cta__card h2 { max-width: 100%; margin-bottom: 0.45em; }
.final-cta__card .section__eyebrow { justify-content: center; }
.final-cta__text { max-width: 56ch; margin: 0 auto 36px; font-size: var(--fs-lead); font-weight: 300; }
.final-cta__actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.final-cta__meta { margin: 30px 0 0; font-size: var(--fs-small); color: var(--text-faint); }

/* ==========================================================================
   18. FOOTER
   ========================================================================== */
.site-footer {
  padding: 84px 0 34px;
  background: var(--bg-deep);
  border-top: 1px solid var(--border-subtle);
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 42px;
  padding-bottom: 46px;
}
.footer__brand img {
  height: 30px; width: auto; margin-bottom: 20px;
  filter: drop-shadow(0 0 10px rgba(184, 239, 67, .18));
}
.footer__brand p { font-size: var(--fs-small); max-width: 34ch; }
.footer__address { font-style: normal; font-size: var(--fs-small); color: var(--text-faint); line-height: 1.85; }
.footer__address a { color: var(--primary-brand); }

.footer__title {
  margin-bottom: 18px;
  font-family: var(--font-heading);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-white);
}
.footer__col ul { list-style: none; padding: 0; margin: 0; }
.footer__col li { margin-bottom: 0.6em; }
.footer__col a { font-size: var(--fs-small); color: var(--text-dim); }
.footer__cta { margin-bottom: 22px; }

.footer__social { display: flex; gap: 10px; list-style: none; padding: 0; margin: 0; }
.footer__social li { margin: 0; }
.footer__social a {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  color: var(--text-dim);
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border-glass);
  border-radius: var(--r-md);
  transition: var(--transition);
}
.footer__social a:hover {
  transform: translateY(-3px);
  color: var(--primary-brand);
  border-color: var(--primary-brand-line);
  background: var(--primary-brand-soft);
}
.footer__social svg { width: 18px; height: 18px; }

.footer__bottom { padding-top: 28px; border-top: 1px solid var(--border-subtle); }
.footer__bottom p { font-size: var(--fs-small); color: var(--text-faint); margin-bottom: 0.6em; }
.footer__legal { font-size: 0.74rem; line-height: 1.75; max-width: 92ch; }

/* ==========================================================================
   19. FLOATING WIDGETS
   ========================================================================== */
.wa-float {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 58px;
  padding: 0 24px 0 17px;
  color: var(--text-dark);
  background: var(--primary-brand);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: var(--r-pill);
  box-shadow: 0 10px 25px rgba(184, 239, 67, .35), 0 4px 12px rgba(0, 0, 0, .4);
  transition: var(--transition);
  /* Slides up once the visitor starts scrolling */
  transform: translateY(90px);
  opacity: 0;
}
.wa-float.is-shown { transform: translateY(0); opacity: 1; }
.wa-float:hover {
  color: var(--text-dark);
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 16px 34px rgba(184, 239, 67, .45), 0 4px 12px rgba(0, 0, 0, .4);
}
.wa-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--primary-brand);
  border-radius: inherit;
  animation: pulse-ring 3.4s ease-out infinite;
  pointer-events: none;
}
.wa-float svg { width: 24px; height: 24px; flex: none; }
.wa-float__label { white-space: nowrap; }

.to-top {
  position: fixed;
  right: 26px; bottom: 96px;
  z-index: 890;
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  color: var(--text-white);
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--r-md);
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  transition: var(--transition);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}
.to-top.is-visible { opacity: 1; transform: translateY(0); }
.to-top:hover { border-color: var(--primary-brand-line); color: var(--primary-brand); transform: translateY(-3px); }
.to-top svg { width: 18px; height: 18px; }

/* ==========================================================================
   20. MODAL
   ========================================================================== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: grid;
  place-items: center;
  padding: 20px;
}
.modal[hidden] { display: none; }
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .84);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.modal__panel {
  position: relative;
  width: min(960px, 100%);
  padding: 14px;
  border-radius: var(--r-xl);
  animation: modal-in 0.5s var(--ease-out);
}
.modal__panel video { width: 100%; border-radius: var(--r-md); background: #000; }
.modal__close {
  position: absolute;
  top: -12px; right: -8px;
  width: 42px; height: 42px;
  font-size: 24px; line-height: 1;
  color: var(--text-white);
  background: var(--bg-elevated);
  border: 1px solid var(--border-glass);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}
.modal__close:hover { transform: rotate(90deg); border-color: var(--primary-brand-line); color: var(--primary-brand); }
body.no-scroll { overflow: hidden; }

/* ==========================================================================
   21. MOTION SYSTEM
   ========================================================================== */

/* Blur-in reveal, matching the reference site's entrance */
.reveal {
  opacity: 0;
  transform: translateY(34px) translateZ(-40px);
  filter: blur(6px);
  transition:
    opacity   var(--dur-slow) var(--ease-out),
    transform var(--dur-slow) var(--ease-out),
    filter    var(--dur-slow) var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) translateZ(0);
  filter: blur(0);
  /* Release the compositor layer once the entrance has played */
  will-change: auto;
}

/* Grid children stagger in at 70ms intervals */
.tools .reveal, .testimonials .reveal, .feature-grid .reveal,
.hyd-grid .reveal, .project-grid .reveal, .stat-strip.reveal > li,
.paa .reveal, .faq .reveal { transition-delay: 0s; }
.tools .reveal:nth-child(2), .testimonials .reveal:nth-child(2), .feature-grid .reveal:nth-child(2),
.hyd-grid .reveal:nth-child(2), .project-grid .reveal:nth-child(2),
.paa .reveal:nth-child(2), .faq .reveal:nth-child(2) { transition-delay: .07s; }
.tools .reveal:nth-child(3), .testimonials .reveal:nth-child(3), .feature-grid .reveal:nth-child(3),
.hyd-grid .reveal:nth-child(3), .project-grid .reveal:nth-child(3),
.paa .reveal:nth-child(3), .faq .reveal:nth-child(3) { transition-delay: .14s; }
.tools .reveal:nth-child(4), .hyd-grid .reveal:nth-child(4), .project-grid .reveal:nth-child(4),
.paa .reveal:nth-child(4), .faq .reveal:nth-child(4) { transition-delay: .21s; }
.project-grid .reveal:nth-child(5), .faq .reveal:nth-child(5) { transition-delay: .28s; }
.project-grid .reveal:nth-child(6), .faq .reveal:nth-child(6) { transition-delay: .35s; }

@keyframes pulse-ring {
  0%   { transform: scale(1);   opacity: .55; }
  70%  { transform: scale(2.1); opacity: 0; }
  100% { transform: scale(2.1); opacity: 0; }
}

@keyframes scroll-hint {
  0%, 100% { transform: translateY(0);   opacity: .35; }
  50%      { transform: translateY(8px); opacity: 1; }
}

@keyframes modal-in {
  from { opacity: 0; transform: translateY(20px) scale(.98); }
  to   { opacity: 1; transform: none; }
}

/* ==========================================================================
   22. RESPONSIVE BREAKPOINTS (mobile-first: rules above are the mobile base)
   ========================================================================== */

/* --- ≥ 480px -------------------------------------------------------------- */
@media (min-width: 480px) {
  .hero__stats { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* --- ≤ 980px: mobile navigation ------------------------------------------ */
@media (max-width: 980px) {
  .nav__toggle { display: block; }
  .nav__cta { display: none; }

  .nav__links {
    position: fixed;
    left: var(--gutter); right: var(--gutter);
    top: calc(68px + 26px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100svh - 130px);
    padding: 10px 22px 22px;
    overflow-y: auto;
    background: rgba(5, 5, 5, .92);
    border: 1px solid var(--border-glass);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-card);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    transform: translateY(-14px);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--dur-base) var(--ease-out),
                transform var(--dur-base) var(--ease-out),
                visibility var(--dur-base) var(--ease-out);
  }
  .nav__links.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav__links li { border-bottom: 1px solid var(--border-subtle); }
  .nav__links a { display: block; padding: 15px 2px; font-size: 0.98rem; }
  .nav__links a::after { display: none; }
  .nav__links-cta { display: block; border-bottom: 0; padding-top: 18px; }
  .nav__links-cta .btn { width: 100%; }
}

/* --- ≤ 768px -------------------------------------------------------------- */
@media (max-width: 768px) {
  :root { --nav-height: 74px; }

  .hero { min-height: auto; padding: calc(var(--nav-height) + 56px) 0 80px; }
  .hero__title { max-width: 100%; }
  .hero__actions .btn { width: 100%; }
  .hero__scroll { display: none; }

  .timeline::before { left: 19px; }
  .timeline__item { padding-left: 62px; }
  .timeline__marker { width: 40px; height: 40px; box-shadow: 0 0 0 6px var(--bg-black); }
  .timeline__marker span { font-size: 0.82rem; }

  .subsection__title { margin-top: 56px; }
  .final-cta__actions .btn { width: 100%; }

  .wa-float { right: 16px; bottom: 16px; height: 54px; padding: 0 17px; }
  .wa-float__label { display: none; }
  .to-top { right: 18px; bottom: 84px; }

  .modal__close { top: 6px; right: 6px; }
}

/* --- ≤ 420px -------------------------------------------------------------- */
@media (max-width: 420px) {
  .nav { padding-left: 16px; }
  .nav__brand-text { display: none; }
  .hero__stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-badges li { width: 100%; text-align: center; }
}

/* --- ≥ 1500px ------------------------------------------------------------- */
@media (min-width: 1500px) {
  :root { --container-max: 1380px; }
}

/* ==========================================================================
   23. REDUCED MOTION, PRINT, FORCED COLORS
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; filter: none; }
  .wa-float { transform: none; opacity: 1; }
}

@media print {
  body::before, .hero__media, .hero__glow, .wa-float, .to-top, .site-header, .modal { display: none !important; }
  body { background: #fff; color: #000; }
  .glass { border: 1px solid #ccc; background: none; box-shadow: none; }
  p, li, td, th { color: #222 !important; }
  .grad-text { color: #000; text-shadow: none; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: .8em; }
}

@media (forced-colors: active) {
  .btn, .glass, .faq__item, .chip { border: 1px solid CanvasText; }
  .grad-text { color: CanvasText; text-shadow: none; }
}
