/* ================================
   RESET + BASE
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f8f9fa;
  color: #333;
  line-height: 1.6;
}

/* ================================
   HEADER + LOGO
================================ */
header {
  background: #001F4D; /* deep navy */
  color: #fff;
  padding: 18px 0;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  padding: 0 16px;
}

.logo {
  width: 56px;
  height: 56px;
  display: block;
}

.title h1 {
  margin: 0;
  font-size: 1.6rem;
  letter-spacing: 0.2px;
}

.title p {
  margin: 0;
  font-size: 0.95rem;
  color: #e6eef8;
}

/* ================================
   NAVIGATION
================================ */
nav {
  background: #002B6B; /* slightly lighter navy */
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 12px 8px;
}

nav a {
  color: #fff;
  margin: 0 18px;
  text-decoration: none;
  font-weight: 700;
}

nav a:hover {
  color: #FFD600; /* gold highlight */
  text-decoration: none;
}

/* ================================
   MAIN CONTENT
================================ */
main {
  max-width: 1000px;
  margin: 30px auto;
  padding: 20px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* ================================
   FORMS
================================ */
form input,
form textarea,
form select,
form button {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  font-size: 16px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

form button {
  background-color: #004080; /* corporate blue */
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: #0059B3; /* lighter hover blue */
}

/* ================================
   TABLES (Dashboard jobs)
================================ */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

table, th, td {
  border: 1px solid #ddd;
}

th, td {
  padding: 12px;
  text-align: left;
}

th {
  background-color: #f0f0f0;
}

.status-pending {
  color: #ff9800;
  font-weight: bold;
}
.status-review {
  color: #2196f3;
  font-weight: bold;
}
.status-completed {
  color: #4caf50;
  font-weight: bold;
}

/* ================================
   BUTTONS + LINKS
================================ */
.button {
  display: inline-block;
  background: #004080; /* corporate blue */
  color: white;
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.button:hover {
  background: #0059B3; /* hover blue */
}

/* ================================
   PRICING CARDS
================================ */
.pricing-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.pricing-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card h3 {
  margin-bottom: 10px;
  color: #001F4D; /* deep navy heading */
}

.pricing-card p {
  margin-bottom: 15px;
}

.price {
  font-size: 1.5rem;
  font-weight: bold;
  color: #FFD600; /* gold accent */
  margin-bottom: 15px;
}

/* ================================
   FOOTER
================================ */
footer {
  background: #001F4D;
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
}
