:root { --bg-color: #f8fafc; --card-bg: #ffffff; --text-color: #1e293b; --text-muted: #64748b; --primary: #0284c7; --primary-hover: #0369a1; --accent: #0ea5e9; --border: #e2e8f0; --topbar-bg: #0f172a; --topbar-text: #cbd5e1; } * { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Inter', system-ui, -apple-system, sans-serif; } body { background-color: var(--bg-color); color: var(--text-color); line-height: 1.6; display: flex; flex-direction: column; min-height: 100vh; } .container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; width: 100%; } .top-bar { background-color: var(--topbar-bg); color: var(--topbar-text); font-size: 0.85rem; padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); } .top-bar-content { display: flex; justify-content: space-between; align-items: center; } .top-links { display: flex; gap: 1.5rem; } .top-links a { color: var(--topbar-text); text-decoration: none; transition: color 0.2s; } .top-links a:hover { color: white; } header { background: #ffffff; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.05); } .navbar-inner { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; } .logo { font-size: 1.6rem; letter-spacing: -0.5px; color: var(--topbar-bg); } .logo strong { color: var(--primary); } .nav-links { display: flex; list-style: none; gap: 1.8rem; align-items: center; } .nav-links a { color: var(--text-muted); text-decoration: none; font-weight: 500; font-size: 0.95rem; transition: color 0.3s ease; } .nav-links a:hover, .nav-links a.active { color: var(--primary); } .nav-links a.highlight-link { background: var(--primary); color: white; padding: 0.5rem 1.2rem; border-radius: 6px; } .nav-links a.highlight-link:hover { background: var(--primary-hover); } .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; } .hamburger span { width: 25px; height: 3px; background: var(--text-color); transition: 0.3s; } main { flex: 1; } .hero { background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); color: white; padding: 5rem 0; } .hero-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 3rem; align-items: center; } .hero-content h1 { font-size: 3rem; line-height: 1.2; margin-bottom: 1.2rem; letter-spacing: -1px; } .hero-content h1 span { color: var(--accent); } .hero-content p { color: #cbd5e1; font-size: 1.15rem; margin-bottom: 2rem; } .hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; } .quick-stats { display: flex; gap: 2.5rem; border-top: 1px solid rgba(255,255,255,0.15); padding-top: 2rem; } .quick-stats strong { display: block; font-size: 1.8rem; color: white; } .quick-stats span { font-size: 0.85rem; color: #94a3b8; } .sidebar-box { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); padding: 2rem; border-radius: 12px; backdrop-filter: blur(10px); } .sidebar-box h3 { font-size: 1.2rem; margin-bottom: 1rem; color: var(--accent); border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 0.5rem; } .flash-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; } .flash-list li a { color: #f1f5f9; text-decoration: none; font-size: 0.9rem; display: block; transition: color 0.2s; } .flash-list li a:hover { color: var(--accent); } .section-spacing { padding: 4rem 0; } .section-title { text-align: center; margin-bottom: 3rem; } .section-title h2 { font-size: 2.2rem; margin-bottom: 0.5rem; color: #0f172a; } .section-title p { color: var(--text-muted); } .grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; } .card { background: var(--card-bg); border: 1px solid var(--border); padding: 2.5rem; border-radius: 12px; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02); transition: transform 0.3s ease, box-shadow 0.3s ease; } .card:hover { transform: translateY(-4px); box-shadow: 0 10px 25px -5px rgba(0,0,0,0.08); border-color: var(--primary); } .card h3 { margin-bottom: 1rem; font-size: 1.3rem; color: #0f172a; } .card p { color: var(--text-muted); } .btn { display: inline-block; padding: 0.8rem 1.6rem; border-radius: 6px; font-weight: 600; text-decoration: none; transition: all 0.2s ease; cursor: pointer; border: none; font-size: 0.95rem; text-align: center; } .btn-primary { background: var(--primary); color: white; } .btn-primary:hover { background: var(--primary-hover); } .btn-secondary { background: transparent; color: white; border: 1px solid rgba(255,255,255,0.4); } .btn-secondary:hover { border-color: white; background: rgba(255,255,255,0.05); } .btn-outline { background: transparent; color: var(--primary); border: 1px solid var(--primary); } .btn-outline:hover { background: var(--primary); color: white; } .page-header { margin-bottom: 2rem; text-align: center; } .page-header h1 { font-size: 2.2rem; margin-bottom: 0.5rem; color: #0f172a; } .page-header p { color: var(--text-muted); } .filter-bar { display: flex; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; } .filter-bar input, .filter-bar select { padding: 0.8rem 1.2rem; background: var(--card-bg); border: 1px solid var(--border); color: var(--text-color); border-radius: 6px; font-size: 0.95rem; outline: none; } .filter-bar input { flex: 1; min-width: 250px; } .job-list { display: flex; flex-direction: column; gap: 1rem; } .job-card { background: var(--card-bg); border: 1px solid var(--border); padding: 1.5rem 2rem; border-radius: 8px; display: flex; justify-content: space-between; align-items: center; transition: box-shadow 0.2s ease, border-color 0.2s ease; } .job-card:hover { border-color: var(--primary); box-shadow: 0 4px 12px rgba(0,0,0,0.04); } .job-info h3 { margin-bottom: 0.3rem; color: #0f172a; font-size: 1.15rem; } .company { color: var(--primary); font-size: 0.85rem; font-weight: 600; display: block; margin-bottom: 0.4rem; } .job-info p { color: var(--text-muted); font-size: 0.9rem; } .contact-wrapper { max-width: 600px; margin: 0 auto; background: var(--card-bg); border: 1px solid var(--border); padding: 2.5rem; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.03); } .form-group { margin-bottom: 1.2rem; } .form-group label { display: block; margin-bottom: 0.4rem; font-weight: 500; font-size: 0.9rem; color: #0f172a; } .form-group input, .form-group textarea, .form-group select { width: 100%; padding: 0.8rem 1rem; background: var(--bg-color); border: 1px solid var(--border); color: var(--text-color); border-radius: 6px; font-size: 0.95rem; outline: none; transition: border-color 0.2s; } .form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--primary); } .success-msg { margin-top: 1rem; color: #16a34a; font-weight: 500; } footer { background: #0f172a; color: #94a3b8; padding: 2.5rem 0; text-align: center; margin-top: auto; border-top: 1px solid rgba(0,0,0,0.05); } .footer-content p { font-size: 0.9rem; } @media(max-width: 768px) { .hero-grid { grid-template-columns: 1fr; text-align: center; } .hero-buttons, .quick-stats { justify-content: center; } .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: white; padding: 1.5rem 2rem; border-bottom: 1px solid var(--border); gap: 1rem; box-shadow: 0 10px 15px rgba(0,0,0,0.05); } .hamburger { display: flex; } .filter-bar { flex-direction: column; } .job-card { flex-direction: column; align-items: flex-start; gap: 1rem; } }

/* Karbon Sites Branding */

  #karbon-promo-banner {
      position: fixed;
      bottom: 10px;
      right: 10px;
      background-color: rgba(0, 0, 0, 0.8);
      color: white;
      padding: 8px 16px;
      border-radius: 8px;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
      font-size: 14px;
      z-index: 10000;
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
      transition: transform 0.2s ease-in-out;
  }
  #karbon-promo-banner:hover {
      transform: scale(1.05);
  }
