:root {
  /* Light Theme Variables */
  --primary: #4361ee;
  --primary-dark: #3a56d4;
  --primary-light: #e6eeff;
  --secondary: #7209b7;
  --accent: #06d6a0;
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --text-light: #94a3b8;
  --bg-white: #ffffff;
  --bg-light: #f8fafc;
  --bg-gray: #f1f5f9;
  --border-light: #e2e8f0;
  --border: #cbd5e1;
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
  --card-shadow-hover: 0 10px 15px rgba(0, 0, 0, 0.1),
    0 4px 6px rgba(0, 0, 0, 0.05);
  --transition: all 0.3s ease;
}

[data-theme="dark"] {
  /* Dark Theme Variables */
  --primary: #5e72e4;
  --primary-dark: #4d5fd0;
  --primary-light: #2d3748;
  --secondary: #9f7aea;
  --accent: #0bc5ea;
  --text-primary: #edf2f7;
  --text-secondary: #a0aec0;
  --text-light: #718096;
  --bg-white: #1a202c;
  --bg-light: #171923;
  --bg-gray: #2d3748;
  --border-light: #4a5568;
  --border: #4a5568;
  --success: #48bb78;
  --warning: #ecc94b;
  --error: #f56565;
  --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
  --card-shadow-hover: 0 10px 15px rgba(0, 0, 0, 0.2),
    0 4px 6px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text-primary);
  background-color: var(--bg-light);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 16px;
  color: var(--text-primary);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 16px;
  color: var(--text-secondary);
}

/* Navigation */
.navbar {
  background-color: var(--bg-white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
}

.nav-brand h2 {
  margin: 0;
  color: var(--primary);
  font-weight: 700;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--primary);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 3px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.theme-toggle {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 1.2rem;
  transition: var(--transition);
}

.theme-toggle:hover {
  color: var(--primary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
  gap: 8px;
}

.btn--primary {
  background: var(--primary);
  color: white;
}

.btn--primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn.enrolled {
  background-color: var(--success);
  color: white;
  cursor: not-allowed;
  opacity: 0.8;
}

.btn--outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-secondary);
}

.btn--outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn--sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.btn--lg {
  padding: 12px 24px;
  font-size: 1.05rem;
}

.btn--full-width {
  width: 100%;
}

.btn-danger {
  background: transparent;
  border: none;
  color: var(--error);
  font-size: 1rem;
}

/* Hero Section */
.hero {
  background:url('https://media3.giphy.com/media/v1.Y2lkPTc5MGI3NjExaWhzZnd1ZmpweHFlaHprb2kwMXAxajFxZXVlNzRtY3V1aWdnOXgxMiZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/7b8jdNUoFBdcoILjjv/giphy.gif');

  background-size: cover;      /* Make image cover the whole area */
  background-position: center; /* Keep it centered */
  background-repeat: no-repeat;
  min-height: 100vh;           /* Ensure full height */
  margin: 0;
  color: white;
  padding: 80px 0;
  text-align: center;
}

.hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3rem;
  color: white;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}

/* Sections */
section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 48px;
}

/* Cards */
.features-grid,
.steps-grid,
.testimonials-grid,
.careers-grid,
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.feature-card,
.step-card,
.testimonial-card,
.career-card,
.course-card {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
}

.feature-card:hover,
.step-card:hover,
.testimonial-card:hover,
.career-card:hover,
.course-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 40px;
  margin-bottom: 16px;
  color: var(--primary);
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-bottom: 16px;
}

/* Testimonials */
.testimonial-content {
  position: relative;
  margin-bottom: 20px;
}

.testimonial-content:before {
  content: "\201C";
  font-size: 60px;
  color: var(--primary-light);
  position: absolute;
  top: -20px;
  left: -10px;
  z-index: 0;
}

.testimonial-content p {
  position: relative;
  z-index: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.testimonial-author strong {
  color: var(--text-primary);
}

.testimonial-author span {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
  background: var(--bg-gray);
  text-align: center;
  padding: 60px 0;
  border-radius: 12px;
}

/* Forms */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-primary);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  background-color: var(--bg-white);
  color: var(--text-primary);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}

/* Auth */
.auth-container {
  max-width: 450px;
  margin: 60px auto;
  background: var(--bg-white);
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-light);
}

.auth-form h2 {
  text-align: center;
  margin-bottom: 24px;
}

.auth-switch {
  text-align: center;
  margin-top: 24px;
}

/* Profile Setup */
.profile-setup {
  max-width: 600px;
  margin: 60px auto;
  background: var(--bg-white);
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-light);
}

.profile-setup h2 {
  text-align: center;
  margin-bottom: 24px;
}

.skills-input .skill-item {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.interests-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Assessment */
.assessment-container {
  max-width: 700px;
  margin: 60px auto;
  background: var(--bg-white);
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-light);
}

.assessment-header {
  text-align: center;
  margin-bottom: 32px;
}

.assessment-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.assessment-buttons .btn {
  flex-grow: 1;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: var(--bg-gray);
  border-radius: 4px;
  margin: 16px 0;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--primary);
  border-radius: 4px;
  transition: width 0.3s ease;
}

.progress-text {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.question-container {
  margin-bottom: 24px;
}

.answer-options {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.answer-option {
  padding: 16px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
}

.answer-option:hover {
  background: var(--primary-light);
  border-color: var(--primary);
}

.answer-option.selected {
  border-color: var(--primary);
  background: var(--primary-light);
  box-shadow: 0 0 0 2px var(--primary);
}

/* Dashboard */
.dashboard-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.dashboard-header {
  text-align: center;
  margin-bottom: 16px;
  padding: 32px;
  background: var(--bg-white);
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-light);
}

.dashboard-main-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
}

.dashboard-card {
  background: var(--bg-white);
  padding: 24px;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
}

.dashboard-card h3 {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}

/* Timeline */
.roadmap-timeline {
  position: relative;
  padding-left: 28px;
}

.timeline-item {
  position: relative;
  margin-bottom: 24px;
}

.timeline-item:not(:last-child):before {
  content: "";
  position: absolute;
  left: -20px;
  top: 30px;
  bottom: -24px;
  width: 2px;
  background: var(--border-light);
}

.timeline-marker {
  width: 16px;
  height: 16px;
  background: var(--primary);
  border: 3px solid var(--bg-white);
  border-radius: 50%;
  position: absolute;
  left: -28px;
  top: 5px;
  z-index: 2;
}

.timeline-content h4 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

/* Progress Items */
.progress-items {
  display: grid;
  gap: 16px;
}

.progress-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.progress-item span:first-child {
  min-width: 140px;
  font-weight: 500;
}

.progress-item .progress-bar {
  flex: 1;
  height: 8px;
}

.progress-item span:last-child {
  min-width: 40px;
  text-align: right;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.modal.hidden {
  display: none;
}

.modal-content {
  background: var(--bg-white);
  border-radius: 12px;
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--border-light);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid var(--border-light);
  background: var(--primary);
  color: white;
  border-radius: 12px 12px 0 0;
}

.modal-header h3 {
  margin: 0;
  color: white;
}

.modal-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: white;
}

.modal-body {
  padding: 24px;
}

/* Career Details Styles */
.career-detail-section {
  margin-bottom: 24px;
}

.career-detail-section h4 {
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.skill-tag {
  background: var(--primary-light);
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

.learning-path {
  display: grid;
  gap: 12px;
}

.learning-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--bg-light);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.step-number-small {
  width: 30px;
  height: 30px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  flex-shrink: 0;
}

/* Explore Careers Page */
.page-header {
  text-align: center;
  margin-bottom: 48px;
}

.search-bar {
  max-width: 500px;
  margin: 0 auto 32px;
  position: relative;
}

.search-bar .form-control {
  padding-left: 40px;
}

.search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
}

.filters {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-label {
  font-weight: 500;
  color: var(--text-secondary);
}

.career-card h3 {
  color: var(--primary);
}

.career-card p {
  flex-grow: 1;
}

.career-card-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.salary-range {
  font-weight: 600;
  color: var(--success);
}

.course-card-features {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  flex-grow: 1;
}

.course-card-rating {
  font-weight: 600;
  color: var(--warning);
}

.course-card-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

/* Enhanced Dashboard Styles */
.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.stat-card {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 20px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-light);
  text-align: center;
}

.stat-card h3 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.stat-card p {
  color: var(--text-secondary);
  margin: 0;
}

.dashboard-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.action-card {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 20px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
  cursor: pointer;
}

.action-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--card-shadow-hover);
}

.action-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.action-content h4 {
  margin-bottom: 4px;
  color: var(--text-primary);
}

.action-content p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 0.9rem;
}

/* Community Page Styles */
.community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.community-card {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
}

.community-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-5px);
}

.community-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.community-card-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  color: var(--primary);
  font-size: 1.5rem;
}

.community-card h3 {
  margin-bottom: 8px;
}

.topic-list,
.mentor-list {
  margin-top: 16px;
}

.topic-item,
.mentor-item {
  padding: 12px;
  border-radius: 8px;
  background: var(--bg-light);
  margin-bottom: 8px;
  transition: var(--transition);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topic-item:hover,
.mentor-item:hover {
  background: var(--primary-light);
}

.topic-item h4 {
  margin-bottom: 4px;
  font-size: 1rem;
}

.topic-item span {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.mentor-item {
  display: flex;
  align-items: center;
}

.mentor-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-right: 12px;
  font-weight: bold;
}

/* Resume Preview Modal */
#resume-preview-content {
  font-family: "Times New Roman", Times, serif;
  color: var(--text-primary);
  background-color: var(--bg-white);
  padding: 20px;
  border-radius: 8px;
}

#resume-preview-content h2,
#resume-preview-content h3,
#resume-preview-content h4 {
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 5px;
  margin-bottom: 10px;
}

#resume-preview-content p {
  color: var(--text-secondary);
}

#resume-preview-content .skills-list {
  padding: 0;
  margin-bottom: 15px;
}

#resume-preview-content .skill-tag {
  background: var(--bg-gray);
  color: var(--text-primary);
  padding: 5px 10px;
}

#resume-preview-content .experience-item,
#resume-preview-content .education-item {
  margin-bottom: 15px;
}

/* Chatbot */
.chatbot-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
}

.chatbot-toggle {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(67, 97, 238, 0.3);
  transition: var(--transition);
}

.chatbot-toggle:hover {
  transform: scale(1.05);
}

.chatbot-window {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 350px;
  height: 450px;
  background: var(--bg-white);
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.chatbot-window.hidden {
  display: none;
}

.chatbot-header {
  background: var(--primary);
  color: white;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chatbot-header h4 {
  margin: 0;
  color: white;
}

.chatbot-header button {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
}

.chatbot-messages {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.message {
  max-width: 80%;
  padding: 12px;
  border-radius: 12px;
  word-wrap: break-word;
}

.bot-message {
  align-self: flex-start;
  background: var(--bg-gray);
  color: var(--text-primary);
}

.user-message {
  align-self: flex-end;
  background: var(--primary);
  color: white;
}

.chatbot-input {
  padding: 16px;
  border-top: 1px solid var(--border-light);
  display: flex;
  gap: 8px;
}

.chatbot-input input {
  flex: 1;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  background-color: var(--bg-light);
  color: var(--text-primary);
}

.chatbot-input button {
  background: var(--primary);
  color: white;
  border: none;
  padding: 12px 16px;
  border-radius: 8px;
  cursor: pointer;
}

/* Footer */
.footer {
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
  padding: 48px 0 24px;
  margin-top: 60px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.footer-section h4,
.footer-section h5 {
  margin-bottom: 16px;
}

.footer-section a {
  display: block;
  color: var(--text-secondary);
  margin-bottom: 12px;
  text-decoration: none;
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Utility Classes */
.hidden {
  display: none !important;
}

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

.mt-4 {
  margin-top: 16px;
}

.mb-4 {
  margin-bottom: 16px;
}

/* Page visibility management */
.page {
  display: none;
}

.page.active {
  display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  section {
    padding: 60px 0;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    flex-direction: column;
    background: var(--bg-white);
    padding: 24px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    border: 1px solid var(--border-light);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 60px 0;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .dashboard-main-content {
    grid-template-columns: 1fr;
  }

  .chatbot-window {
    width: 320px;
    right: -15px;
  }

  .resume-builder {
    grid-template-columns: 1fr;
  }

  .filters {
    flex-direction: column;
    align-items: center;
  }

  .filter-group {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .auth-container,
  .profile-setup,
  .assessment-container {
    padding: 24px;
  }

  .chatbot-window {
    width: 280px;
    right: -10px;
  }

  .modal-content {
    width: 95%;
  }
}
