/* Modern CSS Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #f8fafc;
  color: #0f172a;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
}

/* Import Inter font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* Prevent body scroll when menu is open */
body.menu-open {
  overflow: hidden;
}

/* Navigation - Ultra Minimal */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.4);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #0f172a, #3b3b5c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  border: 1px solid #0f172a;
  align-items: center;
  justify-content: center;
  padding: 5px 15px;
  border-radius: 30px;
}

.logo img {
  height: 50px;
  width: 50px;
  object-fit: cover;
  border-radius: 50%;
}

.nav-links {
  display: flex;
  gap: 3rem;
}

.nav-links a {
  text-decoration: none;
  color: #334155;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #0f172a;
  transition: width 0.2s;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.sign-in {
  text-decoration: none;
  color: #334155;
  font-weight: 500;
  font-size: 0.95rem;
}

.post-job {
  background: #0f172a;
  color: white;
  text-decoration: none;
  padding: 0.6rem 1.5rem;
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s;
  border: 1px solid #0f172a;
}

.post-job:hover {
  background: transparent;
  color: #0f172a;
}

.mobile-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #0f172a;
  cursor: pointer;
  z-index: 1002;
}

/* Mobile Menu Overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Menu - Slides in from right */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -400px;
  width: 100%;
  max-width: 380px;
  height: 100vh;
  background: white;
  z-index: 1001;
  padding: 2rem;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

/* Mobile Menu Header */
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e2e8f0;
}

.mobile-menu-logo {
  font-size: 1.25rem;
  font-weight: 700;
  background: linear-gradient(135deg, #0f172a, #4f46e5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #64748b;
  cursor: pointer;
  transition: color 0.2s;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.mobile-menu-close:hover {
  color: #0f172a;
  background: #f1f5f9;
}

/* Mobile Menu Links */
.mobile-menu-links {
  flex: 1;
}

.mobile-menu-links a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  color: #334155;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  border-bottom: 1px solid #f1f5f9;
  transition: all 0.2s;
}

.mobile-menu-links a i {
  width: 24px;
  color: #4f46e5;
  font-size: 1.1rem;
}

.mobile-menu-links a:hover {
  color: #4f46e5;
  padding-left: 0.5rem;
}

/* Mobile Menu Actions */
.mobile-menu-actions {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
}

.mobile-sign-in {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  color: #334155;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.mobile-sign-in i {
  width: 24px;
  color: #4f46e5;
}

.mobile-sign-in:hover {
  color: #4f46e5;
}

.mobile-post-job {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #0f172a;
  color: white;
  text-decoration: none;
  padding: 1rem;
  border-radius: 12px;
  font-weight: 600;
  margin-top: 1rem;
  transition: all 0.3s;
  border: 1px solid #0f172a;
}

.mobile-post-job:hover {
  background: transparent;
  color: #0f172a;
}

/* Mobile Menu Footer */
.mobile-menu-footer {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
}

.mobile-social {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.mobile-social a {
  color: #94a3b8;
  font-size: 1.25rem;
  transition: all 0.2s;
}

.mobile-social a:hover {
  color: #4f46e5;
  transform: translateY(-2px);
}

.mobile-copyright {
  font-size: 0.85rem;
  color: #94a3b8;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #f8fafc;
  padding-top: 80px;
}

/* Abstract Background Elements */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}

.shape-1 {
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: #6366f1;
  animation: float 20s ease-in-out infinite;
}

.shape-2 {
  bottom: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: #a78bfa;
  animation: float 15s ease-in-out infinite reverse;
}

.shape-3 {
  top: 40%;
  left: 30%;
  width: 300px;
  height: 300px;
  background: #f472b6;
  animation: float 18s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }

  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 10;
  width: 100%;
}

/* Carousel */
.carousel {
  position: relative;
  margin-top: 2rem;
}

.slides-container {
  position: relative;
  height: 600px;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.slide-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  height: 100%;
}

.slide-text {
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.active .slide-text {
  transform: translateY(0);
  opacity: 1;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.badge-1 {
  color: #4f46e5;
}

.badge-2 {
  color: #7e22ce;
}

.badge-3 {
  color: #059669;
}

.slide-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.slide-title span {
  background: linear-gradient(135deg, #0f172a, #4f46e5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.slide-desc {
  font-size: 1.25rem;
  color: #475569;
  margin-bottom: 2.5rem;
  max-width: 90%;
}

.slide-btn {
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  background: #0f172a;
  color: white;
  box-shadow: 0 20px 30px -10px rgba(15, 23, 42, 0.2);
  position: relative;
  overflow: hidden;
}

.slide-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.slide-btn:hover::before {
  width: 300px;
  height: 300px;
}

.slide-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 30px 40px -10px rgba(15, 23, 42, 0.3);
}

.slide-image {
  position: relative;
  transform: translateX(30px);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.active .slide-image {
  transform: translateX(0);
  opacity: 1;
}

.image-wrapper {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 50px 70px -20px rgba(0, 0, 0, 0.3);
}

.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s;
}

.image-wrapper:hover img {
  transform: scale(1.05);
}

.image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.2), rgba(15, 23, 42, 0.2));
  pointer-events: none;
}

/* Carousel Controls */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 3rem;
}

.dots {
  display: flex;
  gap: 0.75rem;
}

.dot {
  width: 3rem;
  height: 0.25rem;
  border: none;
  background: #cbd5e1;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.dot.active {
  background: #0f172a;
  width: 5rem;
}

.arrows {
  display: flex;
  gap: 1rem;
}

.arrow {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: white;
  color: #0f172a;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
}

.arrow:hover {
  background: #0f172a;
  color: white;
  border-color: #0f172a;
  transform: scale(1.1);
}

/* Search Bar */
.search-wrapper {
  margin-top: 4rem;
  background: white;
  border-radius: 100px;
  padding: 0.5rem;
  box-shadow: 0 30px 50px -20px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(226, 232, 240, 0.6);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.search-form {
  display: flex;
  align-items: center;
}

.search-field {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}

.search-field i {
  position: absolute;
  left: 1.5rem;
  color: #94a3b8;
  font-size: 1rem;
}

.search-field input {
  width: 100%;
  padding: 1rem 1.5rem 1rem 3rem;
  border: none;
  font-size: 1rem;
  background: transparent;
  outline: none;
}

.search-field:first-child input {
  border-right: 1px solid #e2e8f0;
}

.search-btn {
  background: #0f172a;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
  margin-left: 0.5rem;
}

.search-btn:hover {
  background: #1e293b;
  transform: scale(1.02);
}

/* Stats */
.stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 4rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
}

.stat-label {
  font-size: 0.9rem;
  color: #64748b;
  letter-spacing: 0.02em;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .slide-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .slide-desc {
    max-width: 100%;
  }

  .slide-text {
    order: 2;
  }

  .slide-image {
    order: 1;
    max-width: 500px;
    margin: 0 auto;
  }

  .slides-container {
    height: 800px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .mobile-btn {
    display: block;
  }

  .search-wrapper {
    border-radius: 2rem;
  }

  .search-form {
    flex-direction: column;
    gap: 0.5rem;
  }

  .search-field {
    width: 100%;
  }

  .search-field:first-child input {
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
  }

  .search-btn {
    width: 100%;
    margin-left: 0;
  }

  .stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .slides-container {
    height: 900px;
  }
}


/* About Hero Section */
.about-hero {
  padding: 120px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Section Label */
.section-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.label-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #4f46e5, #a78bfa);
  border-radius: 2px;
}

.label-text {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4f46e5;
}

/* About Grid */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-bottom: 6rem;
}

/* About Content */
.about-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: linear-gradient(135deg, #4f46e5, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-description {
  font-size: 1.25rem;
  color: #475569;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 90%;
}

/* Culture Pills */
.culture-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #334155;
  transition: all 0.3s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.pill i {
  color: #4f46e5;
  font-size: 0.9rem;
}

.pill:hover {
  border-color: #4f46e5;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -10px rgba(79, 70, 229, 0.3);
}

/* Founder Quote */
.founder-quote {
  background: linear-gradient(135deg, #f1f5f9, #ffffff);
  padding: 2rem;
  border-radius: 2rem;
  position: relative;
  border: 1px solid rgba(226, 232, 240, 0.6);
}

.quote-icon {
  position: absolute;
  top: -0.5rem;
  right: 2rem;
  font-size: 4rem;
  color: #4f46e5;
  opacity: 0.1;
}

.quote-text {
  font-size: 1.1rem;
  font-style: italic;
  color: #1e293b;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-image {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #4f46e5;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 600;
  color: #0f172a;
}

.author-title {
  font-size: 0.85rem;
  color: #64748b;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: white;
  padding: 1.8rem;
  border-radius: 1.5rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4f46e5, #a78bfa);
  opacity: 0;
  transition: opacity 0.3s;
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -15px rgba(79, 70, 229, 0.2);
}

.glass-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.stat-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #eef2ff, #f5f3ff);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.stat-icon i {
  font-size: 1.5rem;
  color: #4f46e5;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 500;
  margin-bottom: 1rem;
}

.stat-trend {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  background: #eef2ff;
  border-radius: 100px;
  width: fit-content;
}

.stat-trend i {
  font-size: 0.7rem;
  color: #10b981;
}

.stat-trend span {
  color: #10b981;
}

/* Image Collage */
.image-collage {
  position: relative;
  margin-top: 1rem;
}

.collage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.collage-item {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.collage-item:hover img {
  transform: scale(1.1);
}

.collage-item.item-1 {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.8), transparent);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.collage-item:hover .image-overlay {
  opacity: 1;
}

.image-overlay span {
  color: white;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Floating Badge */
.floating-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: white;
  border-radius: 100px;
  padding: 1rem 1.5rem;
  box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.15);
  border: 1px solid #e2e8f0;
  animation: float-badge 3s ease-in-out infinite;
}

@keyframes float-badge {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-10px, -10px);
  }
}

.badge-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.badge-content i {
  font-size: 2rem;
  color: #fbbf24;
}

.badge-text {
  display: flex;
  flex-direction: column;
}

.badge-years {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
}

.badge-label {
  font-size: 0.85rem;
  color: #64748b;
}

/* Timeline */
.timeline {
  margin-top: 6rem;
  position: relative;
  padding: 2rem 0;
}

.timeline-track {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: #e2e8f0;
  transform: translateY(-50%);
}

.timeline-progress {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #4f46e5, #a78bfa);
  border-radius: 2px;
  transition: width 0.3s;
}

.timeline-items {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 120px;
  cursor: pointer;
}

.timeline-dot {
  width: 16px;
  height: 16px;
  background: white;
  border: 3px solid #4f46e5;
  border-radius: 50%;
  margin-bottom: 1rem;
  position: relative;
  transition: all 0.3s;
}

.timeline-item:hover .timeline-dot {
  transform: scale(1.3);
  box-shadow: 0 0 0 5px rgba(79, 70, 229, 0.2);
}

.timeline-item.active .timeline-dot {
  background: #4f46e5;
  box-shadow: 0 0 0 5px rgba(79, 70, 229, 0.2);
}

.dot-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(79, 70, 229, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(79, 70, 229, 0);
  }
}

.timeline-year {
  font-size: 1rem;
  font-weight: 700;
  color: #4f46e5;
  margin-bottom: 0.3rem;
  display: block;
}

.timeline-content h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.2rem;
}

.timeline-content p {
  font-size: 0.8rem;
  color: #64748b;
}

/* Counter Animation */
.stat-number.counting {
  transition: all 0.3s;
}

/* Responsive */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-description {
    max-width: 100%;
  }

  .timeline-items {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 60px 0;
  }

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

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

  .collage-item.item-1 {
    grid-column: span 1;
    aspect-ratio: 1;
  }

  .floating-badge {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 1rem;
    animation: none;
  }

  .timeline-item {
    width: calc(50% - 1rem);
  }
}



/* Featured Jobs Section */
.featured-jobs {
  padding: 120px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Background decoration */
.featured-jobs::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.jobs-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

/* Section Header */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.header-left {
  flex: 1;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4f46e5;
  background: #eef2ff;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.gradient-text {
  background: linear-gradient(135deg, #4f46e5, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-description {
  max-width: 400px;
  color: #64748b;
  line-height: 1.6;
  font-size: 1.1rem;
}

/* Jobs Grid */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

/* Job Card */
.job-card {
  background: white;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #f1f5f9;
  position: relative;
}

.job-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 45px -15px rgba(79, 70, 229, 0.2);
  border-color: #e0e7ff;
}

/* Card Image */
.card-image {
  position: relative;
  height: 160px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.job-card:hover .card-image img {
  transform: scale(1.1);
}

.image-overlay {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  justify-content: flex-start;
  z-index: 2;
}

.job-type {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  letter-spacing: 0.02em;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.full-time {
  background: #4f46e5;
  color: white;
}

.part-time {
  background: #8b5cf6;
  color: white;
}

.morning {
  background: #10b981;
  color: white;
}

.evening {
  background: #f59e0b;
  color: white;
}

.seasonal {
  background: #ec4899;
  color: white;
}

/* Card Content */
.card-content {
  padding: 1.5rem;
}

.company-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.company-logo {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  object-fit: cover;
  border: 2px solid white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.company-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.job-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.job-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: #64748b;
}

.job-details span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.job-details i {
  width: 16px;
  color: #4f46e5;
  font-size: 0.8rem;
}

.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.tag {
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.3rem 0.6rem;
  background: #f8fafc;
  border-radius: 6px;
  color: #475569;
  border: 1px solid #e2e8f0;
  transition: all 0.2s;
}

.job-card:hover .tag {
  background: #eef2ff;
  border-color: #c7d2fe;
  color: #4f46e5;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.apply-btn {
  flex: 1;
  background: #0f172a;
  color: white;
  border: none;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid #0f172a;
}

.apply-btn:hover {
  background: transparent;
  color: #0f172a;
}

.save-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  background: white;
  color: #64748b;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.save-btn:hover {
  background: #fee2e2;
  color: #ef4444;
  border-color: #fee2e2;
}

/* View More Button */
.view-more-container {
  text-align: center;
  margin-top: 3rem;
}

.view-more-btn {
  background: transparent;
  border: 2px solid #e2e8f0;
  color: #0f172a;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 1rem 2.5rem;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.view-more-btn:hover {
  border-color: #4f46e5;
  background: #4f46e5;
  color: white;
  transform: scale(1.05);
  box-shadow: 0 20px 30px -10px rgba(79, 70, 229, 0.3);
}

.view-more-btn i {
  transition: transform 0.3s;
}

.view-more-btn:hover i {
  transform: translateX(5px);
}

.job-count {
  color: #94a3b8;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .jobs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .jobs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-description {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .jobs-grid {
    grid-template-columns: 1fr;
  }

  .featured-jobs {
    padding: 60px 0;
  }
}

/* Animation for cards */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.job-card {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

.job-card:nth-child(1) {
  animation-delay: 0.1s;
}

.job-card:nth-child(2) {
  animation-delay: 0.2s;
}

.job-card:nth-child(3) {
  animation-delay: 0.3s;
}

.job-card:nth-child(4) {
  animation-delay: 0.4s;
}

.job-card:nth-child(5) {
  animation-delay: 0.5s;
}



/* How It Works Section */
.how-it-works {
  padding: 120px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

/* Background decoration */
.how-it-works::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.how-it-works::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.works-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

/* Section Header - Center aligned */
.section-header.center {
  text-align: center;
  justify-content: center;
  margin-bottom: 4rem;
}

.section-description.center {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Process Flow */
.process-flow {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto 4rem;
  position: relative;
}

.process-step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  position: relative;
}

/* Step Marker */
.step-marker {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 60px;
}

.step-num {
  width: 40px;
  height: 40px;
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #4f46e5;
  background: white;
  z-index: 2;
  transition: all 0.3s;
}

.process-step:hover .step-num {
  background: #4f46e5;
  color: white;
  border-color: #4f46e5;
  transform: scale(1.1);
}

.step-line {
  width: 2px;
  height: calc(100% + 2rem);
  background: linear-gradient(to bottom, #e2e8f0, transparent);
  margin-top: 0.5rem;
}

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

/* Step Cards */
.step-card {
  flex: 1;
  background: white;
  border-radius: 2rem;
  padding: 2rem;
  box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f5f9;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  margin-bottom: 1rem;
}

.step-card:hover {
  transform: translateX(10px);
  box-shadow: 0 30px 45px -15px rgba(79, 70, 229, 0.15);
  border-color: #e0e7ff;
}

.step-card.highlight {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  border-color: #2d3a4f;
}

.step-card.highlight .step-title,
.step-card.highlight .step-description {
  color: white;
}

.step-card.highlight .step-description {
  color: #cbd5e1;
}

/* Step Icons */
.step-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  transition: all 0.3s;
}

.step-card:hover .step-icon {
  transform: scale(1.05) rotate(5deg);
}

.step-icon i {
  font-size: 1.8rem;
  color: white;
}

.step-icon.search {
  background: linear-gradient(135deg, #4f46e5, #818cf8);
  box-shadow: 0 10px 20px -5px rgba(79, 70, 229, 0.3);
}

.step-icon.apply {
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
  box-shadow: 0 10px 20px -5px rgba(139, 92, 246, 0.3);
}

.step-icon.wait {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  box-shadow: 0 10px 20px -5px rgba(245, 158, 11, 0.3);
}

.step-icon.hired {
  background: linear-gradient(135deg, #10b981, #34d399);
  box-shadow: 0 10px 20px -5px rgba(16, 185, 129, 0.3);
}

/* Step Content */
.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
  text-transform: capitalize;
}

.step-description {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.step-stats {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.step-stats span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: #475569;
  background: #f8fafc;
  padding: 0.4rem 0.8rem;
  border-radius: 100px;
  border: 1px solid #e2e8f0;
}

.step-card.highlight .step-stats span {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.1);
  color: #e2e8f0;
}

.step-stats i {
  color: #4f46e5;
}

.step-card.highlight .step-stats i {
  color: #a78bfa;
}

/* Step Preview */
.step-preview {
  margin-top: 1rem;
  border-radius: 1rem;
  overflow: hidden;
  border: 2px solid #f1f5f9;
}

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

/* Application Preview */
.application-preview {
  background: #f8fafc;
  border-radius: 1rem;
  padding: 1rem;
  margin-top: 1rem;
}

.step-card.highlight .application-preview {
  background: rgba(255, 255, 255, 0.05);
}

.preview-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
}

.preview-item:first-child {
  border-bottom: 1px solid #e2e8f0;
}

.step-card.highlight .preview-item:first-child {
  border-color: rgba(255, 255, 255, 0.1);
}

.preview-item i {
  color: #10b981;
}

.preview-item span {
  color: #475569;
  font-size: 0.9rem;
}

.step-card.highlight .preview-item span {
  color: #cbd5e1;
}

/* Status Indicators */
.status-indicators {
  background: #f8fafc;
  border-radius: 1rem;
  padding: 1rem;
  margin-top: 1rem;
}

.step-card.highlight .status-indicators {
  background: rgba(255, 255, 255, 0.05);
}

.status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.status-row:last-child {
  margin-bottom: 0;
}

.status-label {
  font-size: 0.85rem;
  color: #64748b;
}

.status-bar {
  flex: 1;
  height: 6px;
  background: #e2e8f0;
  border-radius: 100px;
  margin-left: 1rem;
  overflow: hidden;
}

.status-progress {
  height: 100%;
  background: linear-gradient(90deg, #4f46e5, #818cf8);
  border-radius: 100px;
}

.status-value {
  font-weight: 600;
  color: #4f46e5;
}

.step-card.highlight .status-value {
  color: #a78bfa;
}

/* Notification Preview */
.notification-preview {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: #eef2ff;
  border-radius: 100px;
  margin-top: 1rem;
  width: fit-content;
}

.step-card.highlight .notification-preview {
  background: rgba(79, 70, 229, 0.2);
}

.notification-preview i {
  color: #4f46e5;
  animation: bell 2s infinite;
}

@keyframes bell {

  0%,
  100% {
    transform: rotate(0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    transform: rotate(10deg);
  }

  20%,
  40%,
  60%,
  80% {
    transform: rotate(-10deg);
  }
}

.notification-preview span {
  color: #4f46e5;
  font-weight: 500;
  font-size: 0.9rem;
}

/* Success Stats */
.success-stats {
  display: flex;
  gap: 2rem;
  margin: 1.5rem 0;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  display: block;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.8rem;
  color: #94a3b8;
}

.success-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16, 185, 129, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  width: fit-content;
}

.success-badge i {
  color: #10b981;
}

.success-badge span {
  color: #10b981;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 4rem 0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: white;
  border-radius: 100px;
  box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
}

.trust-item i {
  color: #4f46e5;
  font-size: 1rem;
}

.trust-item span {
  color: #475569;
  font-weight: 500;
  font-size: 0.95rem;
}

/* CTA Section */
.works-cta {
  text-align: center;
}

.start-searching-btn {
  background: #0f172a;
  color: white;
  border: none;
  padding: 1.2rem 3rem;
  border-radius: 100px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  border: 2px solid #0f172a;
  margin-bottom: 1rem;
}

.start-searching-btn:hover {
  background: transparent;
  color: #0f172a;
  transform: scale(1.05);
  box-shadow: 0 20px 30px -10px rgba(15, 23, 42, 0.2);
}

.start-searching-btn i {
  transition: transform 0.3s;
}

.start-searching-btn:hover i {
  transform: translateX(5px);
}

.no-card-note {
  color: #94a3b8;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.no-card-note i {
  color: #10b981;
}

/* Responsive */
@media (max-width: 768px) {
  .process-step {
    flex-direction: column;
    gap: 1rem;
  }

  .step-marker {
    flex-direction: row;
    width: 100%;
    gap: 1rem;
  }

  .step-line {
    width: 100%;
    height: 2px;
    margin-top: 0;
  }

  .step-card:hover {
    transform: translateY(-5px);
  }

  .trust-badges {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .trust-item {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .how-it-works {
    padding: 60px 0;
  }

  .success-stats {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Animation for steps */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.process-step {
  animation: slideInRight 0.6s ease-out forwards;
  opacity: 0;
}

.process-step:nth-child(1) {
  animation-delay: 0.1s;
}

.process-step:nth-child(2) {
  animation-delay: 0.3s;
}

.process-step:nth-child(3) {
  animation-delay: 0.5s;
}

.process-step:nth-child(4) {
  animation-delay: 0.7s;
}




/* Testimonials Section */
.tst-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* Background decoration */
.tst-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.tst-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

/* Header */
.tst-header {
  text-align: center;
  margin-bottom: 4rem;
}

.tst-badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4f46e5;
  background: #eef2ff;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.tst-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin-bottom: 1rem;
}

.tst-gradient {
  background: linear-gradient(135deg, #4f46e5, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tst-subtitle {
  max-width: 600px;
  margin: 0 auto;
  color: #64748b;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Carousel */
.tst-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 3rem 0 2rem;
}

.tst-track-container {
  flex: 1;
  overflow: hidden;
  border-radius: 2rem;
}

.tst-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 1.5rem;
}

/* Testimonial Card */
.tst-card {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 350px;
  background: white;
  border-radius: 2rem;
  padding: 2rem;
  box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f5f9;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.tst-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 45px -15px rgba(79, 70, 229, 0.15);
  border-color: #e0e7ff;
}

.tst-card-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle at top right, rgba(79, 70, 229, 0.03), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Card Header */
.tst-card-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.tst-avatar {
  width: 60px;
  height: 60px;
  border-radius: 20px;
  object-fit: cover;
  border: 3px solid white;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1);
}

.tst-user-info {
  flex: 1;
}

.tst-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.2rem;
}

.tst-role {
  font-size: 0.9rem;
  color: #4f46e5;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.tst-company {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: #64748b;
}

.tst-company i {
  font-size: 0.7rem;
  color: #94a3b8;
}

.tst-quote-icon {
  width: 40px;
  height: 40px;
  background: #eef2ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4f46e5;
  font-size: 1.2rem;
  opacity: 0.5;
}

/* Rating */
.tst-rating {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 1.2rem;
}

.tst-rating i {
  color: #fbbf24;
  font-size: 0.9rem;
}

/* Quote */
.tst-quote {
  color: #334155;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

/* Meta Info */
.tst-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
}

.tst-date {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: #94a3b8;
}

.tst-date i {
  font-size: 0.7rem;
}

.tst-verified {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  color: #10b981;
  background: #d1fae5;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
}

.tst-verified i {
  font-size: 0.7rem;
}

/* Navigation Buttons */
.tst-nav {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  border: 1px solid #e2e8f0;
  color: #334155;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.tst-nav:hover {
  background: #4f46e5;
  color: white;
  border-color: #4f46e5;
  transform: scale(1.1);
}

.tst-nav:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* Dots */
.tst-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin: 2rem 0 3rem;
}

.tst-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s;
}

.tst-dot.active {
  width: 30px;
  background: #4f46e5;
  border-radius: 10px;
}

.tst-dot:hover {
  background: #4f46e5;
}

/* Trust Signals */
.tst-trust {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.tst-trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  background: white;
  border-radius: 100px;
  box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f5f9;
}

.tst-trust-item i {
  font-size: 2rem;
  color: #4f46e5;
}

.tst-trust-text {
  display: flex;
  flex-direction: column;
}

.tst-trust-number {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
}

.tst-trust-label {
  font-size: 0.85rem;
  color: #64748b;
}

/* Responsive */
@media (max-width: 1200px) {
  .tst-card {
    flex: 0 0 calc(50% - 0.75rem);
  }
}

@media (max-width: 768px) {
  .tst-card {
    flex: 0 0 100%;
  }

  .tst-carousel {
    flex-direction: column;
  }

  .tst-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .tst-prev {
    left: -10px;
  }

  .tst-next {
    right: -10px;
  }

  .tst-trust {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .tst-trust-item {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .tst-section {
    padding: 60px 0;
  }
}

/* Animation */
@keyframes tstFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tst-card {
  animation: tstFadeIn 0.6s ease-out forwards;
}


/* Call to Action Section */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  position: relative;
  overflow: hidden;
  color: white;
}

/* Background Patterns */
.cta-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.cta-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
}

.cta-circle-1 {
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.1) 0%, transparent 70%);
  animation: ctaFloat 20s ease-in-out infinite;
}

.cta-circle-2 {
  bottom: -30%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
  animation: ctaFloat 15s ease-in-out infinite reverse;
}

.cta-circle-3 {
  top: 40%;
  left: 30%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
  animation: ctaFloat 18s ease-in-out infinite;
}

@keyframes ctaFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -30px) scale(1.1);
  }

  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

.cta-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

/* Main Content Layout */
.cta-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

/* Left Side - Main CTA */
.cta-main {
  max-width: 600px;
}

.cta-badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a78bfa;
  background: rgba(79, 70, 229, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(167, 139, 250, 0.3);
}

.cta-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: white;
}

.cta-gradient {
  background: linear-gradient(135deg, #818cf8, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-description {
  font-size: 1.2rem;
  color: #cbd5e1;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 90%;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 1rem 2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: none;
  position: relative;
  overflow: hidden;
}

.cta-btn-primary {
  background: white;
  color: #0f172a;
  box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.3);
}

.cta-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 30px 40px -10px rgba(79, 70, 229, 0.4);
}

.cta-btn-primary i {
  transition: transform 0.3s;
}

.cta-btn-primary:hover i {
  transform: translateX(5px);
}

.cta-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
}

.cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* Trust Indicators */
.cta-trust {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #94a3b8;
  font-size: 0.9rem;
}

.cta-trust-item i {
  color: #10b981;
  font-size: 1rem;
}

/* Right Side - Stats Card */
.cta-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 50px 70px -20px rgba(0, 0, 0, 0.4);
}

.cta-card-header {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cta-card-dots {
  display: flex;
  gap: 0.4rem;
}

.cta-card-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.cta-card-dots span:first-child {
  background: #ef4444;
}

.cta-card-dots span:nth-child(2) {
  background: #fbbf24;
}

.cta-card-dots span:last-child {
  background: #10b981;
}

.cta-card-title {
  color: #94a3b8;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.cta-card-content {
  padding: 1.5rem;
}

/* Activity Feed */
.cta-activity {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.cta-activity-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 1rem;
  transition: all 0.3s;
  border: 1px solid transparent;
}

.cta-activity-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.cta-activity-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.cta-activity-details {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cta-activity-name {
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: capitalize;
}

.cta-activity-location {
  color: #94a3b8;
  font-size: 0.8rem;
}

.cta-activity-time {
  color: #64748b;
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.3rem 0.6rem;
  border-radius: 100px;
  white-space: nowrap;
}

/* Live Counter */
.cta-counter {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.2), rgba(168, 85, 247, 0.2));
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-counter-number {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: monospace;
}

.cta-counter-label {
  color: #cbd5e1;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.cta-counter-trend {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 1rem;
  background: rgba(16, 185, 129, 0.2);
  border-radius: 100px;
  color: #10b981;
  font-size: 0.85rem;
  font-weight: 600;
}

.cta-counter-trend i {
  font-size: 0.7rem;
}

/* Card Footer */
.cta-card-footer {
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-progress {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cta-progress-label {
  color: #94a3b8;
  font-size: 0.85rem;
  min-width: 80px;
}

.cta-progress-bar {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  overflow: hidden;
}

.cta-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #4f46e5, #a78bfa);
  border-radius: 100px;
  transition: width 1s ease;
}

.cta-progress-value {
  color: white;
  font-weight: 600;
  font-size: 0.85rem;
  min-width: 40px;
  text-align: right;
}

/* Employer CTA */
.cta-employer {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.cta-employer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-employer-text {
  flex: 1;
}

.cta-employer-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.25rem;
  text-transform: capitalize;
}

.cta-employer-description {
  color: #94a3b8;
  font-size: 0.9rem;
}

.cta-btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.8rem 1.8rem;
}

.cta-btn-outline:hover {
  background: white;
  color: #0f172a;
  border-color: white;
}

/* Responsive */
@media (max-width: 1024px) {
  .cta-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .cta-main {
    max-width: 100%;
    text-align: center;
  }

  .cta-description {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-buttons {
    justify-content: center;
  }

  .cta-trust {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .cta-section {
    padding: 60px 0;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
  }

  .cta-trust {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .cta-employer {
    border-radius: 2rem;
  }

  .cta-employer-content {
    flex-direction: column;
    text-align: center;
  }

  .cta-progress {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .cta-activity-item {
    flex-wrap: wrap;
  }

  .cta-activity-time {
    margin-left: auto;
  }
}



/* Footer Styles */
.footer {
  background: #0f172a;
  color: white;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Background Pattern */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(79, 70, 229, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
  position: relative;
  z-index: 2;
}

/* Main Footer Grid */
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

/* Brand Column */
.footer-brand {
  max-width: 350px;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff, #cbd5e1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.footer-description {
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

/* Social Links */
.footer-social {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
  background: #4f46e5;
  color: white;
  transform: translateY(-3px);
  border-color: #4f46e5;
}

/* App Store Badges */
.footer-apps {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.app-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.6rem 1.2rem;
  transition: all 0.3s;
  text-decoration: none;
}

.app-badge:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  border-color: #4f46e5;
}

.app-badge i {
  font-size: 1.5rem;
  color: white;
}

.app-badge-text {
  display: flex;
  flex-direction: column;
}

.app-badge-text span {
  font-size: 0.65rem;
  color: #94a3b8;
  text-transform: uppercase;
}

.app-badge-text strong {
  font-size: 0.9rem;
  color: white;
  font-weight: 600;
}

/* Footer Columns */
.footer-col {
  min-width: 140px;
}

.footer-title {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-title-secondary {
  margin-top: 2rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s;
  display: inline-block;
  position: relative;
}

.footer-links a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #4f46e5;
  transition: width 0.2s;
}

.footer-links a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-links a:hover::before {
  width: 100%;
}

/* Newsletter Section */
.footer-newsletter {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 2rem;
  padding: 3rem;
  margin-bottom: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.newsletter-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.newsletter-text {
  flex: 1;
  min-width: 300px;
}

.newsletter-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.newsletter-description {
  color: #94a3b8;
  line-height: 1.6;
}

.newsletter-form {
  flex: 1;
  min-width: 350px;
}

.newsletter-input-group {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 0.3rem;
  margin-bottom: 1rem;
  transition: all 0.3s;
}

.newsletter-input-group:focus-within {
  border-color: #4f46e5;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
}

.newsletter-input-group i {
  color: #64748b;
  margin-left: 1.2rem;
  font-size: 1rem;
}

.newsletter-input-group input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.8rem 1rem;
  color: white;
  font-size: 0.95rem;
  outline: none;
}

.newsletter-input-group input::placeholder {
  color: #64748b;
}

.newsletter-btn {
  background: #4f46e5;
  color: white;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.newsletter-btn:hover {
  background: #4338ca;
  transform: scale(1.02);
}

.newsletter-btn i {
  transition: transform 0.3s;
}

.newsletter-btn:hover i {
  transform: translateX(3px);
}

.newsletter-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #94a3b8;
  font-size: 0.85rem;
  cursor: pointer;
}

.newsletter-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: #4f46e5;
}

/* Bottom Footer */
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-copyright {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: #64748b;
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: #4f46e5;
}

.separator {
  color: #334155;
  font-size: 0.85rem;
}

.footer-location {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: #94a3b8;
  font-size: 0.9rem;
}

.footer-location i {
  color: #ef4444;
}

/* Trust Badges */
.footer-trust {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #64748b;
  font-size: 0.85rem;
  padding: 0.3rem 1rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-badge i {
  color: #10b981;
  font-size: 0.9rem;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #4f46e5;
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  font-size: 0.7rem;
  font-weight: 600;
  box-shadow: 0 10px 20px -5px rgba(79, 70, 229, 0.3);
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
  z-index: 100;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #4338ca;
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(79, 70, 229, 0.4);
}

.back-to-top i {
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .footer-main {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: span 4;
    max-width: 100%;
  }
}

@media (max-width: 992px) {
  .footer-main {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-brand {
    grid-column: span 3;
  }
}

@media (max-width: 768px) {
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: span 2;
  }

  .newsletter-content {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-input-group {
    flex-direction: column;
    background: transparent;
    border: none;
    padding: 0;
    gap: 1rem;
  }

  .newsletter-input-group i {
    display: none;
  }

  .newsletter-input-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 1rem 1.5rem;
  }

  .newsletter-btn {
    width: 100%;
    justify-content: center;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  .footer-trust {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .back-to-top {
    bottom: 1rem;
    right: 1rem;
  }
}

@media (max-width: 480px) {
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-apps {
    flex-direction: column;
  }

  .app-badge {
    width: 100%;
    justify-content: center;
  }

  .footer-newsletter {
    padding: 2rem 1.5rem;
  }

  .newsletter-form {
    min-width: auto;
    width: 100%;
  }
}

/* Animation for footer links */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-col {
  animation: fadeInUp 0.5s ease-out forwards;
  opacity: 0;
}

.footer-col:nth-child(1) {
  animation-delay: 0.1s;
}

.footer-col:nth-child(2) {
  animation-delay: 0.2s;
}

.footer-col:nth-child(3) {
  animation-delay: 0.3s;
}

.footer-col:nth-child(4) {
  animation-delay: 0.4s;
}

.footer-col:nth-child(5) {
  animation-delay: 0.5s;
}


/* Jobs Page Specific Styles - Add to your existing CSS */

/* Jobs Page Container */
.jobp-page {
  padding: 120px 0 80px;
  background: #f8fafc;
  min-height: 100vh;
}

.jobp-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Page Header */
.jobp-header {
  text-align: center;
  margin-bottom: 3rem;
}

.jobp-badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4f46e5;
  background: #eef2ff;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.jobp-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin-bottom: 1rem;
}

.jobp-gradient {
  background: linear-gradient(135deg, #4f46e5, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.jobp-subtitle {
  max-width: 600px;
  margin: 0 auto;
  color: #64748b;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Search and Filter Section */
.jobp-search-wrapper {
  max-width: 800px;
  margin: 3rem auto 2rem;
}

.jobp-search-box {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 100px;
  padding: 0.3rem;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}

.jobp-search-box:focus-within {
  border-color: #4f46e5;
  box-shadow: 0 10px 30px -10px rgba(79, 70, 229, 0.2);
}

.jobp-search-box i {
  color: #94a3b8;
  margin-left: 1.5rem;
  font-size: 1rem;
}

.jobp-search-input {
  flex: 1;
  border: none;
  padding: 1rem 1rem;
  font-size: 1rem;
  outline: none;
  background: transparent;
}

.jobp-filter-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.jobp-filter-select {
  padding: 0.6rem 1.5rem;
  border: 1px solid #e2e8f0;
  border-radius: 100px;
  font-size: 0.9rem;
  color: #334155;
  background: white;
  cursor: pointer;
  outline: none;
  min-width: 150px;
  transition: all 0.3s;
}

.jobp-filter-select:hover {
  border-color: #4f46e5;
}

.jobp-filter-select:focus {
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.jobp-stats {
  text-align: center;
  margin: 2rem 0;
  color: #64748b;
  font-size: 0.95rem;
}

.jobp-stats span {
  font-weight: 700;
  color: #4f46e5;
  font-size: 1.2rem;
}

/* Jobs Grid */
.jobp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

/* No Results */
.jobp-no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem;
  background: white;
  border-radius: 2rem;
  color: #64748b;
  font-size: 1.1rem;
  border: 2px dashed #e2e8f0;
}

.jobp-no-results i {
  font-size: 3rem;
  color: #94a3b8;
  margin-bottom: 1rem;
  display: block;
}

/* Job Card */
.jobp-card {
  background: white;
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f5f9;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.jobp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 35px -10px rgba(79, 70, 229, 0.15);
  border-color: #e0e7ff;
}

.jobp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4f46e5, #a78bfa);
  opacity: 0;
  transition: opacity 0.3s;
}

.jobp-card:hover::before {
  opacity: 1;
}

.jobp-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.jobp-card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #eef2ff, #f5f3ff);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4f46e5;
  font-size: 1.5rem;
}

.jobp-card-title {
  flex: 1;
}

.jobp-card-title h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.2rem;
  text-transform: capitalize;
}

.jobp-card-category {
  font-size: 0.8rem;
  color: #4f46e5;
  background: #eef2ff;
  padding: 0.2rem 0.8rem;
  border-radius: 100px;
  display: inline-block;
  text-transform: capitalize;
}

.jobp-card-details {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1rem 0;
}

.jobp-card-detail {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #64748b;
  font-size: 0.9rem;
}

.jobp-card-detail i {
  width: 18px;
  color: #4f46e5;
  font-size: 0.9rem;
}

.jobp-card-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  margin: 1rem 0;
}

.jobp-status-available {
  background: #d1fae5;
  color: #10b981;
}

.jobp-status-unavailable {
  background: #fee2e2;
  color: #ef4444;
}

.jobp-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
}

.jobp-view-btn {
  background: transparent;
  border: 1px solid #e2e8f0;
  color: #334155;
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.jobp-view-btn:hover {
  background: #4f46e5;
  color: white;
  border-color: #4f46e5;
}

.jobp-save-btn {
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.3s;
}

.jobp-save-btn:hover {
  color: #ef4444;
}

/* Modal */
.jobp-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.jobp-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.jobp-modal {
  background: white;
  border-radius: 2rem;
  width: 90%;
  max-width: 700px;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9);
  transition: transform 0.3s;
  box-shadow: 0 50px 70px -20px rgba(0, 0, 0, 0.3);
}

.jobp-modal-overlay.active .jobp-modal {
  transform: scale(1);
}

.jobp-modal-header {
  padding: 2rem;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.jobp-modal-header h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.3rem;
  text-transform: capitalize;
}

.jobp-modal-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f1f5f9;
  border: none;
  color: #64748b;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jobp-modal-close:hover {
  background: #ef4444;
  color: white;
  transform: rotate(90deg);
}

.jobp-modal-body {
  padding: 2rem;
}

.jobp-modal-section {
  margin-bottom: 2rem;
}

.jobp-modal-section h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: capitalize;
}

.jobp-modal-section h3 i {
  color: #4f46e5;
}

.jobp-modal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 1rem;
}

.jobp-modal-item {
  display: flex;
  flex-direction: column;
}

.jobp-modal-item-label {
  font-size: 0.8rem;
  color: #64748b;
  margin-bottom: 0.2rem;
}

.jobp-modal-item-value {
  font-weight: 600;
  color: #0f172a;
  text-transform: capitalize;
}

.jobp-modal-description {
  color: #475569;
  line-height: 1.6;
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 1rem;
}

.jobp-modal-requirements {
  list-style: none;
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 1rem;
}

.jobp-modal-requirements li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  color: #475569;
}

.jobp-modal-requirements li i {
  color: #10b981;
  font-size: 0.9rem;
}

.jobp-modal-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  border-radius: 100px;
  font-weight: 600;
  margin: 1rem 0;
  font-size: 1rem;
}

.jobp-modal-footer {
  padding: 2rem;
  border-top: 1px solid #f1f5f9;
  display: flex;
  gap: 1rem;
}

.jobp-apply-btn {
  flex: 1;
  background: #4f46e5;
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.jobp-apply-btn:hover:not(:disabled) {
  background: #4338ca;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(79, 70, 229, 0.3);
}

.jobp-apply-btn:disabled {
  background: #cbd5e1;
  cursor: not-allowed;
}

.jobp-save-modal-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: white;
  color: #64748b;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s;
}

.jobp-save-modal-btn:hover {
  background: #fee2e2;
  color: #ef4444;
  border-color: #fee2e2;
}

/* Pagination */
.jobp-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.jobp-page-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: white;
  color: #334155;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jobp-page-btn:hover:not(:disabled) {
  background: #4f46e5;
  color: white;
  border-color: #4f46e5;
}

.jobp-page-btn.active {
  background: #4f46e5;
  color: white;
  border-color: #4f46e5;
}

.jobp-page-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.jobp-page-dots {
  color: #94a3b8;
  margin: 0 0.5rem;
}

/* Active Filters */
.jobp-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}

.jobp-filter-tag {
  background: #eef2ff;
  color: #4f46e5;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.jobp-filter-tag i {
  cursor: pointer;
}

.jobp-filter-tag i:hover {
  color: #ef4444;
}

.jobp-clear-filters {
  color: #64748b;
  background: transparent;
  border: 1px solid #e2e8f0;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s;
}

.jobp-clear-filters:hover {
  background: #fee2e2;
  color: #ef4444;
  border-color: #fee2e2;
}

/* Responsive */
@media (max-width: 768px) {
  .jobp-page {
    padding: 100px 0 60px;
  }

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

  .jobp-search-box {
    flex-direction: column;
    background: transparent;
    border: none;
    box-shadow: none;
    gap: 1rem;
  }

  .jobp-search-box i {
    display: none;
  }

  .jobp-search-input {
    width: 100%;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 100px;
    padding: 1rem 1.5rem;
  }

  .jobp-filter-row {
    flex-direction: column;
  }

  .jobp-filter-select {
    width: 100%;
  }

  .jobp-modal-grid {
    grid-template-columns: 1fr;
  }

  .jobp-modal-footer {
    flex-direction: column;
  }

  .jobp-save-modal-btn {
    width: 100%;
    border-radius: 100px;
  }
}



/* Apply Page Specific Styles */

/* Apply Page Container */
.apply-page {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  min-height: 100vh;
}

.apply-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 10px;
}

/* Progress Bar */
.apply-progress {
  margin-bottom: 3rem;
}

.apply-progress-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.apply-progress-steps::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: #e2e8f0;
  transform: translateY(-50%);
  z-index: 1;
}

.apply-progress-step {
  position: relative;
  z-index: 2;
  background: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #64748b;
  border: 2px solid #e2e8f0;
  transition: all 0.3s;
}

.apply-progress-step.active {
  background: #4f46e5;
  border-color: #4f46e5;
  color: white;
}

.apply-progress-step.completed {
  background: #10b981;
  border-color: #10b981;
  color: white;
}

.apply-progress-label {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: #64748b;
  white-space: nowrap;
}

/* Main Apply Card */
.apply-card {
  background: white;
  border-radius: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  border: 1px solid #f1f5f9;
}

/* Card Header */
.apply-card-header {
  padding: 2rem;
  background: linear-gradient(135deg, #f8fafc, #ffffff);
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.apply-job-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #eef2ff, #f5f3ff);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #4f46e5;
}

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

.apply-job-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.3rem;
  text-transform: capitalize;
}

.apply-job-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

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

.apply-job-meta-item i {
  color: #4f46e5;
}

.apply-job-status {
  padding: 0.5rem 1.5rem;
  background: #d1fae5;
  color: #10b981;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Card Body */
.apply-card-body {
  padding: 2rem;
}

/* Form Sections */
.apply-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #f1f5f9;
}

.apply-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.apply-section-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.apply-section-title i {
  color: #4f46e5;
}

/* Form Grid - Properly aligned */
.apply-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.apply-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.apply-form-group.full-width {
  grid-column: span 2;
}

.apply-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.apply-label i {
  color: #4f46e5;
  width: 18px;
}

.apply-required {
  color: #ef4444;
  margin-left: 0.2rem;
}

.apply-input,
.apply-select,
.apply-textarea {
  width: 100%;
  padding: 0.8rem 1.2rem;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-size: 0.95rem;
  transition: all 0.3s;
  background: white;
  font-family: inherit;
}

.apply-input:focus,
.apply-select:focus,
.apply-textarea:focus {
  outline: none;
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.apply-input.error,
.apply-select.error,
.apply-textarea.error {
  border-color: #ef4444;
}

.apply-textarea {
  resize: vertical;
  min-height: 100px;
}

/* File Upload Area */
.apply-upload-area {
  border: 2px dashed #e2e8f0;
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
  background: #f8fafc;
}

.apply-upload-area:hover,
.apply-upload-area.dragover {
  border-color: #4f46e5;
  background: #eef2ff;
}

.apply-upload-icon {
  font-size: 3rem;
  color: #4f46e5;
  margin-bottom: 1rem;
}

.apply-upload-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.apply-upload-hint {
  color: #64748b;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.apply-upload-formats {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.apply-format-badge {
  padding: 0.3rem 1rem;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 100px;
  font-size: 0.8rem;
  color: #64748b;
}

/* File List */
.apply-file-list {
  margin-top: 1rem;
}

.apply-file-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 12px;
  margin-bottom: 0.5rem;
  border: 1px solid #e2e8f0;
}

.apply-file-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.apply-file-icon.pdf {
  background: #fee2e2;
  color: #ef4444;
}

.apply-file-icon.image {
  background: #dbeafe;
  color: #3b82f6;
}

.apply-file-icon.doc {
  background: #e0f2fe;
  color: #0284c7;
}

.apply-file-info {
  flex: 1;
}

.apply-file-name {
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.2rem;
}

.apply-file-size {
  font-size: 0.8rem;
  color: #64748b;
}

.apply-file-remove {
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.3s;
  padding: 0.5rem;
}

.apply-file-remove:hover {
  color: #ef4444;
}

/* CV Preview */
.apply-cv-preview {
  margin-top: 1rem;
  background: #f8fafc;
  border-radius: 1rem;
  padding: 1rem;
  border: 1px solid #e2e8f0;
}

.apply-cv-preview h4 {
  margin-bottom: 1rem;
  color: #334155;
  font-size: 0.95rem;
}

.apply-cv-preview img {
  max-width: 100%;
  max-height: 300px;
  border-radius: 0.5rem;
  margin-top: 1rem;
  border: 1px solid #e2e8f0;
}

/* Radio & Checkbox Styles */
.apply-radio-group {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 0.5rem 0;
}

.apply-radio-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  color: #334155;
  font-size: 0.95rem;
}

.apply-radio-label input[type="radio"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #4f46e5;
  margin: 0;
}

/* Terms Checkbox */
.apply-terms {
  margin: 2rem 0;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 12px;
}

.apply-terms-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  color: #334155;
  font-size: 0.95rem;
}

.apply-terms-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #4f46e5;
  margin: 0;
}

.apply-terms-link {
  color: #4f46e5;
  text-decoration: none;
  font-weight: 500;
}

.apply-terms-link:hover {
  text-decoration: underline;
}

/* Form Actions */
.apply-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #f1f5f9;
}

.apply-back-btn {
  background: transparent;
  border: 1px solid #e2e8f0;
  color: #334155;
  padding: 0.8rem 2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.apply-back-btn:hover {
  background: #f1f5f9;
}

.apply-submit-btn {
  background: #4f46e5;
  color: white;
  border: none;
  padding: 1rem 3rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.apply-submit-btn:hover {
  background: #4338ca;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(79, 70, 229, 0.3);
}

.apply-submit-btn i {
  transition: transform 0.3s;
}

.apply-submit-btn:hover i {
  transform: translateX(5px);
}

/* Helper Text */
.apply-helper-text {
  font-size: 0.8rem;
  color: #64748b;
  margin-top: 0.3rem;
}

/* Responsive */
@media (max-width: 768px) {
  .apply-page {
    padding: 100px 0 60px;
  }

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

  .apply-form-group.full-width {
    grid-column: span 1;
  }

  .apply-card-header {
    flex-direction: column;
    text-align: center;
  }

  .apply-job-meta {
    justify-content: center;
  }

  .apply-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .apply-back-btn,
  .apply-submit-btn {
    width: 100%;
    justify-content: center;
  }

  .apply-radio-group {
    gap: 1rem;
    flex-direction: column;
  }
}


/* About Us Page Specific Styles - abt prefix */

/* About Page Container */
.abt-page {
  padding: 120px 0 80px;
  background: #ffffff;
  min-height: 100vh;
}

.abt-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero Section */
.abt-hero {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
}

.abt-hero-badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4f46e5;
  background: #eef2ff;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.abt-hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin-bottom: 1.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.abt-hero-gradient {
  background: linear-gradient(135deg, #4f46e5, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.abt-hero-text {
  max-width: 700px;
  margin: 0 auto;
  color: #475569;
  font-size: 1.2rem;
  line-height: 1.6;
}

/* Hero Image */
.abt-hero-image {
  margin-top: 3rem;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 30px 40px -20px rgba(0, 0, 0, 0.2);
  position: relative;
  height: 400px;
}

.abt-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.abt-hero-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent);
  padding: 3rem 2rem;
  color: white;
}

.abt-hero-image-overlay p {
  font-size: 1.2rem;
  max-width: 600px;
  font-style: italic;
}

/* Stats Section */
.abt-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin: 5rem 0;
  padding: 3rem;
  background: linear-gradient(135deg, #f8fafc, #ffffff);
  border-radius: 2rem;
  border: 1px solid #f1f5f9;
}

.abt-stat-item {
  text-align: center;
  padding: 1rem;
}

.abt-stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: #4f46e5;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.abt-stat-label {
  font-size: 1rem;
  color: #64748b;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.abt-stat-desc {
  font-size: 0.9rem;
  color: #94a3b8;
  margin-top: 0.5rem;
}

/* Story Section */
.abt-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin: 5rem 0;
  padding: 3rem 0;
}

.abt-story-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.abt-story-content p {
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.abt-story-highlight {
  background: #eef2ff;
  padding: 1.5rem;
  border-radius: 1.5rem;
  margin-top: 2rem;
  border-left: 4px solid #4f46e5;
}

.abt-story-highlight p {
  margin-bottom: 0;
  font-style: italic;
  color: #1e293b;
  font-weight: 500;
}

.abt-story-image {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 30px 40px -20px rgba(0, 0, 0, 0.2);
}

.abt-story-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s;
}

.abt-story-image:hover img {
  transform: scale(1.05);
}

.abt-story-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  padding: 2rem 1.5rem 1.5rem;
  font-size: 0.9rem;
}

/* Mission & Vision */
.abt-mission-vision {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 5rem 0;
}

.abt-card {
  background: #f8fafc;
  border-radius: 2rem;
  padding: 3rem;
  border: 1px solid #f1f5f9;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.abt-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 40px -20px rgba(79, 70, 229, 0.2);
  border-color: #e0e7ff;
}

.abt-card-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  opacity: 0.1;
  z-index: 0;
}

.abt-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.abt-card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #eef2ff, #f5f3ff);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.abt-card-icon i {
  font-size: 2rem;
  color: #4f46e5;
}

.abt-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.abt-card p {
  color: #475569;
  line-height: 1.8;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

/* Values Section */
.abt-values {
  margin: 5rem 0;
  text-align: center;
}

.abt-values-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.abt-values-subtitle {
  color: #64748b;
  font-size: 1.2rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.abt-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.abt-value-item {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid #f1f5f9;
  transition: all 0.3s;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.abt-value-item:hover {
  transform: translateY(-5px);
  border-color: #e0e7ff;
  box-shadow: 0 20px 30px -10px rgba(79, 70, 229, 0.1);
}

.abt-value-image {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #eef2ff;
}

.abt-value-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.abt-value-item h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.abt-value-item p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Journey Section */
.abt-journey {
  margin: 5rem 0;
  padding: 4rem;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  border-radius: 2rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.abt-journey-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
  z-index: 0;
}

.abt-journey-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.abt-journey-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.abt-journey-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.abt-journey-content p {
  color: #cbd5e1;
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.abt-journey-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 3rem;
}

.abt-journey-stat {
  text-align: center;
}

.abt-journey-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #a78bfa;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.abt-journey-stat-label {
  color: #94a3b8;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Office Locations */
.abt-locations {
  margin: 5rem 0;
}

.abt-locations h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  margin-bottom: 3rem;
}

.abt-locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.abt-location-card {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.1);
  border: 1px solid #f1f5f9;
  transition: all 0.3s;
}

.abt-location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 40px -15px rgba(79, 70, 229, 0.2);
}

.abt-location-image {
  height: 200px;
  overflow: hidden;
}

.abt-location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.abt-location-card:hover .abt-location-image img {
  transform: scale(1.1);
}

.abt-location-info {
  padding: 1.5rem;
  background: white;
}

.abt-location-info h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.abt-location-info p {
  color: #64748b;
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.abt-location-info i {
  color: #4f46e5;
  width: 20px;
}

/* CTA Section */
.abt-cta {
  margin: 5rem 0;
  padding: 4rem;
  background: linear-gradient(135deg, #f8fafc, #ffffff);
  border-radius: 2rem;
  border: 1px solid #f1f5f9;
  text-align: center;
}

.abt-cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.abt-cta p {
  color: #64748b;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.abt-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.abt-cta-btn {
  padding: 1rem 2.5rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  text-decoration: none;
}

.abt-cta-btn-primary {
  background: #4f46e5;
  color: white;
}

.abt-cta-btn-primary:hover {
  background: #4338ca;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(79, 70, 229, 0.3);
}

.abt-cta-btn-secondary {
  background: white;
  color: #0f172a;
  border: 1px solid #e2e8f0;
}

.abt-cta-btn-secondary:hover {
  background: #f8fafc;
  transform: translateY(-2px);
  border-color: #4f46e5;
}

/* Responsive */
@media (max-width: 1024px) {
  .abt-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .abt-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .abt-locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .abt-page {
    padding: 100px 0 60px;
  }

  .abt-story {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .abt-mission-vision {
    grid-template-columns: 1fr;
  }

  .abt-values-grid {
    grid-template-columns: 1fr;
  }

  .abt-locations-grid {
    grid-template-columns: 1fr;
  }

  .abt-stats {
    grid-template-columns: 1fr;
    padding: 2rem;
  }

  .abt-journey-stats {
    flex-direction: column;
    gap: 2rem;
  }

  .abt-cta {
    padding: 2rem;
  }

  .abt-cta-buttons {
    flex-direction: column;
  }

  .abt-hero-image {
    height: 300px;
  }
}




.jobp-apply-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #4f46e5;
  color: white;
  text-decoration: none;
  padding: 0.75rem 2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  width: auto;
  min-width: 200px;
}

.jobp-apply-link:hover {
  background: #6366f1;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(79, 70, 229, 0.3);
}

.jobp-apply-link:hover i {
  transform: translateX(5px);
}

.jobp-apply-link i {
  transition: transform 0.3s ease;
}




/* Privacy Policy Page Specific Styles - prv prefix */

/* Privacy Page Container */
.prv-page {
  padding: 120px 0 80px;
  background: #ffffff;
  min-height: 100vh;
}

.prv-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header */
.prv-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.prv-badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4f46e5;
  background: #eef2ff;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.prv-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin-bottom: 1rem;
}

.prv-gradient {
  background: linear-gradient(135deg, #4f46e5, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.prv-last-updated {
  color: #64748b;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.prv-last-updated i {
  color: #4f46e5;
}

/* Intro Card */
.prv-intro-card {
  background: linear-gradient(135deg, #f8fafc, #ffffff);
  border-radius: 2rem;
  padding: 2.5rem;
  margin-bottom: 3rem;
  border: 1px solid #f1f5f9;
  position: relative;
  overflow: hidden;
}

.prv-intro-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.prv-intro-icon {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.prv-intro-icon i {
  font-size: 2.5rem;
  color: #4f46e5;
}

.prv-intro-icon span {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
}

.prv-intro-text {
  color: #475569;
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.prv-highlight-box {
  background: #eef2ff;
  border-radius: 1rem;
  padding: 1.5rem;
  border-left: 4px solid #4f46e5;
}

.prv-highlight-box p {
  color: #1e293b;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.prv-highlight-box p:last-child {
  margin-bottom: 0;
}

.prv-highlight-box i {
  color: #4f46e5;
  margin-right: 0.5rem;
}

/* Table of Contents */
.prv-toc {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  margin-bottom: 3rem;
  border: 1px solid #f1f5f9;
}

.prv-toc h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.prv-toc h3 i {
  color: #4f46e5;
}

.prv-toc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.prv-toc-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #334155;
  text-decoration: none;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s;
}

.prv-toc-item:hover {
  background: #f8fafc;
  color: #4f46e5;
  transform: translateX(5px);
}

.prv-toc-item i {
  color: #4f46e5;
  font-size: 0.8rem;
}

/* Policy Sections */
.prv-section {
  margin-bottom: 3rem;
  scroll-margin-top: 100px;
}

.prv-section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #f1f5f9;
}

.prv-section-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #4f46e5, #818cf8);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
}

.prv-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0f172a;
}

.prv-section-content {
  padding-left: 3.5rem;
}

.prv-subsection {
  margin-bottom: 2rem;
}

.prv-subsection h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.prv-subsection h4 i {
  color: #4f46e5;
}

.prv-subsection p {
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* Data Practice Cards */
.prv-practice-card {
  background: #f8fafc;
  border-radius: 1.5rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid #f1f5f9;
  transition: all 0.3s;
}

.prv-practice-card:hover {
  border-color: #e0e7ff;
  box-shadow: 0 10px 20px -10px rgba(79, 70, 229, 0.1);
}

.prv-practice-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.prv-practice-icon {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #4f46e5;
  border: 1px solid #e2e8f0;
}

.prv-practice-header h5 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0f172a;
}

.prv-practice-list {
  list-style: none;
  padding: 0;
}

.prv-practice-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #475569;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.prv-practice-list li i {
  color: #10b981;
  width: 18px;
}

/* Email Process Explanation */
.prv-email-process {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border: 1px solid #e2e8f0;
}

.prv-email-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 0.75rem;
}

.prv-email-step-number {
  width: 30px;
  height: 30px;
  background: #4f46e5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
}

.prv-email-step-text {
  flex: 1;
  color: #334155;
}

.prv-email-step-text strong {
  color: #0f172a;
}

/* Important Notice */
.prv-notice {
  background: #fef3c7;
  border-radius: 1rem;
  padding: 1.5rem;
  margin: 2rem 0;
  border-left: 4px solid #f59e0b;
}

.prv-notice h4 {
  color: #92400e;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.prv-notice p {
  color: #78350f;
}

/* List Styles */
.prv-list {
  list-style: none;
  padding: 0;
}

.prv-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #475569;
  margin-bottom: 0.8rem;
  padding-left: 0;
}

.prv-list li i {
  color: #4f46e5;
  width: 18px;
}

.prv-list-bullet {
  color: #4f46e5;
  font-weight: 700;
  margin-right: 0.5rem;
}

/* Footer */
.prv-footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid #f1f5f9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.prv-footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.prv-footer-links a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.3s;
}

.prv-footer-links a:hover {
  color: #4f46e5;
}

.prv-footer-copyright {
  color: #94a3b8;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .prv-page {
    padding: 100px 0 60px;
  }

  .prv-section-content {
    padding-left: 0;
  }

  .prv-toc-grid {
    grid-template-columns: 1fr;
  }

  .prv-footer {
    flex-direction: column;
    text-align: center;
  }

  .prv-footer-links {
    justify-content: center;
  }

  .prv-section-header {
    flex-wrap: wrap;
  }

  .prv-section-title {
    font-size: 1.5rem;
  }
}







/* Terms of Use Page Specific Styles - trm prefix */

/* Terms Page Container */
.trm-page {
  padding: 120px 0 80px;
  background: #ffffff;
  min-height: 100vh;
}

.trm-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header */
.trm-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.trm-badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4f46e5;
  background: #eef2ff;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.trm-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin-bottom: 1rem;
}

.trm-gradient {
  background: linear-gradient(135deg, #4f46e5, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.trm-effective-date {
  color: #64748b;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.trm-effective-date i {
  color: #4f46e5;
}

/* Intro Card */
.trm-intro-card {
  background: linear-gradient(135deg, #f8fafc, #ffffff);
  border-radius: 2rem;
  padding: 2.5rem;
  margin-bottom: 3rem;
  border: 1px solid #f1f5f9;
  position: relative;
  overflow: hidden;
}

.trm-intro-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.trm-intro-icon {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.trm-intro-icon i {
  font-size: 2.5rem;
  color: #4f46e5;
}

.trm-intro-icon span {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
}

.trm-intro-text {
  color: #475569;
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.trm-acceptance-box {
  background: #eef2ff;
  border-radius: 1rem;
  padding: 1.5rem;
  border-left: 4px solid #4f46e5;
}

.trm-acceptance-box p {
  color: #1e293b;
  font-weight: 500;
  margin-bottom: 0;
}

.trm-acceptance-box i {
  color: #4f46e5;
  margin-right: 0.5rem;
}

/* Table of Contents */
.trm-toc {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  margin-bottom: 3rem;
  border: 1px solid #f1f5f9;
}

.trm-toc h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trm-toc h3 i {
  color: #4f46e5;
}

.trm-toc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.trm-toc-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #334155;
  text-decoration: none;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s;
}

.trm-toc-item:hover {
  background: #f8fafc;
  color: #4f46e5;
  transform: translateX(5px);
}

.trm-toc-item i {
  color: #4f46e5;
  font-size: 0.8rem;
}

/* Terms Sections */
.trm-section {
  margin-bottom: 3rem;
  scroll-margin-top: 100px;
}

.trm-section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #f1f5f9;
}

.trm-section-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #4f46e5, #818cf8);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
}

.trm-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0f172a;
}

.trm-section-content {
  padding-left: 3.5rem;
}

.trm-subsection {
  margin-bottom: 2rem;
}

.trm-subsection h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trm-subsection h4 i {
  color: #4f46e5;
}

.trm-subsection p {
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* Terms Cards */
.trm-card {
  background: #f8fafc;
  border-radius: 1.5rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid #f1f5f9;
  transition: all 0.3s;
}

.trm-card:hover {
  border-color: #e0e7ff;
  box-shadow: 0 10px 20px -10px rgba(79, 70, 229, 0.1);
}

.trm-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.trm-card-icon {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #4f46e5;
  border: 1px solid #e2e8f0;
}

.trm-card-header h5 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0f172a;
}

.trm-list {
  list-style: none;
  padding: 0;
}

.trm-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #475569;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.trm-list li i {
  color: #4f46e5;
  width: 18px;
}

/* Notice Box */
.trm-notice {
  background: #fef3c7;
  border-radius: 1rem;
  padding: 1.5rem;
  margin: 2rem 0;
  border-left: 4px solid #f59e0b;
}

.trm-notice h4 {
  color: #92400e;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trm-notice p {
  color: #78350f;
}

.trm-notice i {
  color: #f59e0b;
}

/* Info Box */
.trm-info-box {
  background: #e0f2fe;
  border-radius: 1rem;
  padding: 1.5rem;
  margin: 2rem 0;
  border-left: 4px solid #0284c7;
}

.trm-info-box h4 {
  color: #075985;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trm-info-box p {
  color: #0c4a6e;
}

.trm-info-box i {
  color: #0284c7;
}

/* Warning Box */
.trm-warning-box {
  background: #fee2e2;
  border-radius: 1rem;
  padding: 1.5rem;
  margin: 2rem 0;
  border-left: 4px solid #ef4444;
}

.trm-warning-box h4 {
  color: #991b1b;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trm-warning-box p {
  color: #7f1d1d;
}

.trm-warning-box i {
  color: #ef4444;
}

/* Dos and Donts */
.trm-dos-donts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.trm-dos {
  background: #d1fae5;
  border-radius: 1rem;
  padding: 1.5rem;
}

.trm-dos h5 {
  color: #065f46;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trm-dos ul {
  list-style: none;
  padding: 0;
}

.trm-dos li {
  color: #065f46;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trm-dos li i {
  color: #10b981;
}

.trm-donts {
  background: #fee2e2;
  border-radius: 1rem;
  padding: 1.5rem;
}

.trm-donts h5 {
  color: #991b1b;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trm-donts ul {
  list-style: none;
  padding: 0;
}

.trm-donts li {
  color: #991b1b;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trm-donts li i {
  color: #ef4444;
}

/* Footer */
.trm-footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid #f1f5f9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.trm-footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.trm-footer-links a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.3s;
}

.trm-footer-links a:hover {
  color: #4f46e5;
}

.trm-footer-copyright {
  color: #94a3b8;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .trm-page {
    padding: 100px 0 60px;
  }

  .trm-section-content {
    padding-left: 0;
  }

  .trm-toc-grid {
    grid-template-columns: 1fr;
  }

  .trm-footer {
    flex-direction: column;
    text-align: center;
  }

  .trm-footer-links {
    justify-content: center;
  }

  .trm-section-header {
    flex-wrap: wrap;
  }

  .trm-section-title {
    font-size: 1.5rem;
  }

  .trm-dos-donts {
    grid-template-columns: 1fr;
  }
}



    /* Locations Page Specific Styles - Matching your existing color scheme */
    .loc-page {
      padding: 120px 0 80px;
      background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
      min-height: 100vh;
    }

    .loc-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    /* Header Styles */
    .loc-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .loc-badge {
      display: inline-block;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #4f46e5;
      background: #eef2ff;
      padding: 0.5rem 1rem;
      border-radius: 100px;
      margin-bottom: 1rem;
    }

    .loc-title {
      font-size: clamp(2.5rem, 5vw, 3.5rem);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -0.02em;
      color: #0f172a;
      margin-bottom: 1rem;
    }

    .loc-gradient {
      background: linear-gradient(135deg, #4f46e5, #a78bfa);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .loc-subtitle {
      max-width: 700px;
      margin: 0 auto;
      color: #64748b;
      font-size: 1.1rem;
      line-height: 1.6;
    }

    /* Stats Bar */
    .loc-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
      max-width: 800px;
      margin: 0 auto 4rem;
      background: white;
      padding: 2rem;
      border-radius: 100px;
      box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
      border: 1px solid #f1f5f9;
    }

    .loc-stat-item {
      text-align: center;
    }

    .loc-stat-number {
      display: block;
      font-size: 2rem;
      font-weight: 700;
      color: #4f46e5;
      margin-bottom: 0.3rem;
    }

    .loc-stat-label {
      color: #64748b;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    /* Locations Grid */
    .loc-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
      gap: 2rem;
      margin-bottom: 4rem;
    }

    .loc-card {
      background: white;
      border-radius: 1.5rem;
      overflow: hidden;
      box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
      border: 1px solid #f1f5f9;
      transition: all 0.3s;
      position: relative;
    }

    .loc-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 35px -10px rgba(79, 70, 229, 0.15);
      border-color: #e0e7ff;
    }

    .loc-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #4f46e5, #a78bfa);
      opacity: 0;
      transition: opacity 0.3s;
      z-index: 2;
    }

    .loc-card:hover::before {
      opacity: 1;
    }

    .loc-card-image {
      height: 180px;
      position: relative;
      background-size: cover;
      background-position: center;
    }

    .loc-card-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(to bottom, transparent 40%, rgba(15, 23, 42, 0.8));
    }

    .loc-card-flag {
      position: absolute;
      bottom: -25px;
      right: 20px;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      overflow: hidden;
      border: 4px solid white;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      background: white;
      z-index: 3;
    }

    .loc-card-flag img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }


    /* Country-specific background images - using Unsplash */
    .loc-ireland {
      background-image: url('../pics/ire.avif');
    }

    .loc-luxembourg {
      background-image: url('../pics/lux.avif');
    }

    .loc-canada {
      background-image: url('../pics/can.avif');
    }

    .loc-australia {
      background-image: url('../pics/aus.avif');
    }

    .loc-japan {
      background-image: url('../pics/jap.avif');
    }

    .loc-italy {
      background-image: url('../pics/ita.avif');
    }

    .loc-newzealand {
      background-image: url('../pics/nzd.avif');
    }

    .loc-germany {
      background-image: url('../pics/ger.avif');
    }

    .loc-uk {
      background-image: url('../pics/uk.avif');
    }

    .loc-belgium {
      background-image: url('../pics/bel.avif');
    }

    .loc-card-content {
      padding: 2rem 1.5rem 1.5rem;
    }

    .loc-card-content h3 {
      font-size: 1.5rem;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 0.5rem;
    }

    .loc-description {
      color: #64748b;
      font-size: 0.95rem;
      line-height: 1.6;
      margin-bottom: 1rem;
    }

    .loc-cities {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-bottom: 1rem;
    }

    .loc-city-tag {
      background: #f1f5f9;
      color: #334155;
      padding: 0.3rem 1rem;
      border-radius: 100px;
      font-size: 0.8rem;
      font-weight: 500;
      transition: all 0.2s;
    }

    .loc-city-tag:hover {
      background: #eef2ff;
      color: #4f46e5;
    }

    .loc-address {
      display: flex;
      align-items: flex-start;
      gap: 0.5rem;
      margin-bottom: 1rem;
      color: #475569;
      font-size: 0.9rem;
      line-height: 1.5;
      padding: 0.75rem;
      background: #f8fafc;
      border-radius: 12px;
      border: 1px solid #f1f5f9;
    }

    .loc-address i {
      color: #4f46e5;
      font-size: 1rem;
      margin-top: 0.2rem;
    }

    .loc-card-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 1rem;
      padding-top: 1rem;
      border-top: 1px solid #f1f5f9;
    }

    .loc-contact {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: #4f46e5;
      font-size: 0.9rem;
      font-weight: 500;
    }

    .loc-contact i {
      font-size: 0.9rem;
    }

    .loc-view-btn {
      background: transparent;
      border: 1px solid #e2e8f0;
      color: #334155;
      padding: 0.5rem 1.2rem;
      border-radius: 100px;
      font-size: 0.9rem;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.3s;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }

    .loc-view-btn:hover {
      background: #4f46e5;
      color: white;
      border-color: #4f46e5;
    }

    .loc-view-btn i {
      transition: transform 0.2s;
    }

    .loc-view-btn:hover i {
      transform: translateX(3px);
    }

    /* Map Section */
    .loc-map-section {
      margin: 4rem 0;
      text-align: center;
    }

    .loc-map-section h2 {
      font-size: 2.5rem;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 2rem;
    }

    .loc-map-container {
      position: relative;
      background: white;
      border-radius: 2rem;
      padding: 2rem;
      box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.1);
      border: 1px solid #f1f5f9;
      overflow: hidden;
    }

    .loc-map-image {
      width: 100%;
      height: auto;
    }

    .loc-map-image img {
      width: 100%;
      height: auto;
      filter: grayscale(20%) opacity(80%);
    }

    .loc-map-pins {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
    }

    .loc-pin {
      position: absolute;
      font-size: 1.5rem;
      filter: drop-shadow(0 4px 6px rgba(79, 70, 229, 0.3));
      animation: pinPulse 2s infinite;
      transform-origin: center;
      pointer-events: auto;
      cursor: pointer;
    }

    @keyframes pinPulse {

      0%,
      100% {
        transform: scale(1);
      }

      50% {
        transform: scale(1.2);
      }
    }

    /* Why Section */
    .loc-why-section {
      margin: 4rem 0;
      text-align: center;
    }

    .loc-why-section h2 {
      font-size: 2.5rem;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 3rem;
    }

    .loc-benefits-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
    }

    .loc-benefit-card {
      background: white;
      padding: 2rem;
      border-radius: 1.5rem;
      box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
      border: 1px solid #f1f5f9;
      transition: all 0.3s;
    }

    .loc-benefit-card:hover {
      transform: translateY(-5px);
      border-color: #e0e7ff;
      box-shadow: 0 20px 30px -10px rgba(79, 70, 229, 0.1);
    }

    .loc-benefit-card i {
      font-size: 2.5rem;
      background: linear-gradient(135deg, #4f46e5, #a78bfa);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 1rem;
    }

    .loc-benefit-card h3 {
      font-size: 1.2rem;
      font-weight: 600;
      color: #0f172a;
      margin-bottom: 0.5rem;
      text-transform: capitalize;
    }

    .loc-benefit-card p {
      color: #64748b;
      font-size: 0.9rem;
      line-height: 1.6;
    }

    /* Regional Offices */
    .loc-regions {
      margin: 4rem 0;
    }

    .loc-regions h2 {
      text-align: center;
      font-size: 2.5rem;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 3rem;
    }

    .loc-regions-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }

    .loc-region-card {
      background: linear-gradient(135deg, #f8fafc, #ffffff);
      padding: 2rem;
      border-radius: 1.5rem;
      border: 1px solid #f1f5f9;
      text-align: center;
      transition: all 0.3s;
    }

    .loc-region-card:hover {
      border-color: #e0e7ff;
      transform: translateY(-5px);
    }

    .loc-region-icon {
      font-size: 3rem;
      margin-bottom: 1rem;
    }

    .loc-region-card h4 {
      font-size: 1.3rem;
      font-weight: 600;
      color: #0f172a;
      margin-bottom: 0.5rem;
    }

    .loc-region-card p {
      color: #64748b;
      font-size: 0.95rem;
      line-height: 1.6;
    }

    /* CTA Section */
    .loc-cta {
      margin: 4rem 0;
      background: linear-gradient(135deg, #0f172a, #1e293b);
      border-radius: 2rem;
      padding: 4rem;
      text-align: center;
      color: white;
    }

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

    .loc-cta-content p {
      color: #cbd5e1;
      font-size: 1.2rem;
      margin-bottom: 2rem;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .loc-cta-buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .loc-cta-btn {
      padding: 1rem 2rem;
      border-radius: 100px;
      font-weight: 600;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      text-decoration: none;
    }

    .loc-cta-btn-primary {
      background: #4f46e5;
      color: white;
      border: none;
    }

    .loc-cta-btn-primary:hover {
      background: #4338ca;
      transform: translateY(-2px);
      box-shadow: 0 10px 20px -5px rgba(79, 70, 229, 0.3);
    }

    .loc-cta-btn-secondary {
      background: rgba(255, 255, 255, 0.1);
      color: white;
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .loc-cta-btn-secondary:hover {
      background: rgba(255, 255, 255, 0.15);
      transform: translateY(-2px);
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .loc-stats {
        grid-template-columns: repeat(2, 1fr);
        border-radius: 2rem;
      }

      .loc-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .loc-regions-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .loc-page {
        padding: 100px 0 60px;
      }

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

      .loc-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
      }

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

      .loc-benefits-grid {
        grid-template-columns: 1fr;
      }

      .loc-regions-grid {
        grid-template-columns: 1fr;
      }

      .loc-cta {
        padding: 2rem;
      }

      .loc-cta h2 {
        font-size: 1.8rem;
      }

      .loc-cta-buttons {
        flex-direction: column;
      }
    }

    @media (max-width: 480px) {
      .loc-container {
        padding: 0 1rem;
      }

      .loc-card-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
      }

      .loc-view-btn {
        width: 100%;
        justify-content: center;
      }
    }

    /* Animation for cards */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .loc-card {
      animation: fadeInUp 0.5s ease-out forwards;
      opacity: 0;
    }

    .loc-card:nth-child(1) {
      animation-delay: 0.1s;
    }

    .loc-card:nth-child(2) {
      animation-delay: 0.2s;
    }

    .loc-card:nth-child(3) {
      animation-delay: 0.3s;
    }

    .loc-card:nth-child(4) {
      animation-delay: 0.4s;
    }

    .loc-card:nth-child(5) {
      animation-delay: 0.5s;
    }

    .loc-card:nth-child(6) {
      animation-delay: 0.6s;
    }

    .loc-card:nth-child(7) {
      animation-delay: 0.7s;
    }

    .loc-card:nth-child(8) {
      animation-delay: 0.8s;
    }

    .loc-card:nth-child(9) {
      animation-delay: 0.9s;
    }

    .loc-card:nth-child(10) {
      animation-delay: 1s;
    }
  