:root {
  --primary: #FF3D00;
  --secondary: #00C6FF;
  --accent: #FFD600;
  --purple: #7C3AED;
  --green: #00E676;
  --dark: #0A0E1A;
  --dark2: #111827;
  --card: #161D2E;
  --border: rgba(255,255,255,0.08);
  --text: #E8EAED;
  --muted: #8892A4;
  --grad1: linear-gradient(135deg, #FF3D00, #FF6B35);
  --grad2: linear-gradient(135deg, #00C6FF, #0072FF);
  --grad3: linear-gradient(135deg, #7C3AED, #C026D3);
  --grad4: linear-gradient(135deg, #00E676, #00BFA5);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: rgba(10,14,26,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  display: flex; align-items: center; gap: 20px;
  height: 65px;
  transition: all 0.3s;
}

.navbar.scrolled { background: rgba(10,14,26,0.98); box-shadow: 0 4px 30px rgba(0,0,0,0.5); }

.logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 22px;
  background: var(--grad1);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  white-space: nowrap; margin-right: 10px;
}

.logo span { color: var(--accent); -webkit-text-fill-color: var(--accent); }

.search-bar {
  flex: 1; max-width: 420px;
  display: flex; align-items: center; gap: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 50px; padding: 8px 18px;
  transition: all 0.3s;
}

.search-bar:focus-within { border-color: var(--secondary); box-shadow: 0 0 0 3px rgba(0,198,255,0.1); }
.search-bar input { background: none; border: none; outline: none; color: var(--text); font-size: 14px; width: 100%; }
.search-bar svg { color: var(--muted); flex-shrink: 0; }

.nav-links { display: flex; align-items: center; gap: 6px; margin-left: auto; }

.nav-link {
  padding: 8px 14px; border-radius: 8px;
  color: var(--muted); font-size: 14px; font-weight: 500;
  cursor: pointer; transition: all 0.2s; text-decoration: none;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
}
.nav-link:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.nav-link.active { color: var(--primary); }
.nav-link .icon { font-size: 20px; }
.nav-link .label { font-size: 11px; }

.nav-cta {
  background: var(--grad1); color: white;
  border: none; padding: 9px 22px; border-radius: 50px;
  font-weight: 600; font-size: 14px; cursor: pointer;
  transition: all 0.3s; text-decoration: none; white-space: nowrap;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255,61,0,0.4); }

.avatar-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--grad3); border: 2px solid var(--purple);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; cursor: pointer;
  transition: all 0.2s;
}
.avatar-btn:hover { transform: scale(1.1); box-shadow: 0 4px 20px rgba(124,58,237,0.4); }

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  padding-top: 65px;
  position: relative;
  overflow: hidden;
  display: flex; align-items: center;
}

.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(255,61,0,0.15) 0%, transparent 60%),
              radial-gradient(ellipse 60% 50% at 100% 50%, rgba(0,198,255,0.1) 0%, transparent 60%),
              radial-gradient(ellipse 50% 60% at 0% 100%, rgba(124,58,237,0.1) 0%, transparent 50%);
}

.grid-lines {
  position: absolute; inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 80px 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,61,0,0.1); border: 1px solid rgba(255,61,0,0.3);
  color: var(--primary); padding: 6px 16px; border-radius: 50px;
  font-size: 13px; font-weight: 600; margin-bottom: 24px;
  animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,61,0,0.3); }
  50% { box-shadow: 0 0 0 8px rgba(255,61,0,0); }
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 800; line-height: 1.1;
  margin-bottom: 20px;
}

.hero h1 .highlight {
  background: var(--grad1);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.hero h1 .highlight2 {
  background: var(--grad2);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 17px; color: var(--muted);
  line-height: 1.7; margin-bottom: 36px; max-width: 480px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 50px; }

.btn-primary {
  background: var(--grad1); color: white;
  padding: 14px 30px; border-radius: 50px;
  font-weight: 700; font-size: 15px; cursor: pointer;
  border: none; transition: all 0.3s; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(255,61,0,0.5); }

.btn-outline {
  background: transparent; color: var(--text);
  padding: 14px 30px; border-radius: 50px;
  font-weight: 600; font-size: 15px; cursor: pointer;
  border: 1px solid var(--border); transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { border-color: var(--secondary); color: var(--secondary); background: rgba(0,198,255,0.05); }

.hero-stats { display: flex; gap: 30px; }

.stat { text-align: center; }
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 26px; font-weight: 800;
  background: var(--grad1);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-label { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ===== FLOATING CARDS ===== */
.hero-visual { position: relative; height: 500px; }

.float-card {
  position: absolute;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 18px 20px;
  backdrop-filter: blur(10px);
  animation: float 4s ease-in-out infinite;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.float-card:nth-child(1) { top: 40px; left: 20px; width: 240px; animation-delay: 0s; }
.float-card:nth-child(2) { top: 160px; right: 0; width: 220px; animation-delay: 1.3s; }
.float-card:nth-child(3) { bottom: 80px; left: 60px; width: 260px; animation-delay: 2.6s; }

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

.fc-company { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.fc-logo { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.fc-name { font-weight: 700; font-size: 14px; }
.fc-type { font-size: 11px; color: var(--muted); }
.fc-tag { display: inline-block; background: rgba(0,230,118,0.15); color: var(--green); font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 20px; margin-bottom: 8px; }
.fc-title { font-weight: 600; font-size: 14px; margin-bottom: 4px; }
.fc-meta { font-size: 12px; color: var(--muted); }
.fc-salary { font-size: 13px; color: var(--accent); font-weight: 700; margin-top: 8px; }

.fc-apply {
  width: 100%; padding: 9px; border-radius: 10px;
  background: var(--grad1); color: white;
  border: none; font-weight: 600; font-size: 13px;
  cursor: pointer; margin-top: 12px; transition: all 0.2s;
}
.fc-apply:hover { opacity: 0.9; transform: scale(0.98); }

/* ===== TABS / SECTIONS ===== */
.section { padding: 80px 40px; max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-tag {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--primary);
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 42px); font-weight: 800;
  line-height: 1.2;
}
.section-sub { color: var(--muted); margin-top: 12px; font-size: 16px; }

/* ===== TICKER ===== */
.ticker-wrap {
  background: var(--primary);
  padding: 12px 0; overflow: hidden;
  white-space: nowrap; position: relative;
}
.ticker {
  display: inline-flex; gap: 60px;
  animation: ticker 30s linear infinite;
}
.ticker span {
  font-size: 13px; font-weight: 600; color: white;
  display: inline-flex; align-items: center; gap: 8px;
}
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== FILTER BAR ===== */
.filter-bar {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 20px 30px;
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center;
  margin-bottom: 40px;
}

.filter-group { display: flex; flex-direction: column; gap: 6px; flex: 1; min-width: 160px; }
.filter-label { font-size: 11px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.filter-select {
  background: var(--dark2); border: 1px solid var(--border);
  color: var(--text); padding: 10px 14px; border-radius: 10px;
  font-size: 14px; outline: none; cursor: pointer;
  transition: all 0.2s;
}
.filter-select:focus { border-color: var(--secondary); }

.filter-btn {
  background: var(--grad1); color: white; border: none;
  padding: 12px 28px; border-radius: 12px; font-weight: 700;
  font-size: 14px; cursor: pointer; align-self: flex-end;
  transition: all 0.3s; white-space: nowrap;
}
.filter-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255,61,0,0.4); }

/* ===== JOB CARDS GRID ===== */
.tabs {
  display: flex; gap: 8px; margin-bottom: 30px; flex-wrap: wrap;
}
.tab-btn {
  padding: 10px 22px; border-radius: 50px;
  background: var(--card); border: 1px solid var(--border);
  color: var(--muted); font-weight: 600; font-size: 14px;
  cursor: pointer; transition: all 0.2s;
}
.tab-btn.active, .tab-btn:hover {
  background: var(--primary); color: white; border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(255,61,0,0.3);
}

.jobs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 20px; }

.job-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 24px;
  transition: all 0.3s; cursor: pointer;
  position: relative; overflow: hidden;
}

.job-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad1);
  transform: scaleX(0); transition: transform 0.3s;
  transform-origin: left;
}

.job-card:hover { border-color: rgba(255,61,0,0.3); transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.job-card:hover::before { transform: scaleX(1); }

.jc-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }
.jc-company { display: flex; align-items: center; gap: 12px; }
.jc-logo { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; }
.jc-company-name { font-weight: 700; font-size: 15px; }
.jc-company-type { font-size: 12px; color: var(--muted); margin-top: 2px; }
.jc-save { background: none; border: none; color: var(--muted); cursor: pointer; font-size: 20px; transition: color 0.2s; }
.jc-save:hover { color: var(--accent); }

.jc-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 18px; margin-bottom: 10px; }

.jc-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.tag {
  padding: 4px 12px; border-radius: 20px;
  font-size: 12px; font-weight: 600;
}
.tag-remote { background: rgba(0,198,255,0.12); color: var(--secondary); }
.tag-full { background: rgba(0,230,118,0.12); color: var(--green); }
.tag-intern { background: rgba(255,214,0,0.12); color: var(--accent); }
.tag-urgent { background: rgba(255,61,0,0.12); color: var(--primary); }
.tag-new { background: rgba(124,58,237,0.12); color: #A78BFA; }
.tag-stipend { background: rgba(0,230,118,0.12); color: var(--green); }

.jc-details { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; }
.jc-detail { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--muted); }
.jc-detail svg { flex-shrink: 0; }

.jc-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; border-top: 1px solid var(--border); }
.jc-salary { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 17px; color: var(--green); }
.jc-deadline { font-size: 12px; color: var(--muted); }

.apply-btn {
  background: var(--grad1); color: white; border: none;
  padding: 10px 22px; border-radius: 12px; font-weight: 700;
  font-size: 13px; cursor: pointer; transition: all 0.2s;
}
.apply-btn:hover { opacity: 0.9; transform: scale(0.97); }

/* ===== COMPANIES MARQUEE ===== */
.companies-section {
  background: var(--dark2);
  padding: 60px 0; overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.marquee-wrap { overflow: hidden; }
.marquee { display: flex; gap: 40px; animation: marquee 20s linear infinite; }
.marquee2 { display: flex; gap: 40px; animation: marquee2 25s linear infinite; margin-top: 24px; }

@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes marquee2 { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

.company-chip {
  display: flex; align-items: center; gap: 10px;
  background: var(--card); border: 1px solid var(--border);
  padding: 12px 22px; border-radius: 50px;
  font-weight: 600; font-size: 14px; white-space: nowrap;
  transition: all 0.2s;
}
.company-chip:hover { border-color: var(--primary); color: var(--primary); }
.company-chip .emoji { font-size: 20px; }

/* ===== STATS ROW ===== */
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin: 60px auto; max-width: 1200px; padding: 0 40px;
}

.stat-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 28px 24px; text-align: center;
  position: relative; overflow: hidden; transition: all 0.3s;
}
.stat-card:hover { transform: translateY(-4px); border-color: rgba(255,61,0,0.3); }
.stat-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
}
.stat-card:nth-child(1)::after { background: var(--grad1); }
.stat-card:nth-child(2)::after { background: var(--grad2); }
.stat-card:nth-child(3)::after { background: var(--grad3); }
.stat-card:nth-child(4)::after { background: var(--grad4); }

.stat-icon { font-size: 36px; margin-bottom: 12px; }
.stat-big {
  font-family: 'Syne', sans-serif; font-size: 36px; font-weight: 800;
  line-height: 1;
}
.stat-card:nth-child(1) .stat-big { color: var(--primary); }
.stat-card:nth-child(2) .stat-big { color: var(--secondary); }
.stat-card:nth-child(3) .stat-big { color: #A78BFA; }
.stat-card:nth-child(4) .stat-big { color: var(--green); }
.stat-desc { font-size: 13px; color: var(--muted); margin-top: 6px; }

/* ===== FEATURES SECTION ===== */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}

.feat-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 30px;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.feat-card:hover { transform: translateY(-6px); }
.feat-card:hover .feat-icon-wrap { transform: scale(1.1) rotate(5deg); }

.feat-icon-wrap {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin-bottom: 18px;
  transition: transform 0.3s;
}

.feat-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 18px; margin-bottom: 10px; }
.feat-desc { color: var(--muted); font-size: 14px; line-height: 1.7; }

/* ===== RESUME SECTION ===== */
.resume-section {
  background: linear-gradient(135deg, var(--dark2) 0%, rgba(124,58,237,0.1) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 40px;
}

.resume-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.resume-steps { display: flex; flex-direction: column; gap: 20px; margin-top: 30px; }
.step { display: flex; align-items: flex-start; gap: 16px; }
.step-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--grad3); color: white;
  font-weight: 800; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.step-text strong { display: block; font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.step-text span { color: var(--muted); font-size: 13px; }

.resume-preview {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 30px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.rp-header { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.rp-avatar { width: 56px; height: 56px; border-radius: 50%; background: var(--grad3); display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 800; color: white; }
.rp-name { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 18px; }
.rp-role { color: var(--muted); font-size: 13px; }

.rp-skill-bar { margin-bottom: 14px; }
.rp-skill-label { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 6px; }
.rp-bar-bg { background: var(--dark2); border-radius: 50px; height: 6px; overflow: hidden; }
.rp-bar { height: 100%; border-radius: 50px; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.testi-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 26px;
  transition: all 0.3s;
}
.testi-card:hover { transform: translateY(-4px); border-color: rgba(0,198,255,0.3); }

.testi-rating { color: var(--accent); font-size: 16px; margin-bottom: 14px; }
.testi-text { color: var(--muted); font-size: 14px; line-height: 1.8; margin-bottom: 20px; }
.testi-user { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; color: white; font-size: 16px; }
.testi-name { font-weight: 700; font-size: 14px; }
.testi-college { font-size: 12px; color: var(--muted); }
.testi-placement { color: var(--green); font-size: 12px; font-weight: 600; }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.8); backdrop-filter: blur(10px);
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }

.modal {
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: 24px; max-width: 440px; width: 100%;
  padding: 40px; position: relative;
  animation: modal-in 0.3s ease;
}
@keyframes modal-in { from { opacity: 0; transform: scale(0.9) translateY(20px); } to { opacity: 1; transform: scale(1) translateY(0); } }

.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: var(--card); border: 1px solid var(--border);
  color: var(--text); width: 36px; height: 36px; border-radius: 50%;
  cursor: pointer; font-size: 18px; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.modal-close:hover { background: var(--primary); border-color: var(--primary); }

.modal h2 { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 26px; margin-bottom: 6px; }
.modal-sub { color: var(--muted); font-size: 14px; margin-bottom: 28px; }

.modal-tabs { display: flex; gap: 4px; background: var(--card); border-radius: 12px; padding: 4px; margin-bottom: 24px; }
.modal-tab { flex: 1; padding: 9px; border-radius: 9px; border: none; background: none; color: var(--muted); font-weight: 600; font-size: 14px; cursor: pointer; transition: all 0.2s; }
.modal-tab.active { background: var(--primary); color: white; }

.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 8px; }
.form-input {
  width: 100%; padding: 13px 16px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; color: var(--text); font-size: 14px; outline: none;
  transition: all 0.2s;
}
.form-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(255,61,0,0.1); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-submit {
  width: 100%; padding: 14px;
  background: var(--grad1); color: white;
  border: none; border-radius: 12px; font-weight: 700; font-size: 16px;
  cursor: pointer; transition: all 0.3s;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255,61,0,0.4); }

.form-divider { text-align: center; color: var(--muted); font-size: 13px; margin: 16px 0; position: relative; }
.form-divider::before, .form-divider::after {
  content: ''; position: absolute; top: 50%; width: 43%;
  height: 1px; background: var(--border);
}
.form-divider::before { left: 0; }
.form-divider::after { right: 0; }

.social-login { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.social-btn {
  padding: 11px; border: 1px solid var(--border); border-radius: 10px;
  background: var(--card); color: var(--text);
  font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.social-btn:hover { border-color: var(--secondary); }

/* ===== NOTIFICATION TOAST ===== */
.toast {
  position: fixed; bottom: 30px; right: 30px; z-index: 3000;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 16px 22px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transform: translateX(200px); opacity: 0;
  transition: all 0.4s ease;
  max-width: 360px;
}
.toast.show { transform: translateX(0); opacity: 1; }
.toast-icon { font-size: 24px; }
.toast-title { font-weight: 700; font-size: 14px; }
.toast-msg { font-size: 13px; color: var(--muted); margin-top: 2px; }

/* ===== FOOTER ===== */
footer {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  padding: 60px 40px 30px;
}

.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 50px;
}

.footer-brand p { color: var(--muted); font-size: 14px; line-height: 1.8; margin: 16px 0 24px; max-width: 280px; }

.social-links { display: flex; gap: 10px; }
.social-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; cursor: pointer; transition: all 0.2s;
}
.social-icon:hover { border-color: var(--primary); transform: translateY(-3px); }

.footer-col h4 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 15px; margin-bottom: 18px; }
.footer-col a {
  display: block; color: var(--muted); font-size: 14px;
  text-decoration: none; margin-bottom: 10px; transition: color 0.2s;
}
.footer-col a:hover { color: var(--primary); }

.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 24px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { color: var(--muted); font-size: 13px; }

/* ===== NOTIFICATION DOT ===== */
.notif-badge {
  position: absolute; top: 2px; right: 2px;
  width: 8px; height: 8px; background: var(--primary); border-radius: 50%;
}

/* ===== SCROLL TOP ===== */
.scroll-top {
  position: fixed; bottom: 30px; left: 30px; z-index: 999;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--grad1); border: none; color: white;
  font-size: 20px; cursor: pointer;
  opacity: 0; transform: translateY(20px);
  transition: all 0.3s; display: flex; align-items: center; justify-content: center;
}
.scroll-top.show { opacity: 1; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(255,61,0,0.5); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .resume-inner { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .navbar { padding: 0 16px; }
  .nav-links { gap: 2px; }
  .nav-link .label { display: none; }
  .section { padding: 60px 16px; }
  .jobs-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; padding: 0 16px; }
  .footer-grid { grid-template-columns: 1fr; }
/* ===== WORDPRESS OVERRIDES =====
/* WordPress body padding for admin bar */
body.admin-bar .navbar { top: 32px; }
@media (max-width: 782px) { body.admin-bar .navbar { top: 46px; } }

/* WordPress alignment classes */
.alignleft  { float: left; margin-right: 20px; }
.alignright { float: right; margin-left: 20px; }
.aligncenter { display: block; margin: 0 auto; }

/* WordPress custom logo */
.custom-logo-link img { height: 40px; width: auto; }
.navbar .custom-logo-link { display: flex; align-items: center; }

/* Loading spinner for AJAX */
.pninja-loading {
  display: inline-block; width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white; border-radius: 50%;
  animation: spin 0.7s linear infinite; vertical-align: middle; margin-left: 8px;
}
@keyframes spin { to { transform: rotate(360deg); } }
*/
