/* =========================
   HEADER SECTION
========================= */

.header-section {
  position: fixed;
  width: 100%;
  z-index: 50;
}

/* Gradient overlay behind header */
.header-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.65) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: -1;                                                    
}                                                                                                                                                                                                                      

/* MULTI-COLOR LOGO GLOW */
.header-logo {
  position: relative;
}

.header-logo-glow {
  position: absolute;
  inset: -28px;
  z-index: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(0, 255, 157, 0.45), transparent 65%),
    radial-gradient(circle at 100% 0%, rgba(0, 200, 255, 0.4), transparent 65%),
    radial-gradient(circle at 50% 100%, rgba(160, 100, 255, 0.35), transparent 65%);
  filter: blur(28px);
  animation: logoGlowShift 10s ease-in-out infinite alternate;
}

@keyframes logoGlowShift {
  0% {
    transform: translate(-10px, -8px) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translate(5px, 0px) scale(1.05);
    opacity: 1;
  }
  100% {
    transform: translate(10px, 10px) scale(1);
    opacity: 0.9;
  }
}

/* NAV MENU (DESKTOP) */
.header-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem; /* <<< CONTROL MENU SPACING HERE */
}

.header-nav-item {
  position: relative;
  color: #ffffff;
  font-weight: 300;
  padding: 4px 0;
  transition: color 0.3s ease;
}

.header-nav-item::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 50%;
  height: 2px;
  width: 0%;
   transform: translateX(-50%);
  background: #00ff9d;
  transition: width 0.35s ease;
}

.header-nav-item:hover {
  color: #00ff9d;
}

.header-nav-item:hover::after {
  width: 100%;
}

.header-nav-item.active {
  color: #00ff9d;
  font-weight: 600;
}

.header-nav-item.active::after {
  width: 100%;
}

/* SOCIAL ICONS */
.header-social-icon {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1); /* force white */
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.header-social-icon:hover {
  opacity: 1;
  transform: translateY(-1px);
}

/* MOBILE NAV */
#mobileMenu{
	background-color:rgba(0,0,0,0.1);
}
.header-mobile-nav {
  width: 100%;
}

.header-mobile-item {
  display: block;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.3s ease;
}

.header-mobile-item.active {
  color: #00ff9d;
}


/* =========================================================
CAREERS PAGE – NEO ENTERTAINMENT STUDIOS
Matches Existing Visual Language
========================================================= */

/* ---------- GLOBAL ---------- */
.careers-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.careers-section-title {
  font-size: 28px;
  font-weight: 700;
  color: #00ff9d;
  margin-bottom: 1rem;
}

.careers-section-desc {
  max-width: 620px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
}

/* ---------- HERO ---------- */
.careers-hero-section {
  position: relative;
  height: 90vh;
  background: #05080a;
  display: flex;
  align-items: center;
  background-image: url("../assets/bg/careers.png");
  background-size: cover;
}
/*
.careers-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.7),
    rgba(0,0,0,0.9)
  );
} */

.careers-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin-left: 35px;
  padding: 0 1.5rem;
}

.careers-label {
  font-size: 13px;
  letter-spacing: 0.18em;
  color: #00ff9d;
}

.careers-hero-title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  margin: 1rem 0;
}

.careers-hero-title span {
  color: #00ff9d;
  text-shadow: 0 0 30px rgba(0,255,157,0.35);
}

.careers-hero-desc {
  max-width: 620px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
}

/* ---------- PRIMARY BUTTON ---------- */
.careers-primary-btn {
  display: inline-block;
  margin-top: 1.8rem;
  padding: 0.9rem 2rem;
  background: #00ff9d;
  color: #05080a;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.careers-primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,255,157,0.35);
}

/* ================= WHY WORK AT NEO ================= */

.careers-why-neo-section {
  background-color: #05080a;
 padding:2rem 0;
}

.careers-why-neo-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

/* LEFT SIDE */
.careers-why-neo-left {
  max-width: 720px;
}

.careers-why-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
}

.why-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: #00ff9d;
  margin-bottom: 0.4rem;
}

.why-item p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  text-align: justify;
}

/* RIGHT SIDE IMAGE */
.careers-why-neo-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.careers-why-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 420px;
  border-radius: 18px;
  overflow: hidden;
}

/* Glow behind image */
.careers-why-image-wrapper::before {
  content: "";
  position: absolute;
  inset: -25px;
  background: radial-gradient(
    circle,
    rgba(0,255,157,0.15),
    transparent 50%
  );
  filter: blur(10px);
  opacity: 0.5;
  z-index: 0;
}

.careers-why-image-wrapper img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 18px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.8));
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .careers-why-neo-container {
    grid-template-columns: 1fr;
  }

  .careers-why-neo-right {
    margin-top: 3rem;
  }
}

/* ================= LIFE AT NEO – CONTROLLED GRID ================= */

/* Container width (adjust here if needed) */
.careers-life-neo-section .careers-container {
  max-width: 1280px; /* ⬅️ CONTROL WIDTH HERE */
  padding:2rem 0;
}

/* GRID SYSTEM */
.careers-life-neo-grid {
  --columns: 4; /* ⬅️ CHANGE TO 3 OR 2 IF NEEDED */

  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(var(--columns), 1fr);
  gap: 2.2rem;
}

/* Card */
.life-neo-card {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.04),
    rgba(255,255,255,0.01)
  );
  border-radius: 18px;
  padding: 2.2rem;
  border: 1px solid rgba(255,255,255,0.06);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
	text-align:center;
}

.life-neo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 45px rgba(0,0,0,0.6);
  border-color: rgba(0,255,157,0.45);
}

/* Icon */
.life-neo-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1.1rem;
  margin:auto;
}

.life-neo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%)
    invert(67%) sepia(91%) saturate(678%)
    hue-rotate(90deg) brightness(110%);
}

/* Title */
.life-neo-card h4 {
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

/* Text */
.life-neo-card p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  text-align: justify;
}

/* ================= RESPONSIVE CONTROL ================= */

/* Tablet */
@media (max-width: 1100px) {
  .careers-life-neo-grid {
    --columns: 2;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .careers-life-neo-grid {
    --columns: 1;
  }
}


/* ================= ROLES & OPPORTUNITIES ================= */

.careers-roles-section {
  background-color: #05080a;
  padding: 6rem 0;
}

/* Container width control */
.careers-roles-section .careers-container {
  max-width: 1280px; /* ⬅️ adjust if needed */
}

/* ---------- FILTER TABS ---------- */
.careers-role-filters {
  margin: 2.5rem 0 3.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.filter-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: #ffffff;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.filter-btn:hover {
  transform: translateY(-1px);
  border-color: #00ff9d;
  color: #00ff9d;
}

.filter-btn.active {
  background: #00ff9d;
  color: #05080a;
  border-color: #00ff9d;
}

/* ---------- JOB GRID ---------- */
.careers-roles-grid {
  --columns: 3; /* ⬅️ CONTROL NUMBER OF CARDS PER ROW */

  display: grid;
  grid-template-columns: repeat(var(--columns), 1fr);
  gap: 2.5rem;
}

/* Job Card */
.career-role-card {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.04),
    rgba(255,255,255,0.01)
  );
  border-radius: 18px;
  padding: 2.2rem;
  border: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.career-role-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 45px rgba(0,0,0,0.6);
  border-color: rgba(0,255,157,0.45);
}

/* Card Top */
.role-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}

.role-card-top h3 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}

/* Tag */
.role-tag {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.3);
  color: #00ff9d;
}

/* Description */
.career-role-card p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  margin: 0.8rem 0 1.4rem;
  text-align: justify;
}

/* CTA */
.role-cta {
  font-size: 14px;
  font-weight: 500;
  color: #00ff9d;
}

/* ---------- RESPONSIVE ---------- */

/* Tablet */
@media (max-width: 1100px) {
  .careers-roles-grid {
    --columns: 2;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .careers-roles-grid {
    --columns: 1;
  }
}

/* ================= JD POPUP ================= */

.jd-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  backdrop-filter: blur(6px);
}

.jd-popup {
  position: relative;
  background: #05080a;
  max-width: 720px;
  width: 90%;
  padding: 3rem;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 30px 80px rgba(0,0,0,0.8);
}

/* Close Button */
.jd-close-btn {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 28px;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  opacity: 0.7;
}

.jd-close-btn:hover {
  opacity: 1;
}

/* Title */
.jd-popup h3 {
  font-size: 26px;
  font-weight: 700;
  color: #00ff9d;
  margin-bottom: 0.6rem;
}

/* Meta */
.jd-meta {
  display: flex;
  gap: 1.5rem;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem;
}

/* Content */
.jd-popup p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  text-align: justify;
}

.jd-section {
  margin-top: 2rem;
}

.jd-section h4 {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.6rem;
}

/* Actions */
.jd-actions {
  margin-top: 2.5rem;
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.jd-btn-primary,
.jd-btn-secondary {
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Primary */
.jd-btn-primary {
  background: #00ff9d;
  color: #05080a;
}

.jd-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,255,157,0.35);
}

/* Secondary */
.jd-btn-secondary {
  border: 1px solid rgba(255,255,255,0.3);
  color: #ffffff;
}

.jd-btn-secondary:hover {
  border-color: #00ff9d;
  color: #00ff9d;
}


/* ================= INTERNSHIPS & FRESHERS ================= */

.careers-intern-fresher-section {
  background: rgba(255,255,255,0.03);
  padding:2rem 0;
}

/* Header spacing */
.intern-header {
  max-width: 700px;
  margin-bottom: 4rem;
}

/* Grid layout */
.intern-content-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

/* Left content */
.intern-left h3 {
  font-size: 22px;
  font-weight: 600;
  color: #00ff9d;
  margin-bottom: 1rem;
}

.intern-left p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.2rem;
  text-align: justify;
}

/* Right cards grid */
.intern-right {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
}

/* Card */
.intern-card {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.04),
    rgba(255,255,255,0.01)
  );
  border-radius: 18px;
  padding: 2.2rem;
  border: 1px solid rgba(255,255,255,0.06);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.intern-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 45px rgba(0,0,0,0.6);
  border-color: rgba(0,255,157,0.45);
}

/* Icon */
.intern-icon {
  width: 96px;
  height: 96px;
  margin-bottom: 1.2rem;
}

.intern-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%)
    invert(67%) sepia(91%) saturate(678%)
    hue-rotate(90deg) brightness(110%);
}

/* Card text */
.intern-card h4 {
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.6rem;
}

.intern-card p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  text-align: justify;
}

/* Responsive */
@media (max-width: 1024px) {
  .intern-content-grid {
    grid-template-columns: 1fr;
  }

  .intern-right {
    grid-template-columns: 1fr;
  }
}


/* ================= OUR HIRING PROCESS ================= */

.careers-hiring-section {
  background-color: #05080a;
  padding: 6rem 0;
}

/* Steps container */
.hiring-steps {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 2rem;
}

/* Individual step */
.hiring-step {
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.04),
    rgba(255,255,255,0.01)
  );
  border-radius: 18px;
  padding: 2.2rem 1.8rem;
  border: 1px solid rgba(255,255,255,0.06);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.hiring-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 45px rgba(0,0,0,0.6);
  border-color: rgba(0,255,157,0.45);
}

/* Step number */
.step-number {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #00ff9d;
  margin-bottom: 0.6rem;
}

/* Title */
.hiring-step h4 {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.6rem;
}

/* Description */
.hiring-step p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  text-align: justify;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 1200px) {
  .hiring-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hiring-steps {
    grid-template-columns: 1fr;
  }
}


/* ---------- CTA ---------- */
.careers-cta-section {
  background: linear-gradient(
    180deg,
    rgba(5,8,10,1),
    rgba(8,18,20,1)
  );
  padding: 6rem 0;
  text-align: center;
}

.careers-cta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 2rem;
}

/* ================= FOOTER ================= */

.footer-section {
  background: radial-gradient(
    ellipse at top,
    rgba(0, 255, 157, 0.06),
    rgba(0, 0, 0, 0.9)
  );
  padding: 4rem 0 2rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr 1.2fr;
  gap: 2.5rem;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Brand */
.footer-logo span img {
	width:150px;
}

 

.footer-desc {
  margin-top: 0.8rem;
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
  color: rgba(255, 255, 255, 0.6);
}

/* Headings */
.footer-heading {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

/* Links */
.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.5rem;
  font-size: 14px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #00ff9d;
}

.footer-contact span {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

/* Socials */
.footer-socials {
  display: flex;
  gap: 12px;
  margin-bottom: 1rem;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-socials a:hover {
  color: #000;
  background: #00ff9d;
  border-color: #00ff9d;
}

/* Newsletter */
.footer-newsletter-form {
  display: flex;
  align-items: center;
  margin-top: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  padding: 6px;
}

.footer-newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 14px;
  padding: 0.6rem 0.8rem;
}

.footer-newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter-form button {
  background: #00ff9d;
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  cursor: pointer;
  font-size: 16px;
  color: #000;
  transition: transform 0.2s ease;
}

.footer-newsletter-form button:hover {
  transform: translateX(2px);
}

/* Bottom bar */
.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #00ff9d;
}
