@media (max-width: 768px) {
    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=DM+Sans:wght@400;500;700;800&display=swap');
  
  /* CSS Variables */
  :root {
      --primary-gradient: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
      --secondary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      --glass-bg: rgba(255, 255, 255, 0.1);
      --glass-border: rgba(255, 255, 255, 0.2);
      --glass-dark-bg: rgba(0, 0, 0, 0.2);
      --glass-dark-border: rgba(255, 255, 255, 0.1);
  }
  
  /* Reset and Base */
  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }
  
  body {
      font-family: 'Inter', sans-serif;
      line-height: 1.6;
      color: #ffffff;
      overflow-x: hidden;
      background: linear-gradient(135deg, #0f172a 0%, #581c87 50%, #0f172a 100%);
      min-height: 100vh;
  }
  
  .font-display {
      font-family: 'DM Sans', sans-serif;
  }
  
  /* Glassmorphism Effects */
  .glass {
      background: var(--glass-bg);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid var(--glass-border);
      border-radius: 0.75rem;
  }
  
  .glass-dark {
      background: var(--glass-dark-bg);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid var(--glass-dark-border);
  }
  
  /* Custom Scrollbar */
  ::-webkit-scrollbar {
      width: 8px;
  }
  
  ::-webkit-scrollbar-track {
      background: rgba(255, 255, 255, 0.05);
  }
  
  ::-webkit-scrollbar-thumb {
      background: rgba(139, 92, 246, 0.4);
      border-radius: 4px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
      background: rgba(139, 92, 246, 0.6);
  }
  
  /* Animations */
  @keyframes fadeInUp {
      from {
          opacity: 0;
          transform: translateY(30px);
      }
      to {
          opacity: 1;
          transform: translateY(0);
      }
  }
  
  @keyframes fadeInLeft {
      from {
          opacity: 0;
          transform: translateX(-30px);
      }
      to {
          opacity: 1;
          transform: translateX(0);
      }
  }
  
  @keyframes pulse-glow {
      0%, 100% {
          box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
      }
      50% {
          box-shadow: 0 0 40px rgba(139, 92, 246, 0.6);
      }
  }
  
  @keyframes gradient-shift {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
  }
  
  @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
  }
  
  @keyframes glow {
      0%, 100% { 
          box-shadow: 0 0 20px rgba(139, 92, 246, 0.4),
                      0 0 40px rgba(139, 92, 246, 0.2),
                      0 0 60px rgba(139, 92, 246, 0.1);
      }
      50% { 
          box-shadow: 0 0 30px rgba(139, 92, 246, 0.6),
                      0 0 60px rgba(139, 92, 246, 0.4),
                      0 0 90px rgba(139, 92, 246, 0.2);
      }
  }
  
  @keyframes slideInFromLeft {
      0% {
          transform: translateX(-100%);
          opacity: 0;
      }
      100% {
          transform: translateX(0);
          opacity: 1;
      }
  }
  
  @keyframes slideInFromRight {
      0% {
          transform: translateX(100%);
          opacity: 0;
      }
      100% {
          transform: translateX(0);
          opacity: 1;
      }
  }
  
  @keyframes scaleIn {
      0% {
          transform: scale(0.8);
          opacity: 0;
      }
      100% {
          transform: scale(1);
          opacity: 1;
      }
  }
  
  @keyframes morphing {
      0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
      50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
  }
  
  @keyframes skillFloat {
      0%, 100% { 
          transform: translateY(0px) rotate(0deg);
          opacity: 0.7;
      }
      50% { 
          transform: translateY(-20px) rotate(5deg);
          opacity: 1;
      }
  }
  
  @keyframes particleFloat {
      0%, 100% { 
          transform: translate(0, 0) scale(1);
          opacity: 0.3;
      }
      33% { 
          transform: translate(30px, -30px) scale(1.1);
          opacity: 0.6;
      }
      66% { 
          transform: translate(-20px, -60px) scale(0.9);
          opacity: 0.8;
      }
  }
  
  @keyframes textGlow {
      0%, 100% {
          text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
      }
      50% {
          text-shadow: 0 0 20px rgba(139, 92, 246, 0.8),
                       0 0 30px rgba(139, 92, 246, 0.6);
      }
  }
  
  @keyframes cardHover {
      0% { transform: translateY(0) scale(1); }
      100% { transform: translateY(-12px) scale(1.02); }
  }
  
  @keyframes iconSpin {
      0% { transform: rotate(0deg) scale(1); }
      50% { transform: rotate(180deg) scale(1.1); }
      100% { transform: rotate(360deg) scale(1); }
  }
  
  @keyframes backgroundShift {
      0% { background-position: 0% 0%; }
      50% { background-position: 100% 100%; }
      100% { background-position: 0% 0%; }
  }
  
  .animate-fade-in-up {
      animation: fadeInUp 0.6s ease-out;
  }
  
  .animate-fade-in-left {
      animation: fadeInLeft 0.6s ease-out;
  }
  
  .animate-pulse-glow {
      animation: pulse-glow 2s infinite;
  }
  
  .animate-gradient {
      background-size: 200% 200%;
      animation: gradient-shift 3s ease infinite;
  }
  
  .animate-float {
      animation: float 3s ease-in-out infinite;
  }
  
  .animate-glow {
      animation: glow 2s ease-in-out infinite;
  }
  
  .animate-slide-in-left {
      animation: slideInFromLeft 0.6s ease-out;
  }
  
  .animate-slide-in-right {
      animation: slideInFromRight 0.6s ease-out;
  }
  
  .animate-scale-in {
      animation: scaleIn 0.5s ease-out;
  }
  
  .animate-morphing {
      animation: morphing 8s ease-in-out infinite;
  }
  
  .animate-skill-float {
      animation: skillFloat 4s ease-in-out infinite;
  }
  
  .animate-particle-float {
      animation: particleFloat 6s ease-in-out infinite;
  }
  
  .animate-text-glow {
      animation: textGlow 2s ease-in-out infinite;
  }
  
  .animate-card-hover {
      animation: cardHover 0.3s ease-out forwards;
  }
  
  .animate-icon-spin {
      animation: iconSpin 0.6s ease-in-out;
  }
  
  .animate-background-shift {
      background-size: 400% 400%;
      animation: backgroundShift 8s ease-in-out infinite;
  }
  
  /* Gradient Text */
  .gradient-text {
      background: var(--secondary-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent;
  }
  
  .gradient-text-primary {
      background: var(--primary-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent;
  }
  
  /* Hover Effects */
  .hover-lift {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .hover-lift:hover {
      transform: translateY(-12px) scale(1.02);
      box-shadow: 0 25px 50px rgba(139, 92, 246, 0.3),
                  0 0 0 1px rgba(255, 255, 255, 0.1);
  }
  
  .hover-glow {
      transition: all 0.3s ease;
  }
  
  .hover-glow:hover {
      box-shadow: 0 0 30px rgba(139, 92, 246, 0.5),
                  0 0 60px rgba(139, 92, 246, 0.3),
                  0 0 90px rgba(139, 92, 246, 0.1);
      transform: scale(1.05);
  }
  
  /* Grid Pattern */
  .grid-pattern {
      background-image: 
          linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
          linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
      background-size: 20px 20px;
  }
  
  /* Navigation */
  .nav-link {
      color: #cbd5e1;
      text-decoration: none;
      transition: color 0.3s ease;
      position: relative;
  }
  
  .nav-link:hover {
      color: #ffffff;
  }
  
  .nav-link::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--primary-gradient);
      transition: width 0.3s ease;
  }
  
  .nav-link:hover::after {
      width: 100%;
  }
  
  /* Buttons */
  .cta-button-primary {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 1rem 2rem;
      background: var(--primary-gradient);
      border-radius: 0.75rem;
      font-weight: 600;
      font-size: 1.125rem;
      text-decoration: none;
      color: white;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
  }
  
  .cta-button-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
  }
  
  .cta-button-secondary {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 1rem 2rem;
      background: var(--glass-bg);
      backdrop-filter: blur(16px);
      border: 1px solid var(--glass-border);
      border-radius: 0.75rem;
      font-weight: 600;
      font-size: 1.125rem;
      text-decoration: none;
      color: white;
      transition: all 0.3s ease;
  }
  
  .cta-button-secondary:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: translateY(-2px);
  }
  
  /* User Type Cards */
  .user-type-card {
      background: var(--glass-bg);
      backdrop-filter: blur(16px);
      border: 1px solid var(--glass-border);
      border-radius: 1.5rem;
      padding: 2rem;
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      group: hover;
      position: relative;
      overflow: hidden;
  }
  
  .user-type-card:hover {
      transform: translateY(-12px) scale(1.02);
      box-shadow: 0 25px 50px rgba(139, 92, 246, 0.3),
                  0 0 0 1px rgba(255, 255, 255, 0.1);
      background: rgba(255, 255, 255, 0.2);
  }
  
  .user-type-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
      transition: left 0.5s;
  }
  
  .user-type-card:hover::before {
      left: 100%;
  }
  
  /* Floating Skill Tags */
  .skill-float {
      position: absolute;
      padding: 0.5rem 1rem;
      background: rgba(139, 92, 246, 0.2);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(139, 92, 246, 0.3);
      border-radius: 9999px;
      font-size: 0.875rem;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.8);
      animation: skillFloat 4s ease-in-out infinite;
      pointer-events: none;
  }
  
  .skill-float:nth-child(odd) {
      animation-direction: reverse;
  }
  
  /* Enhanced Hover Effects */
  .hover-lift {
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .hover-lift:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3),
                  0 0 0 1px rgba(255, 255, 255, 0.1);
  }
  
  .hover-glow {
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
  }
  
  .hover-glow::before {
      content: '';
      position: absolute;
      inset: -2px;
      background: linear-gradient(45deg, #8b5cf6, #06b6d4, #8b5cf6);
      border-radius: inherit;
      opacity: 0;
      transition: opacity 0.4s;
      z-index: -1;
      background-size: 200% 200%;
      animation: backgroundShift 3s ease infinite;
  }
  
  .hover-glow:hover::before {
      opacity: 0.3;
  }
  
  .hover-glow:hover {
      transform: scale(1.05);
      box-shadow: 0 0 30px rgba(139, 92, 246, 0.5),
                  0 0 60px rgba(139, 92, 246, 0.3),
                  0 0 90px rgba(139, 92, 246, 0.1);
  }
  
  /* Enhanced Hover Effects */
  .hover-glow-text {
      transition: all 0.3s ease;
  }
  
  .hover-glow-text:hover {
      text-shadow: 0 0 10px rgba(139, 92, 246, 0.8),
                   0 0 20px rgba(139, 92, 246, 0.6),
                   0 0 30px rgba(139, 92, 246, 0.4);
      transform: scale(1.05);
  }
  
  .interactive-button {
      position: relative;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .interactive-button::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transition: left 0.5s;
  }
  
  .interactive-button:hover::before {
      left: 100%;
  }
  
  .interactive-button:hover {
      transform: translateY(-2px) scale(1.02);
      box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
  }
  
  /* Enhanced Navigation */
  .nav-link {
      position: relative;
      transition: all 0.3s ease;
  }
  
  .nav-link::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 50%;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, #8b5cf6, #06b6d4);
      transition: all 0.3s ease;
      transform: translateX(-50%);
  }
  
  .nav-link:hover::after {
      width: 100%;
  }
  
  .nav-link:hover {
      color: #ffffff;
      transform: translateY(-2px);
      text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
  }
  
  /* Enhanced Card Animations */
  .user-type-card {
      position: relative;
      overflow: hidden;
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .user-type-card::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: conic-gradient(from 0deg, transparent, rgba(139, 92, 246, 0.1), transparent);
      animation: rotate 4s linear infinite;
      opacity: 0;
      transition: opacity 0.3s;
  }
  
  .user-type-card:hover::before {
      opacity: 1;
  }
  
  @keyframes rotate {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
  }
  
  /* Magnetic Button Effect */
  .magnetic-button {
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: pointer;
  }
  
  .magnetic-button:hover {
      transform: scale(1.05) translateY(-2px);
      box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
  }
  
  /* Ripple Effect */
  .ripple-effect {
      position: relative;
      overflow: hidden;
  }
  
  .ripple-effect::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.3);
      transform: translate(-50%, -50%);
      transition: width 0.6s, height 0.6s;
  }
  
  .ripple-effect:active::after {
      width: 300px;
      height: 300px;
  }
  /* Form Styles */
  .form-input {
      width: 100%;
      padding: 1rem;
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(16px);
      border: 1px solid var(--glass-border);
      border-radius: 0.5rem;
      color: white;
      font-size: 1rem;
      transition: all 0.3s ease;
  }
  
  .form-input:focus {
      outline: none;
      border-color: #8b5cf6;
      box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
      background: rgba(255, 255, 255, 0.12);
  }
  
  .form-input::placeholder {
      color: #94a3b8;
  }
  
  .form-select {
      width: 100%;
      padding: 1rem;
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(16px);
      border: 1px solid var(--glass-border);
      border-radius: 0.5rem;
      color: white;
      font-size: 1rem;
      transition: all 0.3s ease;
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
  }
  
  .form-select:focus {
      outline: none;
      border-color: #8b5cf6;
      box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
      background: rgba(255, 255, 255, 0.12);
  }
  
  /* Enhanced dropdown styling for better visibility */
  .form-select option {
      background-color: rgba(30, 41, 59, 0.98);
      color: #ffffff;
      padding: 0.5rem;
      border: none;
  }
  
  .form-select option:hover,
  .form-select option:focus {
      background-color: rgba(139, 92, 246, 0.8);
      color: #ffffff;
  }
  
  /* Skill heatmap styles */
  .skill-heatmap-item {
      transition: all 0.3s ease;
      border: 1px solid transparent;
  }
  
  .skill-heatmap-item.high {
      background: linear-gradient(135deg, rgba(239, 68, 68, 0.3), rgba(220, 38, 38, 0.3));
      border-color: rgba(239, 68, 68, 0.5);
  }
  
  .skill-heatmap-item.medium {
      background: linear-gradient(135deg, rgba(245, 158, 11, 0.3), rgba(217, 119, 6, 0.3));
      border-color: rgba(245, 158, 11, 0.5);
  }
  
  .skill-heatmap-item.low {
      background: linear-gradient(135deg, rgba(34, 197, 94, 0.3), rgba(22, 163, 74, 0.3));
      border-color: rgba(34, 197, 94, 0.5);
  }
  
  .skill-heatmap-item:hover {
      transform: scale(1.05);
      box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
  }
  
  /* Utility border helpers for better separation */
  .glass-card { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 1rem; }
  
  /* Skill Tags */
  .skill-tag {
      display: inline-block;
      padding: 0.5rem 1rem;
      font-size: 0.875rem;
      font-weight: 500;
      border-radius: 9999px;
      background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.2));
      border: 1px solid rgba(139, 92, 246, 0.3);
      transition: all 0.3s ease;
      cursor: pointer;
  }
  
  .skill-tag:hover {
      background: linear-gradient(135deg, rgba(139, 92, 246, 0.4), rgba(6, 182, 212, 0.4));
      transform: scale(1.05);
  }
  
  .skill-tag.selected {
      background: var(--primary-gradient);
  }
  
  /* Dashboard Styles */
  .dashboard-card {
      background: var(--glass-bg);
      backdrop-filter: blur(16px);
      border: 1px solid var(--glass-border);
      border-radius: 1rem;
      padding: 1.5rem;
      transition: all 0.3s ease;
  }
  
  .dashboard-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }
  
  /* Progress Bar */
  .progress-bar {
      width: 100%;
      height: 8px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 4px;
      overflow: hidden;
  }
  
  .progress-fill {
      height: 100%;
      background: var(--primary-gradient);
      transition: width 0.5s ease;
      border-radius: 4px;
  }
  
  /* Loading States */
  .loading-spinner {
      width: 40px;
      height: 40px;
      border: 3px solid rgba(139, 92, 246, 0.2);
      border-top: 3px solid #8b5cf6;
      border-radius: 50%;
      animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
      .text-5xl { font-size: 2.5rem; }
      .text-7xl { font-size: 3rem; }
      .px-8 { padding-left: 1rem; padding-right: 1rem; }
      .py-20 { padding-top: 3rem; padding-bottom: 3rem; }
      
      .grid-cols-6 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
      .grid-cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .grid-cols-3 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
      
      .dashboard-card { padding: 1rem; }
      .chart-container { height: 250px; }
  }
  
  @media (max-width: 640px) {
      .text-4xl { font-size: 1.875rem; }
      .text-5xl { font-size: 2.25rem; }
      
      .grid-cols-2 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
      .gap-8 { gap: 1rem; }
      .gap-6 { gap: 0.75rem; }
      
      .px-4 { padding-left: 0.75rem; padding-right: 0.75rem; }
      .py-12 { padding-top: 2rem; padding-bottom: 2rem; }
      
      .modal { 
          width: 95%; 
          padding: 1.5rem;
          margin: 1rem;
      }
      
      .text-2xl {
          font-size: 1.5rem;
      }
      
      .text-3xl {
          font-size: 1.875rem;
      }
      
      .user-type-card {
          padding: 1.5rem;
      }
      
      .cta-button-primary {
          padding: 0.75rem 1.5rem;
          font-size: 1rem;
      }
      
      .nav-link {
          font-size: 0.875rem;
      }
  }
  
  @media (max-width: 480px) {
      .text-4xl {
          font-size: 1.5rem;
      }
      
      .text-5xl {
          font-size: 1.875rem;
      }
      
      .text-6xl {
          font-size: 2.25rem;
      }
      
      .px-4 {
          padding-left: 0.5rem;
          padding-right: 0.5rem;
      }
      
      .dashboard-card {
          padding: 0.75rem;
      }
      
      .modal {
          width: 98%;
          margin: 0.5rem;
          padding: 1rem;
      }
      
      .user-type-card {
          padding: 1rem;
      }
      
      .form-input,
      .form-select {
          padding: 0.75rem;
          font-size: 0.875rem;
      }
      
      .cta-button-primary {
          padding: 0.75rem 1rem;
          font-size: 0.875rem;
      }
      
      .skill-tag {
          padding: 0.25rem 0.5rem;
          font-size: 0.75rem;
      }
      
      .chart-container {
          height: 180px;
      }
  }
  
  /* Page Transitions */
  .barba-container {
      opacity: 0;
      transform: translateY(30px);
  }
  
  .barba-container.barba-current {
      opacity: 1;
      transform: translateY(0);
  }
  
  /* Notification Styles */
  .notification {
      position: fixed;
      top: 20px;
      right: 20px;
      padding: 1rem 1.5rem;
      background: var(--glass-bg);
      backdrop-filter: blur(16px);
      border: 1px solid var(--glass-border);
      border-radius: 0.5rem;
      color: white;
      z-index: 1000;
      transform: translateX(100%);
      transition: transform 0.3s ease;
  }
  
  .notification.show {
      transform: translateX(0);
  }
  
  .notification.success {
      border-left: 4px solid #10b981;
  }
  
  .notification.error {
      border-left: 4px solid #ef4444;
  }
  
  .notification.info {
      border-left: 4px solid #3b82f6;
  }
  
  /* Modal Styles */
  .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(8px);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1000;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
  }
  
  .modal-overlay.active {
      opacity: 1;
      visibility: visible;
  }
  
  .modal {
      background: var(--glass-bg);
      backdrop-filter: blur(16px);
      border: 1px solid var(--glass-border);
      border-radius: 1rem;
      padding: 2rem;
      max-width: 500px;
      width: 90%;
      transform: scale(0.9);
      transition: transform 0.3s ease;
  }
  
  .modal-overlay.active .modal {
      transform: scale(1);
  }
  
  /* Chart Container */
  .chart-container {
      position: relative;
      height: 300px;
      width: 100%;
      background: var(--glass-bg);
      backdrop-filter: blur(16px);
      border: 1px solid var(--glass-border);
      border-radius: 1rem;
      padding: 1rem;
  }
  
  /* Swiper Customization */
  .swiper {
      width: 100%;
      height: 100%;
  }
  
  .swiper-slide {
      text-align: center;
      font-size: 18px;
      background: var(--glass-bg);
      backdrop-filter: blur(16px);
      border: 1px solid var(--glass-border);
      border-radius: 1rem;
      display: flex;
      justify-content: center;
      align-items: center;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
      color: #8b5cf6;
  }
  
  .swiper-pagination-bullet-active {
      background: #8b5cf6;
  }
  
  /* Enhanced mobile responsiveness */
  @media (max-width: 1024px) {
      .lg\:col-span-2 {
          grid-column: span 1 / span 1;
      }
      
      .lg\:grid-cols-3 {
          grid-template-columns: repeat(1, minmax(0, 1fr));
      }
      
      .text-5xl {
          font-size: 2.5rem;
      }
      
      .text-7xl {
          font-size: 3rem;
      }
      
      .px-8 {
          padding-left: 1rem;
          padding-right: 1rem;
      }
      
      .py-20 {
          padding-top: 3rem;
          padding-bottom: 3rem;
      }
  }
  
  @media (max-width: 768px) {
      .md\:grid-cols-2 {
          grid-template-columns: repeat(1, minmax(0, 1fr));
      }
      
      .md\:grid-cols-3 {
          grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      
      .md\:grid-cols-4 {
          grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      
      .md\:text-5xl {
          font-size: 2.5rem;
      }
      
      .md\:text-7xl {
          font-size: 3rem;
      }
      
      .dashboard-card {
          padding: 1rem;
      }
      
      .chart-container {
          height: 250px;
      }
      
      .modal {
          width: 95%;
          margin: 1rem;
          padding: 1.5rem;
      }
      
      .grid-cols-6 {
          grid-template-columns: repeat(3, minmax(0, 1fr));
      }
      
      .grid-cols-4 {
          grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      
      .grid-cols-3 {
          grid-template-columns: repeat(1, minmax(0, 1fr));
      }
      
      .gap-8 {
          gap: 1rem;
      }
      
      .gap-6 {
          gap: 0.75rem;
      }
  }
  
  /* Fix for navigation on mobile */
  @media (max-width: 768px) {
      .nav-link {
          display: block;
          padding: 0.5rem 0;
      }
      
      .hidden.md\:flex {
          display: none !important;
      }
      
      .md\:hidden {
  }
      .chart-container {
      }
      
      /* Ensure proper spacing on mobile */
      .max-w-7xl {
          max-width: 100%;
          padding-left: 1rem;
          padding-right: 1rem;
      }
      
      /* Fix hero section on mobile */
      .min-h-screen {
          min-height: 100vh;
          padding-top: 2rem;
      }
      
      /* Improve readability on small screens */
      .text-xl {
          font-size: 1.125rem;
          line-height: 1.75rem;
      }
      
      /* Better button sizing on mobile */
      .px-8 {
          padding-left: 1rem;
          padding-right: 1rem;
      }
      
      .py-4 {
          padding-top: 0.75rem;
          padding-bottom: 0.75rem;
      }
  }
  
  /* Additional responsive utilities */
  @media (max-width: 1200px) {
      .max-w-7xl {
          max-width: 1024px;
      }
  }
  
  @media (max-width: 1024px) {
      .max-w-7xl {
          max-width: 768px;
      }
  }
  
  @media (max-width: 768px) {
      .max-w-7xl {
          max-width: 640px;
      }
  }
  
  @media (max-width: 640px) {
      .max-w-7xl {
          max-width: 100%;
      }
  }
  
  /* Responsive grid improvements */
  @media (max-width: 1024px) {
      .lg\:grid-cols-4 {
          grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      
      .lg\:grid-cols-6 {
          grid-template-columns: repeat(3, minmax(0, 1fr));
      }
  }
  
  @media (max-width: 768px) {
      .md\:grid-cols-6 {
          grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      
      .lg\:grid-cols-4 {
          grid-template-columns: repeat(1, minmax(0, 1fr));
      }
      
      .lg\:grid-cols-6 {
          grid-template-columns: repeat(2, minmax(0, 1fr));
      }
  }
  
  @media (max-width: 640px) {
      .sm\:grid-cols-2 {
          grid-template-columns: repeat(1, minmax(0, 1fr));
      }
      
      .sm\:grid-cols-3 {
          grid-template-columns: repeat(1, minmax(0, 1fr));
      }
      
      .md\:grid-cols-6 {
          grid-template-columns: repeat(1, minmax(0, 1fr));
      }
      
      .lg\:grid-cols-6 {
          grid-template-columns: repeat(1, minmax(0, 1fr));
      }
          height: 200px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=DM+Sans:wght@400;500;700;800&display=swap');
  
  /* CSS Variables */
  :root {
      --primary-gradient: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
      --secondary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      --glass-bg: rgba(255, 255, 255, 0.1);
      --glass-border: rgba(255, 255, 255, 0.2);
      --glass-dark-bg: rgba(0, 0, 0, 0.2);
      --glass-dark-border: rgba(255, 255, 255, 0.1);
  }
  
  /* Reset and Base */
  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }
  
  body {
      font-family: 'Inter', sans-serif;
      line-height: 1.6;
      color: #ffffff;
      overflow-x: hidden;
      background: linear-gradient(135deg, #0f172a 0%, #581c87 50%, #0f172a 100%);
      min-height: 100vh;
  }
  
  .font-display {
      font-family: 'DM Sans', sans-serif;
  }
  
  /* Glassmorphism Effects */
  .glass {
      background: var(--glass-bg);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid var(--glass-border);
      border-radius: 0.75rem;
  }
  
  .glass-dark {
      background: var(--glass-dark-bg);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid var(--glass-dark-border);
  }
  
  /* Custom Scrollbar */
  ::-webkit-scrollbar {
      width: 8px;
  }
  
  ::-webkit-scrollbar-track {
      background: rgba(255, 255, 255, 0.05);
  }
  
  ::-webkit-scrollbar-thumb {
      background: rgba(139, 92, 246, 0.4);
      border-radius: 4px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
      background: rgba(139, 92, 246, 0.6);
  }
  
  /* Animations */
  @keyframes fadeInUp {
      from {
          opacity: 0;
          transform: translateY(30px);
      }
      to {
          opacity: 1;
          transform: translateY(0);
      }
  }
  
  @keyframes fadeInLeft {
      from {
          opacity: 0;
          transform: translateX(-30px);
      }
      to {
          opacity: 1;
          transform: translateX(0);
      }
  }
  
  @keyframes pulse-glow {
      0%, 100% {
          box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
      }
      50% {
          box-shadow: 0 0 40px rgba(139, 92, 246, 0.6);
      }
  }
  
  @keyframes gradient-shift {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
  }
  
  @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
  }
  
  @keyframes glow {
      0%, 100% { 
          box-shadow: 0 0 20px rgba(139, 92, 246, 0.4),
                      0 0 40px rgba(139, 92, 246, 0.2),
                      0 0 60px rgba(139, 92, 246, 0.1);
      }
      50% { 
          box-shadow: 0 0 30px rgba(139, 92, 246, 0.6),
                      0 0 60px rgba(139, 92, 246, 0.4),
                      0 0 90px rgba(139, 92, 246, 0.2);
      }
  }
  
  @keyframes slideInFromLeft {
      0% {
          transform: translateX(-100%);
          opacity: 0;
      }
      100% {
          transform: translateX(0);
          opacity: 1;
      }
  }
  
  @keyframes slideInFromRight {
      0% {
          transform: translateX(100%);
          opacity: 0;
      }
      100% {
          transform: translateX(0);
          opacity: 1;
      }
  }
  
  @keyframes scaleIn {
      0% {
          transform: scale(0.8);
          opacity: 0;
      }
      100% {
          transform: scale(1);
          opacity: 1;
      }
  }
  
  @keyframes morphing {
      0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
      50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
  }
  
  @keyframes skillFloat {
      0%, 100% { 
          transform: translateY(0px) rotate(0deg);
          opacity: 0.7;
      }
      50% { 
          transform: translateY(-20px) rotate(5deg);
          opacity: 1;
      }
  }
  
  @keyframes particleFloat {
      0%, 100% { 
          transform: translate(0, 0) scale(1);
          opacity: 0.3;
      }
      33% { 
          transform: translate(30px, -30px) scale(1.1);
          opacity: 0.6;
      }
      66% { 
          transform: translate(-20px, -60px) scale(0.9);
          opacity: 0.8;
      }
  }
  
  @keyframes textGlow {
      0%, 100% {
          text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
      }
      50% {
          text-shadow: 0 0 20px rgba(139, 92, 246, 0.8),
                       0 0 30px rgba(139, 92, 246, 0.6);
      }
  }
  
  @keyframes cardHover {
      0% { transform: translateY(0) scale(1); }
      100% { transform: translateY(-12px) scale(1.02); }
  }
  
  @keyframes iconSpin {
      0% { transform: rotate(0deg) scale(1); }
      50% { transform: rotate(180deg) scale(1.1); }
      100% { transform: rotate(360deg) scale(1); }
  }
  
  @keyframes backgroundShift {
      0% { background-position: 0% 0%; }
      50% { background-position: 100% 100%; }
      100% { background-position: 0% 0%; }
  }
  
  .animate-fade-in-up {
      animation: fadeInUp 0.6s ease-out;
  }
  
  .animate-fade-in-left {
      animation: fadeInLeft 0.6s ease-out;
  }
  
  .animate-pulse-glow {
      animation: pulse-glow 2s infinite;
  }
  
  .animate-gradient {
      background-size: 200% 200%;
      animation: gradient-shift 3s ease infinite;
  }
  
  .animate-float {
      animation: float 3s ease-in-out infinite;
  }
  
  .animate-glow {
      animation: glow 2s ease-in-out infinite;
  }
  
  .animate-slide-in-left {
      animation: slideInFromLeft 0.6s ease-out;
  }
  
  .animate-slide-in-right {
      animation: slideInFromRight 0.6s ease-out;
  }
  
  .animate-scale-in {
      animation: scaleIn 0.5s ease-out;
  }
  
  .animate-morphing {
      animation: morphing 8s ease-in-out infinite;
  }
  
  .animate-skill-float {
      animation: skillFloat 4s ease-in-out infinite;
  }
  
  .animate-particle-float {
      animation: particleFloat 6s ease-in-out infinite;
  }
  
  .animate-text-glow {
      animation: textGlow 2s ease-in-out infinite;
  }
  
  .animate-card-hover {
      animation: cardHover 0.3s ease-out forwards;
  }
  
  .animate-icon-spin {
      animation: iconSpin 0.6s ease-in-out;
  }
  
  .animate-background-shift {
      background-size: 400% 400%;
      animation: backgroundShift 8s ease-in-out infinite;
  }
  
  /* Gradient Text */
  .gradient-text {
      background: var(--secondary-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent;
  }
  
  .gradient-text-primary {
      background: var(--primary-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent;
  }
  
  /* Hover Effects */
  .hover-lift {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .hover-lift:hover {
      transform: translateY(-12px) scale(1.02);
      box-shadow: 0 25px 50px rgba(139, 92, 246, 0.3),
                  0 0 0 1px rgba(255, 255, 255, 0.1);
  }
  
  .hover-glow {
      transition: all 0.3s ease;
  }
  
  .hover-glow:hover {
      box-shadow: 0 0 30px rgba(139, 92, 246, 0.5),
                  0 0 60px rgba(139, 92, 246, 0.3),
                  0 0 90px rgba(139, 92, 246, 0.1);
      transform: scale(1.05);
  }
  
  /* Grid Pattern */
  .grid-pattern {
      background-image: 
          linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
          linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
      background-size: 20px 20px;
  }
  
  /* Navigation */
  .nav-link {
      color: #cbd5e1;
      text-decoration: none;
      transition: color 0.3s ease;
      position: relative;
  }
  
  .nav-link:hover {
      color: #ffffff;
  }
  
  .nav-link::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--primary-gradient);
      transition: width 0.3s ease;
  }
  
  .nav-link:hover::after {
      width: 100%;
  }
  
  /* Buttons */
  .cta-button-primary {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 1rem 2rem;
      background: var(--primary-gradient);
      border-radius: 0.75rem;
      font-weight: 600;
      font-size: 1.125rem;
      text-decoration: none;
      color: white;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
  }
  
  .cta-button-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
  }
  
  .cta-button-secondary {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 1rem 2rem;
      background: var(--glass-bg);
      backdrop-filter: blur(16px);
      border: 1px solid var(--glass-border);
      border-radius: 0.75rem;
      font-weight: 600;
      font-size: 1.125rem;
      text-decoration: none;
      color: white;
      transition: all 0.3s ease;
  }
  
  .cta-button-secondary:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: translateY(-2px);
  }
  
  /* User Type Cards */
  .user-type-card {
      background: var(--glass-bg);
      backdrop-filter: blur(16px);
      border: 1px solid var(--glass-border);
      border-radius: 1.5rem;
      padding: 2rem;
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      group: hover;
      position: relative;
      overflow: hidden;
  }
  
  .user-type-card:hover {
      transform: translateY(-12px) scale(1.02);
      box-shadow: 0 25px 50px rgba(139, 92, 246, 0.3),
                  0 0 0 1px rgba(255, 255, 255, 0.1);
      background: rgba(255, 255, 255, 0.2);
  }
  
  .user-type-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
      transition: left 0.5s;
  }
  
  .user-type-card:hover::before {
      left: 100%;
  }
  
  /* Floating Skill Tags */
  .skill-float {
      position: absolute;
      padding: 0.5rem 1rem;
      background: rgba(139, 92, 246, 0.2);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(139, 92, 246, 0.3);
      border-radius: 9999px;
      font-size: 0.875rem;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.8);
      animation: skillFloat 4s ease-in-out infinite;
      pointer-events: none;
  }
  
  .skill-float:nth-child(odd) {
      animation-direction: reverse;
  }
  
  /* Enhanced Hover Effects */
  .hover-lift {
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .hover-lift:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3),
                  0 0 0 1px rgba(255, 255, 255, 0.1);
  }
  
  .hover-glow {
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
  }
  
  .hover-glow::before {
      content: '';
      position: absolute;
      inset: -2px;
      background: linear-gradient(45deg, #8b5cf6, #06b6d4, #8b5cf6);
      border-radius: inherit;
      opacity: 0;
      transition: opacity 0.4s;
      z-index: -1;
      background-size: 200% 200%;
      animation: backgroundShift 3s ease infinite;
  }
  
  .hover-glow:hover::before {
      opacity: 0.3;
  }
  
  .hover-glow:hover {
      transform: scale(1.05);
      box-shadow: 0 0 30px rgba(139, 92, 246, 0.5),
                  0 0 60px rgba(139, 92, 246, 0.3),
                  0 0 90px rgba(139, 92, 246, 0.1);
  }
  
  /* Enhanced Hover Effects */
  .hover-glow-text {
      transition: all 0.3s ease;
  }
  
  .hover-glow-text:hover {
      text-shadow: 0 0 10px rgba(139, 92, 246, 0.8),
                   0 0 20px rgba(139, 92, 246, 0.6),
                   0 0 30px rgba(139, 92, 246, 0.4);
      transform: scale(1.05);
  }
  
  .interactive-button {
      position: relative;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .interactive-button::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transition: left 0.5s;
  }
  
  .interactive-button:hover::before {
      left: 100%;
  }
  
  .interactive-button:hover {
      transform: translateY(-2px) scale(1.02);
      box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
  }
  
  /* Enhanced Navigation */
  .nav-link {
      position: relative;
      transition: all 0.3s ease;
  }
  
  .nav-link::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 50%;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, #8b5cf6, #06b6d4);
      transition: all 0.3s ease;
      transform: translateX(-50%);
  }
  
  .nav-link:hover::after {
      width: 100%;
  }
  
  .nav-link:hover {
      color: #ffffff;
      transform: translateY(-2px);
      text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
  }
  
  /* Enhanced Card Animations */
  .user-type-card {
      position: relative;
      overflow: hidden;
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .user-type-card::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: conic-gradient(from 0deg, transparent, rgba(139, 92, 246, 0.1), transparent);
      animation: rotate 4s linear infinite;
      opacity: 0;
      transition: opacity 0.3s;
  }
  
  .user-type-card:hover::before {
      opacity: 1;
  }
  
  @keyframes rotate {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
  }
  
  /* Magnetic Button Effect */
  .magnetic-button {
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: pointer;
  }
  
  .magnetic-button:hover {
      transform: scale(1.05) translateY(-2px);
      box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
  }
  
  /* Ripple Effect */
  .ripple-effect {
      position: relative;
      overflow: hidden;
  }
  
  .ripple-effect::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.3);
      transform: translate(-50%, -50%);
      transition: width 0.6s, height 0.6s;
  }
  
  .ripple-effect:active::after {
      width: 300px;
      height: 300px;
  }
  /* Form Styles */
  .form-input {
      width: 100%;
      padding: 1rem;
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(16px);
      border: 1px solid var(--glass-border);
      border-radius: 0.5rem;
      color: white;
      font-size: 1rem;
      transition: all 0.3s ease;
  }
  
  .form-input:focus {
      outline: none;
      border-color: #8b5cf6;
      box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
      background: rgba(255, 255, 255, 0.12);
  }
  
  .form-input::placeholder {
      color: #94a3b8;
  }
  
  .form-select {
      width: 100%;
      padding: 1rem;
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(16px);
      border: 1px solid var(--glass-border);
      border-radius: 0.5rem;
      color: white;
      font-size: 1rem;
      transition: all 0.3s ease;
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
  }
  
  .form-select:focus {
      outline: none;
      border-color: #8b5cf6;
      box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
      background: rgba(255, 255, 255, 0.12);
  }
  
  /* Enhanced dropdown styling for better visibility */
  .form-select option {
      background-color: rgba(30, 41, 59, 0.98);
      color: #ffffff;
      padding: 0.5rem;
      border: none;
  }
  
  .form-select option:hover,
  .form-select option:focus {
      background-color: rgba(139, 92, 246, 0.8);
      color: #ffffff;
  }
  
  /* Skill heatmap styles */
  .skill-heatmap-item {
      transition: all 0.3s ease;
      border: 1px solid transparent;
  }
  
  .skill-heatmap-item.high {
      background: linear-gradient(135deg, rgba(239, 68, 68, 0.3), rgba(220, 38, 38, 0.3));
      border-color: rgba(239, 68, 68, 0.5);
  }
  
  .skill-heatmap-item.medium {
      background: linear-gradient(135deg, rgba(245, 158, 11, 0.3), rgba(217, 119, 6, 0.3));
      border-color: rgba(245, 158, 11, 0.5);
  }
  
  .skill-heatmap-item.low {
      background: linear-gradient(135deg, rgba(34, 197, 94, 0.3), rgba(22, 163, 74, 0.3));
      border-color: rgba(34, 197, 94, 0.5);
  }
  
  .skill-heatmap-item:hover {
      transform: scale(1.05);
      box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
  }
  
  /* Utility border helpers for better separation */
  .glass-card { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 1rem; }
  
  /* Skill Tags */
  .skill-tag {
      display: inline-block;
      padding: 0.5rem 1rem;
      font-size: 0.875rem;
      font-weight: 500;
      border-radius: 9999px;
      background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.2));
      border: 1px solid rgba(139, 92, 246, 0.3);
      transition: all 0.3s ease;
      cursor: pointer;
  }
  
  .skill-tag:hover {
      background: linear-gradient(135deg, rgba(139, 92, 246, 0.4), rgba(6, 182, 212, 0.4));
      transform: scale(1.05);
  }
  
  .skill-tag.selected {
      background: var(--primary-gradient);
  }
  
  /* Dashboard Styles */
  .dashboard-card {
      background: var(--glass-bg);
      backdrop-filter: blur(16px);
      border: 1px solid var(--glass-border);
      border-radius: 1rem;
      padding: 1.5rem;
      transition: all 0.3s ease;
  }
  
  .dashboard-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }
  
  /* Progress Bar */
  .progress-bar {
      width: 100%;
      height: 8px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 4px;
      overflow: hidden;
  }
  
  .progress-fill {
      height: 100%;
      background: var(--primary-gradient);
      transition: width 0.5s ease;
      border-radius: 4px;
  }
  
  /* Loading States */
  .loading-spinner {
      width: 40px;
      height: 40px;
      border: 3px solid rgba(139, 92, 246, 0.2);
      border-top: 3px solid #8b5cf6;
      border-radius: 50%;
      animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
      .text-5xl { font-size: 2.5rem; }
      .text-7xl { font-size: 3rem; }
      .px-8 { padding-left: 1rem; padding-right: 1rem; }
      .py-20 { padding-top: 3rem; padding-bottom: 3rem; }
      
      .grid-cols-6 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
      .grid-cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .grid-cols-3 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
      
      .dashboard-card { padding: 1rem; }
      .chart-container { height: 250px; }
  }
  
  @media (max-width: 640px) {
      .text-4xl { font-size: 1.875rem; }
      .text-5xl { font-size: 2.25rem; }
      
      .grid-cols-2 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
      .gap-8 { gap: 1rem; }
      .gap-6 { gap: 0.75rem; }
      
      .px-4 { padding-left: 0.75rem; padding-right: 0.75rem; }
      .py-12 { padding-top: 2rem; padding-bottom: 2rem; }
      
      .modal { 
          width: 95%; 
          padding: 1.5rem;
          margin: 1rem;
      }
      
      .text-2xl {
          font-size: 1.5rem;
      }
      
      .text-3xl {
          font-size: 1.875rem;
      }
      
      .user-type-card {
          padding: 1.5rem;
      }
      
      .cta-button-primary {
          padding: 0.75rem 1.5rem;
          font-size: 1rem;
      }
      
      .nav-link {
          font-size: 0.875rem;
      }
  }
  
  @media (max-width: 480px) {
      .text-4xl {
          font-size: 1.5rem;
      }
      
      .text-5xl {
          font-size: 1.875rem;
      }
      
      .text-6xl {
          font-size: 2.25rem;
      }
      
      .px-4 {
          padding-left: 0.5rem;
          padding-right: 0.5rem;
      }
      
      .dashboard-card {
          padding: 0.75rem;
      }
      
      .modal {
          width: 98%;
          margin: 0.5rem;
          padding: 1rem;
      }
      
      .user-type-card {
          padding: 1rem;
      }
      
      .form-input,
      .form-select {
          padding: 0.75rem;
          font-size: 0.875rem;
      }
      
      .cta-button-primary {
          padding: 0.75rem 1rem;
          font-size: 0.875rem;
      }
      
      .skill-tag {
          padding: 0.25rem 0.5rem;
          font-size: 0.75rem;
      }
      
      .chart-container {
          height: 180px;
      }
  }
  
  /* Page Transitions */
  .barba-container {
      opacity: 0;
      transform: translateY(30px);
  }
  
  .barba-container.barba-current {
      opacity: 1;
      transform: translateY(0);
  }
  
  /* Notification Styles */
  .notification {
      position: fixed;
      top: 20px;
      right: 20px;
      padding: 1rem 1.5rem;
      background: var(--glass-bg);
      backdrop-filter: blur(16px);
      border: 1px solid var(--glass-border);
      border-radius: 0.5rem;
      color: white;
      z-index: 1000;
      transform: translateX(100%);
      transition: transform 0.3s ease;
  }
  
  .notification.show {
      transform: translateX(0);
  }
  
  .notification.success {
      border-left: 4px solid #10b981;
  }
  
  .notification.error {
      border-left: 4px solid #ef4444;
  }
  
  .notification.info {
      border-left: 4px solid #3b82f6;
  }
  
  /* Modal Styles */
  .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(8px);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1000;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
  }
  
  .modal-overlay.active {
      opacity: 1;
      visibility: visible;
  }
  
  .modal {
      background: var(--glass-bg);
      backdrop-filter: blur(16px);
      border: 1px solid var(--glass-border);
      border-radius: 1rem;
      padding: 2rem;
      max-width: 500px;
      width: 90%;
      transform: scale(0.9);
      transition: transform 0.3s ease;
  }
  
  .modal-overlay.active .modal {
      transform: scale(1);
  }
  
  /* Chart Container */
  .chart-container {
      position: relative;
      height: 300px;
      width: 100%;
      background: var(--glass-bg);
      backdrop-filter: blur(16px);
      border: 1px solid var(--glass-border);
      border-radius: 1rem;
      padding: 1rem;
  }
  
  /* Swiper Customization */
  .swiper {
      width: 100%;
      height: 100%;
  }
  
  .swiper-slide {
      text-align: center;
      font-size: 18px;
      background: var(--glass-bg);
      backdrop-filter: blur(16px);
      border: 1px solid var(--glass-border);
      border-radius: 1rem;
      display: flex;
      justify-content: center;
      align-items: center;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
      color: #8b5cf6;
  }
  
  .swiper-pagination-bullet-active {
      background: #8b5cf6;
  }
  
  /* Enhanced mobile responsiveness */
  @media (max-width: 1024px) {
      .lg\:col-span-2 {
          grid-column: span 1 / span 1;
      }
      
      .lg\:grid-cols-3 {
          grid-template-columns: repeat(1, minmax(0, 1fr));
      }
      
      .text-5xl {
          font-size: 2.5rem;
      }
      
      .text-7xl {
          font-size: 3rem;
      }
      
      .px-8 {
          padding-left: 1rem;
          padding-right: 1rem;
      }
      
      .py-20 {
          padding-top: 3rem;
          padding-bottom: 3rem;
      }
  }
  
  @media (max-width: 768px) {
      .md\:grid-cols-2 {
          grid-template-columns: repeat(1, minmax(0, 1fr));
      }
      
      .md\:grid-cols-3 {
          grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      
      .md\:grid-cols-4 {
          grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      
      .md\:text-5xl {
          font-size: 2.5rem;
      }
      
      .md\:text-7xl {
          font-size: 3rem;
      }
      
      .dashboard-card {
          padding: 1rem;
      }
      
      .chart-container {
          height: 250px;
      }
      
      .modal {
          width: 95%;
          margin: 1rem;
          padding: 1.5rem;
      }
      
      .grid-cols-6 {
          grid-template-columns: repeat(3, minmax(0, 1fr));
      }
      
      .grid-cols-4 {
          grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      
      .grid-cols-3 {
          grid-template-columns: repeat(1, minmax(0, 1fr));
      }
      
      .gap-8 {
          gap: 1rem;
      }
      
      .gap-6 {
          gap: 0.75rem;
      }
  }
  
  /* Fix for navigation on mobile */
  @media (max-width: 768px) {
      .nav-link {
          display: block;
          padding: 0.5rem 0;
      }
      
      .hidden.md\:flex {
          display: none !important;
      }
      
      .md\:hidden {
  }
      .chart-container {
      }
      
      /* Ensure proper spacing on mobile */
      .max-w-7xl {
          max-width: 100%;
          padding-left: 1rem;
          padding-right: 1rem;
      }
      
      /* Fix hero section on mobile */
      .min-h-screen {
          min-height: 100vh;
          padding-top: 2rem;
      }
      
      /* Improve readability on small screens */
      .text-xl {
          font-size: 1.125rem;
          line-height: 1.75rem;
      }
      
      /* Better button sizing on mobile */
      .px-8 {
          padding-left: 1rem;
          padding-right: 1rem;
      }
      
      .py-4 {
          padding-top: 0.75rem;
          padding-bottom: 0.75rem;
      }
  }
  
  /* Additional responsive utilities */
  @media (max-width: 1200px) {
      .max-w-7xl {
          max-width: 1024px;
      }
  }
  
  @media (max-width: 1024px) {
      .max-w-7xl {
          max-width: 768px;
      }
  }
  
  @media (max-width: 768px) {
      .max-w-7xl {
          max-width: 640px;
      }
  }
  
  @media (max-width: 640px) {
      .max-w-7xl {
          max-width: 100%;
      }
  }
  
  /* Responsive grid improvements */
  @media (max-width: 1024px) {
      .lg\:grid-cols-4 {
          grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      
      .lg\:grid-cols-6 {
          grid-template-columns: repeat(3, minmax(0, 1fr));
      }
  }
  
  @media (max-width: 768px) {
      .md\:grid-cols-6 {
          grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      
      .lg\:grid-cols-4 {
          grid-template-columns: repeat(1, minmax(0, 1fr));
      }
      
      .lg\:grid-cols-6 {
          grid-template-columns: repeat(2, minmax(0, 1fr));
      }
  }
  
  @media (max-width: 640px) {
      .sm\:grid-cols-2 {
          grid-template-columns: repeat(1, minmax(0, 1fr));
      }
      
      .sm\:grid-cols-3 {
          grid-template-columns: repeat(1, minmax(0, 1fr));
      }
      
      .md\:grid-cols-6 {
          grid-template-columns: repeat(1, minmax(0, 1fr));
      }
      
      .lg\:grid-cols-6 {
          grid-template-columns: repeat(1, minmax(0, 1fr));
      }
          height: 200px;
  }
}

@media (min-width: 1025px) {
    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=DM+Sans:wght@400;500;700;800&display=swap');
  
  /* CSS Variables */
  :root {
      --primary-gradient: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
      --secondary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      --glass-bg: rgba(255, 255, 255, 0.1);
      --glass-border: rgba(255, 255, 255, 0.2);
      --glass-dark-bg: rgba(0, 0, 0, 0.2);
      --glass-dark-border: rgba(255, 255, 255, 0.1);
  }
  
  /* Reset and Base */
  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }
  
  body {
      font-family: 'Inter', sans-serif;
      line-height: 1.6;
      color: #ffffff;
      overflow-x: hidden;
      background: linear-gradient(135deg, #0f172a 0%, #581c87 50%, #0f172a 100%);
      min-height: 100vh;
  }
  
  .font-display {
      font-family: 'DM Sans', sans-serif;
  }
  
  /* Glassmorphism Effects */
  .glass {
      background: var(--glass-bg);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid var(--glass-border);
      border-radius: 0.75rem;
  }
  
  .glass-dark {
      background: var(--glass-dark-bg);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid var(--glass-dark-border);
  }
  
  /* Custom Scrollbar */
  ::-webkit-scrollbar {
      width: 8px;
  }
  
  ::-webkit-scrollbar-track {
      background: rgba(255, 255, 255, 0.05);
  }
  
  ::-webkit-scrollbar-thumb {
      background: rgba(139, 92, 246, 0.4);
      border-radius: 4px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
      background: rgba(139, 92, 246, 0.6);
  }
  
  /* Animations */
  @keyframes fadeInUp {
      from {
          opacity: 0;
          transform: translateY(30px);
      }
      to {
          opacity: 1;
          transform: translateY(0);
      }
  }
  
  @keyframes fadeInLeft {
      from {
          opacity: 0;
          transform: translateX(-30px);
      }
      to {
          opacity: 1;
          transform: translateX(0);
      }
  }
  
  @keyframes pulse-glow {
      0%, 100% {
          box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
      }
      50% {
          box-shadow: 0 0 40px rgba(139, 92, 246, 0.6);
      }
  }
  
  @keyframes gradient-shift {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
  }
  
  @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
  }
  
  @keyframes glow {
      0%, 100% { 
          box-shadow: 0 0 20px rgba(139, 92, 246, 0.4),
                      0 0 40px rgba(139, 92, 246, 0.2),
                      0 0 60px rgba(139, 92, 246, 0.1);
      }
      50% { 
          box-shadow: 0 0 30px rgba(139, 92, 246, 0.6),
                      0 0 60px rgba(139, 92, 246, 0.4),
                      0 0 90px rgba(139, 92, 246, 0.2);
      }
  }
  
  @keyframes slideInFromLeft {
      0% {
          transform: translateX(-100%);
          opacity: 0;
      }
      100% {
          transform: translateX(0);
          opacity: 1;
      }
  }
  
  @keyframes slideInFromRight {
      0% {
          transform: translateX(100%);
          opacity: 0;
      }
      100% {
          transform: translateX(0);
          opacity: 1;
      }
  }
  
  @keyframes scaleIn {
      0% {
          transform: scale(0.8);
          opacity: 0;
      }
      100% {
          transform: scale(1);
          opacity: 1;
      }
  }
  
  @keyframes morphing {
      0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
      50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
  }
  
  @keyframes skillFloat {
      0%, 100% { 
          transform: translateY(0px) rotate(0deg);
          opacity: 0.7;
      }
      50% { 
          transform: translateY(-20px) rotate(5deg);
          opacity: 1;
      }
  }
  
  @keyframes particleFloat {
      0%, 100% { 
          transform: translate(0, 0) scale(1);
          opacity: 0.3;
      }
      33% { 
          transform: translate(30px, -30px) scale(1.1);
          opacity: 0.6;
      }
      66% { 
          transform: translate(-20px, -60px) scale(0.9);
          opacity: 0.8;
      }
  }
  
  @keyframes textGlow {
      0%, 100% {
          text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
      }
      50% {
          text-shadow: 0 0 20px rgba(139, 92, 246, 0.8),
                       0 0 30px rgba(139, 92, 246, 0.6);
      }
  }
  
  @keyframes cardHover {
      0% { transform: translateY(0) scale(1); }
      100% { transform: translateY(-12px) scale(1.02); }
  }
  
  @keyframes iconSpin {
      0% { transform: rotate(0deg) scale(1); }
      50% { transform: rotate(180deg) scale(1.1); }
      100% { transform: rotate(360deg) scale(1); }
  }
  
  @keyframes backgroundShift {
      0% { background-position: 0% 0%; }
      50% { background-position: 100% 100%; }
      100% { background-position: 0% 0%; }
  }
  
  .animate-fade-in-up {
      animation: fadeInUp 0.6s ease-out;
  }
  
  .animate-fade-in-left {
      animation: fadeInLeft 0.6s ease-out;
  }
  
  .animate-pulse-glow {
      animation: pulse-glow 2s infinite;
  }
  
  .animate-gradient {
      background-size: 200% 200%;
      animation: gradient-shift 3s ease infinite;
  }
  
  .animate-float {
      animation: float 3s ease-in-out infinite;
  }
  
  .animate-glow {
      animation: glow 2s ease-in-out infinite;
  }
  
  .animate-slide-in-left {
      animation: slideInFromLeft 0.6s ease-out;
  }
  
  .animate-slide-in-right {
      animation: slideInFromRight 0.6s ease-out;
  }
  
  .animate-scale-in {
      animation: scaleIn 0.5s ease-out;
  }
  
  .animate-morphing {
      animation: morphing 8s ease-in-out infinite;
  }
  
  .animate-skill-float {
      animation: skillFloat 4s ease-in-out infinite;
  }
  
  .animate-particle-float {
      animation: particleFloat 6s ease-in-out infinite;
  }
  
  .animate-text-glow {
      animation: textGlow 2s ease-in-out infinite;
  }
  
  .animate-card-hover {
      animation: cardHover 0.3s ease-out forwards;
  }
  
  .animate-icon-spin {
      animation: iconSpin 0.6s ease-in-out;
  }
  
  .animate-background-shift {
      background-size: 400% 400%;
      animation: backgroundShift 8s ease-in-out infinite;
  }
  
  /* Gradient Text */
  .gradient-text {
      background: var(--secondary-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent;
  }
  
  .gradient-text-primary {
      background: var(--primary-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent;
  }
  
  /* Hover Effects */
  .hover-lift {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .hover-lift:hover {
      transform: translateY(-12px) scale(1.02);
      box-shadow: 0 25px 50px rgba(139, 92, 246, 0.3),
                  0 0 0 1px rgba(255, 255, 255, 0.1);
  }
  
  .hover-glow {
      transition: all 0.3s ease;
  }
  
  .hover-glow:hover {
      box-shadow: 0 0 30px rgba(139, 92, 246, 0.5),
                  0 0 60px rgba(139, 92, 246, 0.3),
                  0 0 90px rgba(139, 92, 246, 0.1);
      transform: scale(1.05);
  }
  
  /* Grid Pattern */
  .grid-pattern {
      background-image: 
          linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
          linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
      background-size: 20px 20px;
  }
  
  /* Navigation */
  .nav-link {
      color: #cbd5e1;
      text-decoration: none;
      transition: color 0.3s ease;
      position: relative;
  }
  
  .nav-link:hover {
      color: #ffffff;
  }
  
  .nav-link::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--primary-gradient);
      transition: width 0.3s ease;
  }
  
  .nav-link:hover::after {
      width: 100%;
  }
  
  /* Buttons */
  .cta-button-primary {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 1rem 2rem;
      background: var(--primary-gradient);
      border-radius: 0.75rem;
      font-weight: 600;
      font-size: 1.125rem;
      text-decoration: none;
      color: white;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
  }
  
  .cta-button-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
  }
  
  .cta-button-secondary {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 1rem 2rem;
      background: var(--glass-bg);
      backdrop-filter: blur(16px);
      border: 1px solid var(--glass-border);
      border-radius: 0.75rem;
      font-weight: 600;
      font-size: 1.125rem;
      text-decoration: none;
      color: white;
      transition: all 0.3s ease;
  }
  
  .cta-button-secondary:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: translateY(-2px);
  }
  
  /* User Type Cards */
  .user-type-card {
      background: var(--glass-bg);
      backdrop-filter: blur(16px);
      border: 1px solid var(--glass-border);
      border-radius: 1.5rem;
      padding: 2rem;
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      group: hover;
      position: relative;
      overflow: hidden;
  }
  
  .user-type-card:hover {
      transform: translateY(-12px) scale(1.02);
      box-shadow: 0 25px 50px rgba(139, 92, 246, 0.3),
                  0 0 0 1px rgba(255, 255, 255, 0.1);
      background: rgba(255, 255, 255, 0.2);
  }
  
  .user-type-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
      transition: left 0.5s;
  }
  
  .user-type-card:hover::before {
      left: 100%;
  }
  
  /* Floating Skill Tags */
  .skill-float {
      position: absolute;
      padding: 0.5rem 1rem;
      background: rgba(139, 92, 246, 0.2);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(139, 92, 246, 0.3);
      border-radius: 9999px;
      font-size: 0.875rem;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.8);
      animation: skillFloat 4s ease-in-out infinite;
      pointer-events: none;
  }
  
  .skill-float:nth-child(odd) {
      animation-direction: reverse;
  }
  
  /* Enhanced Hover Effects */
  .hover-lift {
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .hover-lift:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3),
                  0 0 0 1px rgba(255, 255, 255, 0.1);
  }
  
  .hover-glow {
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
  }
  
  .hover-glow::before {
      content: '';
      position: absolute;
      inset: -2px;
      background: linear-gradient(45deg, #8b5cf6, #06b6d4, #8b5cf6);
      border-radius: inherit;
      opacity: 0;
      transition: opacity 0.4s;
      z-index: -1;
      background-size: 200% 200%;
      animation: backgroundShift 3s ease infinite;
  }
  
  .hover-glow:hover::before {
      opacity: 0.3;
  }
  
  .hover-glow:hover {
      transform: scale(1.05);
      box-shadow: 0 0 30px rgba(139, 92, 246, 0.5),
                  0 0 60px rgba(139, 92, 246, 0.3),
                  0 0 90px rgba(139, 92, 246, 0.1);
  }
  
  /* Enhanced Hover Effects */
  .hover-glow-text {
      transition: all 0.3s ease;
  }
  
  .hover-glow-text:hover {
      text-shadow: 0 0 10px rgba(139, 92, 246, 0.8),
                   0 0 20px rgba(139, 92, 246, 0.6),
                   0 0 30px rgba(139, 92, 246, 0.4);
      transform: scale(1.05);
  }
  
  .interactive-button {
      position: relative;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .interactive-button::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transition: left 0.5s;
  }
  
  .interactive-button:hover::before {
      left: 100%;
  }
  
  .interactive-button:hover {
      transform: translateY(-2px) scale(1.02);
      box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
  }
  
  /* Enhanced Navigation */
  .nav-link {
      position: relative;
      transition: all 0.3s ease;
  }
  
  .nav-link::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 50%;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, #8b5cf6, #06b6d4);
      transition: all 0.3s ease;
      transform: translateX(-50%);
  }
  
  .nav-link:hover::after {
      width: 100%;
  }
  
  .nav-link:hover {
      color: #ffffff;
      transform: translateY(-2px);
      text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
  }
  
  /* Enhanced Card Animations */
  .user-type-card {
      position: relative;
      overflow: hidden;
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .user-type-card::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: conic-gradient(from 0deg, transparent, rgba(139, 92, 246, 0.1), transparent);
      animation: rotate 4s linear infinite;
      opacity: 0;
      transition: opacity 0.3s;
  }
  
  .user-type-card:hover::before {
      opacity: 1;
  }
  
  @keyframes rotate {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
  }
  
  /* Magnetic Button Effect */
  .magnetic-button {
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: pointer;
  }
  
  .magnetic-button:hover {
      transform: scale(1.05) translateY(-2px);
      box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
  }
  
  /* Ripple Effect */
  .ripple-effect {
      position: relative;
      overflow: hidden;
  }
  
  .ripple-effect::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.3);
      transform: translate(-50%, -50%);
      transition: width 0.6s, height 0.6s;
  }
  
  .ripple-effect:active::after {
      width: 300px;
      height: 300px;
  }
  /* Form Styles */
  .form-input {
      width: 100%;
      padding: 1rem;
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(16px);
      border: 1px solid var(--glass-border);
      border-radius: 0.5rem;
      color: white;
      font-size: 1rem;
      transition: all 0.3s ease;
  }
  
  .form-input:focus {
      outline: none;
      border-color: #8b5cf6;
      box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
      background: rgba(255, 255, 255, 0.12);
  }
  
  .form-input::placeholder {
      color: #94a3b8;
  }
  
  .form-select {
      width: 100%;
      padding: 1rem;
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(16px);
      border: 1px solid var(--glass-border);
      border-radius: 0.5rem;
      color: white;
      font-size: 1rem;
      transition: all 0.3s ease;
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
  }
  
  .form-select:focus {
      outline: none;
      border-color: #8b5cf6;
      box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
      background: rgba(255, 255, 255, 0.12);
  }
  
  /* Enhanced dropdown styling for better visibility */
  .form-select option {
      background-color: rgba(30, 41, 59, 0.98);
      color: #ffffff;
      padding: 0.5rem;
      border: none;
  }
  
  .form-select option:hover,
  .form-select option:focus {
      background-color: rgba(139, 92, 246, 0.8);
      color: #ffffff;
  }
  
  /* Skill heatmap styles */
  .skill-heatmap-item {
      transition: all 0.3s ease;
      border: 1px solid transparent;
  }
  
  .skill-heatmap-item.high {
      background: linear-gradient(135deg, rgba(239, 68, 68, 0.3), rgba(220, 38, 38, 0.3));
      border-color: rgba(239, 68, 68, 0.5);
  }
  
  .skill-heatmap-item.medium {
      background: linear-gradient(135deg, rgba(245, 158, 11, 0.3), rgba(217, 119, 6, 0.3));
      border-color: rgba(245, 158, 11, 0.5);
  }
  
  .skill-heatmap-item.low {
      background: linear-gradient(135deg, rgba(34, 197, 94, 0.3), rgba(22, 163, 74, 0.3));
      border-color: rgba(34, 197, 94, 0.5);
  }
  
  .skill-heatmap-item:hover {
      transform: scale(1.05);
      box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
  }
  
  /* Utility border helpers for better separation */
  .glass-card { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 1rem; }
  
  /* Skill Tags */
  .skill-tag {
      display: inline-block;
      padding: 0.5rem 1rem;
      font-size: 0.875rem;
      font-weight: 500;
      border-radius: 9999px;
      background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.2));
      border: 1px solid rgba(139, 92, 246, 0.3);
      transition: all 0.3s ease;
      cursor: pointer;
  }
  
  .skill-tag:hover {
      background: linear-gradient(135deg, rgba(139, 92, 246, 0.4), rgba(6, 182, 212, 0.4));
      transform: scale(1.05);
  }
  
  .skill-tag.selected {
      background: var(--primary-gradient);
  }
  
  /* Dashboard Styles */
  .dashboard-card {
      background: var(--glass-bg);
      backdrop-filter: blur(16px);
      border: 1px solid var(--glass-border);
      border-radius: 1rem;
      padding: 1.5rem;
      transition: all 0.3s ease;
  }
  
  .dashboard-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }
  
  /* Progress Bar */
  .progress-bar {
      width: 100%;
      height: 8px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 4px;
      overflow: hidden;
  }
  
  .progress-fill {
      height: 100%;
      background: var(--primary-gradient);
      transition: width 0.5s ease;
      border-radius: 4px;
  }
  
  /* Loading States */
  .loading-spinner {
      width: 40px;
      height: 40px;
      border: 3px solid rgba(139, 92, 246, 0.2);
      border-top: 3px solid #8b5cf6;
      border-radius: 50%;
      animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
      .text-5xl { font-size: 2.5rem; }
      .text-7xl { font-size: 3rem; }
      .px-8 { padding-left: 1rem; padding-right: 1rem; }
      .py-20 { padding-top: 3rem; padding-bottom: 3rem; }
      
      .grid-cols-6 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
      .grid-cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .grid-cols-3 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
      
      .dashboard-card { padding: 1rem; }
      .chart-container { height: 250px; }
  }
  
  @media (max-width: 640px) {
      .text-4xl { font-size: 1.875rem; }
      .text-5xl { font-size: 2.25rem; }
      
      .grid-cols-2 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
      .gap-8 { gap: 1rem; }
      .gap-6 { gap: 0.75rem; }
      
      .px-4 { padding-left: 0.75rem; padding-right: 0.75rem; }
      .py-12 { padding-top: 2rem; padding-bottom: 2rem; }
      
      .modal { 
          width: 95%; 
          padding: 1.5rem;
          margin: 1rem;
      }
      
      .text-2xl {
          font-size: 1.5rem;
      }
      
      .text-3xl {
          font-size: 1.875rem;
      }
      
      .user-type-card {
          padding: 1.5rem;
      }
      
      .cta-button-primary {
          padding: 0.75rem 1.5rem;
          font-size: 1rem;
      }
      
      .nav-link {
          font-size: 0.875rem;
      }
  }
  
  @media (max-width: 480px) {
      .text-4xl {
          font-size: 1.5rem;
      }
      
      .text-5xl {
          font-size: 1.875rem;
      }
      
      .text-6xl {
          font-size: 2.25rem;
      }
      
      .px-4 {
          padding-left: 0.5rem;
          padding-right: 0.5rem;
      }
      
      .dashboard-card {
          padding: 0.75rem;
      }
      
      .modal {
          width: 98%;
          margin: 0.5rem;
          padding: 1rem;
      }
      
      .user-type-card {
          padding: 1rem;
      }
      
      .form-input,
      .form-select {
          padding: 0.75rem;
          font-size: 0.875rem;
      }
      
      .cta-button-primary {
          padding: 0.75rem 1rem;
          font-size: 0.875rem;
      }
      
      .skill-tag {
          padding: 0.25rem 0.5rem;
          font-size: 0.75rem;
      }
      
      .chart-container {
          height: 180px;
      }
  }
  
  /* Page Transitions */
  .barba-container {
      opacity: 0;
      transform: translateY(30px);
  }
  
  .barba-container.barba-current {
      opacity: 1;
      transform: translateY(0);
  }
  
  /* Notification Styles */
  .notification {
      position: fixed;
      top: 20px;
      right: 20px;
      padding: 1rem 1.5rem;
      background: var(--glass-bg);
      backdrop-filter: blur(16px);
      border: 1px solid var(--glass-border);
      border-radius: 0.5rem;
      color: white;
      z-index: 1000;
      transform: translateX(100%);
      transition: transform 0.3s ease;
  }
  
  .notification.show {
      transform: translateX(0);
  }
  
  .notification.success {
      border-left: 4px solid #10b981;
  }
  
  .notification.error {
      border-left: 4px solid #ef4444;
  }
  
  .notification.info {
      border-left: 4px solid #3b82f6;
  }
  
  /* Modal Styles */
  .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(8px);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1000;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
  }
  
  .modal-overlay.active {
      opacity: 1;
      visibility: visible;
  }
  
  .modal {
      background: var(--glass-bg);
      backdrop-filter: blur(16px);
      border: 1px solid var(--glass-border);
      border-radius: 1rem;
      padding: 2rem;
      max-width: 500px;
      width: 90%;
      transform: scale(0.9);
      transition: transform 0.3s ease;
  }
  
  .modal-overlay.active .modal {
      transform: scale(1);
  }
  
  /* Chart Container */
  .chart-container {
      position: relative;
      height: 300px;
      width: 100%;
      background: var(--glass-bg);
      backdrop-filter: blur(16px);
      border: 1px solid var(--glass-border);
      border-radius: 1rem;
      padding: 1rem;
  }
  
  /* Swiper Customization */
  .swiper {
      width: 100%;
      height: 100%;
  }
  
  .swiper-slide {
      text-align: center;
      font-size: 18px;
      background: var(--glass-bg);
      backdrop-filter: blur(16px);
      border: 1px solid var(--glass-border);
      border-radius: 1rem;
      display: flex;
      justify-content: center;
      align-items: center;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
      color: #8b5cf6;
  }
  
  .swiper-pagination-bullet-active {
      background: #8b5cf6;
  }
  
  /* Enhanced mobile responsiveness */
  @media (max-width: 1024px) {
      .lg\:col-span-2 {
          grid-column: span 1 / span 1;
      }
      
      .lg\:grid-cols-3 {
          grid-template-columns: repeat(1, minmax(0, 1fr));
      }
      
      .text-5xl {
          font-size: 2.5rem;
      }
      
      .text-7xl {
          font-size: 3rem;
      }
      
      .px-8 {
          padding-left: 1rem;
          padding-right: 1rem;
      }
      
      .py-20 {
          padding-top: 3rem;
          padding-bottom: 3rem;
      }
  }
  
  @media (max-width: 768px) {
      .md\:grid-cols-2 {
          grid-template-columns: repeat(1, minmax(0, 1fr));
      }
      
      .md\:grid-cols-3 {
          grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      
      .md\:grid-cols-4 {
          grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      
      .md\:text-5xl {
          font-size: 2.5rem;
      }
      
      .md\:text-7xl {
          font-size: 3rem;
      }
      
      .dashboard-card {
          padding: 1rem;
      }
      
      .chart-container {
          height: 250px;
      }
      
      .modal {
          width: 95%;
          margin: 1rem;
          padding: 1.5rem;
      }
      
      .grid-cols-6 {
          grid-template-columns: repeat(3, minmax(0, 1fr));
      }
      
      .grid-cols-4 {
          grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      
      .grid-cols-3 {
          grid-template-columns: repeat(1, minmax(0, 1fr));
      }
      
      .gap-8 {
          gap: 1rem;
      }
      
      .gap-6 {
          gap: 0.75rem;
      }
  }
  
  /* Fix for navigation on mobile */
  @media (max-width: 768px) {
      .nav-link {
          display: block;
          padding: 0.5rem 0;
      }
      
      .hidden.md\:flex {
          display: none !important;
      }
      
      .md\:hidden {
  }
      .chart-container {
      }
      
      /* Ensure proper spacing on mobile */
      .max-w-7xl {
          max-width: 100%;
          padding-left: 1rem;
          padding-right: 1rem;
      }
      
      /* Fix hero section on mobile */
      .min-h-screen {
          min-height: 100vh;
          padding-top: 2rem;
      }
      
      /* Improve readability on small screens */
      .text-xl {
          font-size: 1.125rem;
          line-height: 1.75rem;
      }
      
      /* Better button sizing on mobile */
      .px-8 {
          padding-left: 1rem;
          padding-right: 1rem;
      }
      
      .py-4 {
          padding-top: 0.75rem;
          padding-bottom: 0.75rem;
      }
  }
  
  /* Additional responsive utilities */
  @media (max-width: 1200px) {
      .max-w-7xl {
          max-width: 1024px;
      }
  }
  
  @media (max-width: 1024px) {
      .max-w-7xl {
          max-width: 768px;
      }
  }
  
  @media (max-width: 768px) {
      .max-w-7xl {
          max-width: 640px;
      }
  }
  
  @media (max-width: 640px) {
      .max-w-7xl {
          max-width: 100%;
      }
  }
  
  /* Responsive grid improvements */
  @media (max-width: 1024px) {
      .lg\:grid-cols-4 {
          grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      
      .lg\:grid-cols-6 {
          grid-template-columns: repeat(3, minmax(0, 1fr));
      }
  }
  
  @media (max-width: 768px) {
      .md\:grid-cols-6 {
          grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      
      .lg\:grid-cols-4 {
          grid-template-columns: repeat(1, minmax(0, 1fr));
      }
      
      .lg\:grid-cols-6 {
          grid-template-columns: repeat(2, minmax(0, 1fr));
      }
  }
  
  @media (max-width: 640px) {
      .sm\:grid-cols-2 {
          grid-template-columns: repeat(1, minmax(0, 1fr));
      }
      
      .sm\:grid-cols-3 {
          grid-template-columns: repeat(1, minmax(0, 1fr));
      }
      
      .md\:grid-cols-6 {
          grid-template-columns: repeat(1, minmax(0, 1fr));
      }
      
      .lg\:grid-cols-6 {
          grid-template-columns: repeat(1, minmax(0, 1fr));
      }
          height: 200px;
  }
}