:root {
  --background: hsl(0, 0%, 1.2%);
  --foreground: hsl(0, 0%, 94.5%);
  --card: hsl(0, 0%, 6%);
  --card-foreground: hsl(0, 0%, 94.5%);
  --primary: hsl(265, 100%, 70%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(72, 100%, 70%);
  --secondary-foreground: hsl(0, 0%, 1.2%);
  --muted: hsl(0, 0%, 12%);
  --muted-foreground: hsl(0, 0%, 60%);
  --border: hsl(0, 0%, 15%);
  --accent: hsl(72, 100%, 70%);
  --radius: 1rem;

  /* Gradients */
  --gradient-primary: linear-gradient(
    135deg,
    hsl(265, 100%, 70%) 0%,
    hsl(72, 100%, 70%) 100%
  );
  --gradient-purple: linear-gradient(
    135deg,
    hsl(265, 100%, 50%) 0%,
    hsl(265, 100%, 70%) 100%
  );
  --gradient-lime: linear-gradient(
    135deg,
    hsl(72, 100%, 60%) 0%,
    hsl(72, 100%, 80%) 100%
  );

  /* Glass effects */
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-blur: blur(12px);
}

/* ===== Reset & Base Styles ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Space Grotesk", sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== Background Animations ===== */
.background-animations {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

/* Floating Shapes */
.floating-shape {
  position: absolute;
  border: 1px solid var(--glass-border);
  opacity: 0.3;
}

.shape-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  left: 5%;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background: linear-gradient(135deg, hsla(265, 100%, 70%, 0.1), transparent);
  animation: floatShape1 20s ease-in-out infinite;
}

.shape-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 10%;
  border-radius: 50%;
  background: linear-gradient(135deg, hsla(72, 100%, 70%, 0.1), transparent);
  animation: floatShape2 15s ease-in-out infinite;
}

.shape-3 {
  width: 100px;
  height: 100px;
  top: 30%;
  right: 25%;
  transform: rotate(45deg);
  background: linear-gradient(135deg, hsla(265, 100%, 70%, 0.08), transparent);
  animation: floatShape3 18s ease-in-out infinite;
}

.shape-4 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 15%;
  border-radius: 50% 0 50% 0;
  background: linear-gradient(135deg, hsla(72, 100%, 70%, 0.1), transparent);
  animation: floatShape4 22s ease-in-out infinite;
}

.shape-5 {
  width: 120px;
  height: 120px;
  top: 70%;
  left: 40%;
  border-radius: 20% 80% 20% 80%;
  background: linear-gradient(135deg, hsla(265, 100%, 70%, 0.06), transparent);
  animation: floatShape5 25s ease-in-out infinite;
}

@keyframes floatShape1 {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(50px, 30px) rotate(90deg);
  }
  50% {
    transform: translate(20px, -40px) rotate(180deg);
  }
  75% {
    transform: translate(-30px, 20px) rotate(270deg);
  }
}

@keyframes floatShape2 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(-40px, 30px) scale(1.1);
  }
  66% {
    transform: translate(30px, -20px) scale(0.9);
  }
}

@keyframes floatShape3 {
  0%,
  100% {
    transform: rotate(45deg) translate(0, 0);
  }
  50% {
    transform: rotate(225deg) translate(30px, 30px);
  }
}

@keyframes floatShape4 {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(40px, -30px) rotate(180deg);
  }
}

@keyframes floatShape5 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-20px, 40px);
  }
  50% {
    transform: translate(30px, 20px);
  }
  75% {
    transform: translate(-10px, -30px);
  }
}

/* Gradient Orbs */
.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.orb-1 {
  width: 400px;
  height: 400px;
  top: -10%;
  right: -10%;
  background: radial-gradient(
    circle,
    hsla(265, 100%, 70%, 0.4) 0%,
    transparent 70%
  );
  animation: pulseOrb1 8s ease-in-out infinite;
}

.orb-2 {
  width: 300px;
  height: 300px;
  bottom: 10%;
  left: -5%;
  background: radial-gradient(
    circle,
    hsla(72, 100%, 70%, 0.3) 0%,
    transparent 70%
  );
  animation: pulseOrb2 10s ease-in-out infinite;
}

.orb-3 {
  width: 250px;
  height: 250px;
  top: 40%;
  left: 30%;
  background: radial-gradient(
    circle,
    hsla(265, 100%, 60%, 0.2) 0%,
    transparent 70%
  );
  animation: pulseOrb3 12s ease-in-out infinite;
}

@keyframes pulseOrb1 {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.6;
  }
}

@keyframes pulseOrb2 {
  0%,
  100% {
    transform: scale(1) translate(0, 0);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1) translate(20px, -20px);
    opacity: 0.5;
  }
}

@keyframes pulseOrb3 {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.2;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.35;
  }
}

/* Animated Lines */
.animated-line {
  position: absolute;
  background: var(--gradient-primary);
  opacity: 0.1;
}

.line-1 {
  width: 2px;
  height: 200px;
  top: 20%;
  left: 20%;
  animation: lineMove1 10s ease-in-out infinite;
}

.line-2 {
  width: 150px;
  height: 2px;
  top: 50%;
  right: 15%;
  animation: lineMove2 8s ease-in-out infinite;
}

.line-3 {
  width: 2px;
  height: 150px;
  bottom: 30%;
  right: 30%;
  animation: lineMove3 12s ease-in-out infinite;
}

.line-4 {
  width: 100px;
  height: 2px;
  bottom: 20%;
  left: 25%;
  animation: lineMove4 9s ease-in-out infinite;
}

@keyframes lineMove1 {
  0%,
  100% {
    transform: translateY(0) scaleY(1);
    opacity: 0.1;
  }
  50% {
    transform: translateY(50px) scaleY(1.5);
    opacity: 0.2;
  }
}

@keyframes lineMove2 {
  0%,
  100% {
    transform: translateX(0) scaleX(1);
    opacity: 0.1;
  }
  50% {
    transform: translateX(-30px) scaleX(1.3);
    opacity: 0.2;
  }
}

@keyframes lineMove3 {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.1;
  }
  50% {
    transform: translateY(-40px);
    opacity: 0.15;
  }
}

@keyframes lineMove4 {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0.1;
  }
  50% {
    transform: translateX(20px);
    opacity: 0.2;
  }
}

/* Particles */
.particles-container {
  position: absolute;
  inset: 0;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--foreground);
  border-radius: 50%;
  opacity: 0;
  animation: twinkle 3s ease-in-out infinite;
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.5);
  }
  50% {
    opacity: 0.6;
    transform: scale(1);
  }
}

/* ===== Main Content ===== */
.main-content {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: 2rem 1rem;
}

@media (min-width: 768px) {
  .main-content {
    padding: 3rem 2rem;
  }
}

/* ===== Navbar ===== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(3, 3, 3, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 6px -1px rgba(153, 102, 255, 0.05);
}

.nav-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(153, 102, 255, 0.05),
    transparent,
    rgba(204, 255, 102, 0.05)
  );
  pointer-events: none;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  position: relative;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  position: relative;
}

.nav-logo-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom right,
    var(--brand-purple),
    var(--brand-lime)
  );
  border-radius: 0.75rem;
  filter: blur(13px);
  opacity: 0.5;
  transition: opacity 0.3s;
}

.nav-logo-wrapper:hover .nav-logo-glow {
  opacity: 0.75;
}

.nav-logo-svg {
  position: relative;
  transform: scale(1);
  transition: transform 0.3s;
}

.nav-logo-wrapper:hover .nav-logo-svg {
  transform: scale(1.05);
}

.nav-logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  background: linear-gradient(to right, var(--brand-purple), var(--brand-lime));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: opacity 0.3s;
}

.nav-logo-wrapper:hover .nav-logo-text {
  opacity: 0.9;
}

.nav-links-desktop {
  display: none;
  gap: 0.25rem;
}

@media (min-width: 768px) {
  .nav-links-desktop {
    display: flex;
    align-items: center;
  }
}

.nav-link {
  position: relative;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(241, 241, 241, 0.7);
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.3s;
}

.nav-link:hover {
  color: var(--foreground);
  background: rgba(255, 255, 255, 0.05);
}

.nav-link-underline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-purple), var(--brand-lime));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-link:hover .nav-link-underline {
  transform: scaleX(1);
}

.mobile-menu-btn {
  display: block;
  padding: 0.5rem;
  color: var(--foreground);
  background: transparent;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.3s;
}

.mobile-menu-btn:hover {
  background: rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.close-icon {
  display: none;
}

.mobile-menu-btn.active .menu-icon {
  display: none;
}

.mobile-menu-btn.active .close-icon {
  display: block;
}

.nav-links-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(3, 3, 3, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
}

.nav-links-mobile.active {
  display: flex;
}

@media (min-width: 768px) {
  .nav-links-mobile {
    display: none !important;
  }
}

.nav-link-mobile {
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(241, 241, 241, 0.7);
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.3s;
}

.nav-link-mobile:hover {
  color: var(--foreground);
  background: rgba(255, 255, 255, 0.05);
}

/* ===== Hero Section ===== */
.hero-section {
  text-align: center;
  padding: 4rem 1rem 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 9999px;
  font-size: 0.875rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  backdrop-filter: var(--glass-blur);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== Categories Section ===== */
.categories-section {
  padding: 2rem 0;
  max-width: 1200px;
  margin: 0 auto;
}

.slider-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 1rem;
}

/*
.nav-arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  color: var(--foreground);
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: var(--glass-blur);
}

.nav-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.1);
}

.nav-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
*/
.categories-slider {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 1rem 0.5rem;
  cursor: grab;
  user-select: none;
}

.categories-slider::-webkit-scrollbar {
  display: none;
}

.categories-slider.dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.category-card {
  flex: 0 0 180px;
  padding: 2rem 1.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  text-align: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: var(--glass-blur);
}

.category-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(153, 102, 255, 0.2);
}

.category-card.active {
  background: linear-gradient(
    135deg,
    hsla(265, 100%, 70%, 0.2),
    hsla(72, 100%, 70%, 0.1)
  );
  border-color: var(--primary);
  box-shadow: 0 0 30px rgba(153, 102, 255, 0.3);
}

.category-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.design-icon {
  background: linear-gradient(
    135deg,
    hsla(265, 100%, 70%, 0.2),
    hsla(265, 100%, 70%, 0.1)
  );
  color: var(--primary);
}

.engineering-icon {
  background: linear-gradient(
    135deg,
    hsla(72, 100%, 70%, 0.2),
    hsla(72, 100%, 70%, 0.1)
  );
  color: var(--secondary);
}

.marketing-icon {
  background: linear-gradient(
    135deg,
    hsla(200, 100%, 70%, 0.2),
    hsla(200, 100%, 70%, 0.1)
  );
  color: hsl(200, 100%, 70%);
}

.operations-icon {
  background: linear-gradient(
    135deg,
    hsla(30, 100%, 70%, 0.2),
    hsla(30, 100%, 70%, 0.1)
  );
  color: hsl(30, 100%, 70%);
}

.finance-icon {
  background: linear-gradient(
    135deg,
    hsla(150, 100%, 50%, 0.2),
    hsla(150, 100%, 50%, 0.1)
  );
  color: hsl(150, 100%, 50%);
}

.category-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.category-count {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Indicator Dots */
.indicator-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.indicator-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--muted);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator-dot:hover {
  background: var(--muted-foreground);
}

.indicator-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--gradient-primary);
}

/* ===== Jobs Section ===== */
.jobs-section {
  padding: 3rem 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.jobs-section-title {
  font-size: 1.75rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2rem;
}

.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.job-card {
  padding: 1.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: var(--glass-blur);
  animation: fadeInUp 0.5s ease forwards;
  opacity: 0;
}

.job-card:hover {
  border-color: var(--primary);
  transform: translateX(8px);
  box-shadow: -4px 0 20px rgba(153, 102, 255, 0.2);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.job-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.job-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.job-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.job-card-meta span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.job-card-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--muted);
  border-radius: 50%;
  color: var(--foreground);
  transition: all 0.3s ease;
}

.job-card:hover .job-card-arrow {
  background: var(--primary);
  transform: translateX(4px);
}

/* ===== Job Details Modal ===== */
.job-details-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.job-details-modal.active {
  opacity: 1;
  visibility: visible;
}

.job-details-content {
  width: 100%;
  max-width: 700px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s ease;
}

.job-details-modal.active .job-details-content {
  transform: translateY(0) scale(1);
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--muted);
  border: none;
  border-radius: 50%;
  color: var(--foreground);
  cursor: pointer;
  transition: all 0.3s ease;
}

.close-modal:hover {
  background: var(--destructive);
  transform: rotate(90deg);
}

.job-details-header {
  margin-bottom: 2rem;
  padding-right: 3rem;
}

.job-details-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.job-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.job-meta-item.salary {
  color: var(--secondary);
  font-weight: 600;
}

.job-details-body {
  margin-bottom: 2rem;
}

.job-section {
  margin-bottom: 1.5rem;
}

.job-section h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.job-section p {
  color: var(--muted-foreground);
  line-height: 1.7;
}

.job-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.job-section li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--muted-foreground);
}

.job-section li::before {
  content: "✓";
  color: var(--secondary);
  font-weight: 600;
}

.job-details-footer {
  display: flex;
  justify-content: flex-end;
}

.apply-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--gradient-primary);
  border: none;
  border-radius: var(--radius);
  color: var(--primary-foreground);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.apply-button:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(153, 102, 255, 0.4);
}

/* ===== Application Section ===== */
.application-section {
  padding: 4rem 1rem;
  max-width: 900px;
  margin: 0 auto;
  display: none;
}

.application-section.active {
  display: block;
  animation: fadeInUp 0.5s ease forwards;
}

.application-header {
  text-align: center;
  margin-bottom: 2rem;
}

.application-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.application-description {
  color: var(--muted-foreground);
  max-width: 500px;
  margin: 0 auto;
}

.form-container {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  overflow: hidden;
}

.form-container iframe {
  border-radius: calc(var(--radius) - 0.5rem);
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 768px) {
  .hero-section {
    padding: 3rem 1rem 2rem;
  }

  .category-card {
    flex: 0 0 150px;
    padding: 1.5rem 1rem;
  }

  .category-icon {
    width: 48px;
    height: 48px;
  }

  .category-icon svg {
    width: 24px;
    height: 24px;
  }
/*
  .nav-arrow {
    width: 40px;
    height: 40px;
  } */

  .job-card-header {
    flex-direction: column;
  }

  .job-card-arrow {
    align-self: flex-end;
  }

  .job-details-content {
    padding: 1.5rem;
  }

  .job-meta {
    flex-direction: column;
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .slider-container {
    padding: 0;
  }
/*
  .nav-arrow {
    display: none;
  }*/

  .categories-slider {
    padding: 1rem;
  }

  .category-card {
    flex: 0 0 140px;
  }
}



/* Footer */
.footer {
  position: relative;
  background: var(--background);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-desktop {
  display: none;
}

@media (min-width: 768px) {
  .footer-desktop {
    display: block;
  }
}

.footer-desktop-container {
  padding: 4rem 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-desktop-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-desktop-container {
    grid-template-columns: repeat(5, 1fr);
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-left: 1.5rem;
  mar
}

.footer-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
}

.footer-logo-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, var(--brand-purple), var(--brand-lime));
  border-radius: 0.75rem;
  filter: blur(13px);
  opacity: 0.5;
}

.footer-logo-svg {
  position: relative;
}

.footer-tagline {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  font-weight: 500;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) and (max-width: 1024px) {
  .footer-column {
    margin-left: 1.5rem;
  }
}

.footer-heading {
  color: var(--foreground);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: var(--muted-foreground);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--foreground);
}

.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.footer-contact a {
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.3s;
  stroke: var(--muted-foreground);
   display: flex;
   align-items: center;
   gap: 0.5rem;
}

.footer-contact a:hover {
  color: var(--foreground);
  stroke: var(--foreground);
}





.footer-social {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.social-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--foreground);
  text-decoration: none;
  transition: all 0.3s;
}

.social-icon:hover {
  background: rgba(204, 255, 102, 0.1);
  border-color: var(--brand-lime);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2rem 0;
  margin-top: 3rem;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .footer-bottom-content {
    flex-direction: row;
  }
}

.footer-bottom p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin: 0;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-social-links a {
  color: var(--muted-foreground);
  transition: color 0.3s;
  display: flex;
  align-items: center;
}

.footer-social-links a:hover {
  color: var(--foreground);
}

/* Mobile Footer */
.footer-mobile {
  display: block;
  padding: 2rem 0;
}

@media (min-width: 768px) {
  .footer-mobile {
    display: none;
  }
}

.footer-mobile-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-mobile-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  margin-bottom: 1rem;
}

.footer-collapsible {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-collapsible-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  border-radius: 1.5rem;
  color: var(--foreground);
  font-size: 0.875rem;
  font-weight: 540;
  cursor: pointer;
  transition: color 0.3s;
}

.footer-collapsible-btn svg {
  transition: transform 0.3s;
}

.footer-collapsible-btn.active svg {
  transform: rotate(180deg);
}

.footer-collapsible-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.footer-collapsible-content.active {
  max-height: 500px;
  padding-bottom: 1rem;
}

.footer-mobile-contact {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1rem 0;
  text-align: center;
  align-items: center;
}

.footer-mobile-contact p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.email-icon {
 align-items: center;
 line-height: 0;
}

.email-icon svg {
  stroke: var(--muted-foreground);  
}

a:hover .email-icon svg,
a:hover p {
  stroke: var(--brand-light);
  color: var(--brand-light);
}


.footer-mobile-contact a {
  text-decoration: none;
  transition: opacity 0.3s;
}

.footer-mobile-contact a:hover {
  color: white;
  opacity: 0.8;
}



.msg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.875rem;
  gap: 0.3rem;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  background: #16a34a;
  border: none;
  border-radius: 1rem;
  color: white;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s;
  width: max-content;
}

.whatsapp-btn svg,
.whatsapp-btn span {
  stroke: white;
  color: white;
}

.whatsapp-btn:hover {
  background: #15803d;
}

.footer-mobile-copyright {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 1rem;
}

.footer-mobile-copyright p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}
