
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
    
body {
  font-family: 'Inter', sans-serif;
  scroll-behavior: smooth;
}

.gradient-text {
  background: linear-gradient(90deg, #0ea5e9, #6366f1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gradient-bg {
  background: linear-gradient(135deg, #0ea5e9, #6366f1);
}

.card-hover {
  transition: all 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.nav-link {
  position: relative;
}

.nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #0ea5e9;
  transition: width 0.3s ease;
}

.nav-link:hover:after {
  width: 100%;
}

.btn-primary {
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.feature-icon {
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.how-it-works-step {
  position: relative;
}

.how-it-works-step:not(:last-child):after {
  content: '';
  position: absolute;
  top: 50%;
  right: -50px;
  width: 40px;
  height: 2px;
  background: #cbd5e1;
}
/* Add to your existing CSS */
#quiz-dashboard {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  z-index: 50;
}

#quiz-container label input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 2px solid #cbd5e1;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  transition: all 0.2s ease;
}

#quiz-container label input[type="radio"]:checked {
  border-color: #0ea5e9;
  background-color: #0ea5e9;
  background-image: radial-gradient(circle, white 35%, transparent 40%);
}

#quiz-container label:hover input[type="radio"] {
  border-color: #0ea5e9;
}

body.overflow-hidden {
  overflow: hidden;
}

/* Add to style.css */
#quiz-dashboard {
  position: static;
  min-height: 100vh;
}

#quiz-container label {
  display: flex;
  align-items: center;
  padding: 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  margin-bottom: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

#quiz-container label:hover {
  background-color: #f8fafc;
  border-color: #cbd5e1;
}

#quiz-container input[type="radio"] {
  margin-right: 0.75rem;
  width: 1.25rem;
  height: 1.25rem;
}

#quiz-container .question-text {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #1e293b;
}
html {
  scroll-behavior: smooth;
}
body {
  overflow-x: hidden;
}
body.overflow-hidden {
  overflow: hidden;
}
#mobile-menu {
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
}

/* Theme: Light */
body.theme-light {
  background-color: #ffffff;
  color: #1e293b;
}

/* Theme: Dark */
body.theme-dark {
  background-color: #0f172a;
  color: #f1f5f9;
}

body.theme-dark .card-hover:hover {
  box-shadow: 0 20px 25px -5px rgba(255, 255, 255, 0.1), 0 10px 10px -5px rgba(255, 255, 255, 0.04);
}

body.theme-dark .nav-link:after {
  background-color: #6366f1;
}

/* Smooth transitions for theme switch */
body {
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Add to your existing style section */
.icon-line {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Logo icon animation */
.gradient-bg:hover {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(14, 165, 233, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(14, 165, 233, 0);
  }
}




.scale-y-0 {
  transform: scaleY(0);
}
.scale-y-100 {
  transform: scaleY(1);
}
.opacity-0 {
  opacity: 0;
}
.opacity-100 {
  opacity: 1;
}


/* feautred card */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }
  .animate-float {
    animation: float 3s ease-in-out infinite;
  }
  /* COunter */  
  .counter-card {
      transition: all 0.4s ease;
    }
    .counter-card:hover {
      transform: scale(1.05);
      box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
    }
    .fade-in {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 1s ease, transform 1s ease;
    }
    .fade-in.appear {
      opacity: 1;
      transform: translateY(0);
    }

#quiz-form {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

#quiz-form:not(.hidden) {
  opacity: 1;
  visibility: visible;
}

#quiz-form > div {
  transform: translateY(20px);
  transition: all 0.3s ease;
}

#quiz-form:not(.hidden) > div {
  transform: translateY(0);
}
    body {
      margin: 0;
      height: 100vh;
      background-color: #f9fafb;
      font-family: Arial, sans-serif;
    }

    .floating-menu {
      position: fixed;
      top: 50%;
      left: 5px;
      transform: translateY(-50%);
      z-index: 1000;
    }

    /* Minimal Main Button */
    .main-btn {
      width: 50px;
      height: 50px;
      background: transparent;
      color: #4f46e5;
      font-size: 28px;
      border: none;
      border-radius: 50%;
      cursor: pointer;
      position: relative;
      z-index: 10;
      transition: transform 0.3s ease;
    }

    .main-btn:hover {
      transform: scale(1.15);
    }

    .main-btn.active {
      transform: rotate(90deg);
    }

    .circle-options {
      position: absolute;
      top: 0;
      left: 60px;
      width: 200px;
      height: 200px;
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .circle-options.active {
      pointer-events: auto;
      opacity: 1;
    }

    .circle-options button {
      position: absolute;
      width: 45px;
      height: 45px;
      border: none;
      border-radius: 50%;
      color: white;
      font-size: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .circle-options button:nth-child(1) {
      background-color: #3b82f6; /* Theme */
    }

    .circle-options button:nth-child(2) {
      background-color: #ec4899; /* Profile */
    }

    .circle-options button:nth-child(3) {
      background-color: #f59e0b; /* Help */
    }

    .circle-options button:nth-child(4) {
      background-color: #10b981; /* Career Quiz */
    }
body.theme-dark {
  background-color: #121212;
  color: #e0e0e0;
}

/* Typography */
body.theme-dark {
  color: #e0e0e0;
}

body.theme-dark h1,
body.theme-dark h2,
body.theme-dark h3,
body.theme-dark h4,
body.theme-dark h5,
body.theme-dark h6 {
  color: #ffffff;
}

body.theme-dark .gradient-text {
  background: linear-gradient(90deg, #ff6b6b, #ff8e8e);
  -webkit-background-clip: text;
  background-clip: text;
}

/* Backgrounds */
body.theme-dark .gradient-bg {
  background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
}

body.theme-dark .bg-white,
body.theme-dark .bg-gray-50,
body.theme-dark .bg-primary-50,
body.theme-dark .bg-gradient-to-br.from-primary-50.to-white {
  background-color: #1e1e1e !important;
  background-image: none !important;
}

/* Cards & Containers */
body.theme-dark .card-hover,
body.theme-dark .feature-card,
body.theme-dark .counter-card,
body.theme-dark .step-item,
body.theme-dark .faq-item,
body.theme-dark .bg-white {
  background-color: #2d2d2d !important;
  border-color: #3a3a3a !important;
  color: #e0e0e0;
}

/* Quiz Dashboard */
body.theme-dark #quiz-dashboard {
  background-color: #121212;
}

body.theme-dark #quiz-container {
  background-color: #2d2d2d;
}

/* Hero Section */
body.theme-dark #home {
  background: linear-gradient(to bottom right, #121212, #1e1e1e);
}

/* Stats Section */
body.theme-dark #stats {
  background-color: #121212;
}

/* Features Section */
body.theme-dark #features {
  background-color: #1e1e1e;
}

/* How It Works Section */
body.theme-dark #how {
  background-color: #121212;
}

body.theme-dark .how-it-works-step:not(:last-child):after {
  background: #3a3a3a;
}

/* Testimonials */
body.theme-dark #testimonials {
  background: linear-gradient(to bottom right, #1a1a1a, #121212);
}

/* CTA Section */
body.theme-dark #quiz {
  background: linear-gradient(135deg, #ff6b6b, #ff8e8e) !important;
}

/* FAQ Section */
body.theme-dark .faq-section {
  background-color: #121212 !important;
}

/* Footer */
body.theme-dark footer {
  background: linear-gradient(to bottom right, #1a1a1a, #121212) !important;
}

/* Modals */
body.theme-dark #results-modal .bg-white,
body.theme-dark #quiz-form .bg-white,
body.theme-dark #login-form .bg-white,
body.theme-dark #forgot-password-form .bg-white {
  background-color: #2d2d2d !important;
}

/* Form Elements */
body.theme-dark input,
body.theme-dark select,
body.theme-dark textarea {
  background-color: #2d2d2d;
  color: #e0e0e0;
  border-color: #3a3a3a;
}

body.theme-dark input::placeholder,
body.theme-dark textarea::placeholder {
  color: #9e9e9e;
}

/* Buttons */
body.theme-dark .btn-primary {
  background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
  color: white;
}

body.theme-dark .btn-primary:hover {
  background: linear-gradient(135deg, #e05555, #e07b7b);
}

/* Navigation */
body.theme-dark .nav-link:after {
  background-color: #ff6b6b;
}

body.theme-dark .sticky.top-0 {
  background-color: rgba(30, 30, 30, 0.8) !important;
  backdrop-filter: blur(10px);
}

/* Mobile Menu */
body.theme-dark #mobile-menu-card .gradient-bg {
  background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
}

body.theme-dark #mobile-menu-card a {
  color: #e0e0e0;
}

/* Quiz Components */
body.theme-dark #quiz-container label {
  background-color: #2d2d2d;
  border-color: #3a3a3a;
  color: #e0e0e0;
}

body.theme-dark #quiz-container label:hover {
  background-color: #3a3a3a;
}

body.theme-dark #quiz-container input[type="radio"] {
  border-color: #3a3a3a;
}

body.theme-dark #quiz-container input[type="radio"]:checked {
  border-color: #ff6b6b;
  background-color: #ff6b6b;
}

/* Floating Menu */
body.theme-dark .floating-menu .main-btn {
  color: #ff6b6b;
}

body.theme-dark .circle-options button:nth-child(1) {
  background-color: #ff6b6b;
}

/* Text Colors */
body.theme-dark .text-secondary-600,
body.theme-dark .text-secondary-700,
body.theme-dark .text-secondary-800,
body.theme-dark .text-secondary-900 {
  color: #e0e0e0 !important;
}

body.theme-dark .text-primary-600 {
  color: #ff6b6b !important;
}

/* Shadows */
body.theme-dark .shadow-md,
body.theme-dark .shadow-lg,
body.theme-dark .shadow-xl {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.4),
              0 2px 4px -1px rgba(0, 0, 0, 0.3) !important;
}

/* Specific Overrides */
body.theme-dark .bg-primary-100 {
  background-color: #3a3a3a !important;
}

body.theme-dark .text-primary-500 {
  color: #ff6b6b !important;
}

body.theme-dark .border-primary-200 {
  border-color: #ff8e8e !important;
}

body.theme-dark .bg-primary-50 {
  background-color: #2d2d2d !important;
}

/* Ensure all transitions work */
body.theme-dark .card-hover,
body.theme-dark .feature-card,
body.theme-dark .btn-primary,
body.theme-dark #quiz-container label {
  transition: all 0.3s ease;
}


/* ==================== */
/* DARK THEME FORMS */
/* ==================== */

/* Login Form */
body.theme-dark #login-form .bg-white,
body.theme-dark #forgot-password-form .bg-white {
  background-color: #2d2d2d !important;
}

body.theme-dark #loginFormContent,
body.theme-dark #forgot-password-form > div {
  background-color: #2d2d2d !important;
  border: 1px solid #3a3a3a;
}

/* Text Colors */
body.theme-dark #login-form .text-gray-500,
body.theme-dark #login-form .text-gray-700,
body.theme-dark #forgot-password-form .text-gray-500 {
  color: #b0b0b0 !important;
}

body.theme-dark #login-form .text-gray-400,
body.theme-dark #forgot-password-form .text-gray-400 {
  color: #9e9e9e !important;
}

/* Input Fields */
body.theme-dark #login-form input,
body.theme-dark #login-form select,
body.theme-dark #login-form textarea,
body.theme-dark #forgot-password-form input {
  background-color: #3a3a3a !important;
  color: #e0e0e0 !important;
  border-color: #4a4a4a !important;
}

body.theme-dark #login-form input::placeholder,
body.theme-dark #forgot-password-form input::placeholder {
  color: #9e9e9e !important;
}

/* Icons */
body.theme-dark #login-form .text-gray-400,
body.theme-dark #forgot-password-form .text-gray-400 {
  color: #9e9e9e !important;
}

/* Buttons */
body.theme-dark #login-form .btn-primary,
body.theme-dark #forgot-password-form .btn-primary {
  background: linear-gradient(135deg, #ff6b6b, #ff8e8e) !important;
  color: white !important;
}

body.theme-dark #login-form .btn-primary:hover,
body.theme-dark #forgot-password-form .btn-primary:hover {
  background: linear-gradient(135deg, #e05555, #e07b7b) !important;
}

/* Social Login Buttons */
body.theme-dark #login-form .bg-white {
  background-color: #3a3a3a !important;
  border-color: #4a4a4a !important;
  color: #e0e0e0 !important;
}

body.theme-dark #login-form .text-gray-800 {
  color: #e0e0e0 !important;
}

/* Checkbox */
body.theme-dark #login-form #remember-me {
  background-color: #3a3a3a;
  border-color: #4a4a4a;
}

/* Links */
body.theme-dark #login-form .text-primary-600,
body.theme-dark #forgot-password-form .text-primary-600 {
  color: #ff6b6b !important;
}

body.theme-dark #login-form .text-primary-600:hover,
body.theme-dark #forgot-password-form .text-primary-600:hover {
  color: #ff8e8e !important;
}

/* Cancel Buttons */
body.theme-dark #login-form .text-red-500,
body.theme-dark #forgot-password-form .text-red-500 {
  color: #ff6b6b !important;
}

/* Dividers */
body.theme-dark #login-form .border-gray-200,
body.theme-dark #forgot-password-form .border-gray-200 {
  border-color: #4a4a4a !important;
}

/* Status Messages */
body.theme-dark #resetStatus {
  color: #4caf50 !important;
}

/* Gradient Text */
body.theme-dark #login-form .gradient-text,
body.theme-dark #forgot-password-form .gradient-text {
  background: linear-gradient(90deg, #ff6b6b, #ff8e8e);
  -webkit-background-clip: text;
  background-clip: text;
}

/* Gradient Background for Icons */
body.theme-dark #login-form .gradient-bg,
body.theme-dark #forgot-password-form .gradient-bg {
  background: linear-gradient(135deg, #ff6b6b, #ff8e8e) !important;
}

/* Form Animations */
body.theme-dark #loginFormContent,
body.theme-dark #forgot-password-form > div {
  transition: all 0.3s ease;
}
