/*  Assessment Readiness page Start   */

    @import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700&family=DM+Serif+Display&display=swap");

    :root {
      --bg-color: #0a0f1e;
      --text-color: #c8cdd8;
      --primary-blue: #2563eb;
      --primary-light: #60a5fa;
      --border-color: rgba(255, 255, 255, 0.08);
      --card-bg: rgba(255, 255, 255, 0.025);
    }

    body {
      margin: 0;
      padding: 0;
/*      background: var(--bg-color);*/
      font-family: "DM Sans", "Segoe UI", sans-serif;
/*      color: var(--text-color);*/
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    * {
      box-sizing: border-box;
    }

    /* ASSESSMENT CONTAINER */
    #assessment-container {
      display: flex;
      flex-direction: column;
      flex: 1;
      height: 100%;
    }

    /* TOP BAR */
    .top-bar {
      padding: 20px 24px 0;
      max-width: 680px;
      width: 100%;
      margin: 0 auto;
    }

    .top-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 8px;
    }

    .brand {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--primary-light);
    }

    .counter {
      font-size: 12px;
      color: #555e6e;
    }

    .progress-bar {
      display: flex;
      gap: 3px;
      margin-bottom: 4px;
    }

    .progress-segment {
      flex: 1;
      height: 3px;
      border-radius: 2px;
      background: rgba(255, 255, 255, 0.06);
      transition: background 0.3s ease;
    }

    .progress-segment.completed {
      background: linear-gradient(90deg, #2563eb, #3b82f6);
    }

    .progress-segment.active {
      background: rgba(37, 99, 235, 0.4);
    }

    .section-label {
      font-size: 11px;
      color: #fff;
      margin-bottom: 0;
    }

    /* QUESTION AREA */
    .question-area {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      max-width: 680px;
      width: 100%;
      margin: 0 auto;
      padding: 32px 24px 48px;
    }

    .question-card {
      animation: questionIn 0.35s ease-out both;
    }

    @keyframes questionIn {
      from {
        opacity: 0;
        transform: translateX(20px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    /*h2 {
      font-family: "DM Serif Display", Georgia, serif;
      font-size: clamp(22px, 3.5vw, 28px);
      font-weight: 400;
      color: #f0f2f7;
      line-height: 1.3;
      margin: 0 0 8px;
    }*/

    .help-text {
      font-size: 14px;
      color: #6b7580;
      line-height: 1.55;
      margin: 0 0 28px;
      font-style: italic;
    }

    .options-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .option-btn {
      background: var(--card-bg);
      border: 1px solid var(--border-color);
      border-radius: 12px;
      padding: 18px 22px;
      text-align: left;
      color: #fff;
      font-size: 15px;
      line-height: 1.5;
      cursor: pointer;
      transition: all 0.2s ease;
      font-family: inherit;
      width: 100%;
      display: block;
    }

    .option-btn:hover {
      background: rgba(37, 99, 235, 0.06);
      border-color: rgba(37, 99, 235, 0.25);
      color: #dce1ea;
    }

    .option-btn.selected {
      background: rgba(37, 99, 235, 0.1);
      border-color: rgba(37, 99, 235, 0.4);
      color: #f0f2f7;
    }

    .nav-area {
      margin-top: 24px;
    }

    .back-btn {
      background: none;
      border: none;
      color: #fff;
      font-size: 13px;
      cursor: pointer;
      padding: 8px 12px;
      border-radius: 6px;
      font-family: inherit;
      transition: color 0.2s;
    }

    .back-btn:hover {
      color: #8891a5;
    }

    .back-btn:disabled {
      opacity: 0.3;
      cursor: default;
    }

    /* FOOTER */
    .footer {
      padding: 16px 24px;
      max-width: 680px;
      width: 100%;
      margin: 0 auto;
      border-top: 1px solid rgba(255, 255, 255, 0.04);
    }

    .footer p {
      font-size: 11px;
      color: #fff;
      margin: 0;
    }

    /* RESULTS VIEW */
    #results-view {
      display: none;
      padding: 48px 24px 80px;
      max-width: 760px;
      margin: 0 auto;
      width: 100%;
    }

    .results-fade-in {
      animation: resultsFade 0.6s ease-out both;
    }
    .results-fade-in-delay-1 {
      animation: resultsFade 0.6s ease-out 0.15s both;
    }
    .results-fade-in-delay-2 {
      animation: resultsFade 0.6s ease-out 0.3s both;
    }
    .results-fade-in-delay-3 {
      animation: resultsFade 0.6s ease-out 0.45s both;
    }
    .results-fade-in-delay-4 {
      animation: resultsFade 0.6s ease-out 0.6s both;
    }

    @keyframes resultsFade {
      from {
        opacity: 0;
        transform: translateY(16px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .results-header {
      margin-bottom: 48px;
    }

    .results-badge {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 20px;
    }

    .badge-bar {
      width: 32px;
      height: 3px;
      background: linear-gradient(90deg, #2563eb, #60a5fa);
      border-radius: 2px;
    }

    .badge-text {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: #60a5fa;
    }

    .results-title {
      font-family: "DM Serif Display", Georgia, serif;
      font-size: clamp(28px, 4vw, 38px);
      font-weight: 400;
      color: #f0f2f7;
      line-height: 1.2;
      margin: 0 0 8px;
    }

    .results-subtitle {
      font-size: 15px;
      color: #8891a5;
      margin: 0;
    }

    .score-card {
      background: linear-gradient(
        135deg,
        rgba(15, 22, 42, 0.9),
        rgba(20, 28, 50, 0.9)
      );
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 16px;
      padding: 36px 32px;
      margin-bottom: 24px;
      position: relative;
      overflow: hidden;
    }

    .score-top-border {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
    }

    .score-content {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 24px;
    }

    .score-details {
      flex: 1 1 300px;
    }

    .score-label {
      font-size: 13px;
      color: #6b7280;
      font-weight: 500;
      margin: 0 0 6px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .score-value-row {
      display: flex;
      align-items: baseline;
      gap: 12px;
      margin-bottom: 16px;
    }

    .score-level {
      font-family: "DM Serif Display", Georgia, serif;
      font-size: 42px;
      line-height: 1;
    }

    .score-percentage {
      font-size: 18px;
      color: #6b7280;
    }

    .score-desc {
      font-size: 15px;
      line-height: 1.65;
      color: #9ca3b4;
      margin: 0;
    }

    .score-circle {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      border: 3px solid rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.05), transparent);
    }

    .score-circle-text {
      font-family: "DM Serif Display", Georgia, serif;
      font-size: 32px;
    }

    .score-bar-container {
      margin-top: 24px;
    }

    .score-track {
      height: 6px;
      border-radius: 3px;
      background: rgba(255, 255, 255, 0.06);
      overflow: hidden;
    }

    .score-fill {
      height: 100%;
      border-radius: 3px;
      transition: width 1s ease-out;
    }

    .score-legend {
      display: flex;
      justify-content: space-between;
      margin-top: 6px;
      font-size: 11px;
      color: #555e6e;
    }

    .service-card {
      background: linear-gradient(
        135deg,
        rgba(15, 25, 50, 0.95),
        rgba(12, 20, 42, 0.95)
      );
      border: 1px solid rgba(37, 99, 235, 0.2);
      border-radius: 16px;
      padding: 32px 32px;
      margin-bottom: 24px;
    }

    .service-label {
      font-size: 13px;
      color: #60a5fa;
      font-weight: 600;
      margin: 0 0 4px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .service-title {
      font-family: "DM Serif Display", Georgia, serif;
      font-size: 28px;
      color: #f0f2f7;
      margin: 0 0 4px;
      font-weight: 400;
    }

    .service-desc-short {
      font-size: 14px;
      color: #60a5fa;
      margin: 0 0 16px;
      font-style: italic;
    }

    .service-detail {
      font-size: 15px;
      line-height: 1.7;
      color: #9ca3b4;
      margin: 0;
    }

    /* FINDINGS */
    .findings-card {
      background: linear-gradient(
        135deg,
        rgba(15, 22, 42, 0.9),
        rgba(20, 28, 50, 0.9)
      );
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 16px;
      padding: 32px 32px;
      margin-bottom: 24px;
    }

    .findings-header {
      font-size: 13px;
      color: #6b7280;
      font-weight: 600;
      margin: 0 0 20px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .finding-item {
      display: flex;
      gap: 16px;
      padding: 16px 12px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
      border-radius: 8px;
      transition: background 0.2s;
    }

    .finding-item:last-child {
      border-bottom: none;
    }

    .finding-item:hover {
      background: rgba(255, 255, 255, 0.03);
    }

    .finding-icon {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      background: rgba(37, 99, 235, 0.1);
      border: 1px solid rgba(37, 99, 235, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #60a5fa;
      flex-shrink: 0;
    }

    .finding-text {
      font-size: 14px;
      line-height: 1.65;
      color: #9ca3b4;
      margin: 0;
    }

    /* CTA */
    .cta-card {
      background: linear-gradient(
        135deg,
        rgba(37, 99, 235, 0.08),
        rgba(37, 99, 235, 0.03)
      );
      border: 1px solid rgba(37, 99, 235, 0.15);
      border-radius: 16px;
      padding: 36px 32px;
      text-align: center;
    }

    .cta-title {
      font-family: "DM Serif Display", Georgia, serif;
      font-size: 22px;
      color: #f0f2f7;
      margin: 0 0 10px;
      font-weight: 400;
    }

    .cta-text {
      font-size: 14px;
      line-height: 1.6;
      color: #8891a5;
      margin: 0 0 24px;
      max-width: 480px;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-btn {
      display: inline-block;
      padding: 14px 36px;
      background: linear-gradient(135deg, #2563eb, #1d4ed8);
      color: #fff;
      border-radius: 10px;
      font-size: 15px;
      font-weight: 600;
      text-decoration: none;
      letter-spacing: 0.3px;
      transition: all 0.25s ease;
      cursor: pointer;
      border: none;
    }

    .cta-btn:hover {
      transform: translateY(-1px);
      box-shadow: 0 8px 30px rgba(37, 99, 235, 0.3);
    }

    .cta-subtext {
      font-size: 12px;
      color: #555e6e;
      margin-top: 12px;
    }

    .restart-container {
      text-align: center;
      margin-top: 32px;
    }

    .restart-btn {
      background: none;
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: #6b7280;
      padding: 10px 24px;
      border-radius: 8px;
      font-size: 13px;
      cursor: pointer;
      font-family: inherit;
    }

    .disclaimer {
      margin-top: 48px;
      padding: 20px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .disclaimer p {
      font-size: 11px;
      color: #444c5c;
      line-height: 1.6;
      margin: 0 0 8px;
    }

    .disclaimer a {
      color: #3a4252;
    }
/*  Assessment Readiness page End   */
/* 16-feb-2026 */
.assess-cont {
    background-color: #0a0f1e;
    max-width: 680px;
    width: 100%;
    border-radius: 15px;
    margin: auto;
}
p {
    margin-bottom: 15px;
}
/*section.dimen-sec h2 {
    text-align: center;
}*/

section.advice-sec h2 {
    margin-bottom: 20px;
}

section.faq-sec h2 {
    margin-bottom: 20px;
    
}
.book_now {
    text-align: center;
    margin-top: 25px;
}
.card-header {
    border: none;
    /* color: #000; */
    background-color: #fff;
    padding: 0px;
    display: flex;
    align-items: center;
}

.card {
    border: none;
    margin-bottom: 20px;
}

.card-header h2 {
    color: #000 !important;
}
.card-body p {
    margin-bottom: 0px;
}
.btn.focus, .btn:focus {
    outline: 0;
    box-shadow: none;
}
.results-fade-in.results-header {
    background: linear-gradient(135deg,rgba(15,25,50,.95),rgba(12,20,42,.95));
    padding: 20px;
    border-radius: 20px;
}

button.restart-btn.cta {
    border: 1px solid black;
}

.progress-bar {
    flex-direction: row;
    background: none;
}
div#assessment-container {
    margin: 30px 0px;
}
section.assessment-sec h1 {
    text-align: center;
    max-width: 1096px;
    width: 100%;
    margin: auto;
}
.question-area {
    color: #fff !important;
}
.question-card p {
    color: #fff;
}
.question-card h2 {
    color: #fff;
}
.book_now .cta {
    padding: 9px 30px;
}