:root {
  --primary: #225874;
  --secondary: #eb6b2a;
  --accent: #f8b45c;
  --dark: #1a252f;
  --light: #f8f9fa;
  --gray: #6c757d;
  --light-gray: #e9ecef;
  --bg-color: #f0f4f8;
  --card-bg: rgba(255, 255, 255, 0.6);
  --border-color: rgba(0, 0, 0, 0.08);
  --shadow-light: rgba(0, 0, 0, 0.05);
  --shadow-medium: rgba(0, 0, 0, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-color);
  color: var(--dark);
  font-family: "Poppins", sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Animated Shapes Background */
.shapes-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 20s ease-in-out infinite;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: var(--primary);
  top: -150px;
  right: -150px;
  animation-duration: 25s;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: var(--secondary);
  bottom: -100px;
  left: -100px;
  animation-duration: 30s;
  animation-delay: -5s;
}

.shape-3 {
  width: 150px;
  height: 150px;
  background: var(--accent);
  top: 50%;
  left: 20%;
  animation-duration: 18s;
}

.shape-4 {
  width: 200px;
  height: 200px;
  background: var(--primary);
  top: 10%;
  left: 10%;
  animation-duration: 22s;
  animation-delay: -10s;
}

/* Modern Header */
.modern-header {
  background: linear-gradient(135deg, var(--primary) 0%, #1a4560 100%);
  color: white;
  padding: 180px 0 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.header-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.modern-header h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.modern-header p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: var(--secondary);
  color: white;
  box-shadow: 0 6px 20px rgba(235, 107, 42, 0.3);
}

.btn-primary:hover {
  background: #e05a1a;
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(235, 107, 42, 0.4);
}

/* Section Styling */
.section {
  padding: 100px 0;
  position: relative;
}

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

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark);
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--secondary);
  border-radius: 2px;
}

.section-title p {
  color: var(--gray);
  max-width: 600px;
  margin: 20px auto 0;
  font-size: 1.1rem;
}

/* Benefits Section */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.benefit-card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px var(--shadow-light);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px var(--shadow-medium);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  color: white;
  font-size: 2rem;
  box-shadow: 0 10px 20px rgba(34, 88, 116, 0.2);
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  transform: rotate(10deg) scale(1.1);
}

.benefit-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--dark);
}

.benefit-card p {
  color: var(--gray);
  font-size: 1rem;
}

/* Job Openings Section */
.job-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 50px;
}

.filter-btn {
  background: white;
  color: var(--dark);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.job-card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0 8px 25px var(--shadow-light);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.job-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px var(--shadow-medium);
}

.job-info {
  flex-grow: 1;
}

.job-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  color: var(--gray);
  font-size: 0.95rem;
}

.job-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.job-actions {
  margin-left: auto;
  padding-left: 20px;
}

.job-apply {
  background: var(--secondary);
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.job-apply:hover {
  background: #e05a1a;
  transform: scale(1.05);
}

/* Culture Section */
.culture-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.culture-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 40px var(--shadow-medium);
}

.culture-content {
  padding-right: 30px;
}

.culture-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.culture-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), #3a80a3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
}

.culture-text h3 {
  font-size: 1.4rem;
  margin-bottom: 5px;
}

.culture-text p {
  color: var(--gray);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
  color: white;
  padding: 100px 0;
  text-align: center;
  border-radius: 30px;
  margin: 0 20px;
  position: relative;
  overflow: hidden;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 30px;
  opacity: 0.9;
}

.cta-btn {
  background: white;
  color: var(--secondary);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.cta-btn:hover {
  background: #f1f1f1;
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
  .culture-grid {
    grid-template-columns: 1fr;
  }
  .culture-image {
    display: none; /* Hide image on smaller screens or style differently */
  }
}

@media (max-width: 768px) {
  .modern-header h1 {
    font-size: 2.5rem;
  }
  .section-title h2 {
    font-size: 2.2rem;
  }
  .job-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .job-actions {
    margin-left: 0;
    padding-left: 0;
  }
  .cta-content h2 {
    font-size: 2rem;
  }
}
