header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  transition: all var(--transition-normal);
  padding: 0 var(--space-4); /* Padding to keep header content inside */
}

/* When the header is scrolled */
header.scrolled {
  background: var(--bg-primary);
  box-shadow: var(--shadow-md);
  height: 70px;
}

/* Logo and container adjustments when header is scrolled */
header.scrolled .logo img {
  height: 35px;
}

header.scrolled .container {
  height: 70px;
}

/* Main container inside header */
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: 1200px; /* Maximum width for larger screens */
  margin: 0 auto; /* Center the container */
  padding: 0 var(--space-4); /* Padding to avoid content touching edges */
}

/* Logo styling */
.logo {
  display: flex;
  align-items: center;
  margin-right: 10px;
}

.logo img {
  height: 40px;
  margin-right: var(--space-3);
  transition: all var(--transition-normal);
}

/* Light and Dark mode logo */
.logo-light {
  display: block;
}

.logo-dark {
  display: none;
}

.dark .logo-light {
  display: none;
}

.dark .logo-dark {
  display: block;
}

.logo h1 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}


/* For Tablets and iPads (max-width: 1024px) */
@media screen and (max-width: 1024px) {
  header {
      padding: 0 var(--space-6); /* Add more padding for tablets */
  }

  header .container {
      padding: 0 var(--space-6); /* More padding for the container */
  }

  header.scrolled .container {
      height: 70px;
  }

  .logo img {
      height: 35px;
  }

  .logo h1 {
      font-size: 1rem; /* Adjust font size of logo text for tablets */
  }

  header .container {
      max-width: 900px; /* Set max-width for the container on tablets */
  }
}

/* For smaller devices like mobile phones (max-width: 768px) */
@media screen and (max-width: 768px) {
  header {
      padding: 0 var(--space-4); /* Padding around the header for small screens */
  }

  header .container {
      padding: 0 var(--space-4); /* Padding for mobile screens */
      max-width: 600px; /* Set a narrower max-width for mobile screens */
      width: 100%; /* Ensure the container fills the available width */
  }

  .logo img {
      height: 30px; /* Make logo smaller on mobile */
  }

  .logo h1 {
      font-size: 0.9rem; /* Adjust logo text size for smaller screens */
  }

  header .container {
      max-width: 100%; /* Ensure it takes the full width */
      padding: 0 var(--space-4); /* Padding for mobile */
  }
}

  
  /* Navigation */
  .main-menu {
    display: flex;
    align-items: center;
    gap: var(--space-5);
    height: 100%;
    margin: 0;
    padding: 0;
  }
  
  .main-menu li a {
    font-weight: 500;
    color: var(--text-primary);
    position: relative;
    padding: var(--space-2) 0;
    transition: color var(--transition-normal);
  }
  
  .main-menu li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-normal);
  }
  
  .main-menu li a:hover,
  .main-menu li a.active {
    color: var(--brand-primary);
  }
  
  .main-menu li a:hover::after,
  .main-menu li a.active::after {
    width: 100%;
  }
  
  /* Auth Buttons */
  .auth-buttons {
    display: none;
    align-items: center;
    gap: var(--space-3);
  }
  
  .boxed-buttons {
    display: flex;
    gap: var(--space-2);
  }

  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
  }
  
  .dropdown-toggle:hover {
    background-color: rgba(255, 102, 0, 0.1);
  }
  
  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0.125rem 0 0;
    background-color: #fff;
    border-radius: 0.25rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  }
  
  .dark .dropdown-menu {
    background-color: #1a1a1a;
    border: 1px solid #333;
  }
  
  .dropdown-menu.active {
    display: block;
    animation: fadeIn 0.3s ease;
  }
  
  .dropdown-item { 
    display: block;
    width: 100%;
    padding: 0.5rem 1rem;
    clear: both;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  
  .dropdown-item:hover {
    background-color: rgba(255, 102, 0, 0.1);
    color: #ff6600;
  }
  
  .dark .dropdown-item:hover {
    background-color: #333;
  }
  
  /* Mobile sidebar dropdown */
  .mobile-sidebar-nav .dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.25rem;
  }
  
  .mobile-sidebar-nav .dropdown-menu {
    position: static;
    box-shadow: none;
    padding-left: 1rem;
    background-color: transparent;
  }
  
  .mobile-sidebar-nav .dropdown-menu.active {
    display: block;
  }
  
  /* Language Selector */
  .language-selector {
    position: relative;
    margin-left: var(--space-3);
  }
  
  .selected-language {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    padding: var(--space-2);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    background: var(--bg-primary);
    transition: all 0.3s ease;
  }
  
  .flag-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    padding: var(--space-2);
  }
  
  .language-selector:hover .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
  }
  
  .language-dropdown li a {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-3);
    color: var(--text-primary);
    border-radius: var(--radius-sm);
  }
  
  .language-dropdown li a:hover {
    background-color: var(--bg-secondary);
    color: var(--brand-primary);
  }
  
  /* Social Header */
  .social-header {
      font-size: 25px;
      color: var(--text-primary);
      display: flex;
      top: 20px;
      color: #ff6600;
      gap: 5px;
     
  }
  
  .social-header span {
    color: #888;
    font-size: 12px;
  }
  
  .social-header a {
    width: 50px;
    height: 50px;
    stroke-width: 2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary);
    transition: background-color 0.3s;
  }
  
  .social-header svg {
    width: 20px;
    height: 20px;
    padding: 5px;
    background-color: var(--brand-primary);
    border-radius: 50%;
  }
  
  .social-header a:hover {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: white;
    transform: translateY(-5px);
  }
  
  /* Mobile Menu */
  .mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
  }
  
  .mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: var(--radius-full);
    transition: all var(--transition-normal);
  }
  
  .mobile-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    visibility: hidden;
    pointer-events: none;
  }
  
  .mobile-sidebar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .mobile-sidebar-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    max-width: 350px;
    height: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-xl);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
  }
  
  .mobile-sidebar.active {
    visibility: visible;
    pointer-events: auto;
  }
  
  .mobile-sidebar.active .mobile-sidebar-overlay {
    opacity: 1;
  }
  
  .mobile-sidebar.active .mobile-sidebar-content {
    transform: translateX(0);
  }
  
  .mobile-sidebar-header {
    padding: var(--space-4);
    border-bottom: 1px solid var(--border-light);
  }
  
  .sidebar-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  
  .mobile-sidebar-nav {
    padding: var(--space-4);
    flex: 1;
  }
  
  .mobile-sidebar-nav ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
  }
  
  .mobile-sidebar-nav ul li a {
    display: block;
    padding: var(--space-2) 0;
    font-weight: 500;
    color: var(--text-primary);
    transition: color var(--transition-normal);
  }
  
  .mobile-sidebar-nav ul li a:hover,
  .mobile-sidebar-nav ul li a.active {
    color: var(--brand-primary);
  }
  
  .mobile-sidebar-auth {
    padding: var(--space-4);
    border-top: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
  }
  
  .mobile-sidebar-social {
    padding: var(--space-4);
    border-top: 1px solid var(--border-light);
  }
  
  .mobile-sidebar-social span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: var(--space-2);
  }
  
  .mobile-sidebar-social .social-links {
    display: flex;
    gap: var(--space-2);
  }

  .mobile-sidebar-social .social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    color: var(--brand-primary);
  }
  
  /* Footer Styles */
  footer {
    position: relative;
    padding: var(--space-16) 0 var(--space-4);
    background-color: var(--brand-secondary);
    color: var(--brand-white);
    overflow: hidden;
  }
  
  .footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  
  .footer-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
  }
  
  .footer-shape.shape-1 {
    top: 20%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 102, 0, 0.05);
  }
  
  .footer-shape.shape-2 {
    bottom: 20%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: var(--space-8);
    margin-bottom: var(--space-12);
  }
  
  .footer-about h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-4);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent; 
    display: inline-block;
  }
  
  .footer-about p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-6);
    line-height: 1.8;
  }
  
  .social-links {
    display: flex;
    gap: var(--space-3);
  }
  
  .social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    color: var(--brand-white);
  }
  
  .social-links a svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
  }
  
  .social-links a:hover {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: white;
    transform: translateY(-5px);
  }
  
  .footer-links h4,
  .footer-contact h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--space-6);
    color: var(--brand-white);
    position: relative;
    display: inline-block;
  }
  
  .footer-links h4::after,
  .footer-contact h4::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
  }
  
  .footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
  }
  
  .footer-links ul li a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all var(--transition-normal);
    position: relative;
    display: inline-block;
  }
  
  .footer-links ul li a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--brand-primary);
    transition: width var(--transition-normal);
  }
  
  .footer-links ul li a:hover {
    color: var(--brand-primary);
    transform: translateX(5px);
  }
  
  .footer-links ul li a:hover::after {
    width: 100%;
  }
  
  .footer-contact p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-3);
    display: flex;
    align-items: center;
    gap: var(--space-3);
  }
  
  .contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--brand-primary);
  }
  
  .contact-icon svg {
    width: 16px;
    height: 16px;
    stroke-width: 2;
  }
  
  .footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition-normal);
  }
  
  .footer-contact a:hover {
    color: var(--brand-primary);
  }
  
  .newsletter {
    margin-top: var(--space-6);
  }
  
  .newsletter form {
    display: flex;
    margin-top: var(--space-3);
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
  }
  
  .newsletter input {
    flex: 1;
    padding: var(--space-3) var(--space-4);
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--brand-white);
    font-size: 0.875rem;
  }
  
  .newsletter input:focus {
    outline: none;
  }
  
  .newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.5);
  }
  
  .newsletter button {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0 var(--space-4);
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .newsletter button svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
  }
  
  .newsletter button:hover {
    background: var(--gradient-secondary);
  }
  
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-4);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
  }
  
  .footer-bottom-links {
    display: flex;
    gap: var(--space-4);
  }
  
  .footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-normal);
  }
  
  .footer-bottom-links a:hover {
    color: var(--brand-primary);
  }
  
  /* Hero Section */
  .hero {
    position: relative;
    padding: 180px 0 120px;
    overflow: hidden;
    background-color: var(--glass-bg);
  }
  
  .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }

  .hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
  }
  
  .hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
  }
  
  .hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.103); /* Adjust opacity as needed */
    backdrop-filter: blur(2px); /* Adjust blur amount as needed */
    -webkit-backdrop-filter: blur(2px); /* For Safari support */
  }

  .hero-video-overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: -1;
  }
  
  
  .hero-content {
    position: relative;
    z-index: 1;
  }
  
  
  @media (max-width: 768px) {
    .hero-video-overlay {
      backdrop-filter: blur(5px); 
      -webkit-backdrop-filter: blur(5px);
    }
  }
  
  
  @supports not ((backdrop-filter: blur(8px)) or (-webkit-backdrop-filter: blur(8px))) {
    .hero-video-overlay {
      background: rgba(0, 0, 0, 0.6); 
    }
  }
  
  .animated-graphics {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('hero-animation-bg.svg');
    opacity: 0.5;
    z-index: -2;
    animation: moveBackground 30s linear infinite;
  }
  
  .hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.3s ease;
    z-index: 0;
  }
  
  .hero-shape.shape-1 {
    top: 50%;
    left: 10%;
    width: 300px;
    height: 200px;
    background: rgba(255, 102, 0, 0.3);
  }
  
  .hero-shape.shape-2 {
    bottom: 10%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: rgba(0, 0, 0, 0.2);
  }
  
  .hero-shape.shape-3 {
    top: 40%;
    right: 25%;
    width: 200px;
    height: 200px;
    background: rgba(255, 133, 51, 0.15);
  }
  
  .hero-shape.shape-4 {
    bottom: 30%;
    left: 20%;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.1);
  }
  
  .dark .hero-shape.shape-1 {
    background: rgba(255, 102, 0, 0.15);
  }
  
  .dark .hero-shape.shape-2 {
    background: rgba(0, 0, 0, 0.1);
  }
  
  .dark .hero-shape.shape-3 {
    background: rgba(255, 133, 51, 0.08);
  }
  
  .dark .hero-shape.shape-4 {
    background: rgba(255, 255, 255, 0.05);
  }
  
  .hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 30%, rgba(255, 102, 0, 0.05) 0%, transparent 8%),
      radial-gradient(circle at 80% 40%, rgba(0, 0, 0, 0.05) 0%, transparent 8%),
      radial-gradient(circle at 40% 70%, rgba(255, 133, 51, 0.05) 0%, transparent 8%),
      radial-gradient(circle at 70% 90%, rgba(255, 255, 255, 0.05) 0%, transparent 8%);
    background-size: 120% 120%;
    animation: particlesAnimation 15s ease infinite;
  }
  
  .hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
  }
  
  /* Partners Ticker */
  .partners-ticker {
    width: 100%;
    overflow: hidden;
    margin: 2rem 0;
    position: relative;
  }
  
  .ticker-wrapper {
    width: 100%;
    overflow: hidden;
  }
  
  .ticker-track {
    display: flex;
    animation: ticker 30s linear infinite;
    width: fit-content;
  }
  
  .ticker-item {
    flex-shrink: 0;
    width: 120px;
    height: 60px;
    margin: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .ticker-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
  }
  
  .ticker-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
  }
  
  @keyframes ticker {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  
  /* Questionnaire Filter */
  .questionnaire-filter {
    padding: var(--space-16) 0;
    background-color: var(--bg-secondary);
  }
  
  .questionnaire-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
  }
  
  .initial-prompt {
    padding: var(--space-8);
    text-align: center;
    display: none;
  }
  
  .initial-prompt.active {
    display: block;
  }
  
  .initial-prompt h3 {
    margin-bottom: var(--space-6);
    font-size: 1.5rem;
  }
  
  .prompt-options {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
  }
  
  .option-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-6);
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    cursor: pointer;
    width: 200px;
  }
  
  .option-button:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand-primary);
  }
  
  .option-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-4);
  }
  
  .option-icon svg {
    width: 30px;
    height: 30px;
    color: white;
  }
  
  .option-button span {
    font-weight: 500;
    color: var(--text-primary);
  }
  
  .questionnaire {
    display: none;
  }
  
  .match-indicator {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
}

.match-percentage {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.company-card {
    position: relative;
}

.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.no-results h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.no-results p {
    color: var(--text-secondary);
}

.questionnaire-results h3 {
    margin-bottom: 1rem;
    text-align: center;
}

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

.questionnaire-progress {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.progress-step {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    margin: 0 4px;
    transition: background-color 0.3s ease;
}

.progress-step.active {
    background: var(--primary-color);
}

.progress-step.completed {
    background: var(--success-color);
}

  .question-step {
    padding: var(--space-8);
    display: none;
  }
  
  .question-step.active {
    display: block;
  }
  
  .question-step h3 {
    text-align: center;
    margin-bottom: var(--space-6);
    font-size: 1.5rem;
  }
  
  .options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-4);
    margin-bottom: var(--space-8);
  }
  
  .option-card {
    position: relative;
    cursor: pointer;
  }
  
  .option-card input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  .option-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-4);
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    text-align: center;
    height: 100%;
    min-height: 80px;
  }
  
  .option-card:hover .option-content {
    border-color: var(--brand-primary);
    box-shadow: var(--shadow-md);
  }
  
  .option-card input:checked + .option-content {
    border-color: var(--brand-primary);
    background-color: rgba(255, 102, 0, 0.05);
    box-shadow: var(--shadow-md);
  }
  
  .option-title {
    font-weight: 500;
    color: var(--text-primary);
  }
  
  .question-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .back-btn, .next-btn, .submit-btn {
    padding: var(--space-3) var(--space-5);
    border-radius: var(--radius-md);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-normal);
  }
  
  .back-btn {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
  }
  
  .back-btn:hover {
    background: var(--bg-secondary);
  }
  
  .next-btn, .submit-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
  }
  
  .next-btn:hover, .submit-btn:hover {
    box-shadow: 0 4px 10px rgba(255, 102, 0, 0.3);
  }
  
  .questionnaire-results {
    padding: var(--space-8);
    display: none;
  }
  
  .questionnaire-results.active {
    display: block;
  }
  
  .questionnaire-results h3 {
    text-align: center;
    margin-bottom: var(--space-6);
    font-size: 1.5rem;
  }
  
  .results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--space-4);
    margin-bottom: var(--space-6);
  }
  
  .retake-btn {
    display: block;
    margin: 0 auto;
    padding: var(--space-3) var(--space-5);
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-normal);
  }
  
  .retake-btn:hover {
    background: var(--bg-secondary);
    border-color: var(--brand-primary);
  }
  
  /* Firms Display */
  .firms-display {
    padding: var(--space-16) 0;
    background-color: var(--bg-primary);
  }
  
  .tabs-container {
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .tabs-header {
    display: flex;
    justify-content: center;
    position: relative;
    margin-bottom: var(--space-6);
  }
  
  .tab-button {
    padding: var(--space-3) var(--space-6);
    background: transparent;
    border: none;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: color var(--transition-normal);
  }
  
  .tab-button.active {
    color: var(--brand-primary);
  }
  
  .tab-indicator {
    position: absolute;
    bottom: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    transition: all var(--transition-normal);
  }
  
  .sub-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-6);
  }
  
  .sub-tab-button {
    padding: var(--space-2) var(--space-4);
    background: transparent;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    margin: 0 var(--space-2);
    transition: all var(--transition-normal);
  }
  
  .sub-tab-button.active {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--brand-primary);
  }
  
  .tab-content {
    display: none;
  }
  
  .tab-content.active {
    display: block;
  }
  
  .sub-tab-content {
    display: none;
  }
  
  .sub-tab-content.active {
    display: block;
  }