@media (max-width: 768px) {
    .content-grid {
        padding: 20px !important;
    }
}

          .nav-list a:hover {
      color: #00CCDD;
  }
  
  .header-actions {
      display: flex;
      align-items: center;
  }
  
  .btn-primary {
      background-color: #00CCDD;
      color: white;
      padding: 12px 24px;
      border-radius: 100px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
  }
  
  .btn-primary:hover {
      background-color: #e63e0c;
      transform: translateY(-1px);
  }

  @media (max-width: 930px) {
  
      .nav-wrapper.active {
          left: 0; /* Slide in from left */
      }
  
      .mobile-menu-toggle.active span:nth-child(1) {
          transform: rotate(45deg) translate(5px, 5px);
      }
  
      .mobile-menu-toggle.active span:nth-child(2) {
          opacity: 0;
      }
  
      .mobile-menu-toggle.active span:nth-child(3) {
          transform: rotate(-45deg) translate(7px, -7px);
      }
  }
  
  /* Update Mobile Menu Styles */
  @media (max-width: 768px) {
      .header{
          padding: 16px 40px;
      }
      .mobile-menu-toggle {
          display: block;
          background: none;
          border: none;
          padding: 10px;
          cursor: pointer;
          z-index: 1001;
      }
  
      .nav-wrapper {
          position: fixed;
          top: 0;
          left: -100%;
          width: 100%;
          height: 100vh;
          overflow-y: auto; /* Add scroll for vertical overflow */
          overflow-x: hidden; /* Prevent horizontal scroll */
      }
  
      .nav-wrapper.active {
          left: 0;  /* Slide in from left */
          box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
      }
  
      .header-actions {
          margin-top: 32px;
      }
  
      .btn-primary {
          padding: 16px 32px;
          font-size: clamp(16.2px, 1.194vw, 18px);
      }
  
      .mobile-menu-toggle.active span:nth-child(1) {
          transform: translateY(8px) rotate(45deg);
      }
  
      .mobile-menu-toggle.active span:nth-child(2) {
          opacity: 0;
          transform: translateX(-10px);
      }
  
      .mobile-menu-toggle.active span:nth-child(3) {
          transform: translateY(-8px) rotate(-45deg);
      }
  }  
  
  .footer-social a:hover {
      color: #00CCDD;
  }
  
  .privacy-link:hover {
      color: #00CCDD;
  }
  
  .submenu::before {
      content: '';
      position: absolute;
      top: -6px;
      left: 50%;
      transform: translateX(-50%) rotate(45deg);
      width: 12px;
      height: 12px;
      background: white;
      border-left: 1px solid rgba(0, 0, 0, 0.08);
      border-top: 1px solid rgba(0, 0, 0, 0.08);
      box-shadow: -3px -3px 5px rgba(0, 0, 0, 0.05);
  }
  
  .has-submenu:hover .submenu {
      display: block;
  }
  
  .submenu li a {
      padding: 8px 16px;
      display: block;
      white-space: nowrap;
      color: #041A41;
      margin: 10px;
  }
  
  .submenu li a:hover {
      background-color: #f3f4f6;
  }
  
  @media (max-width: 768px) {
  
      .submenu::before {
          display: none; /* Remove the pointer triangle on mobile */
      }
  
      .submenu li {
          padding: 0;
      }
  
      .submenu li a {
          padding: 12px 24px;
          font-size: clamp(16.2px, 1.194vw, 18px);
          color: #041A41;
          display: block;
          transition: all 0.3s ease;
      }
  
      .submenu li a:hover {
          background-color: #e5e7eb;
          color: #00CCDD;
      }

  
      @keyframes slideDown {
          from {
              opacity: 0;
              transform: translateY(-10px);
          }
          to {
              opacity: 1;
              transform: translateY(0);
          }
      }
  }
  
  /* Active menu item styles */
  .nav-list a.active {
      color: #00CCDD !important;
      font-weight: 600;
      position: relative; /* Added for the underline */
  }
  
  .submenu a.active {
      color: #00CCDD !important;
      background-color: #f3f4f6;
      font-weight: 600;
  }
  
  button.mobile-menu-toggle.active {
  background-color: #00CCDD !important;
  }
  
  /* header css */
  
  
  /* Hover animations */
  .cta-button:hover {
  background: #00e6f7;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 204, 221, 0.3);
  }
  
  .cta-button:hover .calendar-icon {
  opacity: 0;
  transform: translateX(10px) rotate(45deg);
  }
  
  .cta-button:hover .arrow-icon {
  opacity: 1;
  transform: translateX(0) rotate(0);
  }
  
  /* Active state */
  .cta-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 204, 221, 0.2);
  }
  
  /* Animations */
  @keyframes fadeInDown {
  from {
      opacity: 0;
      transform: translateY(-20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
  }
  
  /* Integration Map Styles */
  .node img {
  height: 40px;
  width: auto;
  }
  
  .glare-effect {
  position: absolute;
  top: -200%;
  left: -200%;
  width: 400%;
  height: 400%;
  background: linear-gradient(
      to bottom right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0) 40%,
      rgba(255, 255, 255, 0.4) 45%,
      rgba(255, 255, 255, 0.7) 50%,
      rgba(255, 255, 255, 0.4) 55%,
      rgba(255, 255, 255, 0) 60%,
      rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(45deg);
  animation: none;
  pointer-events: none;
  z-index: 1;
  }
  
  
  
  
  .play-button {
  position: absolute;
  cursor: pointer;
  transition: transform 0.3s ease;
  }
  
  .play-button:hover {
  transform: scale(1.1);
  }
  
  @keyframes glareSwipe {
  0% {
      transform: translate(-150%, -150%) rotate(45deg);
  }
  100% {
      transform: translate(150%, 150%) rotate(45deg);
  }
  }
  
  @keyframes animate-overlay-right {
  0% {
      transform: scale(0,0);
  }
  20% {
      transform: scale(0.1,1);
  }
  50% {
      transform: scale(1,1);
  }
  100% {
      transform: translateX(101%);
  }
  }
  
  /* Add these new styles */
  .video-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  }
  
  .video-overlay.active {
  display: flex;
  }
  
  .video-container {
  position: relative;
  width: 80%;
  max-width: 900px;
  aspect-ratio: 16/9;
  background: #000;
  }
  
  #youtube-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  }
  
  .close-video {
  position: absolute;
  top: -40px;
  right: -40px;
  background: none;
  border: none;
  color: white;
  font-size: clamp(28.8px, 2.122vw, 32px);
  cursor: pointer;
  padding: 10px;
  }
  
  .close-video:hover {
  color: #00CCDD;
  }
  
  .content-wrapper.reverse {
  grid-template-columns: 1.5fr 1fr;
  }
  
  .content-wrapper.reverse .globe-animation {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  }
  
  .content-wrapper.reverse .info-content {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  transform: translateX(-50px); /* Initial position for animation */
  }
  
  .second-section {
  margin: 50px 0; /* Add space between sections */
  }
  
  /* Update the animation trigger for the second section */
  .second-section .info-content {
  transform: translateX(-50px);
  }
  
  /* Add vertical timeline line */
  
  
  /* Optional: Remove the default link underline on hover */
  .integration-card:hover {
  text-decoration: none;
  }
  
  
  
  /* Hover effect */
  .integration-card:hover img {
  opacity: 0;
  }
  
  .integration-card:hover .card-overlay {
  background-color: rgb(0, 204, 221);
  }
  
  .integration-card:hover .arrow-icons {
  opacity: 1;
  }
  
  /* Responsive design */
  
  
  
  /* Animation classes */
  .timeline-item.animate {
  opacity: 1;
  transform: translateY(0);
  }
  
  /* Update media queries for responsive design */
  
  
  @keyframes heroProgressLine {
  from { width: 0; }
  to { width: 100%; }
  }
  
  /* Animation classes */
  
  
  @keyframes heroFadeInUp {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
  }
  
  @keyframes heroFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
  }
  
  
  /* FAQ Section CSS */
  
  
  .faq-item:hover {
  border-color: rgba(0, 204, 221, 0.4);
  box-shadow: 0 4px 20px rgba(0, 204, 221, 0.1);
  }
  
  
  .faq-item.active {
  border-color: #00CCDD;
  }
  
  .faq-item.active .faq-icon {
  transform: rotate(180deg);
  }
  
  
  
  .faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 25px;
  }
  
  /* Add animation for answer expansion */
  @keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
  }
  
  .faq-item.active .faq-answer {
  animation: slideDown 0.3s ease forwards;
  }
  
  /* Mobile Responsiveness */
  
  
  .book-call-btn:hover::after {
  transform: scaleX(0);
  transform-origin: left;
  }
  
  
  
  @media (max-width: 1024px) {
  .slider-content {
      grid-template-columns: 1fr;
      gap: 40px;
      height: auto; /* Remove fixed height */
      padding: 40px 0;
  }
  
  .title {
      font-size: 2.5rem;
      margin-bottom: 40px; /* Reduce bottom margin */
  }
  
  .right-column {
      height: 550px; /* Set fixed height for mobile */
  }}
  
  @media (max-width: 768px) {
  .integrations-slider {
      padding: 60px 20px;
  }
  
  .title {
      font-size: clamp(28.8px, 2.122vw, 32px);
  }
  }
  
  @media (max-width: 991px) {
  
  .video-overlay .video-container {
      width: 90%;
      height: auto;
      aspect-ratio: 16/9;
  }
  }
  
  @media (max-width: 767px) {
  
  .play-button {
      width: 40px;
      height: 40px;
  }
  
  .play-button svg {
      width: 40px;
      height: 40px;
  }
  
  .video-overlay .video-container {
      width: 95%;
  }
  
  .close-video {
      top: -40px;
      right: 0;
      font-size: clamp(27.0px, 1.99vw, 30px);
  }
  }
  
  /* Quiz Styles */
  .quiz-container {
      font-family: 'Inter', sans-serif;
      color: #e1e5ee;
  }
  
  .quiz-wrapper {
      padding: 40px 30px;
      max-width: 1100px;
      margin: 0 auto;
  }
  
  .quiz-header {
      text-align: center;
      margin-bottom: 40px;
      padding: 20px;
      position: relative;
  }
  
  .quiz-header:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background: linear-gradient(90deg, #00CCDD, #00e0f3);
      border-radius: 3px;
  }
  
  .quiz-title {
      font-size: clamp(25.2px, 1.857vw, 28px);
      font-weight: 700;
      margin-bottom: 16px;
      color: #ffffff;
      letter-spacing: -0.02em;
  }
  
  .quiz-description {
      font-size: clamp(14.4px, 1.061vw, 16px);
      max-width: 700px;
      margin: 0 auto;
      color: #9ba3b4;
      line-height: 1.6;
  }
  
  .role-selection {
      text-align: center;
      margin-bottom: 50px;
      animation: fadeIn 0.5s ease-out;
  }
  
  .role-title {
      font-size: clamp(19.8px, 1.459vw, 22px);
      font-weight: 600;
      margin-bottom: 30px;
      color: #ffffff;
  }
  
  .role-options {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      max-width: 900px;
      margin: 0 auto;
  }
  
  .role-option {
      background-color: rgba(255, 255, 255, 0.05);
      border: 2px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      padding: 20px;
      transition: all 0.3s ease;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
  }
  
  .role-option:hover {
      border-color: #00CCDD;
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 204, 221, 0.15);
      background-color: rgba(0, 204, 221, 0.05);
  }
  
  .role-option.selected {
      background-color: rgba(0, 204, 221, 0.15);
      border-color: #00CCDD;
      box-shadow: 0 0 20px rgba(0, 204, 221, 0.3);
  }
  
  .role-icon {
      font-size: clamp(28.8px, 2.122vw, 32px);
      margin-bottom: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      padding: 10px;
  }
  
  .role-label {
      font-weight: 500;
      color: #ffffff;
      font-size: clamp(15.3px, 1.127vw, 17px);
      line-height: 1.4;
  }
  
  /* Questions Styles */
  .questions-container {
      max-width: 700px;
      margin: 0 auto;
      animation: fadeIn 0.5s ease-out;
  }
  
  .question-item {
      background-color: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 12px;
      padding: 25px;
      margin-bottom: 25px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      transition: all 0.3s ease;
  }
  
  .question-item:hover {
      border-color: rgba(0, 204, 221, 0.3);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  }
  
  .question-header {
      display: flex;
      align-items: flex-start;
      margin-bottom: 15px;
  }
  
  .question-number {
      background: linear-gradient(135deg, #00CCDD, #00a8b6);
      color: white;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
      margin-right: 15px;
      flex-shrink: 0;
      box-shadow: 0 3px 10px rgba(0, 204, 221, 0.3);
  }
  
  .question-text {
      font-weight: 600;
      font-size: clamp(16.2px, 1.194vw, 18px);
      color: #ffffff;
      line-height: 1.5;
  }
  
  .suitable-person {
      font-size: clamp(12.6px, 0.928vw, 14px);
      color: #9ba3b4;
      margin-bottom: 20px;
      margin-left: 45px;
      font-style: italic;
      display: none;
  }
  
  .answer-options {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-left: 45px;
  }
  
  .answer-option {
      flex: 1 0 calc(33.333% - 12px);
      min-width: 120px;
      background-color: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      padding: 12px 18px;
      text-align: center;
      cursor: pointer;
      transition: all 0.2s ease;
      color: #e1e5ee;
  }
  
  .answer-option:hover {
      background-color: rgba(0, 204, 221, 0.1);
      border-color: rgba(0, 204, 221, 0.4);
      transform: translateY(-2px);
  }
  
  .answer-option.selected {
      background: linear-gradient(135deg, rgba(0, 204, 221, 0.15), rgba(0, 204, 221, 0.05));
      border-color: #00CCDD;
      color: #ffffff;
      font-weight: 500;
      box-shadow: 0 3px 10px rgba(0, 204, 221, 0.15);
  }
  
  /* Results Styles */
  .results-section {
      text-align: center;
      padding: 30px 20px;
      animation: fadeIn 0.5s ease-out;
  }
  
  .results-container {
      max-width: 850px;
      margin: 0 auto;
  }
  
  .results-title {
      font-size: clamp(25.2px, 1.857vw, 28px);
      font-weight: 700;
      margin-bottom: 20px;
      color: #ffffff;
      letter-spacing: -0.02em;
  }
  
  .results-message {
      margin-bottom: 30px;
      font-size: clamp(15.3px, 1.127vw, 17px);
      color: #9ba3b4;
      line-height: 1.6;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
  }
  
  .email-collection {
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
      padding: 30px;
      border-radius: 12px;
      margin: 30px auto;
      max-width: 650px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  }
  
  .email-collection h3 {
      font-size: clamp(19.8px, 1.459vw, 22px);
      margin-bottom: 15px;
      color: #ffffff;
      font-weight: 600;
  }
  
  .email-collection p {
      margin-bottom: 25px;
      font-size: clamp(14.4px, 1.061vw, 16px);
      color: #9ba3b4;
      line-height: 1.6;
  }
  
  #quiz-email-form {
      display: flex;
      flex-direction: column;
      gap: 20px;
      max-width: 450px;
      margin: 0 auto;
  }
  
  #quiz-email {
      padding: 16px 20px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      font-size: clamp(14.4px, 1.061vw, 16px);
      background-color: rgba(255, 255, 255, 0.05);
      color: #ffffff;
      transition: all 0.3s ease;
  }
  
  #quiz-email:focus {
      outline: none;
      border-color: #00CCDD;
      box-shadow: 0 0 0 3px rgba(0, 204, 221, 0.2);
  }
  
  #quiz-email::placeholder {
      color: rgba(255, 255, 255, 0.4);
  }
  
  .results-button {
      background: linear-gradient(135deg, #00CCDD, #00a8b6);
      color: white;
      border: none;
      padding: 16px 24px;
      border-radius: 8px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: clamp(14.4px, 1.061vw, 16px);
      text-transform: uppercase;
      letter-spacing: 0.5px;
  }
  
  .results-button:hover {
      background: linear-gradient(135deg, #00dbed, #00b9c8);
      transform: translateY(-3px);
      box-shadow: 0 8px 15px rgba(0, 204, 221, 0.2);
  }
  
  .results-analytics {
      margin-top: 50px;
      animation: fadeIn 0.8s ease-out;
  }
  
  .analytics-header {
      margin-bottom: 40px;
  }
  
  .analytics-header h3 {
      font-size: clamp(21.6px, 1.592vw, 24px);
      color: #ffffff;
      margin-bottom: 10px;
      font-weight: 600;
  }
  
  .analytics-header p {
      font-size: clamp(14.4px, 1.061vw, 16px);
      color: #9ba3b4;
  }
  
  .analytics-container {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 40px;
      justify-content: center;
      margin-bottom: 60px;
  }
  
  .speedometer-container {
      position: relative;
      margin: 20px auto;
      width: 250px;
      height: 125px;
  }
  
  .speedometer {
      position: relative;
      width: 100%;
      height: 100%;
      overflow: hidden;
  }
  
  .speedometer-gauge {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border-radius: 125px 125px 0 0;
      background: linear-gradient(90deg, 
          #f44336 0%, 
          #FFC107 50%, 
          #4CAF50 100%);
      opacity: 0.9;
  }
  
  .speedometer-mask {
      position: absolute;
      bottom: 0;
      left: 15px;
      right: 15px;
      top: 15px;
      background-color: #121826;
      border-radius: 125px 125px 0 0;
  }
  
  .speedometer-dial {
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 4px;
      height: 110px;
      background-color: #ffffff;
      transform-origin: bottom center;
      transform: rotate(-90deg);
      transition: transform 1.5s cubic-bezier(0.34, 1.56, 0.64, 1);
      z-index: 2;
  }
  
  .speedometer-center {
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 16px;
      height: 16px;
      background: #00CCDD;
      border-radius: 50%;
      z-index: 3;
      box-shadow: 0 0 10px rgba(0, 204, 221, 0.7);
  }
  
  .speedometer-labels {
      position: absolute;
      width: 100%;
      bottom: -30px;
      display: flex;
      justify-content: space-between;
  }
  
  .speedometer-label {
      font-size: clamp(12.6px, 0.928vw, 14px);
      text-transform: uppercase;
      font-weight: 500;
  }
  
  .speedometer-label.low {
      color: #f44336;
  }
  
  .speedometer-label.medium {
      color: #FFC107;
  }
  
  .speedometer-label.high {
      color: #4CAF50;
  }
  
  .speedometer-score {
      position: absolute;
      bottom: -25px;
      left: 50%;
      transform: translateX(-50%);
      font-size: clamp(19.8px, 1.459vw, 22px);
      font-weight: 700;
      color: #ffffff;
  }
  
  .analytics-metrics {
      flex: 1;
      min-width: 300px;
      display: flex;
      flex-direction: column;
      gap: 25px;
  }
  
  .metric {
      background-color: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 10px;
      padding: 15px 20px;
      transition: all 0.3s ease;
  }
  
  .metric:hover {
      background-color: rgba(255, 255, 255, 0.05);
      transform: translateY(-2px);
  }
  
  .metric-header {
      display: flex;
      align-items: center;
      margin-bottom: 12px;
  }
  
  .metric-icon {
      font-size: 20px;
      margin-right: 10px;
  }
  
  .metric-title {
      font-weight: 500;
      font-size: clamp(14.4px, 1.061vw, 16px);
      color: #ffffff;
  }
  
  .metric-bar {
      height: 8px;
      background-color: rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      overflow: hidden;
      margin-bottom: 5px;
  }
  
  .metric-fill {
      height: 100%;
      width: 0;
      background: linear-gradient(90deg, #00CCDD, #00e0f3);
      transition: width 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  
  .metric-value {
      text-align: right;
      font-weight: 600;
      color: #00CCDD;
      font-size: clamp(14.4px, 1.061vw, 16px);
  }
  
  .next-steps {
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.1));
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
      border: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .next-steps h3 {
      font-size: clamp(19.8px, 1.459vw, 22px);
      color: #ffffff;
      margin-bottom: 15px;
      font-weight: 600;
  }
  
  .next-steps p {
      margin-bottom: 30px;
      font-size: clamp(14.4px, 1.061vw, 16px);
      color: #9ba3b4;
  }
  
  .steps-container-pop {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
  }
  
  .step {
      display: flex;
      gap: 15px;
      text-align: left;
  }
  
  .step-number {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: linear-gradient(135deg, #00CCDD, #00a8b6);
      color: white;
      font-weight: 700;
      font-size: clamp(16.2px, 1.194vw, 18px);
      flex-shrink: 0;
  }
  
  .step-content {
      flex: 1;
  }
  
  .step-content h4 {
      font-size: clamp(16.2px, 1.194vw, 18px);
      color: #ffffff;
      margin-bottom: 8px;
      font-weight: 600;
  }
  
  .step-content p {
      font-size: clamp(13.5px, 0.995vw, 15px);
      color: #9ba3b4;
      margin-bottom: 15px;
      line-height: 1.5;
  }
  
  .step-action {
      display: inline-block;
      padding: 8px 16px;
      background-color: rgba(0, 204, 221, 0.15);
      color: #00CCDD;
      font-weight: 600;
      border-radius: 6px;
      font-size: clamp(13.5px, 0.995vw, 15px);
      text-decoration: none;
      transition: all 0.3s ease;
  }
  
  .step-action:hover {
      background-color: rgba(0, 204, 221, 0.25);
      color: #ffffff;
      transform: translateY(-2px);
  }
  
  /* Modal Styles */
  .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.8);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1010;
  }
  
  .modal-container {
      background-color: #1a2136;
      width: 90%;
      max-width: 700px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
      border: 1px solid rgba(255, 255, 255, 0.08);
  }
  
  .modal-header {
      background: linear-gradient(135deg, #00CCDD, #009faa);
      color: white;
      padding: 18px 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
  }
  
  .modal-title {
      font-size: clamp(16.2px, 1.194vw, 18px);
      font-weight: 600;
      margin: 0;
  }
  
  .modal-close {
      font-size: clamp(18.0px, 1.326vw, 20px);
      cursor: pointer;
      width: 28px;
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background-color: rgba(255, 255, 255, 0.2);
      transition: all 0.3s ease;
  }
  
  .modal-close:hover {
      background-color: rgba(255, 255, 255, 0.3);
      transform: rotate(90deg);
  }
  
  .progress-container {
      padding: 20px 24px;
      background-color: rgba(255, 255, 255, 0.03);
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .progress-steps {
      display: flex;
      justify-content: space-between;
      margin-bottom: 15px;
  }
  
  .progress-step {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background-color: rgba(255, 255, 255, 0.1);
      color: rgba(255, 255, 255, 0.7);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
      transition: all 0.3s ease;
      position: relative;
  }
  
  .progress-step.active {
      background: linear-gradient(135deg, #00CCDD, #00a8b6);
      color: white;
      box-shadow: 0 0 15px rgba(0, 204, 221, 0.5);
  }
  
  .progress-step.completed {
      background-color: #4CAF50;
      color: white;
  }
  
  .progress-step.completed:after {
      content: '✓';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 16px;
  }
  
  .progress-bar {
      height: 6px;
      background-color: rgba(255, 255, 255, 0.1);
      border-radius: 6px;
      overflow: hidden;
  }
  
  .progress-fill {
      height: 100%;
      background: linear-gradient(to right, #00CCDD, #4CAF50);
      width: 0;
      transition: width 0.5s ease;
  }
  
  .modal-body {
      padding: 30px 24px;
  }
  
  #modal-questions-container {
      min-height: 300px;
  }
  
  .navigation-buttons {
      display: flex;
      justify-content: space-between;
      margin-top: 30px;
  }
  
  .btn {
      padding: 12px 24px;
      border-radius: 8px;
      border: none;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: all 0.3s ease;
  }
  
  .btn-primary {
      background: linear-gradient(135deg, #00CCDD, #00a8b6);
      color: white;
  }
  
  .btn-primary:hover {
      background: linear-gradient(135deg, #00dbed, #00b9c8);
      transform: translateY(-3px);
      box-shadow: 0 6px 15px rgba(0, 204, 221, 0.25);
  }
  
  .btn-secondary {
      background-color: rgba(255, 255, 255, 0.08);
      color: #e1e5ee;
  }
  
  .btn-secondary:hover {
      background-color: rgba(255, 255, 255, 0.12);
      transform: translateY(-2px);
  }
  
  /* Animations */
  @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
  }
  
  /* Responsive Adjustments */
  @media (max-width: 767px) {
      .quiz-wrapper {
          padding: 25px 15px;
      }
      
      .role-options {
          grid-template-columns: 1fr;
      }
      
      .answer-options {
          flex-direction: column;
          margin-left: 0;
      }
      
      .answer-option {
          width: 100%;
      }
      
      .speedometer-container {
          width: 200px;
          height: 100px;
      }
      
      .navigation-buttons {
          flex-direction: column;
          gap: 15px;
      }
      
      .btn {
          width: 100%;
          justify-content: center;
      }
      
      .analytics-container {
          flex-direction: column;
      }
      
      .steps-container-pop {
          grid-template-columns: 1fr;
      }
      
      .suitable-person {
          margin-left: 0;
      }
  }
  
  @media (max-width: 480px) {
      .role-icon {
          width: 48px;
          height: 48px;
          font-size: 24px;
      }
      
      .question-header {
          flex-direction: column;
      }
      
      .question-number {
          margin-bottom: 10px;
      }
      
      .speedometer-container {
          width: 180px;
          height: 90px;
      }
  }
  
  .loading-message {
      display: flex;
      align-items: center;
      justify-content: center;
      color: #e1e5ee;
      font-size: clamp(15.3px, 1.127vw, 17px);
      margin: 20px 0;
  }
  
  .loading-spinner {
      display: inline-block;
      width: 24px;
      height: 24px;
      margin-right: 12px;
      border: 3px solid rgba(0, 204, 221, 0.3);
      border-radius: 50%;
      border-top-color: #00CCDD;
      animation: spinner 1s linear infinite;
  }
  
  @keyframes spinner {
      to {transform: rotate(360deg);}
  }
  
  .success-message {
      display: flex;
      align-items: center;
      justify-content: center;
      color: #4CAF50;
      font-size: clamp(15.3px, 1.127vw, 17px);
      margin: 20px 0;
      font-weight: 600;
      animation: fadeIn 0.5s ease-out;
  }
  
  .success-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 28px;
      height: 28px;
      margin-right: 12px;
      background-color: rgba(76, 175, 80, 0.2);
      color: #4CAF50;
      border-radius: 50%;
      font-size: 16px;
  }
  