/* Color system based on Vasudeva Staffing logo */
:root {
  --color-primary: #004aad;       /* main blue */
  --color-primary-dark: #00337a;  /* darker blue */
  --color-accent: #02b7ac;        /* teal/aqua */
  --color-gold: #d4a031;          /* gold circle accent */
  --color-bg: #f5f7fb;
  --color-bg-alt: #eef6ff;
  --color-text: #111827;
  --color-muted: #4b5563;
}

/* Reset-ish */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.5;
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Layout helpers */
.page-section {
  padding: 4rem 1.5rem;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.alt-bg {
  background: var(--color-bg-alt);
}

/* Top bar */
.top-bar {
  background: var(--color-primary-dark);
  color: #e5e7eb;
  padding: 1rem 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
}

.top-bar-left span{
  margin-left: 10rem;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-bar-right a {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid #4b5563;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

.top-bar-cta {
  margin-left: 0.75rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: none;
  background: var(--color-accent);
  color: white;
  cursor: pointer;
  font-size: 0.75rem;
}

/* Main header / nav */
.main-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: white;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.logo img {
  height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.nav-links button {
  border: none;
  background: transparent;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.9rem;
  cursor: pointer;
  color: #374151;
  transition: background 0.15s, color 0.15s;
}

.nav-links button:hover {
  background: rgba(0, 74, 173, 0.08);
  color: var(--color-primary);
}

/* Active nav when scrolling */
.nav-links button.active {
  background: var(--color-primary);
  color: white;
}

/* Hero section */
.hero-section {
  padding-top: 3rem;
  padding-bottom: 3.5rem;
  background: radial-gradient(circle at top left, rgba(2, 183, 172, 0.18), rgba(0, 74, 173, 0.12));
}

.hero-content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  color: var(--color-primary-dark);
}

.hero-text p {
  font-size: 1rem;
  color: var(--color-muted);
}

.hero-body {
  margin-top: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.hero-actions .primary,
.hero-actions .secondary {
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.hero-actions .primary {
  background: var(--color-primary);
  color: white;
}

.hero-actions .primary:hover {
  background: var(--color-primary-dark);
}

.hero-actions .secondary {
  background: white;
  border: 1px solid rgba(2, 183, 172, 0.4);
  color: var(--color-primary-dark);
}

.hero-actions .secondary:hover {
  background: rgba(2, 183, 172, 0.08);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.hero-stats .stat h2 {
  font-size: 1.5rem;
  color: var(--color-accent);
}

.hero-stats .stat p {
  color: var(--color-muted);
  font-size: 0.85rem;
}

.hero-card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
  border-top: 4px solid var(--color-gold);
}

.hero-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.hero-card p {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-bottom: 1rem;
}

.hero-card .full-width {
  width: 100%;
}

.hero-note {
  margin-top: 0.75rem;
  font-size: 0.78rem;
  color: #6b7280;
}

/* Generic sections */
h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--color-primary-dark);
}

.section-subtitle {
  margin-bottom: 2rem;
  color: var(--color-muted);
  max-width: 40rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}

.card {
  background: white;
  padding: 1.25rem;
  border-radius: 1rem;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
  border-top: 3px solid rgba(212, 160, 49, 0.25);
}

.card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  color: var(--color-primary-dark);
}

.card p {
  color: var(--color-muted);
  font-size: 0.9rem;
}

.card ul {
  margin-left: 1rem;
  color: var(--color-muted);
  font-size: 0.9rem;
}

/* Bullet lists */
.bullet-list {
  list-style: disc;
  margin-left: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--color-muted);
  font-size: 0.9rem;
}

/* Training layout */
.training-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
.training-layout h3 {
  margin-bottom: 0.5rem;
}


.training-highlight {
  background: white;
  padding: 1.25rem;
  border-radius: 1rem;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
  border-left: 4px solid var(--color-accent);
}

/* Employers / contact layouts */
.employers-layout,
.contact-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.testimonial-card {
  background: white;
  padding: 1.25rem;
  border-radius: 1rem;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
  border-left: 4px solid var(--color-primary);
}

.testimonial-text {
  font-size: 0.92rem;
  color: var(--color-muted);
  margin-bottom: 0.75rem;
}

.testimonial-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary-dark);
}

/* Forms */
.form-section {
  max-width: 600px;
}

.form-card {
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
  border-top: 3px solid rgba(0, 74, 173, 0.35);
}

.form-row {
  margin-bottom: 0.9rem;
}

.form-row label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
  color: #374151;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.55rem 0.7rem;
  border-radius: 0.5rem;
  border: 1px solid #d1d5db;
  font-size: 0.9rem;
}

.form-row textarea {
  resize: vertical;
}

button.primary {
  background: var(--color-primary);
  color: white;
  border: none;
  padding: 0.65rem 1.1rem;
  border-radius: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
}

button.primary:hover {
  background: var(--color-primary-dark);
}

button.secondary {
  background: white;
  border: 1px solid rgba(2, 183, 172, 0.5);
  padding: 0.6rem 1.05rem;
  border-radius: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--color-primary-dark);
}

button.secondary:hover {
  background: rgba(2, 183, 172, 0.08);
}

button.full-width {
  width: 100%;
}

.form-note {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--color-muted);
}

.form-note.small {
  font-size: 0.78rem;
}

/* Contact */
.contact-info {
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
  border-left: 4px solid var(--color-gold);
}

.social-links {
  list-style: none;
  margin-top: 0.75rem;
}

.social-links li + li {
  margin-top: 0.3rem;
}

.social-links a {
  color: var(--color-accent);
  font-size: 0.9rem;
}

.contact-cta-buttons {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Footer */
.site-footer {
  background: #020617;
  color: #e5e7eb;
  padding: 2.5rem 1.5rem 1.5rem;
  margin-top: 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto 1.5rem;
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.5fr;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.footer-column h3 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: var(--color-gold);
}

.footer-column ul {
  list-style: none;
}

.footer-column li + li {
  margin-top: 0.35rem;
}

.footer-column a {
  color: #e5e7eb;
  font-size: 0.88rem;
}

.footer-column a:hover {
  color: var(--color-accent);
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.5rem 0.7rem;
  border-radius: 0.5rem;
  border: 1px solid #4b5563;
  background: #020617;
  color: #e5e7eb;
  font-size: 0.85rem;
}

.newsletter-form button {
  padding: 0.5rem 0.9rem;
  border-radius: 0.5rem;
  border: none;
  background: var(--color-accent);
  color: white;
  cursor: pointer;
  font-size: 0.85rem;
}

.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  color: #9ca3af;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .top-bar-left span {
    display: none;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .main-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .nav-links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .page-section {
    padding: 3rem 1rem;
  }

  .logo img {
    height: 46px;
  }
}
/* Icon helpers */
.icon-heading {
  margin-right: 0.4rem;
  color: var(--color-accent);
}

.icon-inline {
  margin-right: 0.35rem;
}

.icon-stat {
  margin-right: 0.4rem;
}

/* Make top-bar icons centered and a bit bigger */
.top-bar-right a i {
  font-size: 0.85rem;
}

/* Social links in contact/footer */
.social-links a i {
  margin-right: 0.35rem;
}

