/* Articles System Styles */

/* Button Styles */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(45deg, #56FFBD, #4FC3F7);
  color: #0B0A4E;
  box-shadow: 0 4px 15px rgba(86, 255, 189, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(86, 255, 189, 0.4);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline:hover {
  background: white;
  color: #0B0A4E;
  transform: translateY(-2px);
}

.article-hero {
  background: linear-gradient(135deg, #0B0A4E 0%, #1a1a5e 100%);
  color: white;
  padding: 6rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

.article-category {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

.article-category i {
  font-size: 18px;
  color: #ffd700;
}

.article-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  text-align: left;
}

.article-excerpt {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 10px 0 0 0;
  opacity: 0.9;
  max-width: 600px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #56FFBD;
}

.separator {
  margin: 0 0.5rem;
  color: rgba(255, 255, 255, 0.5);
}

.article-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #56FFBD, #4FC3F7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.article-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.author {
  color: #56FFBD;
  font-weight: 600;
}

.date {
  color: rgba(255, 255, 255, 0.7);
}

.reading-time {
  color: rgba(255, 255, 255, 0.6);
}

/* Article Content */
.article-content {
  padding: 4rem 0;
  background: #f8fafc;
}

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

.article-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.table-of-contents {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.table-of-contents h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #0B0A4E;
  margin-bottom: 1.5rem;
}

.table-of-contents ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.table-of-contents li {
  margin-bottom: 0.75rem;
}

.table-of-contents a {
  color: #334155;
  text-decoration: none;
  font-weight: 500;
  display: block;
  padding: 0.5rem 0;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.table-of-contents a:hover {
  background: #f1f5f9;
  color: #0B0A4E;
}

/* Hide featured images */
.featured-image {
  display: none;
}

.article-body {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #334155;
}

.article-body h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #0B0A4E;
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e2e8f0;
}

.article-body h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0B0A4E;
  margin: 1.5rem 0 0.5rem;
}

.article-body p {
  margin-bottom: 1.5rem;
}

.article-body ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.article-body li {
  margin-bottom: 0.5rem;
}

/* Job Statistics Widget */
.job-stats-widget {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.job-stats-widget h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #0B0A4E;
  margin-bottom: 1.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 8px;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #0B0A4E;
  margin-bottom: 0.5rem;
}

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

.cta-button {
  margin-top: 2rem;
  text-align: center;
}

/* Sidebar */
.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.related-articles {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.related-articles h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #0B0A4E;
  margin-bottom: 1.5rem;
}

.related-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.related-item {
  background: #f8fafc;
  border-radius: 8px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.related-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: #56FFBD;
}

.related-item a {
  display: block;
  text-decoration: none;
  color: #334155;
}

/* Hide related article images */
.related-item img {
  display: none;
}

.related-content {
  display: flex;
  flex-direction: column;
}

.related-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0B0A4E;
  margin-bottom: 0.5rem;
}

.related-content p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 0;
}

.related-category {
  display: inline-block;
  background: #e2e8f0;
  color: #0B0A4E;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-top: 0.5rem;
}

/* Category Navigation */
.category-nav {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.category-nav h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #0B0A4E;
  margin-bottom: 1.5rem;
}

.category-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.category-list li {
  list-style: none;
}

.category-list a {
  display: flex;
  align-items: center;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 8px;
  text-decoration: none;
  color: #334155;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.category-list a:hover {
  background: #f1f5f9;
  color: #0B0A4E;
  transform: translateY(-2px);
}

.category-list a.active {
  background: #56FFBD;
  color: #0B0A4E;
}

.category-list i {
  margin-right: 0.5rem;
  color: #56FFBD;
  font-size: 1.2rem;
}

.count {
  background: #e2e8f0;
  color: #0B0A4E;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-left: 0.5rem;
}

/* Technology Tags */
.tech-tags {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.tech-tags h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #0B0A4E;
  margin-bottom: 1.5rem;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tech-tag {
  background: #f1f5f9;
  color: #0B0A4E;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.tech-tag:hover {
  background: #56FFBD;
  color: white;
  transform: translateY(-2px);
}

/* Newsletter Widget */
.newsletter-widget {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.newsletter-widget h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #0B0A4E;
  margin-bottom: 1rem;
}

.newsletter-widget p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.875rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
}

.newsletter-form button {
  padding: 0.875rem 1.5rem;
  background: linear-gradient(45deg, #56FFBD, #4FC3F7);
  color: #0B0A4E;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(86, 255, 189, 0.3);
}

/* Call to Action */
.article-cta {
  background: linear-gradient(135deg, #0B0A4E 0%, #1a1a5e 100%);
  color: white;
  padding: 6rem 0;
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

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

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

/* Category Page Styles */
.category-hero {
  background: linear-gradient(135deg, #0B0A4E 0%, #1a1a5e 100%);
  color: white;
  padding: 6rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.category-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.category-info i {
  font-size: 3rem;
  color: #56FFBD;
}

.category-info h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
}

.category-info p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
}

.category-stats {
  display: flex;
  gap: 2rem;
}

.stat {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-align: center;
}

/* Category Content */
.category-content {
  padding: 4rem 0;
  background: #f8fafc;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0B0A4E;
  margin-bottom: 2rem;
  text-align: center;
}

/* Categories Grid */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.category-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.category-link {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 2rem;
}

.category-icon {
  width: 80px;
  height: 80px;
  background: #100F53;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.category-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0B0A4E;
  margin-bottom: 0.75rem;
  text-align: center;
}

.category-content p {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1rem;
  text-align: center;
}

.category-stats {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.job-count,
.article-count {
  font-size: 0.9rem;
  color: #0B0A4E;
  font-weight: 600;
  background: #f1f5f9;
  padding: 0.5rem 1rem;
  border-radius: 20px;
}

/* Popular Articles Section */
.popular-articles {
  padding: 4rem 0;
  background: white;
}

.popular-articles .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.popular-articles .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0B0A4E;
  margin-bottom: 2rem;
  text-align: center;
}

.popular-articles .articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.subcategories {
  margin-bottom: 3rem;
}

.subcategories h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #0B0A4E;
  margin-bottom: 2rem;
}

.subcategory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.subcategory-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  text-decoration: none;
  color: #334155;
}

.subcategory-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: #56FFBD;
}

.subcategory-icon {
  width: 60px;
  height: 60px;
  background: #100F53;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 1.5rem;
}

.subcategory-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #0B0A4E;
  margin: 0;
}

.subcategory-card p {
  color: #64748b;
  font-size: 0.9rem;
}

/* Articles Grid */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.article-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  text-decoration: none;
  color: #334155;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: #56FFBD;
}

.article-card a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.article-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #0B0A4E;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

/* Hide article images for programmatic SEO */
.article-image {
  display: none;
}

.article-content {
  padding: 1.5rem;
}

.article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.category-tag {
  background: #e2e8f0;
  color: #0B0A4E;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
}

.date {
  color: #64748b;
  font-size: 0.9rem;
}

.reading-time {
  color: #94a3b8;
  font-size: 0.8rem;
}

.article-excerpt {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  background: #f1f5f9;
  color: #0B0A4E;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Popular Technologies */
.popular-tech {
  background: white;
  border-radius: 12px;
  padding: 3rem 2rem;
  margin-bottom: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.popular-tech h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #0B0A4E;
  margin-bottom: 2rem;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.tech-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  text-decoration: none;
  color: #334155;
}

.tech-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: #56FFBD;
}

.tech-icon {
  width: 60px;
  height: 60px;
  background: #100F53;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 1.5rem;
}

.tech-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0B0A4E;
  margin: 0;
}

.tech-card p {
  color: #64748b;
  font-size: 0.9rem;
}

/* Category CTA */
.category-cta {
  background: linear-gradient(135deg, #0B0A4E 0%, #1a1a5e 100%);
  color: white;
  padding: 6rem 0;
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

/* Country Page Styles */

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

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

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

.pagination-link {
  display: flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background: #f1f5f9;
  color: #0B0A4E;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.pagination-link:hover {
  background: #56FFBD;
  color: white;
  transform: translateY(-2px);
}

.pagination-link.prev {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.pagination-link.next {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.pagination-link i {
  margin-right: 0.5rem;
}

.pagination-info {
  font-size: 1rem;
  font-weight: 600;
  color: #0B0A4E;
}

/* Loading Spinner */
.loading-spinner {
  display: flex;
  justify-content: center;
  padding: 2rem;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #e2e8f0;
  border-top: 4px solid #56FFBD;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .article-layout {
    grid-template-columns: 1fr;
  }
  
  .subcategory-grid {
    grid-template-columns: 1fr;
  }
  
  .articles-grid {
    grid-template-columns: 1fr;
  }
  
  .tech-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding: 0 1rem;
  }
  
  .article-content {
    padding: 2rem 1rem;
  }
  
  .article-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .table-of-contents {
    padding: 1.5rem;
  }
  
  .featured-image img {
    height: 150px;
  }
  
  .category-info {
    flex-direction: column;
    text-align: center;
  }
  
  .subcategory-card {
    padding: 1.5rem;
  }
  
  .article-card {
    margin-bottom: 1.5rem;
  }
  
  .article-image {
    height: 150px;
  }
  
  .cta-content {
    padding: 0 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .article-title {
    font-size: 2rem;
  }
  
  .category-info h1 {
    font-size: 2rem;
  }
  
  .subcategory-card {
    padding: 1rem;
  }
  
  .article-card {
    padding: 1rem;
  }
  
  .article-image {
    height: 120px;
  }
}

/* Animations */
.article-card {
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Article element for dynamic loading */
article {
  display: block;
}
/* Count
ry Page Styles */
.country-hero {
  background: linear-gradient(135deg, #0B0A4E 0%, #1a1a5e 100%);
  color: white;
  padding: 6rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.country-info {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.country-flag {
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.country-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.country-info h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.country-info p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.country-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.country-stats .stat-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem 2rem;
  border-radius: 12px;
  min-width: 150px;
}

.country-stats .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #56FFBD;
  margin-bottom: 0.5rem;
}

.country-stats .stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Country Content */
.country-content {
  padding: 4rem 0;
  background: #f8fafc;
}

.quick-nav {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.quick-nav h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #0B0A4E;
  margin-bottom: 1.5rem;
  text-align: center;
}

.nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 12px;
  text-decoration: none;
  color: #334155;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.nav-link:hover {
  background: #100F53;
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(16, 15, 83, 0.2);
}

.nav-link i {
  font-size: 2rem;
  color: #56FFBD;
}

.nav-link:hover i {
  color: white;
}

.content-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.content-section {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.content-section h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #0B0A4E;
  margin-bottom: 1.5rem;
}

.content-card {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.card-icon {
  width: 60px;
  height: 60px;
  background: #100F53;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-icon i {
  font-size: 1.5rem;
  color: white;
}

.card-content h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #0B0A4E;
  margin-bottom: 0.75rem;
}

.card-content p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.card-content ul {
  list-style: none;
  padding: 0;
}

.card-content li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #334155;
}

.card-content li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #56FFBD;
  font-weight: bold;
}

/* Companies Grid */
.companies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.company-card {
  background: #f8fafc;
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.company-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: #56FFBD;
}

.company-logo {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  padding: 1rem;
}

.company-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.company-info h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0B0A4E;
  margin-bottom: 0.5rem;
}

.company-info p {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.company-stats {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.company-stats .job-count,
.company-stats .industry {
  font-size: 0.85rem;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  background: #e2e8f0;
  color: #0B0A4E;
  font-weight: 500;
}

/* Salary Table */
.salary-table {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.table-header {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  background: #100F53;
  color: white;
  font-weight: 600;
  padding: 1rem;
  gap: 1rem;
}

.header-cell {
  padding: 0.5rem;
  text-align: center;
}

.table-row {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  padding: 1rem;
  gap: 1rem;
  border-bottom: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.table-row:hover {
  background: #f8fafc;
}

.table-row:last-child {
  border-bottom: none;
}

.role-cell {
  font-weight: 600;
  color: #0B0A4E;
  padding: 0.5rem;
}

.salary-cell {
  text-align: center;
  color: #334155;
  padding: 0.5rem;
  transition: all 0.3s ease;
}

.salary-note {
  margin-top: 1.5rem;
  padding: 1rem;
  background: #f1f5f9;
  border-radius: 8px;
  border-left: 4px solid #56FFBD;
}

.salary-note p {
  color: #334155;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.salary-note i {
  color: #56FFBD;
}

/* Tips List */
.tips-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tip-card {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.tip-card:hover {
  border-color: #56FFBD;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.tip-number {
  width: 50px;
  height: 50px;
  background: #100F53;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.tip-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0B0A4E;
  margin-bottom: 0.5rem;
}

.tip-content p {
  color: #64748b;
  line-height: 1.6;
}

/* Articles Section */
.articles-section {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.articles-section h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #0B0A4E;
  margin-bottom: 2rem;
  text-align: center;
}

.view-all {
  text-align: center;
  margin-top: 2rem;
}

/* Country CTA */
.country-cta {
  background: linear-gradient(135deg, #0B0A4E 0%, #1a1a5e 100%);
  color: white;
  padding: 6rem 0;
  text-align: center;
}

/* Responsive Design for Country Page */
@media (max-width: 768px) {
  .country-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav-grid {
    grid-template-columns: 1fr;
  }
  
  .content-card {
    flex-direction: column;
  }
  
  .companies-grid {
    grid-template-columns: 1fr;
  }
  
  .table-header,
  .table-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  .header-cell,
  .salary-cell {
    text-align: left;
  }
  
  .header-cell:before,
  .salary-cell:before {
    content: attr(data-label);
    font-weight: 600;
    margin-right: 0.5rem;
  }
}

/* Programmatic Article Styles */

/* Job Stats Banner */
.job-stats-banner {
  background: white;
  border-bottom: 1px solid #e2e8f0;
  padding: 2rem 0;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  align-items: center;
}

.stat-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.stat-icon {
  width: 50px;
  height: 50px;
  background: #100F53;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon i {
  font-size: 1.3rem;
  color: white;
}

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

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0B0A4E;
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: #64748b;
  margin-top: 0.25rem;
}

.stat-box.cta-box {
  background: linear-gradient(135deg, #100F53 0%, #1a1a5e 100%);
  border: none;
  justify-content: center;
}

.stat-box.cta-box .btn {
  margin: 0;
  width: 100%;
}

/* Article Main Content */
.article-main {
  flex: 1;
}

.content-section {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.content-section h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #0B0A4E;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #e2e8f0;
}

.content-section p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 1.5rem;
}

.content-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.content-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: #334155;
  line-height: 1.6;
}

.content-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #56FFBD;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Salary Table */
.salary-table-container {
  margin: 2rem 0;
  overflow-x: auto;
}

.salary-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.salary-table thead {
  background: #100F53;
  color: white;
}

.salary-table th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
}

.salary-table td {
  padding: 1rem;
  border-bottom: 1px solid #e2e8f0;
  color: #334155;
}

.salary-table tbody tr:last-child td {
  border-bottom: none;
}

.salary-table tbody tr:hover {
  background: #f8fafc;
}

/* Companies Showcase */
.companies-showcase {
  margin: 2rem 0;
}

.companies-grid-small {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.company-badge {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  transition: all 0.3s ease;
}

.company-badge:hover {
  border-color: #56FFBD;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.company-name {
  font-weight: 600;
  color: #0B0A4E;
  margin-bottom: 0.5rem;
}

.company-jobs {
  font-size: 0.85rem;
  color: #64748b;
}

.view-all-companies {
  text-align: center;
}

/* Pricing CTA Section */
.pricing-cta-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 12px;
  padding: 3rem;
  margin: 3rem 0;
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #0B0A4E;
  margin-bottom: 0.5rem;
}

.pricing-header h2 i {
  color: #56FFBD;
  margin-right: 0.5rem;
}

.pricing-header p {
  font-size: 1.1rem;
  color: #64748b;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  border: 2px solid #e2e8f0;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
  border-color: #56FFBD;
  box-shadow: 0 8px 25px rgba(86, 255, 189, 0.2);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #100F53;
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.pricing-badge.best {
  background: linear-gradient(45deg, #56FFBD, #4FC3F7);
  color: #0B0A4E;
}

.pricing-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0B0A4E;
  margin: 1rem 0;
  text-align: center;
}

.pricing-price {
  text-align: center;
  margin: 1.5rem 0;
}

.pricing-price .currency {
  font-size: 1.5rem;
  color: #64748b;
  vertical-align: top;
}

.pricing-price .amount {
  font-size: 3rem;
  font-weight: 700;
  color: #0B0A4E;
}

.pricing-price .period {
  font-size: 1rem;
  color: #64748b;
}

.pricing-save {
  text-align: center;
  color: #56FFBD;
  font-weight: 600;
  margin-bottom: 1rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.pricing-features li {
  padding: 0.75rem 0;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pricing-features i {
  color: #56FFBD;
  font-size: 1rem;
}

.pricing-card .btn {
  width: 100%;
  margin-top: 1rem;
}

/* Sidebar Widgets */
.sidebar-widget {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.sidebar-widget h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0B0A4E;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sidebar-widget h3 i {
  color: #56FFBD;
}

/* Stats Widget */
.stats-widget {
  background: linear-gradient(135deg, #100F53 0%, #1a1a5e 100%);
  color: white;
}

.stats-widget h3 {
  color: white;
}

.stats-widget h3 i {
  color: #56FFBD;
}

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

.quick-stat {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.quick-stat .stat-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: #56FFBD;
}

.quick-stat .stat-name {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.25rem;
}

/* Related Categories */
.related-categories {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.category-link-small {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: #f8fafc;
  border-radius: 8px;
  text-decoration: none;
  color: #334155;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.category-link-small:hover {
  background: #100F53;
  color: white;
  border-color: #100F53;
}

.category-link-small i {
  color: #56FFBD;
  font-size: 1.2rem;
}

.category-link-small:hover i {
  color: white;
}

.category-link-small span {
  flex: 1;
  font-weight: 500;
}

.category-link-small .count {
  background: #e2e8f0;
  color: #0B0A4E;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

.category-link-small:hover .count {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

/* CTA Widget */
.cta-widget {
  background: linear-gradient(135deg, #100F53 0%, #1a1a5e 100%);
  color: white;
  text-align: center;
}

.cta-widget h3 {
  color: white;
  justify-content: center;
}

.cta-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.cta-icon i {
  font-size: 1.5rem;
  color: #56FFBD;
}

.cta-widget p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.btn-block {
  display: block;
  width: 100%;
}

/* Related Articles Section */
.related-articles-section {
  padding: 4rem 0;
  background: #f8fafc;
}

/* TOC Active State */
.table-of-contents a.active {
  background: #f1f5f9;
  color: #0B0A4E;
  font-weight: 600;
}

/* Responsive Design for Programmatic Articles */
@media (max-width: 768px) {
  .stats-container {
    grid-template-columns: 1fr;
  }
  
  .content-section {
    padding: 1.5rem;
  }
  
  .pricing-cards {
    grid-template-columns: 1fr;
  }
  
  .companies-grid-small {
    grid-template-columns: 1fr;
  }
  
  .salary-table {
    font-size: 0.85rem;
  }
  
  .salary-table th,
  .salary-table td {
    padding: 0.75rem 0.5rem;
  }
}

/* Sitemap Styles */
.sitemap-section {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.sitemap-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0B0A4E;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #e2e8f0;
}

.sitemap-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 0.75rem;
}

.sitemap-list li {
  margin: 0;
}

.sitemap-list a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: #f8fafc;
  border-radius: 8px;
  text-decoration: none;
  color: #334155;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.sitemap-list a:hover {
  background: #100F53;
  color: white;
  border-color: #100F53;
  transform: translateX(4px);
}

.sitemap-list a i {
  color: #56FFBD;
  font-size: 1rem;
}

.sitemap-list a:hover i {
  color: white;
}

/* Sidebar Pricing Widget */
.pricing-sidebar-widget {
  background: linear-gradient(135deg, #100F53 0%, #1a1a5e 100%);
  color: white;
  border: 2px solid #56FFBD;
}

.pricing-sidebar-widget h3 {
  color: white;
  justify-content: center;
}

.sidebar-pricing {
  text-align: center;
}

.sidebar-price-badge {
  background: linear-gradient(45deg, #56FFBD, #4FC3F7);
  color: #0B0A4E;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}

.sidebar-price {
  margin: 1rem 0;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: #56FFBD;
}

.price-period {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.sidebar-price-desc {
  color: rgba(255, 255, 255, 0.9);
  margin: 1rem 0;
  font-size: 0.95rem;
}

.sidebar-price-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  text-align: left;
}

.sidebar-price-features li {
  padding: 0.5rem 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.sidebar-price-features i {
  color: #56FFBD;
  margin-right: 0.5rem;
}

.sidebar-price-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 100%;
  margin: 0 auto;
}
