/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.6;
}

.dark-body {
  background: #000;
  color: #fff;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER (shared) */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
}

.dark-header,
.site-header {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.logo-text {
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.logo-text span {
  color: #ffb300;
}

/* NAV */
nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.4rem;
}

.nav-links a {
  color: #e0e0e0;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
}

.nav-links a.active,
.nav-links a:hover {
  color: #ffb300;
}

/* MOBILE NAV */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 56px;
    right: 4%;
    flex-direction: column;
    background: #050509;
    padding: 0.75rem 1rem 1rem;
    border-radius: 10px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.7);
    display: none;
  }

  .nav-links.open {
    display: flex;
  }
}

/* ================================
   INDEX PAGE – FULL-SCREEN HERO
   ================================ */

.hero-fullscreen {
  position: relative;
  min-height: 100vh;
  padding-top: 80px;      /* space for header */
  padding-bottom: 3rem;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at top, #1f193c 0%, #000 60%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 179, 0, 0.25), transparent 55%),
    radial-gradient(circle at 90% 100%, rgba(33, 150, 243, 0.22), transparent 55%);
  opacity: 0.8;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

/* BIG AVATAR */
.hero-avatar {
  width: 100%;
  max-width: 980px;
}

.avatar-frame {
  padding: 8px;
  border-radius: 24px;
  background: radial-gradient(circle, rgba(255, 180, 60, 0.5), transparent 70%);
}

.avatar-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
  background: #000;
  box-shadow:
    0 0 60px rgba(255, 180, 60, 0.6),
    0 34px 90px rgba(0, 0, 0, 1);
}

.avatar-video iframe,
.avatar-video video {
  width: 100%;
  height: 100%;
  border: 0;
}

/* HERO TEXT */
.hero-text {
  text-align: center;
  max-width: 820px;
}

.hero-tagline {
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffca6b;
  margin-bottom: 0.7rem;
}

.hero-text h1 {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #e6e6e6;
  margin-bottom: 1.3rem;
}

/* CHIPS / BADGES (if you’re using hero-chip-row + hero-chip) */
.hero-chip-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  margin-bottom: 3rem; /* space before button */
}

.hero-chip {
  padding: 1rem 1.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 179, 0, 0.45);
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffda82;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 20px rgba(255, 180, 60, 0.4);
  transition: 0.25s ease;
}

.hero-chip:hover {
  transform: scale(1.05);
  box-shadow: 0 0 32px rgba(255, 180, 60, 0.7);
}

.hero-btn {
  margin-top: 0.5rem;
}

.hero-scroll,
.hero-thankyou {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #cccccc;
}

/* Optional fancy thank you text (if used) */
.hero-thankyou {
  font-size: 2.2rem;
  font-family: "Georgia", serif;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.5px;
  background: linear-gradient(90deg, #ffdd91, #ffb300, #ff8f00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 18px rgba(255, 179, 0, 0.35);
}

/* BUTTONS (shared) */
.btn {
  display: inline-block;
  padding: 0.95rem 2.2rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(120deg, #ffb300, #ff6f00);
  color: #111;
  box-shadow: 0 0 35px rgba(255, 190, 70, 0.6);
}

.btn-primary:hover {
  opacity: 0.92;
}

.secondary-btn {
  background: #0d47a1;
  color: #fff;
  box-shadow: 0 0 24px rgba(13, 71, 161, 0.55);
}

.secondary-btn:hover {
  opacity: 0.92;
}

/* EVENT FLYER BANNER (shared) */
.event-banner {
  padding: 1.8rem 0 2.2rem;
  background: #05070d;
}

.event-banner img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.8);
}

/* ================================
   JOBS PAGE – HERO + GRID
   ================================ */

.intro-section {
  text-align: center;
  padding: 3.5rem 0 3rem;
  background: #05070d;
}

.jobs-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at top right, #283593 0%, #050510 40%, #000 100%);
}

.hero-bg-accent-bottom {
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 0% 100%, rgba(255, 183, 77, 0.25), transparent 55%),
    radial-gradient(circle at 120% 0%, rgba(255, 64, 129, 0.25), transparent 55%);
  opacity: 0.7;
}

.jobs-hero .container {
  position: relative;
  z-index: 1;
}

.section-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.5rem;
}

.jobs-hero h1 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 0.8rem;
}

.intro-text {
  max-width: 820px;
  margin: 0.7rem auto;
  font-size: 1.05rem;
  color: #e2e2e2;
}

.intro-highlight {
  color: #fff59d;
  font-weight: 600;
}

/* FILTER BAR */
.filter-bar {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
}

.filter-pill {
  border-radius: 999px;
  padding: 0.5rem 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: default; /* visual only */
}

.filter-pill.active {
  background: #ffb300;
  color: #111;
  border-color: transparent;
}

/* JOB GRID */
.jobs-section {
  background: #05070d;
  padding: 3rem 0 4.5rem;
}

.job-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 2rem;
}

/* JOB CARD */
.job-card {
  position: relative;
  background: #ffffff;
  color: #1a1a1a;
  border-radius: 18px;
  padding: 2.2rem 2rem 2rem;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.job-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 0 0, rgba(255, 179, 0, 0.23), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(25, 118, 210, 0.2), transparent 55%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.job-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 60px rgba(255, 179, 0, 0.35);
}

.job-card:hover::before {
  opacity: 1;
}

/* AI RIBBON */
.ai-ribbon {
  position: absolute;
  top: 16px;
  left: -60px;
  width: 180px;
  text-align: center;
  transform: rotate(-35deg);
  background: #c62828;
  color: #fff;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 0.35rem 0;
  font-weight: 800;
}

.ribbon-gold {
  background: linear-gradient(120deg, #ffb300, #ff6f00);
}

.ribbon-blue {
  background: #0d47a1;
}

/* JOB CONTENT */
.job-logo {
  text-align: center;
  margin-bottom: 1.4rem;
}

.job-logo img {
  max-height: 90px;
  object-fit: contain;
  margin: 0 auto;
}

.job-info h2 {
  font-size: 1.45rem;
  font-weight: 900;
  margin-bottom: 0.4rem;
}

.job-company {
  color: #444;
  font-weight: 700;
  margin-bottom: 0.9rem;
}

.job-description {
  font-size: 1.02rem;
  color: #333;
  margin-bottom: 1rem;
}

.job-highlights {
  margin: 0 0 1rem 1.1rem;
  font-size: 0.98rem;
  color: #333;
}

.job-highlights li {
  margin-bottom: 0.25rem;
}

/* AI NOTES */
.ai-note {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.9rem;
}

.ai-note.red { color: #c62828; }
.ai-note.orange { color: #ef6c00; }
.ai-note.gold { color: #ff8f00; }

.job-action {
  margin-top: auto;
  text-align: center;
}

/* CLOSING STRIP */
.closing-strip {
  background: linear-gradient(120deg, #ff6f00, #ffb300);
  color: #111;
  text-align: center;
  padding: 3rem 0 3.2rem;
}

.closing-strip h2 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 0.9rem;
}

.closing-strip p {
  max-width: 720px;
  margin: 0 auto 1.6rem;
  font-size: 1.05rem;
}

.closing-btn {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.35);
}

/* FOOTER (shared) */
.site-footer,
.dark-footer {
  background: #000;
  color: #cfcfcf;
  text-align: center;
  padding: 1.8rem 0 2rem;
  font-size: 0.95rem;
}

.site-footer .container,
.dark-footer .container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.site-footer p,
.dark-footer p {
  margin: 0;
  width: 100%;
  text-align: center;
}

	  

/* ============================================================
   PREMIUM AI INTRO BLOCK — HOLOGRAPHIC LUXURY VERSION
   ============================================================ */

.ai-intro-block {
  position: relative;
  max-width: 1100px;
  margin: 3rem auto;
  padding: 3rem 2rem;
  text-align: center;

  /* holographic frame */
  border: 2px solid rgba(255, 180, 0, 0.35);
  border-radius: 28px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  box-shadow: 
      0 0 45px rgba(255, 180, 0, 0.25),
      0 0 80px rgba(255, 120, 0, 0.15) inset;
}

/* Subtle floating particles */
.ai-intro-block::before,
.ai-intro-block::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(255, 180, 0, 0.25), transparent 60%);
  animation: floatPulse 6s ease-in-out infinite alternate;
  pointer-events: none;
}

.ai-intro-block::before {
  top: -40px;
  left: -40px;
  animation-delay: 0s;
}

.ai-intro-block::after {
  bottom: -40px;
  right: -40px;
  animation-delay: 1.5s;
}

@keyframes floatPulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.3); opacity: 0.85; }
}

/* HOLOGRAPHIC SHINE ON HOVER */
.ai-intro-block:hover {
  box-shadow:
      0 0 60px rgba(255, 210, 120, 0.55),
      0 0 100px rgba(255, 160, 0, 0.35) inset;
  transition: box-shadow 0.4s ease;
}

/* MAIN PARAGRAPH — bigger, luxe */
.intro-text {
  font-size: 2.2rem !important;
  font-weight: 600 !important;
  color: #f5f5f5 !important;
  line-height: 1.55 !important;
  margin-bottom: 1.4rem !important;
  letter-spacing: 0.4px;
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.25);
}

/* HIGHLIGHT LINE — ultra premium gold holographic */
.intro-text.intro-highlight {
  font-size: 2.8rem !important;
  font-weight: 900 !important;
  line-height: 1.3 !important;
  margin-top: 1rem !important;

  background: linear-gradient(
    90deg,
    #fff7c9,
    #ffd65b,
    #ffb300,
    #ff8a00,
    #ffd65b,
    #fff7c9
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow: 
      0 0 22px rgba(255, 180, 0, 0.45),
      0 0 48px rgba(255, 120, 0, 0.35);

  animation: goldShimmer 5s linear infinite;
}

/* Moving gold shimmer effect */
@keyframes goldShimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .intro-text {
    font-size: 1.6rem !important;
  }
  .intro-text.intro-highlight {
    font-size: 2rem !important;
  }
  .ai-intro-block {
    padding: 2rem 1.2rem;
  }
}
	
/* PREMIUM CLOSING STRIP */
.closing-premium {
  background: radial-gradient(circle at top, #ffb30033, #000 70%);
  padding: 4rem 0 4.5rem;
  text-align: center;
  border-top: 1px solid rgba(255, 180, 0, 0.25);
  box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.6) inset;
}

.closing-title {
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  background: linear-gradient(90deg, #fff3c4, #ffb300, #ff6f00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 22px rgba(255, 180, 0, 0.4);
  margin-bottom: 1rem;
}

.closing-desc {
  max-width: 760px;
  margin: 0 auto 2rem;
  font-size: 1.3rem;
  color: #efefef;
  line-height: 1.6;
}

.closing-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.2rem;
}

.cbadge {
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #000;
  backdrop-filter: blur(6px);
}

.cbadge.gold { background: #ffb300; }
.cbadge.blue { background: #2196f3; color: #fff; }
.cbadge.white { background: #fff; }

.closing-small {
  font-size: 1rem;
  color: #cfcfcf;
  margin-bottom: 2.5rem;
}

.closing-small a {
  color: #ffb300;
  font-weight: 700;
}

.closing-premium .closing-btn {
  font-size: 1.15rem;
  padding: 1rem 2.5rem;
  box-shadow: 0 0 26px rgba(255, 190, 70, 0.7);
}
	
