/* ================= RESET ================= */

:root {
  --primary-blue: #0a438b;
  --dark-blue: #101d2d;
  --orange: #ff8c1a;
  --light-bg: #f8fafc;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --white: #ffffff;
}

/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", system-ui, sans-serif;
}

body {
  background: #f7f9fc;
  color: #1f2937;
}

/* ================= NAVBAR ================= */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 40px;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  display: flex;
  gap: 10px;
  align-items: center;
}

.logo i {
  background: #0d3b8e;
  color: white;
  padding: 10px;
  border-radius: 12px;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #64748b;
  padding: 8px 16px;
  border-radius: 10px;
  font-weight: 600;
}

.nav-links .active {
  background: #0d3b8e;
  color: white;
}

.signup {
  background: #ff8a00;
  padding: 10px 18px;
  border-radius: 12px;
  color: white;
  text-decoration: none;
  font-weight: 600;
}

/* ================= HERO ================= */

/* GRID BACKGROUND PATTERN */
.grid-bg {
  background-color: #f9fbfd;
  background-image:
    linear-gradient(#e5e7eb 1px, transparent 1px),
    linear-gradient(90deg, #e5e7eb 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero {
  min-height: 100vh;
  padding: 120px 40px;

  /* Base color */
  background-color: #f9fbfd;

  /* Grid + soft glow */
  background-image:
    /* vertical grid */
    linear-gradient(#e5e7eb 1px, transparent 1px),
    /* horizontal grid */
    linear-gradient(90deg, #e5e7eb 1px, transparent 1px),
    /* soft light gradient */
    radial-gradient(circle at 70% 20%,
      rgba(59, 130, 246, 0.08),
      transparent 55%);

  background-size:
    48px 48px,
    48px 48px,
    100% 100%;

  background-position:
    center,
    center,
    center;

  text-align: center;
}


.hero-badge {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  background: #e0ebff;
  color: #0d3b8e;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  margin-bottom: 30px;
}

.hero h1 {
  font-size: 56px;
  font-weight: 800;
}

.hero .blue {
  color: #0d3b8e;
}

.hero .orange {
  color: #ff8a00;
}

.hero-desc {
  max-width: 720px;
  margin: 20px auto 40px;
  color: #64748b;
  font-size: 18px;
}

/* SEARCH */
.search-box {
  display: flex;
  align-items: center;
  gap: 12px;

  max-width: 760px;
  padding: 10px;

  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  max-width: 820px;
  margin: auto;
  background: white;
  padding: 8px;
  border-radius: 18px;
  display: flex;
  gap: 10px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

/* INPUT WRAPPER */
.search-input {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;

  height: 54px;
  padding: 0 16px;

  background: #f1f3f5;
  border-radius: 14px;
}

/* SEARCH ICON */
.search-input i {
  color: #64748b;
  font-size: 16px;
}

/* INPUT */
.search-input input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;

  font-size: 16px;
  color: #1f2937;
}

.search-input input::placeholder {
  color: #6b7280;
}

/* FOCUS */
.search-input:focus-within {
  background: #ffffff;
  box-shadow: 0 0 0 2px rgba(13, 59, 142, 0.25);
}

/* BUTTON */
.search-btn {
  height: 54px;
  padding: 0 26px;

  display: flex;
  align-items: center;
  gap: 10px;

  background: linear-gradient(135deg, #0d3b8e, #0b3278);
  color: white;

  border: none;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;

  cursor: pointer;
  transition: all 0.25s ease;
}

.search-btn:hover {
  transform: translateY(-2px);
}


.hero-actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;

  border-radius: 14px;
  cursor: pointer;
  border: none;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}



.btn-jobs {
  background: linear-gradient(135deg, #ff9800, #ff6a00);
  color: white;
  padding: 14px 40px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
}

.btn-jobs:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(104, 95, 84, 0.45);
  background: linear-gradient(135deg, #ff8a00, #ff5500);
}

.btn-jobs:active {
  transform: scale(0.96);
}

.btn-trade {
  background: white;
  color: #0d3b8e;
  border: 2px solid #0d3b8e;
  padding: 14px 28px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
}

.btn-trade:hover {
  background: #0d3b8e;
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(13, 59, 142, 0.35);
}

.btn-trade:active {
  transform: scale(0.96);
}

/* ================= STATS ================= */
.stats-section {
  background: linear-gradient(180deg, #0f3d91, #0a2c64);
  padding: 60px 40px;
}

.stats-grid {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

/* EACH STAT */
.stat-card h2 {
  color: white;
  font-size: 42px;
  font-weight: 800;
  margin: 14px 0 6px;
}

.stat-card p {
  color: #dbeafe;
  font-size: 16px;
}

/* ICON BOX */
.stat-icon {
  width: 40px;
  height: 40px;

  margin: auto;
  margin-bottom: 8px;

  background: rgba(255, 255, 255, 0.12);
  border-radius: 10px;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* ICON */
.stat-icon i {
  font-size: 20px;
  color: white;
}

/*================= MODULES ================= */
.modules-section {
  padding: 80px 40px;
  background: #ffffff;
  text-align: center;
}

.modules-section h2 {
  font-size: 42px;
  font-weight: 800;
  color: #1f2937;
}

.subtitle {
  margin-top: 10px;
  font-size: 18px;
  color: #64748b;
}

/* GRID — fills entire section width, 2 equal columns */
.modules-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  width: 100%;
  align-items: stretch;
  text-align: left;
}

/* CARD BASE */
.module-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 48px 50px 44px;
  text-align: left;

  border: 1.5px solid #eef2f7;
  border-top-width: 6px;
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.07);

  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;

  display: flex;
  flex-direction: column;
  min-height: 400px;
}

/* ICON */
.icon-box {
  width: 80px;
  height: 80px;
  border-radius: 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 32px;
  margin-bottom: 26px;
}

/* TEXT */
.module-card h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
}

.desc {
  color: #64748b;
  margin-bottom: 20px;
  font-size: 15.5px;
  line-height: 1.6;
}

.module-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
  flex: 1;
}

.module-card ul li {
  margin-bottom: 12px;
  color: #475569;
  font-size: 15px;
}

/* ACTION — pinned to bottom */
.action-link {
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding: 10px 20px;
  border-radius: 10px;
  transition: all 0.25s ease;
}

.module-card.orange .action-link:hover {
  background: #fff3e6;
}

.module-card.green .action-link:hover {
  background: #ecfdf5;
}

/* ===== COLOR THEMES ===== */

.features {
  list-style: none;
  padding: 0;
  margin: 22px 0;
}

.features li {
  display: flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 12px;
  font-size: 15px;
  color: #475569;
}

/* BASE CIRCLE */
.check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 12px;
  font-weight: bold;

  background: #e6f0ff;
  /* default light background */
  color: #1d4ed8;
}

/* Blue */
.check-icon.blue {
  background: #e6f0ff;
  color: #1d4ed8;
}

/* Orange */
.check-icon.orange {
  background: #fff1e6;
  color: #f97316;
}

/* Green */
.check-icon.green {
  background: #ecfdf5;
  color: #16a34a;
}


/* BLUE */
.module-card.blue .icon-box {
  background: #e8f0ff;
  color: #1d4ed8;
}

.module-card.blue .action-link {
  color: #1d4ed8;
}

.module-card.blue:hover {
  background: #f0f6ff;
  border-color: #1d4ed8;
  transform: translateY(-10px);
}

/* ORANGE */
.module-card.orange {
  border-top-color: #f97316;
}

.module-card.orange .icon-box {
  background: linear-gradient(135deg, #fff3e6, #ffe0b2);
  color: #f97316;
}

.module-card.orange .action-link {
  color: #f97316;
  background: #fff3e6;
  padding: 10px 22px;
  border-radius: 12px;
  font-weight: 700;
}

.module-card.orange .action-link:hover {
  background: #f97316;
  color: white;
  transform: translateX(4px);
}

.module-card.orange:hover {
  border-color: #f97316;
  transform: translateY(-8px);
  box-shadow: 0 24px 52px rgba(249, 115, 22, 0.18);
}

/* GREEN */
.module-card.green {
  border-top-color: #16a34a;
}

.module-card.green .icon-box {
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  color: #16a34a;
}

.module-card.green .action-link {
  color: #16a34a;
  background: #dcfce7;
  padding: 10px 22px;
  border-radius: 12px;
  font-weight: 700;
}

.module-card.green .action-link:hover {
  background: #16a34a;
  color: white;
  transform: translateX(4px);
}

.module-card.green:hover {
  border-color: #16a34a;
  transform: translateY(-8px);
  box-shadow: 0 24px 52px rgba(22, 163, 74, 0.18);
}


/* =================== JOB SECTION ================= */
.jobs-section {
  padding: 60px 40px;
  background: #f8fafc;
}

.jobs-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.jobs-header h2 {
  font-size: 28px;
  font-weight: 800;
  color: #111827;
}

.jobs-header p {
  color: #6b7280;
  margin-top: 6px;
}

.view-all-btn {
  padding: 10px 18px;
  border-radius: 12px;
  border: 2px solid #1d4ed8;
  color: #1d4ed8;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.25s ease;
}

.view-all-btn:hover {
  background: #1d4ed8;
  color: white;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.job-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 14px;

  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid transparent;

  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border 0.25s ease;

}

.job-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
  border: 1px solid #1d4ed8;
}


.job-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.salary {
  font-weight: 700;
  color: #111827;
}

.job-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.company {
  color: #4b5563;
  margin-bottom: 12px;
}

.job-meta {
  display: flex;
  gap: 14px;
  font-size: 14px;
  color: #6b7280;
}



/* =================== Industry Profile ============== */
.featured-industries {
  padding: 70px 40px;
  background: #ffffff;
}

.fi-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
}

.fi-header h2 {
  font-size: 32px;
  font-weight: 800;
  color: #111827;
}

.fi-header p {
  margin-top: 6px;
  color: #6b7280;
}

.view-map-btn {
  padding: 10px 18px;
  border-radius: 12px;
  border: 2px solid #1d4ed8;
  color: #1d4ed8;
  text-decoration: none;
  font-weight: 600;
  transition: 0.25s ease;
}

.view-map-btn:hover {
  background: #1d4ed8;
  color: white;
}

.fi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.fi-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  display: flex;
  gap: 18px;
  border: 1px solid #eef2f7;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
  border: 1px solid #f97316;
}

.fi-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  flex-shrink: 0;
}

.fi-icon.red {
  background: #ef4444;
}

.fi-icon.green {
  background: #22c55e;
}

.fi-icon.blue {
  background: #3b82f6;
}

.fi-icon.yellow {
  background: #eab308;
}

.fi-icon.purple {
  background: #a855f7;
}

.fi-icon.orange {
  background: #f97316;
}

.fi-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.category {
  color: #6b7280;
  font-size: 14px;
}

.fi-row {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  font-size: 14px;
  color: #4b5563;
}

.location i {
  color: #2563eb;
  margin-right: 6px;
}

.rating {
  font-weight: 600;
}

.verified {
  margin-top: 10px;
  color: #2563eb;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ================= CTA ================= */
.cta {
  background: linear-gradient(90deg, #1c2b3a, #0f1c2d);
  color: white;
  margin: 40px;
  padding: 40px;
  border-radius: 14px;
  text-align: center;
}


.cta-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.cta-btn {
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.cta-btn.primary {
  background: linear-gradient(deg, #ff9800, #ff6a00);
  color: white;
}

.cta-btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(202, 177, 147, 0.45);
  background: linear-gradient(135deg, #ff8a00, #ff5500);
}

.cta-btn.secondary {
  background: #e5e7eb;
  color: #1f2937;
}

.cta-btn.secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  background: #d1d5db;
  color: #0d3b8e;
}

.primary {
  background: #ff9800;
  color: white;
}

.secondary {
  background: #ccc;
}

/* ================= FOOTER ================= */

:root {
  --primary-blue: #0a438b;
  --dark-blue: #101d2d;
  --orange: #ff8c1a;
  --light-bg: #f8fafc;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --white: #ffffff;
  --border-color: #e2e8f0;
  --success: #10b981;
  --danger: #ef4444;
  --warning: #f59e0b;
  --info: #3b82f6;
}

/* --- Footer --- */
footer {
  background: var(--dark-blue);
  color: white;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 5% 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-section h4 {
  color: var(--orange);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-section p {
  color: #cbd5e1;
  line-height: 1.6;
}

.footer-section a {
  display: block;
  color: #cbd5e1;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid #334155;
  padding: 1.5rem 5%;
  text-align: center;
  color: #94a3b8;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", system-ui, sans-serif;
}

body {
  background: #f7f9fc;
  color: #1f2937;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.job-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.reveal.active {
  opacity: 100;
  transform: translateY(0);
}

/* ================= NAVBAR ================= */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 40px;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  display: flex;
  gap: 10px;
  align-items: center;
}

.logo i {
  background: #0d3b8e;
  color: white;
  padding: 10px;
  border-radius: 12px;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #64748b;
  padding: 8px 16px;
  border-radius: 10px;
  font-weight: 600;
}

.nav-links .active {
  background: #0d3b8e;
  color: white;
}

.profile {
  text-decoration: none;
  color: #ffffff;
  background: var(--primary-blue);
  padding: 7px 10px;
  border-radius: 8px;
  font-weight: 600;
}

.signup {
  background: #ff8a00;
  padding: 10px 18px;
  border-radius: 12px;
  color: white;
  text-decoration: none;
  font-weight: 600;
}

/* ================= HERO ================= */

/* GRID BACKGROUND PATTERN */
.grid-bg {
  background-color: #f9fbfd;
  background-image:
    linear-gradient(#e5e7eb 1px, transparent 1px),
    linear-gradient(90deg, #e5e7eb 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero {
  min-height: 100vh;
  padding: 120px 40px;

  /* Base color */
  background-color: #f9fbfd;

  /* Grid + soft glow */
  background-image:
    /* vertical grid */
    linear-gradient(#e5e7eb 1px, transparent 1px),
    /* horizontal grid */
    linear-gradient(90deg, #e5e7eb 1px, transparent 1px),
    /* soft light gradient */
    radial-gradient(circle at 70% 20%,
      rgba(59, 130, 246, 0.08),
      transparent 55%);

  background-size:
    48px 48px,
    48px 48px,
    100% 100%;

  background-position:
    center,
    center,
    center;

  text-align: center;
}

.badge {
  background: linear-gradient(135deg, #e2e8f0, #f1f5f9);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-blue);
  display: inline-block;
  margin-bottom: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(10, 67, 139, 0.1);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.hero h1 {
  font-size: 56px;
  font-weight: 800;
}

.hero .blue {
  color: #0d3b8e;
}

.hero .orange {
  color: #ff8a00;
}

.hero-desc {
  max-width: 720px;
  margin: 20px auto 40px;
  color: #64748b;
  font-size: 18px;
}

/* SEARCH */
.search-box {
  display: flex;
  align-items: center;
  gap: 12px;

  max-width: 760px;
  padding: 10px;

  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  max-width: 820px;
  margin: auto;
  background: white;
  padding: 8px;
  border-radius: 18px;
  display: flex;
  gap: 10px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.header-search {
  display: flex;
  align-items: center;
  gap: 12px;

  max-width: 760px;
  padding: 10px;

  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  max-width: 820px;
  margin: auto;
  background: white;
  padding: 8px;
  border-radius: 18px;
  display: flex;
  gap: 10px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);

}

/* INPUT WRAPPER */
.search-input {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;

  height: 54px;
  padding: 0 16px;

  background: #f1f3f5;
  border-radius: 14px;
}

/* SEARCH ICON */
.search-input i {
  color: #64748b;
  font-size: 16px;
}

/* INPUT */
.search-input input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;

  font-size: 16px;
  color: #1f2937;
}

.search-input input::placeholder {
  color: #6b7280;
}

/* FOCUS */
.search-input:focus-within {
  background: #ffffff;
  box-shadow: 0 0 0 2px rgba(13, 59, 142, 0.25);
}

/* BUTTON */
.search-btn {
  height: 54px;
  padding: 0 26px;

  display: flex;
  align-items: center;
  gap: 10px;

  background: linear-gradient(135deg, #0d3b8e, #0b3278);
  color: white;

  border: none;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;

  cursor: pointer;
  transition: all 0.25s ease;
}

.search-btn:hover {
  transform: translateY(-2px);
}


.hero-actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;

  border-radius: 14px;
  cursor: pointer;
  border: none;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}



.btn-jobs {
  background: linear-gradient(135deg, #ff9800, #ff6a00);
  color: white;
  padding: 14px 40px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
}

.btn-jobs:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(104, 95, 84, 0.45);
  background: linear-gradient(135deg, #ff8a00, #ff5500);
}

.btn-jobs:active {
  transform: scale(0.96);
}

.btn-trade {
  background: white;
  color: #0d3b8e;
  border: 2px solid #0d3b8e;
  padding: 14px 28px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
}

.btn-trade:hover {
  background: #0d3b8e;
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(13, 59, 142, 0.35);
}

.btn-trade:active {
  transform: scale(0.96);
}

/* ================= STATS ================= */

.stats-bar {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #0d5aa1 100%);
  padding: 40px 5%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  color: rgb(255, 255, 255);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.02)"/><circle cx="10" cy="50" r="0.5" fill="rgba(255,255,255,0.02)"/><circle cx="90" cy="30" r="0.5" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.stat-item {
  position: relative;
  z-index: 1;
  padding: 20px;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-item i {
  font-size: 1.2rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 10px;
  display: inline-block;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.stat-item:hover i {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1) rotate(1deg);
}

.stat-item h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 8px;
  font-weight: 800;
  background: linear-gradient(135deg, white, rgba(255, 255, 255, 0.9));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-item p {
  font-size: clamp(0.9rem, 2vw, 1rem);
  opacity: 0.9;
  font-weight: 500;
  margin: 0;
}


/* =================== MODULES SECTION ================= */

.modules-section {
  padding: 80px 40px;
  background: #ffffff;
  text-align: center;
}

.modules-section h2 {
  font-size: 42px;
  font-weight: 800;
  color: #1f2937;
}

.subtitle {
  margin-top: 10px;
  font-size: 18px;
  color: #64748b;
}


.center-text {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.center-text h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--dark-blue);
  margin-bottom: 15px;
  font-weight: 700;
  position: relative;
}

.center-text h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-blue), var(--orange));
  border-radius: 2px;
}

.center-text p {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* GRID */
.modules-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* CARD BASE */
.module-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 50px 40px;
  text-align: left;

  border: 1px solid #eef2f7;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);

  transition: all 0.35s ease;
  position: relative;
}


.module-card i {
  font-size: 2.5rem;
  margin-bottom: 25px;
  padding: 20px;
  border-radius: 16px;
  display: block;
  transition: all 0.3s ease;
}

.module-card:hover i {
  transform: scale(1.1) translateY(-10px);
}


/* TEXT */
.module-card h3 {
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}


.desc {
  color: #64748b;
  margin-bottom: 20px;
}

.module-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
}

.module-card ul li {
  margin-bottom: 10px;
  color: #475569;
}


/* ACTION */
.action-link {
  font-weight: 900;
  text-decoration: none;
  display: inline-block;
}


.icon-blue {
  color: var(--primary-blue);
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  box-shadow: 0 8px 20px rgba(10, 67, 139, 0.2);
}

.icon-orange {
  color: var(--orange);
  background: linear-gradient(135deg, #fff7ed, #fed7aa);
  box-shadow: 0 8px 20px rgba(255, 140, 26, 0.2);
}

.icon-green {
  color: #10b981;
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.2);
}

/* BLUE */

.module-card.blue .action-link {
  color: #1d4ed8;
}

.module-card.blue:hover {
  background: #f0f6ff;
  border-color: #1d4ed8;
  transform: translateY(-10px);
}

.module-card.orange .action-link {
  color: #f97316;
}

.module-card.orange:hover {
  background: #fff7ed;
  border-color: #f97316;
  transform: translateY(-10px);
}

/* GREEN */

.module-card.green .action-link {
  color: #16a34a;
}

.module-card.green:hover {
  background: #f0fdf4;
  border-color: #16a34a;
  transform: translateY(-10px);
}


/* =================== JOB SECTION ================= */
.jobs-section {
  padding: 60px 40px;
  background: #f8fafc;
}

.jobs-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.jobs-header h2 {
  font-size: 28px;
  font-weight: 800;
  color: #111827;
}

.jobs-header p {
  color: #6b7280;
  margin-top: 6px;
}

.view-all-btn {
  padding: 10px 18px;
  border-radius: 12px;
  border: 2px solid #1d4ed8;
  color: #1d4ed8;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.25s ease;
}

.view-all-btn:hover {
  background: #1d4ed8;
  color: white;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.job-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 14px;

  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid transparent;

  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border 0.25s ease;
  overflow: hidden;

}

.job-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--orange));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.job-card:hover::before {
  transform: scaleX(1);
}

.job-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
  border-color: rgba(10, 67, 139, 0.2);
  border: 1px solid #1d4ed8;
}


.job-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.salary {
  font-weight: 700;
  color: #111827;
}

.job-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.company {
  color: #4b5563;
  margin-bottom: 12px;
}

.job-meta {
  display: flex;
  gap: 14px;
  font-size: 14px;
  color: #6b7280;
}


/* =================== Industry Profile ============== */
.featured-industries {
  padding: 70px 40px;
  background: #ffffff;
}

.fi-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
}

.fi-header h2 {
  font-size: 32px;
  font-weight: 800;
  color: #111827;
}

.fi-header p {
  margin-top: 6px;
  color: #6b7280;
}

.view-map-btn {
  padding: 10px 18px;
  border-radius: 12px;
  border: 2px solid #1d4ed8;
  color: #1d4ed8;
  text-decoration: none;
  font-weight: 600;
  transition: 0.25s ease;
}

.view-map-btn:hover {
  background: #1d4ed8;
  color: white;
}

.fi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.fi-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  display: flex;
  gap: 18px;
  border: 1px solid #eef2f7;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fi-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--orange));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.fi-card:hover::before {
  transform: scaleX(1);
}

.fi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
  border: 1px solid #f97316;
}

.fi-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  flex-shrink: 0;
}

.fi-icon.red {
  background: #ef4444;
}

.fi-icon.green {
  background: #22c55e;
}

.fi-icon.blue {
  background: #3b82f6;
}

.fi-icon.yellow {
  background: #eab308;
}

.fi-icon.purple {
  background: #a855f7;
}

.fi-icon.orange {
  background: #f97316;
}

.fi-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.category {
  color: #6b7280;
  font-size: 14px;
}

.fi-row {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  font-size: 14px;
  color: #4b5563;
}

.location i {
  color: #2563eb;
  margin-right: 6px;
}

.rating {
  font-weight: 600;
}

.verified {
  margin-top: 10px;
  color: #2563eb;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ================= CTA ================= */
.cta {
  background: linear-gradient(90deg, #1c2b3a, #0f1c2d);
  color: white;
  margin: 40px;
  padding: 40px;
  border-radius: 14px;
  text-align: center;
}


.cta-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.cta-btn {
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.cta-btn.primary {
  background: linear-gradient(deg, #ff9800, #ff6a00);
  color: white;
}

.cta-btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(202, 177, 147, 0.45);
  background: linear-gradient(135deg, #ff8a00, #ff5500);
}

.cta-btn.secondary {
  background: #e5e7eb;
  color: #1f2937;
}

.cta-btn.secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  background: #d1d5db;
  color: #0d3b8e;
}

.primary {
  background: #ff9800;
  color: white;
}

.secondary {
  background: #ccc;
}

/* ================= FOOTER ================= */
.footer {
  background: linear-gradient(90deg, #0d3b8e, #123f7a);
  color: white;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer h4 {
  margin-bottom: 12px;
}

.footer a {
  display: block;
  color: #dbeafe;
  text-decoration: none;
  margin-bottom: 6px;
}