@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
  /* Hiringhub Theme Fonts */
  --thm-font: 'Outfit', sans-serif;
  --thm-font-2: 'Lora', serif;
  
  /* Hiringhub Theme Harmonized Colors */
  --thm-primary-color: #00c486; /* Bright Emerald Teal */
  --thm-primary-color-rgb: 0, 196, 134;
  --thm-secondary-color: #ed746c; /* Soft Salmon Coral */
  --thm-secondary-color-rgb: 237, 116, 108;
  
  --thm-body-font-color: #6a726f; /* Slate Gray */
  --thm-heading-font-color: #062a26; /* Deep Forest Black */
  
  --bg-primary: #ffffff;
  --bg-secondary: #edf4f2; /* Soft light grey-green */
  --bg-dark: #062a26;
  --bg-dark-card: #0a3a35;
  
  --text-main: #6a726f;
  --text-title: #062a26;
  --text-muted: #8d9894;
  --text-light: #ffffff;
  
  --border-color: #dde6e3;
  --border-dark: #12403b;
  
  --shadow-sm: 0 2px 4px rgba(6, 42, 38, 0.03);
  --shadow-md: 0 4px 10px rgba(6, 42, 38, 0.05), 0 2px 4px rgba(6, 42, 38, 0.02);
  --shadow-lg: 0 10px 30px rgba(6, 42, 38, 0.08), 0 5px 15px rgba(6, 42, 38, 0.04);
  --shadow-premium: 0 20px 40px rgba(0, 196, 134, 0.08);
  
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Global Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--thm-font);
  color: var(--thm-body-font-color);
  background-color: var(--bg-primary);
  font-size: 16px;
  line-height: 28px;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--thm-font-2);
  font-weight: 700;
  color: var(--thm-heading-font-color);
  line-height: 1.3em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

/* Navigation Header */
header {
  position: sticky;
  top: 0;
  background-color: #052a26;
  border-bottom: 1px solid var(--border-dark);
  z-index: 100;
  display: flex;
  align-items: center;
  height: 90px;
  width: 100%;
  transition: var(--transition);
}

.logo-box {
  height: 100%;
  background-color: transparent;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-family: var(--thm-font);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-box span {
  color: var(--thm-primary-color);
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--thm-primary-color), var(--thm-secondary-color));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 4px 10px rgba(0, 196, 134, 0.25);
}

.nav-menu-wrapper {
  flex-grow: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  height: 100%;
}

nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
}

nav a {
  font-family: var(--thm-font);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  position: relative;
  padding: 4px 0;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--thm-primary-color);
  transition: var(--transition);
}

nav a:hover::after, nav a.active::after {
  width: 100%;
}

nav a:hover, nav a.active {
  color: var(--thm-primary-color);
}

.nav-cta {
  background-color: var(--thm-primary-color);
  color: white;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--thm-font);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 15px rgba(0, 196, 134, 0.15);
}

.nav-cta:hover {
  background-color: white;
  color: var(--thm-heading-font-color);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

/* Hero Section */
.hero {
  height: 650px;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(90deg, rgba(6, 42, 38, 0.95) 0%, rgba(6, 42, 38, 0.7) 50%, rgba(6, 42, 38, 0.1) 100%),
              url('slide-v1-1.jpg') no-repeat center center / cover;
  padding: 0 24px;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
}

.hero-text {
  max-width: 700px;
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--thm-font);
}

.hero h1 {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  color: white;
}

.hero h1 span {
  color: var(--thm-primary-color);
  background: linear-gradient(135deg, var(--thm-primary-color) 30%, var(--thm-secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 620px;
  margin-bottom: 40px;
  line-height: 28px;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

/* Premium Button One (Sliding Transition Effect) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  font-family: var(--thm-font);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 2;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: transparent;
  color: white;
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: 0; left: 0; bottom: 0; right: 0;
  background-color: var(--thm-primary-color);
  transform: scaleX(1);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.62, 0.21, 0.45, 1);
  z-index: -1;
}

.btn-primary:hover::after {
  transform: scaleX(0);
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0; left: 0; bottom: 0; right: 0;
  background-color: var(--thm-heading-font-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.62, 0.21, 0.45, 1);
  z-index: -2;
}

.btn-primary:hover::before {
  transform: scaleX(1);
  z-index: -1;
}

.btn-primary:hover {
  color: white;
  box-shadow: 0 8px 25px rgba(6, 42, 38, 0.15);
}

.btn-secondary {
  background-color: transparent;
  color: var(--thm-heading-font-color);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  border-color: var(--thm-primary-color);
  color: var(--thm-primary-color);
  background-color: var(--bg-secondary);
  transform: translateY(-2px);
}

.hero .btn-secondary {
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.hero .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--thm-primary-color);
  border-color: var(--thm-primary-color);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-box {
  width: 100%;
  max-width: 400px;
  height: 380px;
  background: linear-gradient(135deg, #edf4f2 0%, #dde6e3 100%);
  border-radius: var(--radius-lg);
  position: relative;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.visual-circle {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, var(--thm-primary-color) 0%, var(--thm-secondary-color) 100%);
  border-radius: 50%;
  position: absolute;
  top: -40px;
  right: -40px;
  opacity: 0.12;
  filter: blur(15px);
}

.visual-stats {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  position: absolute;
  bottom: 40px;
  left: -20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

.visual-stats-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.visual-stats-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(0, 196, 134, 0.1);
  color: var(--thm-primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-stats-text {
  font-family: var(--thm-font);
  font-weight: 800;
  font-size: 20px;
  color: var(--thm-heading-font-color);
  line-height: 1;
}

.visual-stats-sub {
  font-size: 11px;
  color: var(--thm-body-font-color);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* Stats Section */
.stats {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background-color: var(--bg-secondary);
  padding: 50px 24px;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-card {
  text-align: center;
}

.stat-value {
  font-family: var(--thm-font-2);
  font-size: 46px;
  font-weight: 700;
  color: var(--thm-heading-font-color);
  margin-bottom: 6px;
}

.stat-label {
  font-size: 14px;
  color: var(--thm-body-font-color);
  font-weight: 500;
}

/* Services Section */
.services {
  padding: 120px 24px;
}

.section-header {
  max-width: 650px;
  margin: 0 auto 60px auto;
  text-align: center;
}

/* Hiringhub Sub-Title Arrow Style */
.section-label {
  color: var(--thm-primary-color);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  display: inline-block;
  position: relative;
  padding-left: 32px;
  font-family: var(--thm-font);
}

.section-label::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 0;
  height: 0;
  border-left: 10px solid var(--thm-primary-color);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.section-label::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 12px;
  width: 0;
  height: 0;
  border-left: 10px solid var(--thm-primary-color);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.section-title {
  font-size: 44px;
  margin-bottom: 16px;
  color: var(--thm-heading-font-color);
}

.section-desc {
  color: var(--thm-body-font-color);
  font-size: 16px;
  line-height: 28px;
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--thm-border-radius);
  padding: 45px 35px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 196, 134, 0.3);
  box-shadow: var(--shadow-premium);
}

.service-icon {
  width: 54px;
  height: 54px;
  background-color: rgba(0, 196, 134, 0.08);
  color: var(--thm-primary-color);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 28px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background-color: var(--thm-primary-color);
  color: white;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  font-family: var(--thm-font-2);
}

.service-card p {
  color: var(--thm-body-font-color);
  font-size: 15px;
  line-height: 26px;
  flex-grow: 1;
  margin-bottom: 24px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  background-color: var(--bg-secondary);
  color: var(--thm-heading-font-color);
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 100px;
  font-weight: 600;
  transition: var(--transition);
}

.service-card:hover .tag {
  background-color: rgba(0, 196, 134, 0.08);
  color: var(--thm-primary-color);
}

/* Trust / Why Us Section */
.trust {
  background-color: var(--bg-secondary);
  padding: 120px 24px;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.trust-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.trust-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--thm-border-radius);
  padding: 40px 30px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
}

.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.trust-icon {
  width: 56px;
  height: 56px;
  background-color: rgba(0, 196, 134, 0.08);
  color: var(--thm-primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 24px auto;
  transition: var(--transition);
}

.trust-card:hover .trust-icon {
  background-color: var(--thm-primary-color);
  color: white;
  transform: rotateY(180deg);
}

.trust-card h3 {
  font-size: 20px;
  margin-bottom: 14px;
  font-family: var(--thm-font-2);
}

.trust-card p {
  color: var(--thm-body-font-color);
  font-size: 14px;
  line-height: 24px;
}

/* CTA Banner Section */
.cta {
  padding: 100px 24px;
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--bg-dark) 0%, #0a3a35 100%);
  border-radius: var(--radius-lg);
  padding: 60px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-dark);
}

.cta-text h2 {
  color: white;
  font-size: 38px;
  margin-bottom: 14px;
  font-family: var(--thm-font-2);
}

.cta-text p {
  color: #94b2ae;
  max-width: 520px;
  font-size: 16px;
  line-height: 26px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  z-index: 2;
}

.btn-white {
  background-color: white;
  color: var(--thm-heading-font-color);
}

.btn-white:hover {
  background-color: var(--thm-primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 196, 134, 0.3);
}

.btn-transparent {
  background-color: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-transparent:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: var(--thm-primary-color);
  transform: translateY(-2px);
}

/* Footer */
footer {
  background-color: var(--bg-dark);
  color: #94b2ae;
  padding: 70px 24px 35px 24px;
  border-top: 1px solid var(--border-dark);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-dark);
  padding-bottom: 45px;
  margin-bottom: 35px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--thm-font);
  font-size: 26px;
  font-weight: 800;
  color: white;
}

.footer-logo span {
  color: var(--thm-primary-color);
}

.footer-copyright {
  text-align: center;
  font-size: 13px;
  color: #557c77;
}

/* Careers/Jobs Listings Page */
.jobs-hero {
  height: 380px;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(90deg, rgba(6, 42, 38, 0.95) 0%, rgba(6, 42, 38, 0.75) 50%, rgba(6, 42, 38, 0.2) 100%),
              url('slide-v1-3.jpg') no-repeat center center / cover;
  padding: 0 24px;
  color: white;
  border-bottom: none;
}

.jobs-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  text-align: left;
}

.jobs-hero h1 {
  font-size: 44px;
  margin-bottom: 14px;
  font-family: var(--thm-font-2);
  color: white;
}

.jobs-hero p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 650px;
  margin: 0;
}

.jobs-filter-container {
  max-width: 1200px;
  margin: 45px auto 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.filter-btn {
  background-color: white;
  border: 1px solid var(--border-color);
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--thm-font);
  cursor: pointer;
  transition: var(--transition);
  color: var(--thm-heading-font-color);
}

.filter-btn:hover {
  background-color: var(--bg-secondary);
  border-color: var(--thm-primary-color);
}

.filter-btn.active {
  background-color: var(--thm-primary-color);
  color: white;
  border-color: var(--thm-primary-color);
  box-shadow: 0 4px 12px rgba(0, 196, 134, 0.2);
}

.jobs-list-section {
  padding: 80px 24px;
}

.jobs-list-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.job-row-card {
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: var(--thm-border-radius);
  padding: 35px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: center;
  gap: 24px;
  transition: var(--transition);
}

.job-row-card:hover {
  border-color: rgba(0, 196, 134, 0.3);
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
}

.job-row-main h3 {
  font-size: 22px;
  margin-bottom: 10px;
  font-family: var(--thm-font-2);
}

.job-row-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--thm-primary-color);
  font-size: 13px;
  margin-bottom: 16px;
  align-items: center;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.job-row-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--thm-primary-color);
}

.job-row-meta span svg {
  color: var(--thm-heading-font-color);
}

.job-row-desc {
  font-size: 15px;
  color: var(--thm-body-font-color);
  line-height: 26px;
}

.job-row-action {
  display: flex;
  justify-content: flex-end;
}

/* Job Detail Modal / Inline Page */
.job-detail-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(6, 42, 38, 0.35);
  backdrop-filter: blur(5px);
  z-index: 200;
  justify-content: center;
  align-items: center;
}

.job-detail-modal {
  background-color: white;
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 780px;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  padding: 45px;
  position: relative;
  animation: modalEnter 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid var(--border-color);
}

@keyframes modalEnter {
  from { transform: scale(0.92) translateY(20px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}

.close-modal {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 26px;
  color: var(--thm-body-font-color);
  cursor: pointer;
  border: none;
  background: transparent;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.close-modal:hover {
  background-color: var(--bg-secondary);
  color: var(--thm-heading-font-color);
}

.modal-header h2 {
  font-size: 32px;
  margin-bottom: 14px;
  padding-right: 40px;
  font-family: var(--thm-font-2);
}

.modal-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  color: var(--thm-body-font-color);
  font-size: 14px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 18px;
  font-weight: 500;
}

.modal-section {
  margin-bottom: 28px;
}

.modal-section h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--thm-primary-color);
  margin-bottom: 14px;
  font-family: var(--thm-font);
  font-weight: 700;
}

.modal-section ul {
  list-style-type: none;
  padding-left: 0;
}

.modal-section li {
  font-size: 15px;
  color: var(--thm-body-font-color);
  margin-bottom: 10px;
  position: relative;
  padding-left: 24px;
  line-height: 24px;
}

.modal-section li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--thm-primary-color);
  font-weight: 700;
  font-size: 16px;
}

.modal-footer {
  margin-top: 40px;
  border-top: 1px solid var(--border-color);
  padding-top: 28px;
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}

/* Job Application Form page */
.apply-section {
  padding: 100px 24px;
  background-color: var(--bg-secondary);
  min-height: calc(100vh - 180px);
}

.apply-container {
  max-width: 680px;
  margin: 0 auto;
  background-color: white;
  border-radius: var(--thm-border-radius);
  border: 1px solid var(--border-color);
  padding: 45px;
  box-shadow: var(--shadow-premium);
}

.apply-title {
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 20px;
}

.apply-title h1 {
  font-size: 32px;
  margin-bottom: 8px;
  font-family: var(--thm-font-2);
}

.apply-title p {
  color: var(--thm-body-font-color);
  font-size: 15px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
  color: var(--thm-heading-font-color);
  font-family: var(--thm-font);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--thm-font);
  font-size: 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background-color: white;
  transition: var(--transition);
  color: var(--thm-heading-font-color);
}

.form-control:focus {
  outline: none;
  border-color: var(--thm-primary-color);
  box-shadow: 0 0 0 4px rgba(0, 196, 134, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
  line-height: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Alert Boxes */
.alert {
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  margin-bottom: 28px;
  display: none;
  font-weight: 600;
  font-family: var(--thm-font);
}

.alert-success {
  background-color: #e6fcf5;
  color: #0ca678;
  border: 1px solid #c3fae8;
  display: flex;
  align-items: center;
  gap: 12px;
}

.alert-error {
  background-color: #fff5f5;
  color: #e03131;
  border: 1px solid #ffe3e3;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero h1 {
    font-size: 44px;
  }
  .hero p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .visual-box {
    height: 320px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .cta-container {
    flex-direction: column;
    text-align: center;
    padding: 50px 40px;
    gap: 30px;
  }
  .cta-text h2 {
    font-size: 32px;
  }
  .cta-text p {
    margin: 0 auto;
  }
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    height: auto;
    padding: 20px 24px;
    gap: 16px;
  }
  nav ul {
    gap: 24px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .job-row-card {
    grid-template-columns: 1fr;
  }
  .job-row-action {
    justify-content: flex-start;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .apply-container {
    padding: 30px 24px;
  }
  .section-title {
    font-size: 34px;
  }
}

@media (max-width: 480px) {
  .stats-container {
    grid-template-columns: 1fr;
  }
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }
  .hero h1 {
    font-size: 34px;
  }
}
