@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --primary-color: #3498db;
  --primary-color-dark: #2980b9;
  --text-dark: #2e2e2e;
  --text-light: #595959;
  --extra-light: #f3f4f6;
  --white: #ffffff;
  --max-width: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--extra-light);
  padding-top: 70px;
}

.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
}

.section__header {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 2rem;
}

.section__subheader {
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary-color);
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 0.5rem;
}

.section__description {
  font-size: 1rem;
  line-height: 1.75rem;
  color: var(--text-light);
  text-align: justify;
  padding: 1rem;
  margin-bottom: 2rem;
}

@media (max-width: 1024px) {
  .section__description {
    font-size: 0.875rem;
    line-height: 1.5rem;
  }
}

@media (max-width: 768px) {
  .section__description {
    font-size: 0.75rem;
    line-height: 1.5rem;
    padding: 0.75rem;
  }
}

@media (max-width: 480px) {
  .section__description {
    font-size: 0.7rem;
    line-height: 1.4rem;
    padding: 0.5rem;
    margin-bottom: 1.5rem;
  }
}

.btn {
  padding: 1rem 2rem;
  outline: none;
  border: none;
  font-size: 1rem;
  color: var(--white);
  background-color: var(--primary-color);
  white-space: nowrap;
  border-radius: 5rem;
  transition: 0.3s;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--primary-color-dark);
}

.btn3 {
  outline: none;
  border: none;
  color: var(--primary-color);
  background-color: var(--white);
  white-space: nowrap;
  border-radius: 5rem;
  transition: 0.3s;
  cursor: pointer;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: bold;
}

.btn3:hover {
  background-color: var(#eaf3fa);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

img {
  display: flex;
  width: 100%;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

ul {
  list-style: none;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
}

header {
  background-color: var(--extra-light);
}

@media (max-width: 1024px) {
  .section__subheader {
    font-size: 0.875rem;
  }

  .section__header {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .section__subheader {
    font-size: 0.75rem;
  }

  .section__header {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .section__subheader {
    font-size: 0.7rem;
  }

  .section__header {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

.career-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .career-container {
    padding: 0 1.5rem;
    margin-top: 80px;
  }
}

.career-hero {
  padding: 5rem 0;
  background-color: var(--extra-light);
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-text {
  flex: 1;
  min-width: 300px;
}

.hero-text h1 {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.hero-text p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 500px;
}

.hero-image {
  flex: 1;
  min-width: 300px;
  border-radius: 12px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.hero-image:hover img {
  transform: scale(1.03);
}

.particle {
  position: absolute;
  z-index: 2;
  animation: float 6s infinite ease-in-out;
  opacity: 0.8;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.7));
}

.particle-x {
  color: #ff5252;
  font-size: 1.2rem;
  font-weight: bold;
  animation: float-x 5s infinite ease-in-out;
}

.particle-circle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #4caf50;
  box-shadow: 0 0 10px #4caf50;
}

.particle-triangle {
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 14px solid #ffc107;
  animation: spin-float 7s infinite linear;
}

.particle-plus {
  color: #2196f3;
  font-size: 1.5rem;
  animation: pulse 4s infinite ease-in-out;
}

.particle-star {
  color: #ff9800;
  font-size: 1.3rem;
  animation: twinkle 3s infinite alternate;
}

.particle-x {
  top: 15%;
  left: 20%;
}
.particle-circle {
  top: 65%;
  left: 25%;
}
.particle-triangle {
  top: 40%;
  left: 70%;
}
.particle-plus {
  top: 25%;
  left: 80%;
}
.particle-star {
  top: 75%;
  left: 15%;
}

@keyframes float-x {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(10px, -15px) rotate(5deg);
  }
  50% {
    transform: translate(-5px, -20px) rotate(-5deg);
  }
  75% {
    transform: translate(15px, -10px) rotate(3deg);
  }
}

@keyframes spin-float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(180deg);
  }
  100% {
    transform: translateY(0) rotate(360deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.3);
    opacity: 1;
  }
}

@keyframes twinkle {
  0% {
    opacity: 0.5;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1.1);
  }
}

.animated-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(255, 255, 255, 0.8) 0%,
      transparent 2%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(255, 255, 255, 0.8) 0%,
      transparent 2%
    );
  background-size: 200% 200%;
  animation: sparkle 8s infinite alternate;
  pointer-events: none;
  z-index: 1;
}

@keyframes sparkle {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}

.burst-particle {
  position: fixed;
  font-size: 1.2rem;
  font-weight: bold;
  pointer-events: none;
  z-index: 100;
  text-shadow: 0 0 8px currentColor;
  transform-origin: center;
  animation: burst-fade 1.5s ease-out forwards;
}

@keyframes burst-fade {
  to {
    transform: translate(var(--tx), var(--ty)) rotate(360deg);
    opacity: 0;
  }
}

.about-career {
  padding: 5rem 0;
  background-color: var(--extra-light);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle {
  display: block;
  font-size: 1rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
  font-weight: 600;
}

.section-header h2 {
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-description {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.6;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.value-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.value-card h3 {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.value-card p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem;
}

.vacancies {
  padding: 5rem 0;
  background-color: var(--extra-light);
}

.modern-registration-guide {
  padding: 5rem 0;
}

.two-column-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.modern-step-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e2e8f0;
}

.modern-step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.step-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  position: relative;
}

.step-number {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.step-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: #4f46e5;
  font-size: 1.5rem;
}

.modern-step-card h3 {
  margin: 0;
  color: #1e293b;
  font-size: 1.25rem;
}

.step-content {
  margin-top: 1.5rem;
}

.step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding: 0.8rem;
  border-radius: 8px;
  transition: background 0.2s;
}

.step-item:hover {
  background: #f8fafc;
}

.item-icon {
  width: 32px;
  height: 32px;
  background: #f1f5f9;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: #3b82f6;
  flex-shrink: 0;
}

.step-item p {
  margin: 0;
  color: #334155;
  line-height: 1.5;
}

.status-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.8rem;
  border-radius: 8px;
  background: #f8fafc;
}

.status-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.status-icon.waiting {
  background: #fffbeb;
  color: #f59e0b;
}

.status-icon.success {
  background: #ecfdf5;
  color: #10b981;
}

.status-item h4 {
  margin: 0 0 0.2rem 0;
  font-size: 0.95rem;
  color: #1e293b;
}

.status-item p {
  margin: 0;
  font-size: 0.85rem;
  color: #64748b;
}

.step-arrow {
  position: absolute;
  color: #94a3b8;
  font-size: 1.5rem;
  z-index: 2;
}

.step-arrow i {
  background: white;
  border-radius: 50%;
  padding: 0.5rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.step-arrow:not(.down) {
  top: 50%;
  right: -28px;
  transform: translateY(-50%);
}

.step-arrow.down {
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
}

.modern-warning {
  margin-top: 3rem;
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #ef4444;
}

.warning-content {
  display: flex;
  gap: 1.5rem;
}

.warning-icon {
  font-size: 2rem;
  color: #ef4444;
}

.warning-content h3 {
  margin: 0 0 0.5rem 0;
  color: #dc2626;
}

.warning-content p {
  margin: 0 0 1rem 0;
  color: #475569;
}

.warning-alert {
  display: flex;
  align-items: center;
  background: #fef2f2;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  color: #dc2626;
}

.warning-alert i {
  margin-right: 0.5rem;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .two-column-grid {
    grid-template-columns: 1fr;
  }

  .step-arrow {
    display: none;
  }

  .warning-content {
    flex-direction: column;
  }

  .section-title {
    font-size: 1.8rem;
  }
}

.job-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
  justify-content: center;
  background: var(--white);
  padding: 1.5rem;
  border-radius: 10px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.soon-feature {
  font-size: 0.7em;
  color: #ff0000;
  margin-left: 5px;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
  min-width: 200px;
}

.filter-group label {
  font-weight: 500;
  color: var(--text-dark);
  font-size: 0.9rem;
}

.filter-group select {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  background-color: var(--white);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.filter-group select:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.jobs-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.job-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.job-info h3 {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.job-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.job-desc {
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
  font-size: 0.95rem;
  text-align: justify;
}

.job-actions {
  display: flex;
  gap: 1rem;
  margin-top: auto;
}

.btn {
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  text-align: center;
  transition: all 0.3s ease;
  display: inline-block;
  white-space: nowrap;
}

.btn-outline {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
}

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--white);
}

.btn-primary {
  border: 2px solid var(--primary-color);
  background: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-color-dark);
  border-color: var(--primary-color-dark);
}

@media (max-width: 480px) {
  .job-actions {
    flex-direction: column;
    gap: 0.75rem;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .btn-vacancy {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    white-space: nowrap;
  }
}

.job-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.popup-content {
  background: white;
  border-radius: 12px;
  max-width: 1200px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  display: flex;
  flex-direction: column;
}

.popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 2rem;
  color: var(--text-light);
  text-decoration: none;
  z-index: 1;
}

.popup-image {
  width: 40%;
  height: 100%;
  position: sticky;
  top: 0;
  overflow: hidden;
  border-radius: 12px 0 0 12px;
}

.popup-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popup-details {
  padding: 2rem;
}

.popup-details h3 {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.popup-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.popup-desc h4 {
  color: var(--primary-color);
  margin: 1.5rem 0 1rem;
}

.popup-desc ul {
  padding-left: 1.5rem;
  color: var(--text-light);
  text-align: justify;
}

.popup-content::-webkit-scrollbar {
  width: 12px;
  border-radius: 10px;
}

.popup-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
  margin: 8px 0;
}

.popup-content::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
  border: 3px solid #f1f1f1;
}

.popup-content::-webkit-scrollbar-thumb:hover {
  background: #555;
  border-radius: 10px;
}

.popup-content {
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) #f1f1f1;
  scrollbar-gutter: stable;
}

@media (min-width: 768px) {
  .popup-content {
    flex-direction: row;
  }

  .popup-image {
    width: 40%;
    height: auto;
    border-radius: 12px 0 0 12px;
  }

  .popup-details {
    width: 60%;
  }
}

@media (max-width: 480px) {
  .popup-image {
    height: 200px;
  }

  .popup-details {
    padding: 1.5rem;
  }
}

.job-section.qualifications {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  border: 1px solid #eaeaea;
}

.job-section.qualifications h4 {
  color: #2c3e50;
  font-size: 1.3rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.job-section.qualifications h4 i {
  color: var(--primary-color);
  font-size: 1.5rem;
}

.qualifications-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.qualification-item {
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.qualification-item:last-child {
  border-bottom: none;
}

.qualification-item:hover {
  background-color: #f9f9f9;
  transform: translateX(5px);
}

.qualification-content {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.qualification-icon {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 768px) {
  .job-section.qualifications {
    padding: 20px;
  }

  .qualification-item {
    padding: 10px 0;
  }
}

@media (max-width: 480px) {
  .job-section.qualifications {
    padding: 15px;
  }

  .qualification-content {
    gap: 8px;
  }

  .qualification-icon {
    font-size: 1rem;
  }
}

.job-section {
  background-color: #f5f7fa;
  padding: 20px;
  border-radius: 12px;
  margin: 25px 0;
}

.documents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.document-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: white;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0e3e7;
}

.document-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.document-box i {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.document-text {
  background: white;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #2d3748;
  width: 100%;
}

@media (max-width: 768px) {
  .documents-grid {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  }

  .document-box {
    padding: 12px 10px;
  }

  .document-box i {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .job-section {
    padding: 15px;
  }

  .documents-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .document-text {
    font-size: 0.9rem;
  }
}

.join-now-container {
  padding: 2rem;
  text-align: center;
  margin-top: 1rem;
}

.join-now-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--primary-color);
  color: white;
  padding: 1rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
}

.join-now-button:hover {
  background-color: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.join-now-button:active {
  transform: translateY(0);
}

.join-now-button i {
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .join-now-container {
    padding: 1.5rem;
  }

  .join-now-button {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}

.job-desc-full {
  display: block;
}
.job-desc-preview {
  display: none;
}

@media (max-width: 768px) {
  .job-desc-full {
    display: none;
  }
  .job-desc-preview {
    display: block;
    position: relative;
  }

  .view-more-btn {
    background: transparent;
    border: none;
    color: var(--primary-color);
    font-weight: 500;
    padding: 0.5rem 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
  }

  .view-more-btn::after {
    content: "↓";
    margin-left: 0.3rem;
    font-size: 0.9em;
  }

  .job-desc-full.expanded {
    display: block;
    margin-top: 1rem;
  }

  .job-desc-preview.collapsed {
    display: none;
  }
}

.life-at-company {
  padding: 5rem 0;
  background-color: var(--extra-light);
}

.gallery-carousel {
  margin-top: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin: 0 10px;
  margin-top: 25px;
}

.gallery-item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 2rem;
  color: var(--white);
}

.gallery-caption h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.gallery-caption p {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .hero-content {
    flex-direction: column;
  }

  .hero-text {
    text-align: center;
    margin-bottom: 2rem;
  }

  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-image {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .career-hero,
  .about-career,
  .vacancies,
  .life-at-company {
    padding: 3rem 0;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .job-filters {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .gallery-item img {
    height: 300px;
  }
}

.owl-carousel .owl-nav {
  position: absolute;
  top: -60px;
  right: 0;
}

.owl-carousel .owl-nav button {
  background: var(--primary-color) !important;
  color: white !important;
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  margin-left: 10px;
  transition: all 0.3s ease;
}

.owl-carousel .owl-nav button:hover {
  background: var(--primary-color-dark) !important;
}

.owl-carousel .owl-nav button span {
  font-size: 1.5rem;
  line-height: 1;
}

.owl-carousel .owl-dots {
  margin-top: 2rem;
}

.owl-carousel .owl-dots button.owl-dot span {
  background: #ddd;
  width: 10px;
  height: 10px;
  margin: 5px;
  transition: all 0.3s ease;
}

.owl-carousel .owl-dots button.owl-dot.active span {
  background: var(--primary-color);
  width: 30px;
}

.text-center {
  text-align: center;
}

.section-heading {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
  line-height: 1.3;
}

.section-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
}

@media (max-width: 768px) {
  .section-heading {
    font-size: 2rem;
  }
}

.slider {
  width: 100%;
  height: var(--height);
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 10% 90%, transparent);
}

.slider .list {
  display: flex;
  width: 100%;
  min-width: calc(var(--width) * var(--quantity));
  position: relative;
}

.slider .list .item {
  width: var(--width);
  height: var(--height);
  position: absolute;
  left: 100%;
  animation: autoRun 30s linear infinite;
  transition: filter 0.5s;
  animation-delay: calc(
    (30s / var(--quantity)) * (var(--position) - 1) - 30s
  ) !important;
}

.slider .list .item img {
  width: 100%;
}

@keyframes autoRun {
  from {
    left: 100%;
  }
  to {
    left: calc(var(--width) * -1);
  }
}

.slider:hover .item {
  animation-play-state: paused !important;
  filter: grayscale(1);
}

.slider .item:hover {
  filter: grayscale(0);
}

.slider[reverse="true"] .item {
  animation: reversePlay 30s linear infinite;
}

@keyframes reversePlay {
  from {
    left: calc(var(--width) * -1);
  }
  to {
    left: 100%;
  }
}
