/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.btn-primary {
  background-color: #2563eb;
  color: white;
}

.btn-primary:hover {
  background-color: #1d4ed8;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: #2563eb;
  border: 2px solid #2563eb;
}

.btn-outline:hover {
  background-color: #2563eb;
  color: white;
}

/* Marquee Warning */
.marquee-container {
  background-color: #dc2626;
  color: white;
  padding: 8px 0;
  font-weight: 600;
}

.warning-text {
  font-size: 14px;
}

/* Header */
.header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo img {
  height: 50px;
  width: auto;
  max-width: 200px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 25px;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #2563eb;
}

.nav-menu a.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #2563eb;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 10px 0;
  min-width: 150px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 8px 15px;
  color: #333;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
  background-color: #f3f4f6;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 12px;
}

.contact-item {
  display: flex;
  gap: 5px;
}

.contact-item span {
  font-weight: 600;
  color: #666;
}

.contact-item a {
  color: #2563eb;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #333;
  transition: all 0.3s ease;
}

/* Slider */
.slider {
  position: relative;
  height: 500px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.slider-container {
  position: relative;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.5s ease;
}

.slide.active {
  opacity: 1;
  transform: translateX(0);
}

.slide-content {
  flex: 1;
  padding: 0 50px;
}

.slide-content h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 20px;
  line-height: 1.2;
}

.slide-content p {
  font-size: 1.2rem;
  color: #64748b;
  margin-bottom: 30px;
  max-width: 500px;
}

.slide-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}

.slider-nav button {
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  color: #2563eb;
  transition: all 0.3s ease;
}

.slider-nav button:hover {
  background-color: #2563eb;
  color: white;
}

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: #2563eb;
}

/* Open Jobs Section */
.open-jobs {
  padding: 80px 0;
  background-color: #f8fafc;
}

.open-jobs h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1e293b;
  margin-bottom: 50px;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.job-card {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.job-icon {
  font-size: 3rem;
  color: #2563eb;
  margin-bottom: 20px;
}

.job-card h3 {
  font-size: 1.5rem;
  color: #1e293b;
  margin-bottom: 15px;
}

.job-card p {
  color: #64748b;
  margin-bottom: 10px;
}

.job-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 20px 0;
}

.skill {
  background-color: #e2e8f0;
  color: #475569;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

/* Services Section */
.services {
  padding: 80px 0;
  background-color: white;
}

.services h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1e293b;
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.service-card {
  padding: 40px;
  border-radius: 10px;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: #2563eb;
  transform: translateY(-5px);
}

.service-icon {
  font-size: 3rem;
  color: #2563eb;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.5rem;
  color: #1e293b;
  margin-bottom: 15px;
}

.service-card p {
  color: #64748b;
  margin-bottom: 20px;
}

.service-card ul {
  list-style: none;
  margin-bottom: 30px;
}

.service-card li {
  padding: 5px 0;
  color: #64748b;
}

.service-card li i {
  color: #10b981;
  margin-right: 10px;
}

/* Recruitment Process */
.recruitment-process {
  padding: 80px 0;
  background-color: #f8fafc;
}

.recruitment-process h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1e293b;
  margin-bottom: 50px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.step {
  background-color: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: #2563eb;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step h3 {
  font-size: 1.3rem;
  color: #1e293b;
  margin-bottom: 15px;
}

.step p {
  color: #64748b;
  margin-bottom: 20px;
}

.step-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.step-features span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #64748b;
  font-size: 14px;
}

.step-features i {
  color: #10b981;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background-color: white;
}

.contact-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1e293b;
  margin-bottom: 50px;
}

.contact-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}

.contact-form {
  background-color: #f8fafc;
  padding: 40px;
  border-radius: 10px;
}

.contact-form h3 {
  font-size: 1.5rem;
  color: #1e293b;
  margin-bottom: 30px;
}

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

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e5e7eb;
  border-radius: 5px;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
}

.contact-info-section {
  background-color: #f8fafc;
  padding: 40px;
  border-radius: 10px;
}

.contact-info-section h3 {
  font-size: 1.5rem;
  color: #1e293b;
  margin-bottom: 30px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-details .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-details .contact-item i {
  font-size: 1.2rem;
  color: #2563eb;
  margin-top: 2px;
}

.contact-details .contact-item div {
  flex: 1;
}

.contact-details .contact-item strong {
  display: block;
  color: #1e293b;
  margin-bottom: 5px;
}

.contact-details .contact-item a {
  color: #2563eb;
  text-decoration: none;
}

.contact-details .contact-item a:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  background-color: #1e293b;
  color: white;
  padding: 50px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 20px;
  color: white;
}

.footer-section p {
  color: #94a3b8;
  margin-bottom: 20px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: white;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background-color: #334155;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.social-links a:hover {
  background-color: #2563eb;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #94a3b8;
}

.footer-contact i {
  color: #2563eb;
}

.footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 20px;
  text-align: center;
  color: #94a3b8;
}

.footer-bottom a {
  color: #2563eb;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.page-header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Content Sections */
.recruitment-content,
.staffing-content,
.about-content {
  padding: 80px 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}

.content-main h2,
.content-main h3 {
  color: #1e293b;
  margin-bottom: 20px;
}

.content-main p {
  color: #64748b;
  margin-bottom: 20px;
  line-height: 1.8;
}

.specializations {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 30px 0;
}

.spec-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background-color: #f8fafc;
  border-radius: 10px;
}

.spec-item i {
  font-size: 2rem;
  color: #2563eb;
  margin-top: 5px;
}

.spec-item h4 {
  color: #1e293b;
  margin-bottom: 10px;
}

.spec-item p {
  color: #64748b;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin: 30px 0;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  background-color: #f8fafc;
  border-radius: 5px;
}

.benefit-item i {
  color: #10b981;
}

.content-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.cta-box,
.stats-box {
  background-color: #f8fafc;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
}

.cta-box h3,
.stats-box h3 {
  color: #1e293b;
  margin-bottom: 15px;
}

.cta-box p {
  color: #64748b;
  margin-bottom: 20px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #2563eb;
}

.stat-label {
  color: #64748b;
  font-size: 14px;
}

/* Staffing Types */
.staffing-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.staffing-type {
  background-color: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.type-icon {
  font-size: 3rem;
  color: #2563eb;
  margin-bottom: 20px;
}

.staffing-type h3 {
  color: #1e293b;
  margin-bottom: 15px;
}

.staffing-type p {
  color: #64748b;
  margin-bottom: 20px;
}

.staffing-type ul {
  list-style: none;
  text-align: left;
  margin-bottom: 30px;
}

.staffing-type li {
  padding: 5px 0;
  color: #64748b;
}

.staffing-type li::before {
  content: "✓";
  color: #10b981;
  font-weight: bold;
  margin-right: 10px;
}

/* Process Timeline */
.staffing-process {
  margin-bottom: 60px;
}

.staffing-process h2 {
  text-align: center;
  color: #1e293b;
  margin-bottom: 40px;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.timeline-marker {
  width: 50px;
  height: 50px;
  background-color: #2563eb;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 20px;
}

.timeline-content h4 {
  color: #1e293b;
  margin-bottom: 10px;
}

.timeline-content p {
  color: #64748b;
}

/* Staffing Benefits */
.staffing-benefits h2 {
  text-align: center;
  color: #1e293b;
  margin-bottom: 40px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.benefit-card {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.benefit-card i {
  font-size: 2.5rem;
  color: #2563eb;
  margin-bottom: 20px;
}

.benefit-card h4 {
  color: #1e293b;
  margin-bottom: 15px;
}

.benefit-card p {
  color: #64748b;
}

/* Job Categories */
.job-categories {
  padding: 80px 0;
}

.search-section {
  background-color: #f8fafc;
  padding: 40px;
  border-radius: 10px;
  margin-bottom: 50px;
}

.search-box {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.search-box input {
  flex: 1;
  padding: 15px;
  border: 2px solid #e5e7eb;
  border-radius: 5px;
  font-size: 16px;
}

.search-btn {
  padding: 15px 20px;
  background-color: #2563eb;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.filter-options {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.filter-select {
  padding: 10px 15px;
  border: 2px solid #e5e7eb;
  border-radius: 5px;
  background-color: white;
  min-width: 150px;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.category-card {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.category-icon {
  font-size: 3rem;
  color: #2563eb;
  margin-bottom: 20px;
}

.category-card h3 {
  color: #1e293b;
  margin-bottom: 10px;
}

.category-card p {
  color: #64748b;
  margin-bottom: 15px;
}

.job-count {
  background-color: #dbeafe;
  color: #1d4ed8;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
}

.popular-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.skill-tag {
  background-color: #e2e8f0;
  color: #475569;
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 12px;
}

/* Job Search Tips */
.job-search-tips {
  margin-top: 60px;
}

.job-search-tips h2 {
  text-align: center;
  color: #1e293b;
  margin-bottom: 40px;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.tip-card {
  background-color: #f8fafc;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
}

.tip-card i {
  font-size: 2.5rem;
  color: #2563eb;
  margin-bottom: 20px;
}

.tip-card h4 {
  color: #1e293b;
  margin-bottom: 15px;
}

.tip-card p {
  color: #64748b;
}

/* About Page Styles */
.about-intro {
  text-align: center;
  margin-bottom: 60px;
}

.about-intro h2 {
  color: #1e293b;
  margin-bottom: 20px;
}

.about-intro p {
  color: #64748b;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 20px;
}

.vision-section,
.mission-section {
  margin-bottom: 80px;
}

.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.content-block.reverse {
  direction: rtl;
}

.content-block.reverse > * {
  direction: ltr;
}

.content-text h2 {
  color: #1e293b;
  margin-bottom: 20px;
}

.content-text p {
  color: #64748b;
  margin-bottom: 20px;
  line-height: 1.8;
}

.vision-points {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}

.point {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background-color: #f8fafc;
  border-radius: 8px;
}

.point i {
  color: #2563eb;
  font-size: 1.2rem;
}

.mission-list {
  margin: 20px 0;
}

.mission-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: #64748b;
}

.mission-list i {
  color: #10b981;
}

.content-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Team Section */
.team-section {
  margin-bottom: 80px;
}

.team-section h2 {
  text-align: center;
  color: #1e293b;
  margin-bottom: 20px;
}

.team-intro {
  text-align: center;
  color: #64748b;
  margin-bottom: 50px;
  font-size: 1.1rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.team-member {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.member-photo {
  margin-bottom: 20px;
  margin-left: 80px;
}

.member-photo img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
}

.team-member h4 {
  color: #1e293b;
  margin-bottom: 5px;
}

.member-role {
  color: #2563eb;
  font-weight: 600;
  margin-bottom: 15px;
}

.member-bio {
  color: #64748b;
  margin-bottom: 20px;
  line-height: 1.6;
}

.member-social {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.member-social a {
  width: 35px;
  height: 35px;
  background-color: #f8fafc;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.member-social a:hover {
  background-color: #2563eb;
  color: white;
}

/* Values Section */
.values-section h2 {
  text-align: center;
  color: #1e293b;
  margin-bottom: 40px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.value-card {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.value-icon {
  font-size: 2.5rem;
  color: #2563eb;
  margin-bottom: 20px;
}

.value-card h4 {
  color: #1e293b;
  margin-bottom: 15px;
}

.value-card p {
  color: #64748b;
}

/* Job Listings */
.job-listings {
  padding: 80px 0;
}

.jobs-filter {
  background-color: #f8fafc;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 40px;
}

.filter-group {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.search-input {
  flex: 1;
  padding: 12px;
  border: 2px solid #e5e7eb;
  border-radius: 5px;
  font-size: 16px;
}

.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
}

.job-listing {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.job-listing:hover {
  transform: translateY(-2px);
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 30px 30px 20px;
  border-bottom: 1px solid #e5e7eb;
}

.job-title-section h3 {
  color: #1e293b;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.company-info {
  display: flex;
  gap: 20px;
  align-items: center;
}

.company-name {
  color: #2563eb;
  font-weight: 600;
}

.job-location {
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 5px;
}

.job-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-end;
}

.job-type {
  background-color: #dbeafe;
  color: #1d4ed8;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
}

.job-posted {
  color: #64748b;
  font-size: 12px;
}

.job-details {
  padding: 30px;
}

.job-summary {
  margin-bottom: 25px;
}

.job-summary p {
  color: #64748b;
  line-height: 1.6;
}

.job-requirements {
  margin-bottom: 25px;
}

.job-requirements h4 {
  color: #1e293b;
  margin-bottom: 15px;
}

.job-requirements ul {
  list-style: none;
  padding-left: 0;
}

.job-requirements li {
  color: #64748b;
  padding: 5px 0;
  position: relative;
  padding-left: 20px;
}

.job-requirements li::before {
  content: "•";
  color: #2563eb;
  position: absolute;
  left: 0;
}

.job-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
}

.job-actions {
  display: flex;
  gap: 15px;
}

.apply-btn,
.save-btn {
  padding: 10px 20px;
  font-size: 14px;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.page-btn {
  padding: 10px 15px;
  border: 2px solid #e5e7eb;
  background-color: white;
  color: #64748b;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.page-btn:hover,
.page-btn.active {
  background-color: #2563eb;
  color: white;
  border-color: #2563eb;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: white;
  margin: 5% auto;
  padding: 40px;
  border-radius: 10px;
  width: 90%;
  max-width: 600px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  color: #64748b;
}

.close:hover {
  color: #1e293b;
}

.modal-content h2 {
  color: #1e293b;
  margin-bottom: 30px;
}

/* Contact Page */
.contact-page {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.contact-form-section h2 {
  color: #1e293b;
  margin-bottom: 30px;
}

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

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-method {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.method-icon {
  width: 50px;
  height: 50px;
  background-color: #2563eb;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.method-details h4 {
  color: #1e293b;
  margin-bottom: 10px;
}

.method-details p {
  color: #64748b;
  margin-bottom: 10px;
}

.method-details a {
  color: #2563eb;
  text-decoration: none;
}

.method-details a:hover {
  text-decoration: underline;
}

.whatsapp-link {
  background-color: #25d366;
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}

.whatsapp-link:hover {
  background-color: #128c7e;
  text-decoration: none;
}

.social-section {
  margin-top: 40px;
}

.social-section h4 {
  color: #1e293b;
  margin-bottom: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  background-color: #f8fafc;
  color: #64748b;
  text-decoration: none;
  border-radius: 5px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: #2563eb;
  color: white;
}

/* FAQ Section */
.faq-section {
  background-color: #f8fafc;
  padding: 60px 40px;
  border-radius: 10px;
}

.faq-section h2 {
  text-align: center;
  color: #1e293b;
  margin-bottom: 40px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.faq-item {
  background-color: white;
  padding: 25px;
  border-radius: 8px;
}

.faq-item h4 {
  color: #1e293b;
  margin-bottom: 15px;
}

.faq-item p {
  color: #64748b;
  line-height: 1.6;
}

/* Image Optimization */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.slide-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
}

.content-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.member-photo img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #e2e8f0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    display: flex;
  }

  .contact-info {
    display: none;
  }

  .slide-content h1 {
    font-size: 2rem;
  }

  .slide-content p {
    font-size: 1rem;
  }

  .slide {
    flex-direction: column;
    text-align: center;
  }

  .slide-content {
    padding: 20px;
  }

  .contact-content,
  .contact-grid,
  .content-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .content-block {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .job-header {
    flex-direction: column;
    gap: 15px;
  }

  .company-info {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .job-meta {
    align-items: flex-start;
  }

  .job-actions {
    flex-direction: column;
  }

  .filter-options {
    flex-direction: column;
  }

  .filter-select {
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .slide-content h1 {
    font-size: 1.5rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .modal-content {
    margin: 10% auto;
    padding: 20px;
    width: 95%;
  }

  .services-grid,
  .staffing-types {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }
}
