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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #1e293b;
  background-color: #ffffff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: #475569;
}

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

a:hover {
  text-decoration: underline;
}

/* Navigation */
.navbar {
  background-color: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.nav-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.nav-link {
  color: #475569;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: #2563eb;
  text-decoration: none;
}

/* Buttons */
.button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  text-decoration: none;
  font-size: 1rem;
}

.button-primary {
  background-color: #2563eb;
  color: #ffffff;
}

.button-primary:hover {
  background-color: #1d4ed8;
  text-decoration: none;
}

.button-outline {
  background-color: rgba(255, 255, 255, 0.8);
  color: #1e293b;
  border: 1px solid #cbd5e1;
}

.button-outline:hover {
  background-color: #ffffff;
  text-decoration: none;
}

.button-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* Hero Section */
.hero {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 6rem 1rem;
  text-align: left;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

.hero-content {
  max-width: 3xl;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.hero h1 {
  font-size: 3.5rem;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero .highlight {
  color: #2563eb;
}

.hero p {
  font-size: 1.125rem;
  color: #475569;
  margin-bottom: 2rem;
  max-width: 40rem;
}

/* Features Section */
.features {
  padding: 5rem 1rem;
  background-color: #ffffff;
}

.section-header {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 3rem;
}

.section-header h2 {
  color: #0f172a;
  margin-bottom: 1rem;
}

.section-header p {
  color: #475569;
  font-size: 1.125rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  border-radius: 1rem;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  transition: all 0.3s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: #2563eb;
}

.feature-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature-card > div:last-child,
.feature-card h3,
.feature-card p {
  padding: 0 2rem;
}

.feature-card h3 {
  color: #0f172a;
  margin: 1.5rem 0 0.75rem 0;
  padding-top: 0;
}

.feature-card p {
  color: #475569;
  font-size: 0.95rem;
  padding-bottom: 2rem;
}

/* Why Choose Section */
.why-choose {
  background-color: #1e293b;
  color: #ffffff;
  padding: 5rem 1rem;
}

.why-choose .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-choose-content h2 {
  color: #ffffff;
  margin-bottom: 2rem;
}

.benefits-list {
  list-style: none;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  color: #cbd5e1;
}

.benefits-list li::before {
  content: '●';
  color: #2563eb;
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: -0.5rem;
}

.why-choose-image {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
}

.responsive-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
  display: block;
}

/* Page Header */
.page-header {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 4rem 1rem;
  text-align: center;
  border-bottom: 1px solid #e2e8f0;
  position: relative;
}

.header-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
  z-index: 0;
}

.page-header .container {
  position: relative;
  z-index: 10;
}

.page-header h1 {
  color: #0f172a;
  margin-bottom: 1rem;
}

.page-header p {
  color: #475569;
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto;
}

/* Page Header Dark */
.page-header-dark {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #ffffff;
  padding: 5rem 1rem;
  text-align: center;
  position: relative;
}

.header-overlay-dark {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  z-index: 0;
}

.page-header-dark .container {
  position: relative;
  z-index: 10;
}

.page-header-dark h1 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.page-header-dark p {
  color: #cbd5e1;
  font-size: 1.25rem;
  max-width: 42rem;
  margin: 0 auto;
}

/* Services Section */
.services-section {
  padding: 5rem 1rem;
  background-color: #ffffff;
}

.service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 5rem;
}

.service-item.reverse {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}

.service-item.reverse > * {
  direction: ltr;
}

.service-content h2 {
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.service-content p {
  color: #475569;
  margin-bottom: 1.5rem;
}

.service-list {
  list-style: none;
  margin-bottom: 2rem;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #475569;
  margin-bottom: 0.75rem;
  padding-left: 1.75rem;
  position: relative;
}

.service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: bold;
}

.service-image {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
}

/* About Section */
.about-section {
  padding: 5rem 1rem;
  background-color: #ffffff;
}

.about-container {
  max-width: 56rem;
  margin: 0 auto;
}

.about-content {
  margin-bottom: 4rem;
}

.about-content h2 {
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.about-content p {
  color: #475569;
  margin-bottom: 1rem;
}

.commitment-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

.commitment-card {
  background-color: #f8fafc;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
}

.commitment-card h3 {
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.value-item strong {
  display: block;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.value-item p {
  color: #475569;
  font-size: 0.95rem;
}

.commitment-image {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
}

.accreditation-section {
  background-color: #eff6ff;
  padding: 3rem;
  border-radius: 1.5rem;
  text-align: center;
}

.accreditation-section h2 {
  color: #0f172a;
  margin-bottom: 1rem;
}

.accreditation-section p {
  color: #475569;
  margin-bottom: 1.5rem;
}

.accreditation-badge {
  display: inline-block;
  background-color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  border: 1px solid #cbd5e1;
  color: #0f172a;
  font-weight: 600;
}

/* Contact Section */
.contact-section {
  padding: 5rem 1rem;
  background-color: #f1f5f9;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 5rem;
}

.contact-card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  text-align: center;
  transition: all 0.3s;
}

.contact-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: #2563eb;
}

.contact-card h3 {
  color: #0f172a;
  margin-bottom: 1rem;
}

.contact-card p {
  color: #475569;
  font-size: 0.95rem;
  margin: 0;
}

.contact-card a {
  color: #2563eb;
  font-weight: 600;
}

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

.contact-form-section {
  background-color: #ffffff;
  padding: 3rem;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  max-width: 42rem;
  margin: 0 auto;
}

.contact-form-section h2 {
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.form-intro {
  color: #475569;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem;
  border: 1px solid #cbd5e1;
  border-radius: 0.375rem;
  font-family: inherit;
  font-size: 1rem;
  color: #1e293b;
  background-color: #f8fafc;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-note {
  font-size: 0.85rem;
  color: #64748b;
  margin-top: 1rem;
}

/* Careers Section */
.careers-section {
  padding: 5rem 1rem;
  background-color: #ffffff;
}

.job-card {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 3rem;
  margin-bottom: 2rem;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

.job-header {
  margin-bottom: 2rem;
}

.job-header h2 {
  color: #0f172a;
  margin-bottom: 1rem;
}

.job-meta {
  display: flex;
  gap: 1.5rem;
  color: #475569;
  font-size: 0.95rem;
  flex-wrap: wrap;
}

.job-content {
  color: #475569;
}

.job-section {
  margin-bottom: 2rem;
}

.job-section h3 {
  color: #0f172a;
  margin-bottom: 1rem;
}

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

.job-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding-left: 1.75rem;
  position: relative;
}

.job-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: bold;
}

.apply-section {
  background-color: #eff6ff;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid #bfdbfe;
  margin-top: 2rem;
}

.apply-section h3 {
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.apply-email {
  display: inline-block;
  margin-top: 0.5rem;
  color: #2563eb;
  font-weight: 600;
}

.opportunities-card {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
}

.opportunities-card h2 {
  color: #0f172a;
  margin-bottom: 1rem;
}

.opportunities-card p {
  color: #475569;
}

.equal-opportunity {
  font-size: 0.85rem;
  color: #64748b;
}

/* CTA Section */
.cta {
  background-color: #f1f5f9;
  padding: 4rem 1rem;
  text-align: center;
  border-top: 1px solid #e2e8f0;
}

.cta h2 {
  color: #0f172a;
  margin-bottom: 1rem;
}

.cta p {
  color: #475569;
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.footer {
  background-color: #0f172a;
  color: #cbd5e1;
  padding: 3rem 1rem 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-section h4 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-section p {
  color: #cbd5e1;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

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

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #cbd5e1;
  transition: color 0.3s;
}

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

.footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 2rem;
  text-align: center;
  color: #94a3b8;
  font-size: 0.95rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .nav-links {
    gap: 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .why-choose .container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-item,
  .service-item.reverse {
    grid-template-columns: 1fr;
  }

  .commitment-section {
    grid-template-columns: 1fr;
  }

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

  .hero-content {
    padding: 0;
  }

  .button-group {
    flex-direction: column;
  }

  .button-group .button {
    width: 100%;
  }

  .contact-info-card {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .navbar .container {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }

  .nav-link {
    padding: 0.5rem 0;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  .hero {
    padding: 3rem 1rem;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .features {
    padding: 3rem 1rem;
  }

  .why-choose {
    padding: 3rem 1rem;
  }

  .job-card {
    padding: 1.5rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}