/* ===================================================
   MASTERMIND GURUKUL — HIRING PAGE
   style.css
=================================================== */

:root {
  --black:      #0a0a0a;
  --deep:       #111111;
  --charcoal:   #1c1c1c;
  --gold:       #c9a84c;
  --gold-lt:    #e4c06e;
  --gold-pale:  #f0d898;
  --gold-glow:  rgba(201,168,76,.18);
  --white:      #ffffff;
  --off-white:  #faf8f5;
  --nude:       #f5e6d8;
  --nude-mid:   #e8c9b0;
  --text-muted: #888;
  --sh-gold:    0 8px 40px rgba(201,168,76,.25);
  --sh-dark:    0 8px 40px rgba(0,0,0,.5);
  --radius:     16px;
  --radius-lg:  24px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ── SCROLL PROGRESS ── */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-pale));
  box-shadow: 0 0 12px var(--gold); z-index: 9999;
  transition: width .1s linear;
}

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg,#25d366,#128c7e);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  animation: waPulse 2.5s infinite; transition: transform .3s;
}
.wa-float:hover { transform: scale(1.12) rotate(-6deg); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,.45); }
  50% { box-shadow: 0 6px 40px rgba(37,211,102,.75), 0 0 0 12px rgba(37,211,102,.08); }
}

/* ── BUTTONS ── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 38px; border-radius: 50px;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: var(--black); font-weight: 700; font-size: .95rem;
  border: none; cursor: pointer; transition: all .35s cubic-bezier(.34,1.56,.64,1);
  box-shadow: 0 4px 24px rgba(201,168,76,.4); position: relative; overflow: hidden;
}
.btn-gold::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg,transparent,rgba(255,255,255,.18),transparent);
  transform: translateX(-100%); transition: transform .5s;
}
.btn-gold:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 10px 40px rgba(201,168,76,.55); }
.btn-gold:hover::after { transform: translateX(100%); }
.btn-gold:disabled { opacity: .7; cursor: not-allowed; transform: none; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 34px; border-radius: 50px;
  background: transparent; border: 1.5px solid var(--gold);
  color: var(--gold); font-weight: 600; font-size: .95rem;
  cursor: pointer; transition: all .3s;
}
.btn-outline:hover { background: var(--gold-glow); transform: translateY(-2px); }

/* ── TYPOGRAPHY HELPERS ── */
.s-label {
  font-size: .72rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); font-weight: 600; display: block; margin-bottom: 10px;
}
.s-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4.5vw, 3rem); font-weight: 700; line-height: 1.2;
  background: linear-gradient(135deg,#fff 30%,var(--gold-pale));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.s-body { font-size: 1rem; color: rgba(255,255,255,.62); line-height: 1.8; margin-top: 12px; max-width: 600px; }
.s-body.center { margin: 12px auto 0; text-align: center; }
.gold-line { width: 60px; height: 3px; margin: 18px 0; background: linear-gradient(90deg,var(--gold),transparent); border-radius: 3px; }
.gold-line.center { margin-left: auto; margin-right: auto; }
.center-label { text-align: center; }
.center-title { text-align: center; }
.divider { width: 100%; height: 1px; background: linear-gradient(90deg,transparent,var(--gold),transparent); opacity: .25; }

/* ── CONTAINER ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
section { padding: 90px 0; }

/* ── SECTION HEADER ── */
.section-header { text-align: center; margin-bottom: 14px; }

/* ── REVEAL ANIMATIONS ── */
.reveal, .reveal-left, .reveal-right {
  opacity: 0; transition: opacity .7s ease, transform .7s ease;
}
.reveal { transform: translateY(32px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }

/* ── POPUPS ── */
.popup-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.75);
  z-index: 10000; display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px); animation: fadeIn .4s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.popup-box {
  background: linear-gradient(145deg,#161616,#1e1710);
  border: 1.5px solid var(--gold); border-radius: 24px;
  padding: 48px 42px; max-width: 480px; width: 92%;
  text-align: center; position: relative;
  box-shadow: var(--sh-gold); animation: popSlide .45s cubic-bezier(.34,1.56,.64,1);
}
@keyframes popSlide { from { transform: translateY(40px) scale(.92); opacity: 0; } to { transform: none; opacity: 1; } }
.popup-box h3 { font-family: 'Playfair Display',serif; font-size: 1.5rem; font-weight: 700; margin-bottom: 10px; color: var(--gold-pale); }
.popup-box p { color: rgba(255,255,255,.62); font-size: .9rem; margin-bottom: 20px; line-height: 1.7; }

.popup-close {
  position: absolute; top: 16px; right: 18px;
  background: rgba(255,255,255,.08); border: none; color: var(--text-muted);
  width: 30px; height: 30px; border-radius: 50%; font-size: .8rem;
  cursor: pointer; transition: all .3s;
}
.popup-close:hover { background: rgba(201,168,76,.2); color: var(--gold); }

.hire-popup-box .popup-badge {
  display: inline-block; padding: 5px 18px; border-radius: 30px;
  background: rgba(201,168,76,.12); border: 1px solid rgba(201,168,76,.35);
  color: var(--gold-pale); font-size: .75rem; letter-spacing: 3px;
  text-transform: uppercase; font-weight: 600; margin-bottom: 14px;
}
.hire-popup-box .popup-title {
  font-family: 'Playfair Display',serif; font-size: 1.8rem; font-weight: 900;
  background: linear-gradient(135deg,var(--gold-pale),var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}
.hire-popup-box .popup-title span { font-style: italic; }
.hire-popup-box .popup-loc { font-size: .85rem; color: var(--text-muted); margin-bottom: 16px; }
.popup-roles { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 14px; }
.popup-roles span {
  background: rgba(201,168,76,.1); border: 1px solid rgba(201,168,76,.3);
  color: var(--gold-pale); font-size: .75rem; padding: 4px 14px; border-radius: 30px;
}
.popup-perks { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 22px; }
.popup-perks span {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  color: var(--white); font-size: .8rem; padding: 5px 14px; border-radius: 8px;
}
.popup-num { margin-top: 14px; font-size: .83rem; color: var(--text-muted); }
.popup-icon { font-size: 3.5rem; margin-bottom: 14px; display: block; }

/* ===========================
   HERO (NEO-BRUTALISM LIGHT)
=========================== */
.light-hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 120px 24px 80px;
  background-color: #ffffff;
  /* Dotted Background Pattern */
  background-image: radial-gradient(#d1d5db 2px, transparent 2px);
  background-size: 32px 32px;
  overflow: hidden;
  color: #111;
}

.float-icon {
  position: absolute;
  color: #e5e7eb; /* faint grey */
  z-index: 1;
}
.f-bl { font-size: 4rem; bottom: 15%; left: 10%; transform: rotate(-15deg); }
.f-tl { font-size: 5rem; top: 10%; left: 8%; transform: rotate(10deg); color: #f3f4f6; }
.f-tc { font-size: 3rem; top: 8%; left: 55%; color: #f9fafb; }

.neobrutalism {
  position: relative; z-index: 2; max-width: 900px; width: 100%;
}

.nm-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.25;
  color: #161616;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.ai-box {
  display: inline-block;
  background-color: #e5e7eb;
  color: #111;
  padding: 0px 14px;
  border-radius: 8px;
  margin: 0 4px;
  box-shadow: 2px 2px 0px rgba(0,0,0,1);
}

.hero-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin: 28px 0 32px;
}
.hero-divider .dots { letter-spacing: 2px; font-size: 1.4rem; color: #111; font-weight: 900; }
.hero-divider .line { height: 3px; width: 120px; background-color: #111; }

.nm-sub1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 600;
  color: #111;
  margin-bottom: 8px;
}
.nm-sub2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #111;
  margin-bottom: 24px;
}
.text-gold { color: #111; font-weight: 900; }

.hero-handwritten {
  font-family: 'Caveat', cursive;
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 24px;
}
.arrow { color: #111; font-family: sans-serif; font-size: 1.4rem; vertical-align: middle; }

.btn-neo {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #111;
  background-color: #f4b41a;
  padding: 16px 36px;
  border: 3px solid #111;
  border-radius: 12px;
  box-shadow: 5px 5px 0px #111;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
.btn-neo:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0px #111;
}

.hero-collab {
  margin-top: 50px;
}
.hero-collab p {
  font-size: 0.85rem;
  color: #9ca3af;
  text-transform: lowercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.collab-logos {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.logo-box {
  background: white;
  border: 2px solid #111;
  border-radius: 8px;
  padding: 10px 24px;
  font-size: 1.1rem;
  box-shadow: 2px 2px 0px rgba(0,0,0,0.1);
  display: flex; align-items: center; justify-content: center; gap: 6px;
}

/* hero animations */
.animate-down { animation: heroDown .9s both cubic-bezier(0.16, 1, 0.3, 1); }
.d1 { animation-delay: .1s; }
.d2 { animation-delay: .2s; }
.d3 { animation-delay: .3s; }
.d4 { animation-delay: .35s; }
.d5 { animation-delay: .4s; }
.d6 { animation-delay: .45s; }
.d7 { animation-delay: .55s; }
@keyframes heroDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: none; } }


/* ===========================
   ABOUT
=========================== */
#about { background: linear-gradient(160deg,#0e0c09,#110e08); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center;
}
.about-img { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.about-img img,
.about-img video {
  width: 100%; height: 520px; object-fit: cover;
  border-radius: var(--radius-lg); filter: brightness(.9) saturate(1.1);
  transition: transform .5s;
  display: block;
}
.about-img:hover img,
.about-img:hover video { transform: scale(1.04); }
.about-img::after {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg);
  border: 1.5px solid rgba(201,168,76,.3); pointer-events: none;
}
.about-badge, .about-badge2 {
  position: absolute; background: rgba(10,10,10,.85); backdrop-filter: blur(12px);
  border: 1px solid rgba(201,168,76,.3); border-radius: 14px; padding: 14px 18px;
}
.about-badge { bottom: 24px; left: 24px; }
.about-badge2 { bottom: 24px; right: 24px; }
.badge-num { font-family: 'Playfair Display',serif; font-size: 1.8rem; font-weight: 900; color: var(--gold); line-height: 1; }
.badge-lbl { font-size: .72rem; color: rgba(255,255,255,.5); margin-top: 2px; }
.about-text .s-body { max-width: 100%; }
.about-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.about-card {
  background: rgba(255,255,255,.03); border: 1px solid rgba(201,168,76,.14);
  border-radius: 14px; padding: 14px 16px; display: flex; gap: 12px; align-items: flex-start;
  transition: all .3s;
}
.about-card:hover { background: rgba(201,168,76,.07); border-color: rgba(201,168,76,.38); transform: translateY(-3px); }
.about-card > span { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.about-card h4 { font-size: .86rem; font-weight: 600; color: var(--white); }
.about-card p { font-size: .74rem; color: var(--text-muted); margin-top: 2px; }

/* ===========================
   WHY JOIN
=========================== */
#why { background: var(--black); }
.why-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 46px;
}
.why-card {
  background: linear-gradient(145deg,rgba(255,255,255,.04),rgba(201,168,76,.02));
  border: 1px solid rgba(201,168,76,.14); border-radius: var(--radius);
  padding: 26px 20px; text-align: center; cursor: default;
  transition: all .4s cubic-bezier(.34,1.56,.64,1); position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius);
  background: linear-gradient(135deg,rgba(201,168,76,.1),transparent); opacity: 0; transition: opacity .4s;
}
.why-card:hover { transform: translateY(-8px); border-color: rgba(201,168,76,.5); box-shadow: var(--sh-gold); }
.why-card:hover::before { opacity: 1; }
.w-icon { font-size: 1.9rem; display: block; margin-bottom: 10px; }
.w-check {
  display: inline-block; width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg,var(--gold),var(--gold-lt));
  color: var(--black); font-size: .65rem; font-weight: 700;
  line-height: 22px; text-align: center; margin-bottom: 10px;
}
.why-card h4 { font-size: .88rem; font-weight: 600; color: var(--white); }
.why-card p { font-size: .76rem; color: var(--text-muted); margin-top: 5px; }

/* ===========================
   POSITIONS
=========================== */
#positions { background: linear-gradient(160deg,#0e0c09,#0a0a0a); }
.pos-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 46px; }
.pos-card {
  background: rgba(255,255,255,.025); border: 1px solid rgba(201,168,76,.12);
  border-radius: 20px; padding: 30px 26px; position: relative; overflow: hidden;
  transition: all .4s;
}
.pos-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg,var(--gold),var(--gold-pale),var(--gold));
  opacity: 0; transition: opacity .4s;
}
.pos-card:hover { transform: translateY(-6px); border-color: rgba(201,168,76,.4); box-shadow: var(--sh-gold); }
.pos-card:hover::after { opacity: 1; }
.pos-icon {
  width: 50px; height: 50px; border-radius: 14px;
  background: linear-gradient(135deg,rgba(201,168,76,.2),rgba(201,168,76,.05));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 16px; border: 1px solid rgba(201,168,76,.2);
}
.pos-card h3 { font-family: 'Playfair Display',serif; font-size: 1.2rem; font-weight: 700; color: var(--gold-pale); margin-bottom: 14px; }
.pos-duties { list-style: none; margin-bottom: 12px; }
.pos-duties li, .pos-reqs li {
  font-size: .8rem; color: rgba(255,255,255,.62); padding: 3px 0;
  display: flex; align-items: center; gap: 8px;
}
.pos-duties li::before { content: '\f005'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--gold); font-size: .5rem; min-width: 15px; display: inline-block; }
.pos-req-lbl { font-size: .7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin: 10px 0 6px; }
.pos-reqs { list-style: none; margin-bottom: 14px; }
.pos-reqs li::before { content: '\f061'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: rgba(201,168,76,.6); min-width: 18px; font-size: .8rem; }
.pos-apply {
  display: inline-block; padding: 7px 18px;
  background: linear-gradient(135deg,rgba(201,168,76,.15),rgba(201,168,76,.05));
  border: 1px solid rgba(201,168,76,.3); border-radius: 30px;
  font-size: .76rem; color: var(--gold-lt); font-weight: 500; transition: all .3s;
}
.pos-apply:hover { background: rgba(201,168,76,.25); }
.pos-cta { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; background: linear-gradient(145deg,rgba(201,168,76,.1),rgba(201,168,76,.03)); border-color: rgba(201,168,76,.28); }
.pos-cta h3 { color: var(--gold-pale); margin-bottom: 10px; }
.pos-cta p { font-size: .83rem; color: rgba(255,255,255,.5); line-height: 1.7; }

/* ===========================
   FRESHERS
=========================== */
#freshers {
  background: linear-gradient(135deg,#1a1308,#0e0c09,#14100a); position: relative;
}
#freshers::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center,rgba(201,168,76,.07),transparent 65%);
}
.freshers-box {
  max-width: 880px; margin: 0 auto; position: relative; z-index: 1;
  background: rgba(255,255,255,.03); border: 1.5px solid rgba(201,168,76,.24);
  border-radius: 28px; padding: 58px 48px; text-align: center;
  backdrop-filter: blur(10px);
}
.fresh-emoji { font-size: 3.8rem; display: block; margin-bottom: 14px; }
.fresh-desc { font-size: 1rem; color: rgba(255,255,255,.65); line-height: 1.8; max-width: 580px; margin: 14px auto 28px; }
.fresh-list {
  list-style: none; display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center; margin-bottom: 32px;
}
.fresh-list li {
  background: rgba(255,255,255,.05); border: 1px solid rgba(201,168,76,.18);
  border-radius: 10px; padding: 10px 20px; font-size: .86rem;
  display: flex; gap: 8px; align-items: center;
}
.fresh-list li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--gold); }

/* ===========================
   BENEFITS
=========================== */
#benefits { background: var(--black); }
.ben-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 46px; }
.ben-card {
  background: linear-gradient(145deg,rgba(255,255,255,.03),transparent);
  border: 1px solid rgba(201,168,76,.12); border-radius: var(--radius);
  padding: 28px 20px; text-align: center; transition: all .35s;
}
.ben-card:hover { border-color: rgba(201,168,76,.45); transform: translateY(-6px); background: rgba(201,168,76,.06); box-shadow: var(--sh-gold); }
.ben-card > span { font-size: 2.1rem; display: block; margin-bottom: 12px; }
.ben-card h4 { font-size: .88rem; font-weight: 600; color: var(--gold-pale); margin-bottom: 5px; }
.ben-card p { font-size: .76rem; color: var(--text-muted); }

/* ===========================
   LOCATIONS
=========================== */
#locations { background: linear-gradient(160deg,#0e0c09,#111); }
.loc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 46px; }
.loc-card {
  background: linear-gradient(145deg,rgba(255,255,255,.04),rgba(201,168,76,.02));
  border: 1px solid rgba(201,168,76,.14); border-radius: 20px;
  padding: 34px 26px; text-align: center; transition: all .4s; position: relative; overflow: hidden;
}
.loc-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg,transparent,var(--gold),transparent);
  transform: scaleX(0); transition: transform .4s;
}
.loc-card:hover { transform: translateY(-8px); border-color: rgba(201,168,76,.5); box-shadow: var(--sh-gold); }
.loc-card:hover::before { transform: scaleX(1); }
.loc-icon { font-size: 2.7rem; display: block; margin-bottom: 14px; }
.loc-card h3 { font-family: 'Playfair Display',serif; font-size: 1.25rem; font-weight: 700; color: var(--gold-pale); margin-bottom: 10px; }
.loc-card p { font-size: .82rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 14px; }
.loc-tag {
  display: inline-block; padding: 4px 16px; border-radius: 30px;
  background: rgba(201,168,76,.1); border: 1px solid rgba(201,168,76,.2);
  font-size: .74rem; color: var(--gold-lt);
}
.loc-note { text-align: center; margin-top: 28px; font-size: .88rem; color: rgba(255,255,255,.38); font-style: italic; }

/* ===========================
   FORM
=========================== */
#apply { background: linear-gradient(160deg,#0a0a0a,#0e0c09); }
.form-wrap {
  max-width: 740px; margin: 0 auto;
  background: rgba(255,255,255,.03); border: 1.5px solid rgba(201,168,76,.2);
  border-radius: 28px; padding: 52px 46px; backdrop-filter: blur(12px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
.form-group label { font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.52); letter-spacing: 1px; text-transform: uppercase; }
.req { color: var(--gold); }
.form-group input, .form-group select, .form-group textarea {
  background: rgba(255,255,255,.05); border: 1px solid rgba(201,168,76,.18);
  border-radius: 12px; padding: 13px 17px;
  color: var(--white); font-family: 'Poppins',sans-serif; font-size: .9rem;
  outline: none; transition: all .3s; width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: rgba(201,168,76,.7); background: rgba(255,255,255,.07);
  box-shadow: 0 0 0 3px rgba(201,168,76,.1);
}
.form-group select option { background: #111; color: var(--white); }
.form-group textarea { resize: vertical; min-height: 110px; }

/* file drop */
.file-drop {
  border: 1.5px dashed rgba(201,168,76,.3); border-radius: 12px;
  transition: all .3s; position: relative; cursor: pointer; overflow: hidden;
}
.file-drop:hover, .file-drop.drag-over { border-color: var(--gold); background: rgba(201,168,76,.05); }
.file-drop input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; z-index: 2; }
.file-drop-inner { padding: 28px; text-align: center; }
.file-icon { font-size: 2rem; display: block; margin-bottom: 8px; }
.file-drop-inner p { font-size: .84rem; color: rgba(255,255,255,.5); }
.file-drop-inner p strong { color: var(--gold-lt); }
.file-hint { font-size: .74rem !important; color: rgba(255,255,255,.3) !important; margin-top: 4px; }
.file-label { padding: 12px 16px; font-size: .84rem; color: var(--gold-pale); text-align: center; }

.form-submit { text-align: center; margin-top: 8px; }
.submit-btn { font-size: 1rem; padding: 16px 50px; min-width: 220px; justify-content: center; }
.spin { animation: spinAnim 1s linear infinite; }
@keyframes spinAnim { to { transform: rotate(360deg); } }

.form-error {
  background: rgba(220,50,50,.1); border: 1px solid rgba(220,50,50,.3);
  color: #f87171; border-radius: 10px; padding: 12px 16px;
  font-size: .85rem; margin-bottom: 16px;
}

/* ===========================
   FINAL CTA
=========================== */
#final-cta {
  padding: 120px 0;
  background:
    linear-gradient(160deg,rgba(10,8,3,.97),rgba(20,15,5,.97)),
    url('https://images.unsplash.com/photo-1522337360788-8b13dee7a37e?w=1600&q=80') center/cover no-repeat;
}
#final-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center,rgba(201,168,76,.09),transparent 60%);
}
.final-inner { position: relative; z-index: 1; text-align: center; max-width: 700px; margin: 0 auto; padding: 0 24px; }
.ornament { display: flex; align-items: center; gap: 16px; justify-content: center; margin-bottom: 22px; font-size: 1.1rem; }
.ornament span { height: 1px; width: 80px; background: linear-gradient(90deg,transparent,rgba(201,168,76,.4)); }
.ornament span:last-child { background: linear-gradient(270deg,transparent,rgba(201,168,76,.4)); }
.final-title {
  font-family: 'Playfair Display',serif;
  font-size: clamp(2rem,6vw,3.8rem); font-weight: 900;
  background: linear-gradient(135deg,#fff,var(--gold-pale),var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1.2; margin-bottom: 18px;
}
.final-desc { font-size: 1.05rem; color: rgba(255,255,255,.62); line-height: 1.8; margin-bottom: 18px; }
.final-limited {
  display: inline-block; padding: 7px 22px; border-radius: 30px;
  background: rgba(201,168,76,.12); border: 1px solid rgba(201,168,76,.34);
  color: var(--gold-pale); font-size: .84rem; font-weight: 600; margin-bottom: 24px; letter-spacing: 1px;
}
.final-contact { font-size: 1.05rem; color: var(--gold-lt); font-weight: 600; margin-bottom: 30px; }
.final-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.final-copy { margin-top: 50px; font-size: .76rem; color: rgba(255,255,255,.18); letter-spacing: 2px; text-transform: uppercase; }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .ben-grid { grid-template-columns: repeat(2,1fr); }
  .pos-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img img, .about-img video { height: 340px; }
  .about-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .loc-grid { grid-template-columns: 1fr; }
  .pos-grid { grid-template-columns: 1fr; }
  section { padding: 70px 0; }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .form-wrap { padding: 30px 20px; }
  .freshers-box { padding: 36px 20px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .ben-grid { grid-template-columns: 1fr 1fr; }
  .about-cards { grid-template-columns: 1fr; }
}
@media (max-width: 420px) {
  .why-grid, .ben-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 3.2rem; }
}

/* ===================================================
   NEO-BRUTALISM GLOBAL OVERRIDES
=================================================== */
body {
  background-color: #ffffff !important;
  background-image: radial-gradient(#d1d5db 2px, transparent 2px) !important;
  background-size: 32px 32px !important;
  color: #111 !important;
}
section {
  background: transparent !important;
}
#about, #why, #positions, #freshers, #benefits, #locations, #apply, #final-cta {
  background: transparent !important;
}

/* Typography Overrides */
.s-title { background: none; -webkit-text-fill-color: #111; color: #111; text-shadow: 2px 2px 0px rgba(0,0,0,0.1); }
.s-body { color: #333; }
.s-label { color: #111; font-weight: 800; background: #e5e7eb; display: inline-block; padding: 4px 12px; border-radius: 6px; }

/* Global Cards Neo-Brutalist */
.about-card, .why-card, .pos-card, .freshers-box, .ben-card, .loc-card, .form-wrap, .popup-box {
  background: #ffffff !important;
  border: 3px solid #111 !important;
  box-shadow: 5px 5px 0px #111 !important;
  border-radius: 12px !important;
  color: #111 !important;
  backdrop-filter: none !important;
}
.about-card:hover, .why-card:hover, .pos-card:hover, .ben-card:hover, .loc-card:hover {
  transform: translate(2px, 2px) !important;
  box-shadow: 3px 3px 0px #111 !important;
}

/* Texts inside Cards */
.about-card h4, .why-card h4, .ben-card h4 { color: #111 !important; font-weight: 800; }
.pos-card h3, .loc-card h3, .popup-box h3 { color: #111 !important; font-weight: 900; background: none; -webkit-text-fill-color: #111; }
.about-card p, .why-card p, .ben-card p, .loc-card p, .popup-box p, .fresh-desc, .pos-duties li, .pos-reqs li, .pos-cta p, .final-desc, .loc-note {
  color: #333 !important; font-weight: 500;
}
.w-icon, .pos-icon, .loc-icon, .fresh-emoji, .ben-card > span, .file-icon, .popup-icon {
  color: #111 !important; text-shadow: none;
  background: #fff !important; border: 2px solid #111 !important;
  box-shadow: 2px 2px 0px #111;
}
.w-check { background: #f4b41a !important; border: 2px solid #111; color: #111 !important; box-shadow: 2px 2px 0px #111; }
.pos-duties li::before, .pos-reqs li::before { color: #111 !important; }

/* Buttons & Elements */
.btn-gold, .pos-apply {
  background: #f4b41a !important; color: #111 !important; font-weight: 800 !important;
  border: 3px solid #111 !important; border-radius: 12px !important;
  box-shadow: 5px 5px 0px #111 !important;
}
.btn-gold:hover, .pos-apply:hover { transform: translate(2px, 2px) !important; box-shadow: 3px 3px 0px #111 !important; }
.btn-outline {
  background: #fff !important; color: #111 !important; font-weight: 800 !important;
  border: 3px solid #111 !important; border-radius: 12px !important; box-shadow: 4px 4px 0px #111 !important; 
}
.btn-outline:hover { transform: translate(2px, 2px) !important; box-shadow: 2px 2px 0px #111 !important; }

/* Forms */
.form-group label { color: #111 !important; font-weight: 800; }
.form-group input, .form-group select, .form-group textarea {
  background: #fff !important; color: #111 !important;
  border: 2px solid #111 !important; border-radius: 8px !important;
  box-shadow: 3px 3px 0px rgba(0,0,0,0.1) !important;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: #f4b41a !important; box-shadow: 3px 3px 0px #111 !important;
}
.form-group select option { background: #fff !important; color: #111 !important; }
.file-drop { border: 2px dashed #111 !important; background: #fafafa !important; }
.file-drop-inner p { color: #333 !important; }
.file-drop-inner p strong { color: #111 !important; font-weight: 900; }
.req { color: #e11d48 !important; }

/* Lines and Accents */
.gold-line { background: #111 !important; height: 4px !important; border-radius: 0 !important; }
.divider { background: none !important; height: 2px !important; opacity: 1 !important; border-top: 3px dashed #111 !important; }
.loc-tag, .fresh-list li, .popup-perks span, .popup-roles span, .hero-locs span, .about-badge, .about-badge2 {
  background: #fff !important; border: 2px solid #111 !important; color: #111 !important;
  box-shadow: 2px 2px 0px #111 !important; font-weight: 700;
}
.about-badge .badge-num, .about-badge2 .badge-num { color: #111 !important; text-shadow: none !important; margin-bottom: 4px; }
.about-badge .badge-lbl, .about-badge2 .badge-lbl { color: #333 !important; }

/* Scroll Header / Floating Actions */
#scroll-progress { background: #f4b41a !important; box-shadow: 0 0 10px #f4b41a !important; }
.wa-float { border: 3px solid #111 !important; box-shadow: 4px 4px 0px #111 !important; animation: none !important; }
.wa-float:hover { transform: translate(2px,2px) !important; box-shadow: 2px 2px 0px #111 !important; }

/* Final CTA specific overrides */
#final-cta { background: #ffffff !important; }
#final-cta::before { display: none; }
.final-contact { color: #111 !important; }
.final-copy { color: #666 !important; font-weight: bold; }
.final-limited { background: #e5e7eb !important; color: #111 !important; border: 2px solid #111 !important; box-shadow: 4px 4px 0px rgba(0,0,0,0.2) !important; font-weight: 800; }
.ornament span { background: #111 !important; }
.ornament i { color: #111 !important; text-shadow: none !important; }
.final-title { background: none !important; -webkit-text-fill-color: #111 !important; color: #111 !important; }
