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

:root {
  /* Brand Colors */
  --lt-primary: #38bdf8; /* Theme Sky Blue */
  --lt-secondary: #84cc16; /* Theme Leaf Green */
  --lt-accent: #f8f9fa; /* Light grey */
  --lt-text-dark: #1a1a1a;
  --lt-text-gray: #6c757d;
  
  /* Gradients */
  --lt-bg-gradient: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
  --lt-bg-page: #f8fcff;
  
  /* Utilities */
  --lt-radius-sm: 8px;
  --lt-radius-md: 16px;
  --lt-radius-pill: 50px;
  --lt-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  --lt-shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.08);
}

body {
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  color: #475569;
  background-color: var(--lt-bg-page);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
.lt-title {
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.lt-subtitle {
  color: #64748b;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.6;
}

/* Gradient Text Utility */
.lt-gradient-text {
  background: linear-gradient(135deg, #2563eb 0%, #0284c7 50%, #9333ea 100%);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* Hero Badge Pulse Dot */
.lt-pulse-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Hero Section */
.lt-hero {
  background: linear-gradient(135deg, #f0f9ff 0%, #f8fafc 50%, #e0f2fe 100%);
  padding: 85px 0 70px 0;
  position: relative;
  overflow: hidden;
}
.lt-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #2563eb;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.08);
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.lt-hero .lt-title {
  font-size: 3.3rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
  letter-spacing: -0.025em;
  line-height: 1.18;
}
.lt-hero .lt-subtitle {
  margin-bottom: 36px;
  font-size: 1.1rem;
  font-weight: 400;
  color: #475569;
  max-width: 580px;
  line-height: 1.6;
}

/* Floating Hero Cards */
.lt-hero-float-card-1 {
  position: absolute;
  top: 10%;
  left: -20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 12px 18px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
  border: 1px solid #ffffff;
  z-index: 10;
  animation: floatCard1 6s ease-in-out infinite;
}

.lt-hero-float-card-2 {
  position: absolute;
  bottom: 12%;
  right: 10px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 12px 18px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
  border: 1px solid #ffffff;
  z-index: 10;
  animation: floatCard2 7s ease-in-out infinite reverse;
}

@keyframes floatCard1 {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes floatCard2 {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

/* White Search Bar System */
.lt-search-bar,
.lt-job-hero-search {
  background: #ffffff;
  border-radius: 60px;
  padding: 8px 8px 8px 16px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
  display: flex;
  align-items: center;
  border: 1px solid #e2e8f0;
  max-width: 820px;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.lt-search-field-item {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
  padding: 4px 10px;
  gap: 12px;
}

.lt-field-icon-badge {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.lt-icon-blue {
  background: #eff6ff;
  color: #2563eb;
}

.lt-icon-purple {
  background: #f5f3ff;
  color: #9333ea;
}

.lt-search-input,
.lt-search-select {
  width: 100%;
  border: none;
  background: transparent;
  padding: 10px 4px;
  font-size: 0.95rem;
  font-weight: 500;
  outline: none;
  color: #0f172a;
  appearance: none;
  -webkit-appearance: none;
}

.lt-search-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  padding-right: 24px;
}

.lt-search-select option {
  background-color: #ffffff !important;
  color: #0f172a !important;
  padding: 10px 16px !important;
}

.lt-search-divider,
.lt-job-hero-search .divider {
  width: 1px;
  height: 36px;
  background-color: #e2e8f0;
  margin: 0 6px;
  flex-shrink: 0;
}

.lt-search-btn,
.lt-job-hero-search .search-btn {
  background: linear-gradient(135deg, #2563eb 0%, #0284c7 100%);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  padding: 14px 34px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: auto;
  width: auto;
}

.lt-search-btn:hover,
.lt-job-hero-search .search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.45);
}

/* Mobile Responsive Search Card (Seamless Unified Card Design) */
@media (max-width: 767px) {
  .lt-search-bar,
  .lt-job-hero-search {
    flex-direction: column;
    border-radius: 20px;
    padding: 16px 20px 20px 20px;
    background: #ffffff;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
    gap: 0;
    align-items: stretch;
    border: 1px solid #e2e8f0;
  }

  .lt-search-field-item {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #f1f5f9;
    border-radius: 0;
    padding: 12px 0;
    gap: 12px;
  }

  .lt-search-field-item:nth-last-child(2) {
    border-bottom: none;
    padding-bottom: 16px;
  }

  .lt-field-icon-badge {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    font-size: 0.95rem;
  }

  .lt-search-divider,
  .lt-job-hero-search .divider {
    display: none;
  }

  .lt-search-input,
  .lt-search-select {
    padding: 6px 0;
    font-size: 0.95rem;
    font-weight: 500;
  }

  .lt-search-btn,
  .lt-job-hero-search .search-btn {
    width: 100%;
    height: 50px;
    border-radius: 14px;
    padding: 12px 20px;
    font-size: 1rem;
    margin-top: 4px;
    box-shadow: 0 8px 22px rgba(37, 99, 235, 0.35);
  }
}

/* Popular Tags */
.lt-pop-tag {
  background: #fff;
  border: 1px solid #e2e8f0;
  color: #475569;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.lt-pop-tag:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: var(--lt-primary);
  transform: translateY(-1px);
}


/* Stats */
.lt-hero-stats {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.lt-stat-box {
  background: #fff;
  padding: 10px 20px;
  border-radius: var(--lt-radius-md);
  box-shadow: var(--lt-shadow);
  display: flex;
  flex-direction: column;
}
.lt-stat-box strong {
  color: var(--lt-primary);
  font-size: 1.2rem;
}
.lt-stat-box span {
  font-size: 0.85rem;
  color: var(--lt-text-gray);
}
.lt-hero-links a {
  color: var(--lt-primary);
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Section Headings */
.lt-section-title {
  text-align: center;
  margin-bottom: 48px;
}
.lt-section-title span {
  color: #0284c7;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 8px;
}
.lt-section-title h2 {
  font-size: 2.1rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.02em;
}

/* Cards */
.lt-card {
  background: #fff;
  border-radius: var(--lt-radius-md);
  box-shadow: var(--lt-shadow);
  padding: 24px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.03);
}
.lt-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--lt-shadow-hover);
}

/* Category Card */
.lt-category-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.lt-cat-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--lt-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
/* Colorful backgrounds for icons */
.bg-light-blue { background-color: #e3f2fd; color: #1976d2; }
.bg-light-green { background-color: #e8f5e9; color: #388e3c; }
.bg-light-purple { background-color: #f3e5f5; color: #7b1fa2; }
.bg-light-orange { background-color: #fff3e0; color: #f57c00; }
.bg-light-red { background-color: #ffebee; color: #d32f2f; }

.lt-cat-content h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 6px;
}
.lt-cat-badge {
  background-color: #eff6ff;
  color: #2563eb;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: var(--lt-radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Buttons */
.lt-btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: var(--lt-radius-pill);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.lt-btn-primary {
  background-color: var(--lt-primary);
  color: white;
}
.lt-btn-primary:hover {
  background-color: #0052cc;
  color: white;
}
.lt-btn-secondary {
  background-color: var(--lt-secondary);
  color: white;
}
.lt-btn-secondary:hover {
  background-color: #00b060;
  color: white;
}
.lt-btn-outline {
  border: 1px solid var(--lt-primary);
  color: var(--lt-primary);
  background: transparent;
}
.lt-btn-outline:hover {
  background: var(--lt-primary);
  color: white;
}

/* Popular Industries Pills System */
.lt-industry-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.lt-industry-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #0f172a;
  padding: 10px 22px 10px 14px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none !important;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.03);
}

.lt-industry-pill .pill-icon-box {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.lt-industry-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.12);
  border-color: #cbd5e1;
  color: #0f172a;
}

.lt-industry-pill:hover .pill-icon-box {
  transform: scale(1.12);
}

/* Company Card */
.lt-company-card {
  text-align: center;
  padding: 30px 20px;
}
.lt-company-card img {
  max-width: 80px;
  margin-bottom: 15px;
}
.lt-company-card h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 6px;
}
.lt-company-card .location {
  color: #64748b;
  font-size: 0.85rem;
  font-weight: 400;
  margin-bottom: 12px;
}
.lt-company-card .open-jobs {
  color: #0284c7;
  font-weight: 600;
  font-size: 0.85rem;
}

/* CTA Block */
.lt-cta-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  border-radius: var(--lt-radius-pill);
  color: white;
  margin-bottom: 20px;
}
.lt-cta-primary {
  background-color: var(--lt-primary);
}
.lt-cta-secondary {
  background-color: var(--lt-secondary);
}
.lt-cta-content h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 5px;
  color: white;
}
.lt-cta-content p {
  opacity: 0.9;
  margin: 0;
}
.lt-cta-icon {
  font-size: 40px;
  opacity: 0.8;
}

/* How It Works */
.lt-step-card {
  text-align: center;
  padding: 40px 30px;
}
.lt-step-icon {
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--lt-primary);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  margin: 0 auto 24px auto;
}
.lt-step-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.lt-step-card p {
  color: var(--lt-text-gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Header Adjustments */
.lt-header {
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  padding: 15px 0;
}
.lt-header .nav-link {
  color: #475569 !important;
  font-weight: 500 !important;
  font-size: 0.95rem !important;
}
.lt-header .nav-link:hover {
  color: #0284c7 !important;
}

/* Job List Page */
.lt-job-hero {
  background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%);
  padding: 80px 0;
  text-align: center;
}

/* Sidebar Filters */
.lt-filter-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  border: 1px solid #f1f5f9;
}
.lt-filter-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 20px;
}
.lt-checkbox-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
}
.lt-checkbox-item input {
  margin-right: 10px;
  accent-color: var(--lt-primary);
}
.lt-count-pill {
  background: #eef2ff;
  color: #6366f1;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 20px;
}

/* Job Card Modern (Matches Dribbble / LinkedIn Design) */
.lt-job-card-modern {
  background: #ffffff;
  border-radius: 20px;
  padding: 22px 24px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.lt-job-card-modern:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.09);
  border-color: #cbd5e1;
}

/* Card Badge (Top Left) */
.lt-card-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  line-height: 1.2;
}

/* Bookmark Button (Top Right) */
.lt-card-bookmark {
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  color: #94a3b8;
  font-size: 1.1rem;
  padding: 4px 6px;
  border-radius: 6px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.lt-card-bookmark:hover,
.lt-card-bookmark.saved {
  color: #ef4444;
  transform: scale(1.15);
}

/* Category Icon Box */
.lt-card-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-top: 14px;
  margin-bottom: 14px;
}

/* Job Title - Clean, modern typography */
.lt-card-title-link {
  text-decoration: none !important;
  color: inherit;
  display: block;
}

.lt-card-title {
  font-size: 1.1rem;
  font-weight: 600 !important;
  color: #0f172a !important;
  margin-bottom: 4px;
  line-height: 1.35;
  transition: color 0.2s ease;
}

.lt-job-card-modern:hover .lt-card-title {
  color: #2563eb !important;
}

/* Company Name & Verified Check */
.lt-card-company {
  font-size: 0.85rem;
  font-weight: 500;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.lt-card-company .lt-verified-check {
  font-size: 0.85rem;
}

/* Location */
.lt-card-location {
  font-size: 0.825rem;
  color: #64748b;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
}

.lt-card-location i {
  color: #94a3b8;
  font-size: 0.85rem;
}

/* Info Chips Row */
.lt-card-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.lt-card-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 500;
}

/* Bottom Action Row */
.lt-card-action-row {
  margin-top: auto;
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lt-view-details-btn {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  background: #eff6ff;
  color: #2563eb !important;
  text-decoration: none !important;
  transition: all 0.2s ease;
}

.lt-view-details-btn:hover {
  background: #2563eb;
  color: #ffffff !important;
}

.lt-arrow-btn {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  text-decoration: none !important;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.lt-job-card-modern:hover .lt-arrow-btn {
  transform: translateX(3px);
}

/* Job Card Adjustments Legacy */
.lt-job-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  border: 1px solid #f8fafc;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.lt-job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.06);
}

.lt-badge-green { background: #e8f5e9; color: #388e3c; }
.lt-badge-red { background: #ffebee; color: #d32f2f; }
.lt-badge-blue { background: #e3f2fd; color: #1976d2; }
.lt-badge-orange { background: #fff3e0; color: #f57c00; }

@media (max-width: 767px) {
  .lt-hero .lt-title { font-size: 2.2rem; }
  .lt-search-bar { flex-direction: column; border-radius: 12px; }
  .lt-search-input { width: 100%; border-bottom: 1px solid #eee; }
  .lt-search-divider { display: none; }
  .lt-search-btn { width: 100%; border-radius: 12px; }
  .lt-cta-block { flex-direction: column; text-align: center; border-radius: 20px; gap: 20px; }
  .lt-hero-stats { flex-direction: column; align-items: flex-start; }
}

/* Sleek Light Menu Styling for Location & Dropdowns */
select option, datalist option {
  background-color: #ffffff !important;
  color: #0f172a !important;
  padding: 12px 18px !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
}
select option:hover, select option:focus, select option:checked {
  background-color: #eff6ff !important;
  color: #2563eb !important;
}

/* Centered Colorful Load More Button */
.jp-pagination-wrapper {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  width: 100% !important;
  margin-top: 40px !important;
  margin-bottom: 30px !important;
}

.jp-btn-load-more {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 14px 40px !important;
  border-radius: 50px !important;
  background: #ffffff !important;
  border: 2px solid #e0e7ff !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.15) !important;
  transition: all 0.3s ease-in-out !important;
  outline: none !important;
}

.jp-btn-load-more span {
  background: linear-gradient(135deg, #2563eb 0%, #9333ea 50%, #db2777 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  font-weight: 700 !important;
}

.jp-btn-load-more i {
  color: #2563eb !important;
  font-size: 1.15rem !important;
  transition: transform 0.3s ease !important;
}

.jp-btn-load-more:hover {
  transform: translateY(-3px) scale(1.02) !important;
  border-color: #c7d2fe !important;
  box-shadow: 0 12px 30px rgba(147, 51, 234, 0.25) !important;
  background: #ffffff !important;
}

.jp-btn-load-more:hover i {
  transform: rotate(90deg) !important;
  color: #9333ea !important;
}

/* ==========================================================================
   Newsletter Section Responsive Design
   ========================================================================== */
.lt-newsletter-card {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  padding: 48px 40px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  margin-bottom: 70px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.lt-newsletter-glow-1 {
  position: absolute;
  top: -50%;
  left: -10%;
  width: 50%;
  height: 200%;
  background: radial-gradient(circle, rgba(56,189,248,0.12) 0%, rgba(255,255,255,0) 70%);
  transform: rotate(30deg);
  pointer-events: none;
}

.lt-newsletter-glow-2 {
  position: absolute;
  bottom: -50%;
  right: -10%;
  width: 50%;
  height: 200%;
  background: radial-gradient(circle, rgba(99,102,241,0.12) 0%, rgba(255,255,255,0) 70%);
  transform: rotate(-30deg);
  pointer-events: none;
}

.lt-newsletter-title {
  font-weight: 800;
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.lt-newsletter-desc {
  color: #94a3b8;
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 90%;
}

.lt-newsletter-box {
  display: flex;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 6px;
  backdrop-filter: blur(10px);
  transition: border-color 0.3s ease;
  align-items: center;
}

.lt-newsletter-input-group {
  display: flex;
  align-items: center;
  flex: 1;
  padding-left: 16px;
}

.lt-newsletter-icon {
  color: #94a3b8;
  font-size: 1rem;
}

.lt-newsletter-input {
  border: none;
  outline: none;
  background: transparent;
  padding: 12px 16px;
  width: 100%;
  color: #ffffff;
  font-size: 0.95rem;
}

.lt-newsletter-input::placeholder {
  color: #94a3b8;
}

.lt-newsletter-btn {
  background: linear-gradient(135deg, #38bdf8 0%, #0284c7 100%);
  color: #ffffff;
  border: none;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(56, 189, 248, 0.3);
  white-space: nowrap;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lt-newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(56, 189, 248, 0.45);
}

/* Mobile Responsiveness for Newsletter Card */
@media (max-width: 767px) {
  .lt-newsletter-card {
    padding: 32px 20px;
    border-radius: 20px;
    margin-bottom: 40px;
    text-align: center;
  }
  
  .lt-newsletter-title {
    font-size: 1.4rem;
  }

  .lt-newsletter-desc {
    max-width: 100%;
    font-size: 0.9rem;
  }

  .lt-newsletter-box {
    flex-direction: column;
    background: transparent;
    border: none;
    padding: 0;
    backdrop-filter: none;
    gap: 12px;
  }

  .lt-newsletter-input-group {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding-left: 20px;
    height: 52px;
  }

  .lt-newsletter-btn {
    width: 100%;
    height: 52px;
    border-radius: 50px;
    font-size: 1rem;
    padding: 12px 20px;
  }
}

/* Force hide legacy full-screen blocking preloader & unstyled sidebar */
.preloader,
.user-sidebar,
.sidebar-backdrop {
  display: none !important;
}

.page-wrapper.dashboard {
  padding-left: 0 !important;
  margin-left: 0 !important;
  width: 100% !important;
}

.page-wrapper.dashboard .user-dashboard {
  padding-left: 0 !important;
  margin-left: 0 !important;
}

/* ==========================================================================
   Ultra-Premium User Dashboard Design System
   ========================================================================== */
.lt-dashboard-page {
  background-color: #f8fafc;
  min-height: 100vh;
}

.lt-dash-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #0284c7 100%);
  border-radius: 24px !important;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.lt-dash-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 50%;
  height: 200%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
  transform: rotate(-30deg);
  pointer-events: none;
}

.lt-metric-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px 24px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 16px;
}

.lt-metric-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
  border-color: #cbd5e1;
}

.lt-metric-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.lt-metric-icon.blue {
  background: #eff6ff;
  color: #2563eb;
}

.lt-metric-icon.purple {
  background: #f5f3ff;
  color: #9333ea;
}

.lt-metric-icon.pink {
  background: #fef2f2;
  color: #ef4444;
}

.lt-metric-icon.green {
  background: #f0fdf4;
  color: #16a34a;
}

.lt-nav-pills-bar {
  background: #ffffff;
  border-radius: 60px;
  padding: 6px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  border: 1px solid #e2e8f0;
}

.lt-dash-nav-pills {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.lt-dash-nav-pills .nav-item {
  flex: 1 !important;
  text-align: center !important;
  list-style: none !important;
}

.lt-dash-nav-pills .nav-link {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  width: 100% !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  color: #64748b !important;
  padding: 12px 20px !important;
  transition: all 0.3s ease !important;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
}

.lt-dash-nav-pills .nav-link:hover {
  color: #0f172a !important;
  background: #f8fafc !important;
}

.lt-dash-nav-pills .nav-link.active {
  background: linear-gradient(135deg, #2563eb 0%, #0284c7 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35) !important;
}

.lt-content-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.04);
}

.lt-info-row {
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border-radius: 12px;
  transition: background 0.2s ease;
}

.lt-info-row:hover {
  background: #f8fafc;
}

.lt-info-label {
  width: 150px;
  font-weight: 600;
  color: #64748b;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lt-info-val {
  flex: 1;
  font-weight: 600;
  color: #0f172a;
  font-size: 0.95rem;
}

.lt-skill-pill {
  display: inline-flex;
  align-items: center;
  background: #eff6ff;
  color: #2563eb;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid #dbeafe;
  margin: 3px;
  transition: all 0.2s ease;
}

.lt-skill-pill:hover {
  background: #dbeafe;
  transform: translateY(-1px);
}

/* Mobile Dashboard Responsiveness */
@media (max-width: 767px) {
  .lt-nav-pills-bar {
    border-radius: 50px !important;
    padding: 4px !important;
    margin-bottom: 20px !important;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06) !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .lt-dash-nav-pills {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-behavior: smooth !important;
    justify-content: space-between !important;
    gap: 4px !important;
    padding: 2px !important;
    margin: 0 !important;
  }

  .lt-dash-nav-pills::-webkit-scrollbar {
    display: none !important;
  }

  .lt-dash-nav-pills .nav-item {
    flex: 1 0 auto !important;
    width: auto !important;
  }

  .lt-dash-nav-pills .nav-link {
    padding: 8px 12px !important;
    font-size: 0.8rem !important;
    white-space: nowrap !important;
    border-radius: 50px !important;
    width: auto !important;
    gap: 4px !important;
  }

  .lt-dash-hero {
    padding: 24px 16px !important;
    border-radius: 20px !important;
    text-align: center;
  }

  .lt-dash-hero .row {
    flex-direction: column;
    align-items: center !important;
    text-align: center;
  }

  .lt-dash-hero .col-auto,
  .lt-dash-hero .col {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .lt-content-card {
    padding: 20px 16px !important;
    border-radius: 20px !important;
  }

  .lt-content-card form button {
    width: 100% !important;
    border-radius: 14px !important;
    padding: 12px 20px !important;
  }

  .lt-info-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 10px 12px;
  }

  .lt-info-label {
    width: 100%;
    font-size: 0.82rem;
    color: #64748b;
  }

  .lt-info-val {
    width: 100%;
    font-size: 0.95rem;
  }

  .lt-metric-card {
    padding: 14px 16px;
    gap: 12px;
    border-radius: 16px;
  }

  .lt-metric-icon {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
    border-radius: 12px;
  }
}

/* ==========================================================================
   Off-Canvas Slide-over Mobile Navigation Drawer System
   ========================================================================== */
.lt-mobile-offcanvas-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}

.lt-mobile-offcanvas-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.lt-mobile-offcanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 84%;
  max-width: 350px;
  height: 100vh;
  background: #0b1329;
  color: #ffffff;
  z-index: 9999;
  box-shadow: 15px 0 50px rgba(0, 0, 0, 0.5);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  overflow-y: auto;
}

.lt-mobile-offcanvas.is-open {
  transform: translateX(0);
}

.lt-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lt-drawer-close-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.2s ease;
}

.lt-drawer-close-btn:hover {
  background: rgba(239, 68, 68, 0.25);
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.4);
}

.lt-drawer-search-form {
  margin-bottom: 24px;
}

.lt-drawer-search-input {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: #ffffff !important;
  border-radius: 12px 0 0 12px !important;
  padding: 10px 14px !important;
  font-size: 0.9rem !important;
}

.lt-drawer-search-input::placeholder {
  color: #94a3b8 !important;
}

.lt-drawer-search-input:focus {
  border-color: #38bdf8 !important;
  box-shadow: none !important;
}

.lt-drawer-search-btn {
  background: linear-gradient(135deg, #0284c7 0%, #2563eb 100%) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 0 12px 12px 0 !important;
  padding: 10px 16px !important;
}

.lt-drawer-nav {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  flex: 1;
}

.lt-drawer-nav li {
  margin-bottom: 6px;
}

.lt-drawer-nav li a {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border-radius: 14px;
  color: #f1f5f9;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.lt-drawer-nav li a:hover,
.lt-drawer-nav li.active a {
  background: rgba(56, 189, 248, 0.15);
  color: #38bdf8;
}

.lt-drawer-footer {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lt-drawer-social-btn {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.lt-drawer-social-btn:hover {
  background: #38bdf8;
  color: #ffffff;
  transform: translateY(-2px);
}

/* ==========================================================================
   Modal Popup Styles Matching Reference Design
   ========================================================================== */
.blocker {
  background-color: rgba(15, 23, 42, 0.65) !important;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999 !important;
}

#login-modal,
#register-modal {
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  max-width: 460px !important;
  width: 92% !important;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif !important;
}

/* Hide legacy duplicate jquery-modal close buttons */
#login-modal a.close-modal,
#register-modal a.close-modal,
.modal a.close-modal {
  display: none !important;
}

.lt-modal-card {
  background: #ffffff !important;
  border-radius: 20px !important;
  padding: 36px 32px !important;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.2) !important;
  position: relative;
}

.lt-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #f1f5f9;
  border: none;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.2s ease;
  z-index: 10;
}

.lt-modal-close:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.lt-modal-title {
  font-size: 1.6rem !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.25;
  letter-spacing: -0.4px;
}

.lt-modal-input {
  background: #f1f5f9 !important;
  border: 1px solid transparent !important;
  color: #0f172a !important;
  border-radius: 12px !important;
  height: 48px !important;
  padding: 10px 16px !important;
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  transition: all 0.2s ease;
}

.lt-modal-input:focus {
  background: #ffffff !important;
  border-color: #3b82f6 !important;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1) !important;
}

.lt-modal-btn-green {
  background: #22c55e !important;
  color: #ffffff !important;
  border-radius: 12px !important;
  height: 48px !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  border: none !important;
}

.lt-modal-btn-blue {
  background: #1d4ed8 !important;
  color: #ffffff !important;
  border-radius: 12px !important;
  height: 48px !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  border: none !important;
  box-shadow: 0 4px 12px rgba(29, 78, 216, 0.25) !important;
}

.lt-modal-btn-blue:hover {
  background: #1e40af !important;
}

.lt-modal-btn-gmail {
  border: 1px solid #ea580c !important;
  color: #ea580c !important;
  background: #ffffff !important;
  border-radius: 12px !important;
  height: 48px !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
}

.lt-modal-btn-gmail:hover {
  background: #fff7ed !important;
}
