/* Base Styles */
:root {
  --primary-color: #4CAF50;
  --secondary-color: #2196F3;
  --accent-color: #FF9800;
  --dark-color: #333;
  --light-color: #f4f4f4;
  --white-color: #fff;
  --gray-color: #888;
  --light-gray: #eee;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  background-color: var(--white-color);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

a {
  text-decoration: none;
  color: var(--dark-color);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.section-header p {
  color: var(--gray-color);
  font-size: 1.1rem;
}

/* Button Styles */
.btn-primary, .btn-secondary, .btn-tertiary {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white-color);
  border: 2px solid var(--primary-color);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--white-color);
  border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
  background-color: transparent;
  color: var(--secondary-color);
}

.btn-tertiary {
  background-color: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.btn-tertiary:hover {
  background-color: var(--accent-color);
  color: var(--white-color);
}
/* hero image */
/* HERO IMAGE STYLING */
.styled-hero-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

/* Smooth Fade-in Animation */
@keyframes fadeInUp {
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

/* Responsive - Center Image on Small Screens */
@media (max-width: 768px) {
  .hero-image {
      text-align: center;
      margin-top: 20px;
  }
  .styled-hero-image {
      max-width: 90%;
  }
}
.styled-hero-image:hover {
  box-shadow: 0 12px 35px rgba(0, 150, 136, 0.4);
  transform: scale(1.02);
  transition: all 0.3s ease;
}















/* Navigation Bar */
.navbar {
  background-color: var(--white-color);
  box-shadow: var(--box-shadow);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 15px 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h1 {
  font-size: 1.8rem;
  color: var(--primary-color);
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-menu li {
  margin-left: 25px;
}

.nav-menu a {
  font-weight: 500;
  transition: var(--transition);
}

.nav-menu a:hover, .nav-menu a.active {
  color: var(--primary-color);
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(33, 150, 243, 0.1) 100%);
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-content {
  flex: 1;
  padding-right: 50px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--gray-color);
}

.hero-image {
  flex: 1;
  text-align: center;
}

/* Health Assessment Section */
.health-assessment {
  padding: 100px 0;
  background-color: var(--light-gray);
}

.assessment-preview {
  max-width: 800px;
  margin: 0 auto;
}

.assessment-card {
  background-color: var(--white-color);
  border-radius: 15px;
  padding: 40px;
  text-align: center;
  box-shadow: var(--box-shadow);
}

.assessment-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.assessment-card h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.assessment-card p {
  color: var(--gray-color);
  margin-bottom: 25px;
}

.assessment-benefits {
  text-align: left;
  max-width: 400px;
  margin: 0 auto 30px;
}

.assessment-benefits li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.assessment-benefits li i {
  color: var(--primary-color);
  margin-right: 10px;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  overflow-y: auto;
}

.modal-content {
  background-color: var(--white-color);
  margin: 50px auto;
  width: 90%;
  max-width: 800px;
  border-radius: 15px;
  box-shadow: var(--box-shadow);
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(-50px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal-header {
  padding: 20px 30px;
  border-bottom: 1px solid var(--light-gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h2 {
  color: var(--primary-color);
  font-size: 1.8rem;
}

.close-modal {
  font-size: 2rem;
  cursor: pointer;
  color: var(--gray-color);
  transition: var(--transition);
}

.close-modal:hover {
  color: var(--dark-color);
}

.modal-body {
  padding: 30px;
}

/* Assessment Form Styles */
.assessment-step {
  display: none;
}

.assessment-step.active {
  display: block;
}

.progress-bar {
  height: 8px;
  background-color: var(--light-gray);
  border-radius: 4px;
  margin-bottom: 30px;
  overflow: hidden;
}

.progress {
  height: 100%;
  background-color: var(--primary-color);
  width: 0%;
  transition: width 0.3s ease;
}

.question-container {
  margin-bottom: 30px;
}

.question {
  display: none;
}

.question.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.question h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.option {
  background-color: var(--light-gray);
  padding: 15px;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.option:hover {
  background-color: rgba(76, 175, 80, 0.1);
}

.option.selected {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.assessment-navigation {
  display: flex;
  justify-content: space-between;
}

/* Assessment Results Styles */
.results-header {
  text-align: center;
  margin-bottom: 40px;
}

.results-header h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.score-circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: conic-gradient(var(--primary-color) 0%, var(--primary-color) 70%, var(--light-gray) 70%, var(--light-gray) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
}

.score-circle::before {
  content: '';
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background-color: var(--white-color);
}

.score-circle span {
  position: relative;
  z-index: 1;
}

#wellness-score {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary-color);
}

.score-max {
  font-size: 1.2rem;
  color: var(--gray-color);
}

.results-breakdown {
  margin-bottom: 40px;
}

.results-breakdown h4 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  text-align: center;
}

.score-categories {
  display: grid;
  gap: 20px;
}

.score-category {
  display: flex;
  align-items: center;
}

.category-name {
  width: 150px;
  font-weight: 500;
}

.category-bar {
  flex: 1;
  height: 10px;
  background-color: var(--light-gray);
  border-radius: 5px;
  margin: 0 15px;
  overflow: hidden;
}

.category-progress {
  height: 100%;
  background-color: var(--primary-color);
  width: 0%;
  transition: width 1s ease;
}

.recommendations {
  margin-bottom: 40px;
}

.recommendations h4 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  text-align: center;
}

.recommendation-item {
  background-color: var(--light-gray);
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.recommendation-item i {
  color: var(--primary-color);
  margin-right: 15px;
  font-size: 1.2rem;
  margin-top: 3px;
}

.results-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Features Section */
.features {
  padding: 100px 0;
  background-color: var(--white-color);
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  cursor: pointer;
  background-color: var(--white-color);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.feature-card p {
  color: var(--gray-color);
}

/* Search Section */
.search-section {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.search-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.search-container h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.search-box {
  display: flex;
  margin-bottom: 30px;
  box-shadow: var(--box-shadow);
  border-radius: 50px;
  overflow: hidden;
}

.search-box input {
  flex: 1;
  padding: 15px 25px;
  border: none;
  outline: none;
  font-size: 1rem;
}

.search-box button {
  background-color: var(--primary-color);
  color: var(--white-color);
  border: none;
  padding: 0 25px;
  cursor: pointer;
  transition: var(--transition);
}

.search-box button:hover {
  background-color: var(--secondary-color);
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.quick-link {
  display: flex;
  align-items: center;
  background-color: var(--white-color);
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.quick-link i {
  margin-right: 10px;
  color: var(--primary-color);
}

.quick-link:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.quick-link:hover i {
  color: var(--white-color);
}
/* Chatbot Styles */
.chat-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  background-color: var(--white-color);
}

.chat-header {
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 15px;
  text-align: center;
}

.chat-header h3 {
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-header h3 i {
  margin-right: 10px;
}

.chat-messages {
  height: 300px;
  overflow-y: auto;
  padding: 20px;
  background-color: #f9f9f9;
}

.message {
  margin-bottom: 15px;
  max-width: 80%;
}

.bot-message {
  background-color: var(--light-gray);
  padding: 10px 15px;
  border-radius: 15px 15px 15px 0;
}

.user-message {
  background-color: var(--secondary-color);
  color: var(--white-color);
  padding: 10px 15px;
  border-radius: 15px 15px 0 15px;
  margin-left: auto;
}

.chat-input {
  display: flex;
  padding: 10px;
  background-color: var(--white-color);
  border-top: 1px solid var(--light-gray);
}

.chat-input input {
  flex: 1;
  padding: 10px 15px;
  border: 1px solid var(--light-gray);
  border-radius: 30px;
  outline: none;
}

.chat-input button {
  background-color: var(--primary-color);
  color: var(--white-color);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-left: 10px;
  cursor: pointer;
  transition: var(--transition);
}

.chat-input button:hover {
  background-color: var(--secondary-color);
}



/* Interactive Section */
.interactive-section {
  padding: 100px 0;
  background-color: var(--white-color);
}

.chatbot-preview {
  max-width: 500px;
  margin: 0 auto;
}

.chat-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  background-color: var(--white-color);
}

.chat-header {
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 15px;
  text-align: center;
}

.chat-header h3 {
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-header h3 i {
  margin-right: 10px;
}

.chat-messages {
  height: 300px;
  overflow-y: auto;
  padding: 20px;
  background-color: #f9f9f9;
}

.message {
  margin-bottom: 15px;
  max-width: 80%;
}

.bot-message {
  background-color: var(--light-gray);
  padding: 10px 15px;
  border-radius: 15px 15px 15px 0;
}

.user-message {
  background-color: var(--secondary-color);
  color: var(--white-color);
  padding: 10px 15px;
  border-radius: 15px 15px 0 15px;
  margin-left: auto;
}

.chat-input {
  display: flex;
  padding: 10px;
  background-color: var(--white-color);
  border-top: 1px solid var(--light-gray);
}

.chat-input input {
  flex: 1;
  padding: 10px 15px;
  border: 1px solid var(--light-gray);
  border-radius: 30px;
  outline: none;
}

.chat-input button {
  background-color: var(--primary-color);
  color: var(--white-color);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-left: 10px;
  cursor: pointer;
  transition: var(--transition);
}

.chat-input button:hover {
  background-color: var(--secondary-color);
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background-color: var(--light-gray);
}

.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto 30px;
  overflow: hidden;
}

.testimonial-slide {
  display: none;
  animation: fadeIn 0.5s ease forwards;
}

.testimonial-slide.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.testimonial-content {
  background-color: var(--white-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.quote {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.testimonial-content > p {
  font-style: italic;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.testimonial-author h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.testimonial-author p {
  color: var(--gray-color);
  font-size: 0.9rem;
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}

.slider-controls button {
  background-color: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--gray-color);
  cursor: pointer;
  transition: var(--transition);
}

.slider-controls button:hover {
  color: var(--primary-color);
}

.slider-dots {
  display: flex;
  margin: 0 20px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--light-gray);
  margin: 0 5px;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background-color: var(--primary-color);
}

.trust-counters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.counter h3 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.counter p {
  color: var(--gray-color);
}

/* Visual Section */
.visual-section {
  padding: 100px 0;
  background-color: var(--white-color);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin: 0 auto 20px;
}

.step-image {
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.process-step h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.process-step p {
  color: var(--gray-color);
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white-color);
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.cta-buttons .btn-primary {
  background-color: var(--white-color);
  color: var(--primary-color);
  border-color: var(--white-color);
}

.cta-buttons .btn-primary:hover {
  background-color: transparent;
  color: var(--white-color);
}

.cta-buttons .btn-secondary {
  background-color: transparent;
  color: var(--white-color);
  border-color: var(--white-color);
}

.cta-buttons .btn-secondary:hover {
  background-color: var(--white-color);
  color: var(--secondary-color);
}

.cta-buttons .btn-tertiary {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white-color);
  border-color: transparent;
}

.cta-buttons .btn-tertiary:hover {
  background-color: var(--white-color);
  color: var(--accent-color);
  border-color: var(--white-color);
}

/* Footer */
.footer {
  background-color: var(--dark-color);
  color: var(--light-color);
  padding: 80px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo h2 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.footer-logo p {
  margin-bottom: 20px;
  color: var(--gray-color);
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white-color);
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-color);
  transform: translateY(-5px);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.link-group h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--white-color);
}

.link-group ul li {
  margin-bottom: 10px;
}

.link-group ul li a {
  color: var(--gray-color);
  transition: var(--transition);
}

.link-group ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-newsletter h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--white-color);
}

.footer-newsletter p {
  margin-bottom: 20px;
  color: var(--gray-color);
}

.newsletter-form {
  display: flex;
  overflow: hidden;
  border-radius: 50px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 20px;
  border: none;
  outline: none;
}

.newsletter-form button {
  background-color: var(--primary-color);
  color: var(--white-color);
  border: none;
  padding: 0 20px;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background-color: var(--secondary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero .container {
      flex-direction: column;
      text-align: center;
  }

  .hero-content {
      padding-right: 0;
      margin-bottom: 50px;
  }

  .footer-links {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .menu-toggle {
      display: block;
  }

  .nav-menu {
      position: fixed;
      top: 70px;
      left: -100%;
      width: 80%;
      height: 100vh;
      background-color: var(--white-color);
      flex-direction: column;
      align-items: flex-start;
      padding: 40px 20px;
      box-shadow: var(--box-shadow);
      transition: var(--transition);
  }

  .nav-menu.active {
      left: 0;
  }

  .nav-menu li {
      margin: 15px 0;
  }

  .feature-cards, .process-steps {
      grid-template-columns: 1fr;
  }

  .footer-links {
      grid-template-columns: 1fr;
  }

  .cta-buttons {
      flex-direction: column;
  }
  
  .modal-content {
      width: 95%;
      margin: 20px auto;
  }
  
  .options {
      grid-template-columns: 1fr;
  }
  
  .results-actions {
      flex-direction: column;
  }
}

@media (max-width: 576px) {
  .section-header h2 {
      font-size: 2rem;
  }

  .hero-content h1 {
      font-size: 2.2rem;
  }

  .trust-counters {
      grid-template-columns: 1fr;
  }
  
  .score-category {
      flex-direction: column;
      align-items: flex-start;
  }
  
  .category-name {
      width: 100%;
      margin-bottom: 5px;
  }
  
  .category-bar {
      width: 100%;
      margin: 5px 0;
  }
}
/* Style for the results section */
#assessment-results {
  text-align: center;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

/* Circular Score Display */
.score-container {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 20px auto;
}

.progress-ring circle {
  fill: none;
  stroke-width: 10;
  stroke-linecap: round;
}

.progress-ring-bg {
  stroke: #ddd;
}

.progress-ring-circle {
  stroke: #4CAF50;
  stroke-dasharray: 314;
  stroke-dashoffset: 314;
  transition: stroke-dashoffset 1s ease-in-out;
}

.score-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  font-weight: bold;
  color: #333;
}

/* Category Scores */
.category-score {
  margin: 10px 0;
  font-size: 18px;
  font-weight: bold;
}

/* Recommendation Box */
#score-recommendation {
  margin-top: 15px;
  font-size: 16px;
  color: #555;
}

/* Retake Button */
#restart-assessment {
  margin-top: 20px;
  padding: 10px 15px;
  background: #28a745;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  font-size: 16px;
  transition: 0.3s;
}

#restart-assessment:hover {
  background: #218838;
}
.category-bar {
  background-color: #f0f0f0; /* Light background for the bar */
  border-radius: 5px;
  overflow: hidden;
  width: 100%; /* Full width */
  height: 20px; /* Height of the bar */
  margin: 5px 0; /* Spacing between categories */
}

.category-progress {
  height: 100%; /* Full height of the category bar */
  background-color: #4caf50; /* Color for filled bar */
  width: 0; /* Start with 0 width */
  transition: width 1s ease; /* Smooth transition for width change */
}
