 :root {
  --primary-color: #104627;
  --primary-dark: #1d4ed8;
  --success-color: #10b981;
  --text-primary: #1f2937;
  --text-secondary: #6b7280;
  --bg-gray: #f9fafb;
  --border-color: #e5e7eb;
  --green-primary: #7CB342;
  --green-light: #9CCC65;
}
/*
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-gray);
  padding-top: 76px;
}

.header {
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-icon svg {
  width: 45px;
  height: 45px;
}

.brand-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.2;
}

.brand-tagline {
  font-size: 12px;
  color: var(--text-secondary);
  margin: 0;
}

.navbar-nav .nav-link {
  color: var(--text-secondary);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color);
}

.navbar-nav .btn {
  margin-left: 0.5rem;
} */

.hero {
  background: linear-gradient(135deg, #8cb958 0%, #104627 100%);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="30" fill="white" opacity="0.03"/></svg>');
  opacity: 0.1;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.badge-wrapper {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.badge {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 32px;
  opacity: 0.95;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-actions .btn {
  border-radius: 8px;
  padding: 12px 32px;
  font-weight: 600;
  transition: all 0.3s;
}

.hero-actions .btn-primary {
  background-color: white;
  color: var(--primary-color);
  border: none;
}

.hero-actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hero-actions .btn-outline-secondary {
  border: 2px solid white;
  color: white;
  background: transparent;
}

.hero-actions .btn-outline-secondary:hover {
  background: white;
  color: var(--primary-color);
}

main {
  padding: 60px 0;
}

.content-card {
  background: white;
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s;
}

.content-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.section-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
}

.section-title i {
  color: var(--primary-color);
}

.job-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.highlight-item {
  display: flex;
  gap: 16px;
  align-items: start;
}

.highlight-item i {
  font-size: 28px;
  color: var(--green-primary);
  margin-top: 4px;
}

.highlight-item h5 {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 4px;
  font-weight: 600;
}

.highlight-item p {
  font-size: 16px;
  color: var(--text-primary);
  margin: 0;
  font-weight: 500;
}

.responsibilities-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.responsibility-item {
  display: flex;
  gap: 12px;
  align-items: start;
}

.responsibility-item i {
  color: var(--green-primary);
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.responsibility-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-primary);
}

.about-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 32px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--bg-gray);
  border-radius: 8px;
  transition: all 0.3s;
}

.service-item:hover {
  background: #e0f2f1;
  transform: translateX(4px);
}

.service-item i {
  font-size: 24px;
  color: var(--green-primary);
}

.service-item span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}

.eoe-card {
  background: linear-gradient(135deg, #e0f2f1 0%, #b2dfdb 100%);
  border: none;
  display: flex;
  gap: 20px;
  align-items: start;
}

.eoe-icon {
  font-size: 40px;
  color: var(--green-primary);
}

.eoe-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.eoe-content p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  color: var(--text-primary);
}

.sidebar-card {
  background: white;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  top: 140px;
}

.sidebar-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.sidebar-text {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}

.contact-info h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--text-secondary);
  font-size: 14px;
}

.contact-item i {
  color: var(--primary-color);
  font-size: 18px;
  width: 20px;
}

.footer {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  color: white;
  padding: 48px 0 32px;
  margin-top: 60px;
}

.footer h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer p {
  opacity: 0.8;
  font-size: 14px;
}

.social-links {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  font-size: 18px;
  transition: all 0.3s;
}

.social-links a:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-2px);
}

.modal-content {
  border: none;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
  border-bottom: 1px solid var(--border-color);
  padding: 24px 32px;
}

.modal-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
}

.modal-body {
  padding: 32px;
}

.form-label {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  font-size: 14px;
}

.form-control {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 12px;
  font-size: 15px;
  transition: all 0.3s;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.modal-footer {
  border-top: 1px solid var(--border-color);
  padding: 20px 32px;
}

@media (max-width: 768px) {
  body {
    padding-top: 68px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero {
    padding: 60px 0;
  }

  .content-card {
    padding: 24px;
  }

  .section-title {
    font-size: 20px;
  }

  .job-highlights {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .social-links {
    justify-content: center;
    margin-bottom: 20px;
  }

  .footer .text-md-end {
    text-align: center !important;
  }

  .eoe-card {
    flex-direction: column;
    text-align: center;
  }
}
.sidebar-card {
    z-index: 990 !important;
}