/* ============================================================
   JAOTECH DIGITAL INSTITUTE
   Home Page Styles
   ============================================================ */

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-bg-glow {
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 700px;
  background: radial-gradient(ellipse, rgba(26, 26, 255, 0.13) 0%, rgba(102, 0, 204, 0.07) 40%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero-title-accent {
  background: linear-gradient(135deg, var(--blue-light), var(--purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-title-earn {
  background: linear-gradient(135deg, var(--gold), var(--red-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.08rem;
  color: var(--white-soft);
  line-height: 1.78;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-stat         { text-align: center; }
.hero-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gold);
}
.hero-stat-label {
  font-size: 0.75rem;
  color: var(--white-soft);
  letter-spacing: 0.06em;
  margin-top: 2px;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 500px;
}
.hero-logo-ring {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
}
.ring-outer {
  width: 360px; height: 360px;
  border-color: rgba(26, 26, 255, 0.14);
  animation: spinSlow 22s linear infinite;
}
.ring-outer::after {
  content: '';
  position: absolute;
  top: -4px; left: 50%;
  width: 8px; height: 8px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--blue);
}
.ring-middle {
  width: 280px; height: 280px;
  border-color: rgba(255, 215, 0, 0.10);
  animation: spinSlow 15s linear infinite reverse;
}
.ring-middle::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 50%;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold);
}
.hero-logo-wrap {
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 26, 255, 0.08), transparent);
  border: 2px solid var(--border-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(26, 26, 255, 0.18), 0 0 120px rgba(26, 26, 255, 0.07);
  z-index: 2;
}
.hero-logo { width: 160px; height: 160px; object-fit: contain; }

/* Floating tags */
.hero-floating-tag {
  position: absolute;
  background: var(--black-card);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius);
  padding: 9px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: var(--font-heading);
  white-space: nowrap;
  backdrop-filter: blur(10px);
  letter-spacing: 0.02em;
  animation: float 4s ease-in-out infinite;
}
.tag-1 { top: 30px;   right: 20px; animation-delay: 0s;   border-color: rgba(26, 26, 255, 0.4); }
.tag-2 { bottom: 80px; right: 0;   animation-delay: 1s;   border-color: rgba(255, 215, 0, 0.3);  color: var(--gold); }
.tag-3 { bottom: 40px; left: 20px; animation-delay: 2s;   border-color: rgba(204, 0, 0, 0.3);    color: var(--red-light); }
.tag-4 { top: 80px;   left: 0;    animation-delay: 1.5s; border-color: rgba(102, 0, 204, 0.4);  color: var(--purple-light); }

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--white-soft);
  font-size: 0.70rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-heading);
}
.hero-scroll-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: float 2s ease-in-out infinite;
}

/* MARQUEE STRIP */
.marquee-strip {
  background: var(--blue);
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.marquee-track {
  display: flex;
  gap: 36px;
  width: max-content;
  animation: marquee 32s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.marquee-sep {
  color: var(--gold);
  font-size: 0.5rem;
  opacity: 0.7;
}

/* ABOUT INTRO */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-intro-content p {
  color: var(--white-dim);
  line-height: 1.82;
  font-size: 0.98rem;
}
.about-intro-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.pillar-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--white-ghost);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.80rem;
  font-weight: 600;
  font-family: var(--font-heading);
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.pillar-tag:hover {
  border-color: var(--blue-light);
  background: var(--blue-glow);
  color: var(--blue-light);
}

/* Stat Cards */
.about-intro-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stat-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.stat-card:hover {
  border-color: var(--border-blue);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(26, 26, 255, 0.10);
}
.stat-icon       { font-size: 1.8rem; margin-bottom: 14px; }
.stat-card-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
}
.stat-card-label {
  font-size: 0.78rem;
  color: var(--white-soft);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* SCHOOLS GRID */
.schools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.school-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.school-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), transparent);
  opacity: 0;
  transition: var(--transition);
}
.school-card:hover {
  border-color: var(--border-blue);
  transform: translateY(-6px);
  box-shadow: 0 24px 52px rgba(26, 26, 255, 0.11);
}
.school-card:hover::before { opacity: 1; }
.school-card-featured {
  border-color: rgba(255, 215, 0, 0.28);
  background: linear-gradient(135deg, var(--black-card), rgba(255, 215, 0, 0.03));
}
.school-card-featured::before {
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 1;
}
.school-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--gold-glow);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.school-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}
.school-card h3 {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}
.school-card p {
  font-size: 0.83rem;
  color: var(--white-soft);
  line-height: 1.65;
  margin-bottom: 18px;
}
.school-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--blue-light);
  font-family: var(--font-heading);
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.school-link:hover { color: var(--gold); }

/* HOW IT WORKS */
.journey-steps {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 60px;
  flex-wrap: wrap;
  justify-content: center;
}
.journey-step {
  flex: 1;
  min-width: 155px;
  max-width: 195px;
  text-align: center;
  padding: 30px 20px;
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.journey-step:hover {
  border-color: var(--border-blue);
  transform: translateY(-4px);
}
.journey-num {
  font-family: var(--font-display);
  font-size: 0.60rem;
  color: var(--blue-light);
  letter-spacing: 0.2em;
  margin-bottom: 12px;
}
.journey-icon  { font-size: 1.8rem; margin-bottom: 12px; }
.journey-step h3 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.journey-step p {
  font-size: 0.78rem;
  color: var(--white-soft);
  line-height: 1.6;
}
.journey-arrow {
  font-size: 1.2rem;
  color: var(--border-blue);
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-weight: 300;
}

/* FOUNDER */
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
.founder-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.founder-image-ring {
  width: 320px; height: 320px;
  border-radius: 50%;
  border: 2px solid var(--border-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(26, 26, 255, 0.07), transparent);
  box-shadow: 0 0 60px rgba(26, 26, 255, 0.13);
  overflow: hidden;
}
.founder-img {
  width: 260px; height: 260px;
  object-fit: contain;
  border-radius: 50%;
}
.founder-badge-card {
  position: absolute;
  bottom: 10px; right: -10px;
  background: var(--black-card);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(10px);
}
.founder-badge-icon    { font-size: 1.4rem; }
.founder-badge-title {
  font-family: var(--font-display);
  font-size: 0.80rem;
  font-weight: 700;
  color: var(--gold);
}
.founder-badge-sub  { font-size: 0.68rem; color: var(--white-soft); margin-top: 2px; }
.founder-content p  { color: var(--white-dim); line-height: 1.82; font-size: 0.98rem; }

.founder-quote {
  position: relative;
  margin-top: 28px;
  padding: 24px 28px 24px 32px;
  background: var(--white-ghost);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--white-dim);
  font-size: 0.95rem;
  line-height: 1.75;
}
.quote-mark {
  font-size: 3.5rem;
  color: var(--gold);
  opacity: 0.25;
  position: absolute;
  top: -8px; left: 10px;
  font-style: normal;
  line-height: 1;
  font-family: Georgia, serif;
}
.quote-author {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--gold);
  letter-spacing: 0.04em;
}

/* TESTIMONIALS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.testimonial-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: var(--transition);
}
.testimonial-card:hover {
  border-color: var(--border-blue);
  transform: translateY(-4px);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 3px;
  margin-bottom: 14px;
}
.testimonial-text {
  font-size: 0.88rem;
  color: var(--white-soft);
  line-height: 1.75;
  margin-bottom: 22px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
  font-family: var(--font-heading);
  letter-spacing: 0.04em;
}
.testimonial-name {
  font-weight: 700;
  font-size: 0.88rem;
  font-family: var(--font-heading);
}
.testimonial-role { font-size: 0.75rem; color: var(--white-soft); margin-top: 2px; }

/* CTA BANNER */
.cta-banner {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: linear-gradient(135deg, #0a0a1a 0%, #0d0020 50%, #0a0a1a 100%);
  text-align: center;
}
.cta-banner-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(26, 26, 255, 0.18), rgba(102, 0, 204, 0.08), transparent 70%);
  pointer-events: none;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 26, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 26, 255, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}
.cta-banner-inner { position: relative; z-index: 1; }
.cta-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.1;
}
.cta-subtitle {
  font-size: 1.05rem;
  color: var(--white-soft);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.75;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.cta-note {
  font-size: 0.78rem;
  color: var(--white-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-heading);
  font-weight: 500;
}

/* RESPONSIVE HOME */
@media (max-width: 1024px) {
  .hero-inner         { grid-template-columns: 1fr; gap: 60px; text-align: center; }
  .hero-visual        { height: 400px; }
  .hero-subtitle      { margin: 0 auto 36px; }
  .hero-actions       { justify-content: center; }
  .hero-stats         { justify-content: center; }
  .about-intro-grid   { grid-template-columns: 1fr; gap: 50px; }
  .founder-grid       { grid-template-columns: 1fr; gap: 50px; text-align: center; }
  .founder-image-wrap { justify-content: center; }
  .founder-badge-card { right: 0; }
  .glow-line          { margin: 0 auto 24px; }
}
@media (max-width: 768px) {
  .hero-visual        { display: none; }
  .schools-grid       { grid-template-columns: 1fr; }
  .testimonials-grid  { grid-template-columns: 1fr; }
  .journey-steps      { flex-direction: column; align-items: stretch; }
  .journey-arrow      { transform: rotate(90deg); text-align: center; }
  .journey-step       { max-width: 100%; }
  .about-intro-stats  { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .about-intro-stats  { grid-template-columns: 1fr; }
  .hero-actions       { flex-direction: column; }
  .cta-actions        { flex-direction: column; align-items: center; }
}
