/* Hero Section */
.hero {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.25rem;
  color: #64748b;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.btn-primary {
  display: inline-block;
  background: #2e7897;
  color: #ffffff;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary:hover {
  background: #2e7897;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);
}

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

.illustration-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.illustration-placeholder svg {
  width: 70%;
  height: 70%;
  opacity: 0.9;
}

/* Culture Section */
.culture {
  padding: 5rem 0;
  background: #ffffff;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 3rem;
}

.culture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.culture-card {
  background: #f8fafc;
  padding: 2rem;
  border-radius: 12px;
  transition: all 0.3s;
  border: 1px solid #e2e8f0;
}

.culture-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: #2e7897;
}

.culture-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #2e7897 0%, #2e7897 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.culture-icon img{
   
    width: 20px;
    height: auto;
    filter: invert(1);

}
.culture-icon svg {
  width: 30px;
  height: 30px;
  fill: #ffffff;
}

.culture-card h3 {
  font-size: 1.375rem;
  color: #1e293b;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.culture-card p {
  color: #64748b;
  line-height: 1.7;
}

/* Jobs Section */
.jobs {
  padding: 5rem 0;
  background: #f8fafc;
}

.jobs-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}

.job-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s;
}

.job-card:hover {
  border-color: #2e7897;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.job-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.job-info h3 {
  font-size: 1.5rem;
  color: #1e293b;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.job-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

.job-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #64748b;
  font-size: 0.938rem;
}

.job-meta-item svg {
  width: 18px;
  height: 18px;
  fill: #94a3b8;
}

.job-details {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #f1f5f9;
}

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

.job-section:last-child {
  margin-bottom: 0;
}

.job-section h4 {
  font-size: 1.125rem;
  color: #1e293b;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

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

.job-section li {
  color: #64748b;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  position: relative;
  line-height: 1.6;
}

.job-section li:before {
  content: "•";
  color: #2e7897;
  font-weight: bold;
  position: absolute;
  left: 0.5rem;
}

.btn-secondary {
  background: #ffffff;
  color: #2e7897;
  padding: 0.75rem 1.75rem;
  border: 2px solid #2e7897;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  white-space: nowrap;
}

.btn-secondary:hover {
  background: #2e7897;
  color: #ffffff;
}

/* Process Section */
.process {
  padding: 5rem 0;
  background: #ffffff;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 3rem;
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #2e7897 0%, #2e7897 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  position: relative;
  z-index: 2;
}

.step-connector {
  position: absolute;
  top: 35px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: #e2e8f0;
  z-index: 1;
}

.process-step:last-child .step-connector {
  display: none;
}

.process-step h4 {
  font-size: 1.125rem;
  color: #1e293b;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.process-step p {
  font-size: 0.875rem;
  color: #64748b;
}

/* Benefits Section */
.benefits {
  padding: 5rem 0;
  background: #f8fafc;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: #ffffff;
  padding: 1.75rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: #dbeafe;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 26px;
  height: 26px;
  fill: #2e7897;
}

.benefit-item h4 {
  font-size: 1.125rem;
  color: #1e293b;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(8deg, #2e7897 0%, #2e7897b5 100%);
  text-align: center;
  color: #ffffff;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.cta-section p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.btn-white {
  background: #ffffff;
  color: #2e7897;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
}

.btn-white:hover {
  transform: translateY(-2px);
  /* box-shadow: 0 10px 25px rgba(255,255,255,0.3); */
}

footer.section-footer.mt-100.cyan-bg {
  margin-top: 0;
}
.illustration-placeholder img {
    height:100%;
    object-fit: cover;
}
/* Responsive */
@media (max-width: 968px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

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

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

  .step-connector {
    display: none;
  }

  .job-card {
    grid-template-columns: 1fr;
  }

  .job-header {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 1.25rem;
  }

  .hero {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 2rem;
  }
}
