/* =============================================
   DELHI JOBS – Shared Stylesheet v2.0
   SEO-Optimised: font-display:swap, no @import
   Theme: Professional Navy + Teal + Gold
   ============================================= */

/* --- CSS Variables --- */
:root {
  --navy:       #0A1628;
  --navy-mid:   #112240;
  --navy-light: #1B3358;
  --teal:       #00C2CB;
  --teal-dark:  #009DA5;
  --gold:       #F5A623;
  --gold-light: #FFD166;
  --white:      #FFFFFF;
  --off-white:  #F8F9FC;
  --gray-100:   #F1F3F7;
  --gray-200:   #E2E8F0;
  --gray-400:   #94A3B8;
  --gray-600:   #4A5568;
  --gray-800:   #1A202C;
  --success:    #10B981;
  --danger:     #EF4444;
  --font-display: 'Poppins', sans-serif;
  --font-body:    'Inter', sans-serif;
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.14);
  --shadow-xl:  0 20px 60px rgba(0,0,0,0.18);
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --max-width:  1200px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--gray-800); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; font-family: var(--font-body); }

/* Accessible focus */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

/* --- Container --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* =============================================
   NAVIGATION
   ============================================= */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: transparent; transition: background var(--transition), box-shadow var(--transition); padding: 0; }
.navbar.scrolled { background: var(--navy); box-shadow: 0 2px 24px rgba(0,0,0,0.3); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; color: var(--white); letter-spacing: -0.5px; }
.nav-logo span { color: var(--teal); }
.logo-icon { width: 38px; height: 38px; background: linear-gradient(135deg, var(--teal), var(--teal-dark)); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--white); font-weight: 900; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { color: rgba(255,255,255,0.85); font-size: 0.88rem; font-weight: 500; letter-spacing: 0.3px; transition: color var(--transition); position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--teal); transition: width var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { background: linear-gradient(135deg, var(--teal), var(--teal-dark)); color: var(--white) !important; padding: 10px 22px; border-radius: 50px; font-weight: 600; font-size: 0.85rem; transition: all var(--transition); box-shadow: 0 4px 14px rgba(0,194,203,0.35); }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,194,203,0.5); }
.nav-cta::after { display: none !important; }
.nav-toggle { display: none; background: none; color: var(--white); font-size: 1.4rem; padding: 4px 8px; }

/* =============================================
   TICKER BAR
   ============================================= */
.ticker-bar { background: var(--navy-mid); border-bottom: 1px solid rgba(255,255,255,0.07); padding: 9px 0; overflow: hidden; }
.ticker-inner { display: flex; align-items: center; }
.ticker-label { flex-shrink: 0; background: var(--teal); color: var(--white); font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 14px; border-radius: 4px; margin-right: 20px; z-index: 1; }
.ticker-track { display: flex; animation: ticker 38s linear infinite; white-space: nowrap; will-change: transform; }
.ticker-track:hover { animation-play-state: paused; }
.ticker-item { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.75); font-size: 0.82rem; padding: 0 32px; border-right: 1px solid rgba(255,255,255,0.1); }
.ticker-item strong { color: var(--teal); }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* =============================================
   BUTTONS
   ============================================= */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 50px; font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; letter-spacing: 0.2px; transition: all var(--transition); cursor: pointer; border: 2px solid transparent; }
.btn-primary { background: linear-gradient(135deg, var(--teal), var(--teal-dark)); color: var(--white); box-shadow: 0 4px 18px rgba(0,194,203,0.35); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,194,203,0.5); }
.btn-secondary { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-gold { background: linear-gradient(135deg, var(--gold), #e8960f); color: var(--navy); box-shadow: 0 4px 18px rgba(245,166,35,0.35); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(245,166,35,0.5); }
.btn-outline-navy { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-lg { padding: 18px 36px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.82rem; }

/* =============================================
   SECTION COMMONS
   ============================================= */
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.section-dark { background: var(--navy); color: var(--white); }
.section-navy-mid { background: var(--navy-mid); color: var(--white); }
.section-alt { background: var(--off-white); }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 0.75rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--teal); margin-bottom: 14px; }
.eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--teal); }
.section-title { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; line-height: 1.2; letter-spacing: -0.5px; color: var(--gray-800); margin-bottom: 16px; }
.section-title.white { color: var(--white); }
.section-subtitle { font-size: 1rem; color: var(--gray-600); max-width: 560px; line-height: 1.7; }
.section-subtitle.white { color: rgba(255,255,255,0.7); }
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .eyebrow { justify-content: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* =============================================
   CARDS
   ============================================= */
.card { background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-md); transition: all var(--transition); overflow: hidden; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }

/* =============================================
   BADGE
   ============================================= */
.badge { display: inline-block; padding: 4px 12px; border-radius: 50px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.3px; }
.badge-teal { background: rgba(0,194,203,0.1); color: var(--teal-dark); }
.badge-gold { background: rgba(245,166,35,0.12); color: #c27f08; }
.badge-green { background: rgba(16,185,129,0.1); color: #047857; }
.badge-navy { background: rgba(10,22,40,0.08); color: var(--navy); }

/* =============================================
   FORMS
   ============================================= */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--gray-600); margin-bottom: 7px; letter-spacing: 0.2px; }
.form-control { width: 100%; padding: 13px 16px; border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 0.9rem; color: var(--gray-800); background: var(--white); transition: all var(--transition); outline: none; }
.form-control:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,194,203,0.12); }
.form-control::placeholder { color: var(--gray-400); }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394A3B8' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
textarea.form-control { resize: vertical; min-height: 130px; }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin: 16px 0 24px; max-width: 300px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); font-size: 0.85rem; transition: all var(--transition); }
.social-btn:hover { background: var(--teal); color: var(--white); transform: translateY(-2px); }
.footer-col h4 { color: var(--white); font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; margin-bottom: 20px; letter-spacing: 0.2px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 0.87rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--teal); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; margin-bottom: 12px; color: rgba(255,255,255,0.65); }
.footer-contact-item i { color: var(--teal); margin-top: 2px; flex-shrink: 0; }
.footer-bottom { padding: 22px 0; display: flex; align-items: center; justify-content: space-between; font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--teal); }

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar { background: linear-gradient(135deg, var(--navy-light), var(--navy-mid)); padding: 40px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item { text-align: center; padding: 10px 20px; border-right: 1px solid rgba(255,255,255,0.1); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 6px; }
.stat-number span { color: var(--teal); }
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.6); font-weight: 500; letter-spacing: 0.3px; }

/* =============================================
   JOB CARD
   ============================================= */
.job-card { background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--radius-md); padding: 24px; transition: all var(--transition); cursor: pointer; position: relative; overflow: hidden; }
.job-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--teal); transform: scaleY(0); transition: transform var(--transition); }
.job-card:hover { border-color: var(--teal); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.job-card:hover::before { transform: scaleY(1); }
.job-card-header { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; }
.company-logo { width: 52px; height: 52px; border-radius: 12px; background: linear-gradient(135deg, var(--gray-100), var(--gray-200)); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; color: var(--navy); flex-shrink: 0; }
.job-info h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--gray-800); margin-bottom: 4px; }
.company-name { font-size: 0.85rem; color: var(--gray-600); font-weight: 500; }
.job-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
.job-meta-item { display: flex; align-items: center; gap: 5px; font-size: 0.78rem; color: var(--gray-600); }
.job-meta-item i { color: var(--teal); font-size: 0.75rem; }
.job-footer { display: flex; align-items: center; justify-content: space-between; }
.salary { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; color: var(--navy); }
.featured-tag { position: absolute; top: 14px; right: 14px; background: linear-gradient(135deg, var(--gold), #e8960f); color: var(--navy); font-size: 0.68rem; font-weight: 700; padding: 3px 10px; border-radius: 50px; letter-spacing: 0.5px; text-transform: uppercase; }

/* =============================================
   SEARCH BOX (Hero)
   ============================================= */
.search-box { background: var(--white); border-radius: var(--radius-lg); padding: 10px; box-shadow: 0 20px 60px rgba(0,0,0,0.25); display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 8px; align-items: center; }
.search-field { display: flex; align-items: center; gap: 10px; padding: 12px 18px; border-radius: 10px; background: var(--gray-100); }
.search-field i { color: var(--teal); font-size: 1rem; flex-shrink: 0; }
.search-field input, .search-field select { border: none; background: transparent; font-family: var(--font-body); font-size: 0.9rem; color: var(--gray-800); width: 100%; outline: none; }
.search-field select { appearance: none; cursor: pointer; }
.search-field input::placeholder { color: var(--gray-400); }
.search-btn-hero { background: linear-gradient(135deg, var(--teal), var(--teal-dark)); color: var(--white); border: none; border-radius: 10px; padding: 16px 32px; font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; cursor: pointer; transition: all var(--transition); white-space: nowrap; display: flex; align-items: center; gap: 8px; }
.search-btn-hero:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,194,203,0.45); }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonial-card { background: var(--white); border-radius: var(--radius-md); padding: 32px; box-shadow: var(--shadow-md); border: 1px solid var(--gray-200); transition: all var(--transition); }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card blockquote { font-size: 0.92rem; color: var(--gray-600); line-height: 1.75; margin-bottom: 22px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 1rem; color: var(--white); flex-shrink: 0; }
.reviewer-info h5 { font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; color: var(--gray-800); }
.reviewer-info span { font-size: 0.78rem; color: var(--gray-400); }

/* =============================================
   FAQ
   ============================================= */
.faq-item { border-bottom: 1px solid var(--gray-200); overflow: hidden; }
.faq-question { width: 100%; padding: 22px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; background: transparent; cursor: pointer; text-align: left; font-family: var(--font-display); font-size: 0.97rem; font-weight: 600; color: var(--gray-800); transition: color var(--transition); }
.faq-question:hover { color: var(--teal); }
.faq-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--gray-100); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; color: var(--teal); flex-shrink: 0; transition: all var(--transition); }
.faq-item.open .faq-icon { background: var(--teal); color: var(--white); transform: rotate(45deg); }
.faq-answer { display: none; padding-bottom: 22px; font-size: 0.9rem; color: var(--gray-600); line-height: 1.75; }
.faq-item.open .faq-answer { display: block; }

/* =============================================
   CATEGORY PILLS
   ============================================= */
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.category-card { background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--radius-md); padding: 28px 24px; text-align: center; cursor: pointer; transition: all var(--transition); }
.category-card:hover { border-color: var(--teal); background: rgba(0,194,203,0.04); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.category-icon { width: 56px; height: 56px; background: rgba(0,194,203,0.1); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-size: 1.4rem; transition: all var(--transition); }
.category-card:hover .category-icon { background: var(--teal); color: var(--white); }
.category-card h4 { font-family: var(--font-display); font-weight: 700; font-size: 0.92rem; color: var(--gray-800); margin-bottom: 4px; }
.category-card span { font-size: 0.78rem; color: var(--gray-400); }

/* =============================================
   EMPLOYER CARD
   ============================================= */
.employer-card { background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--radius-md); padding: 28px; text-align: center; transition: all var(--transition); }
.employer-card:hover { border-color: var(--teal); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.employer-logo { width: 72px; height: 72px; border-radius: 16px; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: var(--white); }
.employer-card h4 { font-family: var(--font-display); font-weight: 700; font-size: 0.97rem; margin-bottom: 4px; }
.employer-card p { font-size: 0.8rem; color: var(--gray-400); margin-bottom: 12px; }
.jobs-open { font-size: 0.82rem; color: var(--teal); font-weight: 600; }

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner { background: linear-gradient(135deg, var(--teal), var(--teal-dark), #007b83); border-radius: var(--radius-xl); padding: 60px 56px; display: flex; align-items: center; justify-content: space-between; gap: 40px; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; top: -60px; right: -60px; width: 280px; height: 280px; background: rgba(255,255,255,0.06); border-radius: 50%; }
.cta-banner::after { content: ''; position: absolute; bottom: -80px; left: 30%; width: 200px; height: 200px; background: rgba(255,255,255,0.04); border-radius: 50%; }
.cta-banner h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.cta-banner p { color: rgba(255,255,255,0.8); font-size: 0.97rem; max-width: 480px; }
.cta-banner-btns { display: flex; gap: 14px; flex-shrink: 0; }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); padding: 140px 0 70px; position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="80" cy="20" r="25" fill="rgba(0,194,203,0.05)"/><circle cx="10" cy="80" r="35" fill="rgba(0,194,203,0.04)"/></svg>'); pointer-events: none; }
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--white); margin-bottom: 14px; letter-spacing: -0.5px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: rgba(255,255,255,0.6); flex-wrap: wrap; }
.breadcrumb a { color: var(--teal); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* =============================================
   PROCESS STEPS
   ============================================= */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-step { text-align: center; padding: 36px 24px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-md); transition: all var(--transition); }
.process-step:hover { background: rgba(255,255,255,0.08); border-color: rgba(0,194,203,0.3); }
.step-number { font-family: var(--font-display); font-size: 3.5rem; font-weight: 900; color: rgba(0,194,203,0.15); line-height: 1; margin-bottom: 16px; }
.step-icon { width: 64px; height: 64px; background: rgba(0,194,203,0.12); border-radius: 18px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 1.6rem; color: var(--teal); }
.process-step h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.process-step p { font-size: 0.87rem; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* =============================================
   CONTACT
   ============================================= */
.contact-info-card { background: var(--navy); border-radius: var(--radius-lg); padding: 40px; color: var(--white); height: 100%; }
.contact-info-card h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; margin-bottom: 8px; }
.contact-info-card > p { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin-bottom: 36px; line-height: 1.7; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-icon { width: 46px; height: 46px; background: rgba(0,194,203,0.15); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--teal); font-size: 1rem; flex-shrink: 0; }
.contact-text h5 { font-family: var(--font-display); font-weight: 700; font-size: 0.92rem; margin-bottom: 3px; }
.contact-text p { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.contact-form-card { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-xl); }
.contact-form-card h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.contact-form-card > p { color: var(--gray-600); font-size: 0.88rem; margin-bottom: 28px; }

/* =============================================
   SERVICE CARDS
   ============================================= */
.service-card { background: var(--white); border-radius: var(--radius-md); padding: 36px 30px; border: 1.5px solid var(--gray-200); transition: all var(--transition); position: relative; overflow: hidden; }
.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--teal), var(--teal-dark)); transform: scaleX(0); transform-origin: left; transition: transform var(--transition); }
.service-card:hover { box-shadow: var(--shadow-lg); border-color: transparent; transform: translateY(-6px); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon { width: 60px; height: 60px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 22px; }
.service-card h4 { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: 0.88rem; color: var(--gray-600); line-height: 1.75; }

/* =============================================
   GRID LAYOUTS
   ============================================= */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-6 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; }

/* =============================================
   UTILITIES
   ============================================= */
.text-teal { color: var(--teal); }
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.divider { height: 1px; background: var(--gray-200); margin: 0; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.tag { display: inline-block; padding: 5px 14px; background: var(--gray-100); border-radius: 50px; font-size: 0.78rem; color: var(--gray-600); font-weight: 500; transition: all var(--transition); cursor: pointer; }
.tag:hover { background: var(--teal); color: var(--white); }

/* =============================================
   ABOUT PAGE
   ============================================= */
.value-card { padding: 28px; border-radius: var(--radius-md); border: 1.5px solid var(--gray-200); background: var(--white); transition: all var(--transition); }
.value-card:hover { border-color: var(--teal); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-icon { width: 50px; height: 50px; background: rgba(0,194,203,0.1); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 18px; transition: all var(--transition); }
.value-card:hover .value-icon { background: var(--teal); color: var(--white); }
.value-card h4 { font-family: var(--font-display); font-weight: 700; font-size: 0.97rem; color: var(--navy); margin-bottom: 8px; }
.value-card p { font-size: 0.86rem; color: var(--gray-600); line-height: 1.7; }
.team-card { background: var(--white); border-radius: var(--radius-md); overflow: hidden; border: 1.5px solid var(--gray-200); transition: all var(--transition); text-align: center; }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--teal); }
.team-avatar { width: 100%; height: 190px; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 3rem; font-weight: 900; color: var(--white); }
.team-info { padding: 22px; }
.team-info h4 { font-family: var(--font-display); font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.team-info span { font-size: 0.82rem; color: var(--gray-400); }

/* =============================================
   SCROLL TO TOP
   ============================================= */
.scroll-top { position: fixed; bottom: 28px; right: 28px; width: 46px; height: 46px; background: linear-gradient(135deg, var(--teal), var(--teal-dark)); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; cursor: pointer; border: none; box-shadow: 0 4px 16px rgba(0,194,203,0.4); opacity: 0; transform: translateY(20px); transition: all var(--transition); z-index: 999; }
.scroll-top.show { opacity: 1; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,194,203,0.5); }

/* =============================================
   ALERT BAR
   ============================================= */
.alert-bar { background: linear-gradient(90deg, var(--navy-mid), var(--navy-light)); padding: 12px 0; border-bottom: 1px solid rgba(0,194,203,0.2); }
.alert-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: 0.82rem; color: rgba(255,255,255,0.75); }
.alert-bar a { color: var(--teal); font-weight: 600; }
.alert-bar-close { background: none; color: rgba(255,255,255,0.4); font-size: 1rem; transition: color var(--transition); }
.alert-bar-close:hover { color: var(--white); }

/* =============================================
   JOB DETAIL PAGE
   ============================================= */
.job-detail-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); padding: 130px 0 60px; }
.job-detail-card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); padding: 40px; margin-top: -40px; position: relative; z-index: 2; }
.jd-company-header { display: flex; align-items: center; gap: 20px; margin-bottom: 28px; flex-wrap: wrap; }
.jd-company-logo { width: 72px; height: 72px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 900; font-size: 1.4rem; color: var(--white); flex-shrink: 0; }
.jd-company-info h1 { font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.jd-company-info .co-name { font-size: 1rem; color: var(--gray-600); font-weight: 500; }
.jd-meta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.jd-meta-pill { display: flex; align-items: center; gap: 6px; padding: 8px 16px; background: var(--gray-100); border-radius: 50px; font-size: 0.85rem; color: var(--gray-700); font-weight: 500; }
.jd-meta-pill i { color: var(--teal); }
.jd-salary-box { background: linear-gradient(135deg, rgba(0,194,203,0.08), rgba(0,194,203,0.02)); border: 1.5px solid rgba(0,194,203,0.2); border-radius: var(--radius-md); padding: 20px 24px; margin-bottom: 32px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.jd-salary-num { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: var(--navy); }
.jd-salary-label { font-size: 0.8rem; color: var(--gray-400); margin-top: 2px; }
.apply-cta-box { background: var(--navy); border-radius: var(--radius-md); padding: 28px; text-align: center; }
.apply-cta-box h3 { font-family: var(--font-display); font-weight: 700; color: var(--white); margin-bottom: 8px; }
.apply-cta-box p { font-size: 0.85rem; color: rgba(255,255,255,0.65); margin-bottom: 20px; }
.job-section-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid rgba(0,194,203,0.2); }
.job-description p { font-size: 0.92rem; color: var(--gray-600); line-height: 1.8; margin-bottom: 14px; }
.job-description ul { padding-left: 20px; margin-bottom: 14px; }
.job-description ul li { font-size: 0.92rem; color: var(--gray-600); line-height: 1.75; margin-bottom: 8px; list-style: disc; }
.similar-job-card { display: flex; align-items: center; gap: 14px; padding: 18px; border: 1.5px solid var(--gray-200); border-radius: var(--radius-md); transition: all var(--transition); cursor: pointer; }
.similar-job-card:hover { border-color: var(--teal); box-shadow: var(--shadow-md); transform: translateX(4px); }

/* =============================================
   CITY / CATEGORY LANDING PAGE
   ============================================= */
.city-hero-stat { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-md); padding: 20px 24px; text-align: center; }
.city-hero-stat .num { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--teal); }
.city-hero-stat .lbl { font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-top: 4px; }
.industry-pill { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; background: var(--white); border: 1.5px solid var(--gray-200); border-radius: 50px; font-size: 0.85rem; font-weight: 600; color: var(--navy); transition: all var(--transition); cursor: pointer; }
.industry-pill:hover { border-color: var(--teal); background: rgba(0,194,203,0.05); color: var(--teal); }
.industry-pill i { color: var(--teal); }

/* =============================================
   BLOG PAGE
   ============================================= */
.blog-card { background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--radius-md); overflow: hidden; transition: all var(--transition); }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--teal); }
.blog-card-img { height: 180px; background: linear-gradient(135deg, var(--navy-light), var(--navy)); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; }
.blog-card-body { padding: 24px; }
.blog-cat { font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--teal); margin-bottom: 10px; }
.blog-card-body h3 { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: 10px; line-height: 1.4; }
.blog-card-body p { font-size: 0.85rem; color: var(--gray-600); line-height: 1.65; margin-bottom: 16px; }
.blog-meta { display: flex; align-items: center; gap: 14px; font-size: 0.78rem; color: var(--gray-400); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 20px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .search-box { grid-template-columns: 1fr 1fr; }
  .search-btn-hero { grid-column: 1/-1; justify-content: center; }
  .cta-banner { flex-direction: column; text-align: center; }
  .cta-banner p { max-width: 100%; }
  .cta-banner-btns { justify-content: center; }
  .grid-6 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--navy); flex-direction: column; justify-content: center; z-index: 999; gap: 28px; font-size: 1.2rem; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; z-index: 1000; }
  .grid-2, .grid-3, .grid-4, .category-grid, .process-grid { grid-template-columns: 1fr; }
  .search-box { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .cta-banner { padding: 40px 28px; }
  .contact-info-card, .contact-form-card { padding: 28px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .jd-company-header { flex-direction: column; text-align: center; }
  .grid-6 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .btn { padding: 13px 22px; font-size: 0.85rem; }
  .btn-lg { padding: 15px 26px; }
  .grid-6 { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.animate-fade-up { animation: fadeUp 0.7s ease forwards; }
.animate-delay-1 { animation-delay: 0.1s; opacity: 0; }
.animate-delay-2 { animation-delay: 0.2s; opacity: 0; }
.animate-delay-3 { animation-delay: 0.3s; opacity: 0; }
.animate-delay-4 { animation-delay: 0.4s; opacity: 0; }
.float { animation: float 4s ease-in-out infinite; will-change: transform; }

/* =============================================
   PRINT / ACCESSIBILITY
   ============================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
@media print {
  .navbar, .ticker-bar, .alert-bar, .scroll-top { display: none !important; }
  body { color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
}

/* ── Performance additions (backtesting fixes) ── */
.jobs-list { contain: layout; }
.ticker-track { will-change: transform; }
.float { will-change: transform; }
.animate-fade-up { will-change: opacity, transform; }

/* Backdrop filter for glassmorphism float cards */
.float-card {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}
