:root {
  --bg1: #0f1020;
  --bg2: #161a2b;
  --card: #1d2238;
  --accent: #8a5cf6;
  --accent-2: #15c3a5;
  --accent-3: #f5b301;
  --text: #e7ebff;
  --muted: #9aa3c0;
  --ok: #21d19f;
  --bad: #ff6b6b;
  --chip: #222743;
  --chip-border: #2c335a;
}

* {
  user-select: text;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding-top: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text) !important;
  min-height: 100vh;
  background:
    radial-gradient(1200px 800px at 80% -10%, rgba(138, 92, 246, .25), transparent 60%),
    radial-gradient(1000px 700px at -10% 110%, rgba(21, 195, 165, .20), transparent 55%),
    linear-gradient(140deg, var(--bg1), var(--bg2));
  background-repeat: repeat;
  background-size: cover;
  padding: 25px 0 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text) !important;
}

ul,
ol {
  color: var(--muted) !important;
}

pre {
  color: var(--accent) !important;
}

.text-muted {
  color: var(--muted) !important;
}

.wrap {
  width: 100%;
  max-width: 980px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  user-select: none;
}

.logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: conic-gradient(from 210deg, var(--accent), var(--accent-2), var(--accent-3), var(--accent));
  box-shadow: 0 6px 24px rgba(0, 0, 0, .35), inset 0 0 8px rgba(255, 255, 255, .15);
}

h1 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: .2px
}

.sub {
  color: var(--muted);
  margin-top: 4px;
  font-size: 14px
}

.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, .02), transparent 60%), var(--card);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, .35);
}

.main-content {
  padding: 70px 0 30px;
}

.dflexrow {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.dflexrow>* {
  flex: 1 1 260px
}

.input {
  background: rgba(0, 0, 0, .25);
  border: 1px solid rgba(255, 255, 255, .10);
  color: var(--text);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 16px;
  outline: none;
  transition: .2s border-color, .2s box-shadow;
  width: 100%;
}

.input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(138, 92, 246, .25)
}

.btnfinllms {
  appearance: none;
  border: 0;
  cursor: pointer;
  background: linear-gradient(135deg, var(--accent), #6c39fa);
  color: white;
  font-weight: 700;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 16px;
  box-shadow: 0 10px 24px rgba(108, 57, 250, .35), inset 0 -2px 0 rgba(0, 0, 0, .2);
  transition: transform .04s ease, filter .2s;
  white-space: nowrap
}

.btnfinllms:hover {
  filter: brightness(1.05)
}

.btnfinllms:active {
  transform: translateY(1px)
}

.nav-link.navbtnfinllms.active {
  appearance: none;
  border: 0;
  cursor: pointer;
  background: linear-gradient(135deg, var(--accent), #6c39fa) !important;
  color: white !important;
  font-weight: 700;
  font-size: 16px;
  transition: transform .04s ease, filter .2s;
  white-space: nowrap;
}

.navbtnfinllms {
  color: linear-gradient(135deg, var(--accent), #6c39fa) !important;
  ;
  font-weight: 700;
  font-size: 16px;

}

.tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px
}

.tag {
  font-size: 12px;
  color: var(--muted);
  background: var(--chip);
  border: 1px solid var(--chip-border);
  padding: 6px 10px;
  border-radius: 999px
}

.results {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px
}

.panel {
  border: 1px solid rgba(255, 255, 255, .08);
  background: linear-gradient(180deg, rgba(255, 255, 255, .02), transparent 70%), #171b2e;
  border-radius: 14px;
  padding: 14px 14px 10px 14px
}

.panel h3 {
  margin: 0 0 8px 0;
  font-size: 15px;
  letter-spacing: .2px;
  color: #cfe2ff
}

.loading {
  color: #ffffff;
}

.panel .status {
  color: #ffffff;
}

.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  white-space: pre-wrap;
  word-break: break-word;
  background: #0d1020;
  border: 1px solid #1a2142;
  padding: 10px;
  border-radius: 10px;
  height: 60vh;
  scrollbar-width: thin;
  scrollbar-color: #1a2142 #0d1020;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--muted)
}

.ok .dot {
  background: var(--ok)
}

.bad .dot {
  background: var(--bad)
}

.neutral .dot {
  background: var(--accent-3)
}

.small {
  color: var(--muted);
  font-size: 12px
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

@media (max-width:800px) {
  .grid-2 {
    grid-template-columns: 1fr
  }
}

a.inline {
  color: #b7ccff;
  text-decoration: none;
  border-bottom: 1px dashed rgba(183, 204, 255, .4)
}

a.inline:hover {
  color: white;
  border-color: white
}

.footer {
  margin-top: 14px;
  color: var(--muted);
  font-size: 12px;
  text-align: center
}

.panel.bad .btn,
.panel.neutral .btn {
  display: none;
}

/* Section styles */

section h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 14px;
}

section p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}

nav.navbar {
  z-index: 111111;
}

.input,
textarea {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #e7ebff;
  border-radius: 12px;
  padding: 12px 15px;
  width: 100%;
  margin-bottom: 15px;
  outline: none;
}

.input:focus,
textarea:focus {
  border-color: #8a5cf6;
  box-shadow: 0 0 0 3px rgba(138, 92, 246, 0.25);
}

.btn-contact {
  background: linear-gradient(135deg, #8a5cf6, #6c39fa);
  color: #fff;
  font-weight: 700;
  border-radius: 12px;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
}

.btn-contact:hover {
  filter: brightness(1.05);
}




.section-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 40px;
  font-size: 22px;
  color: #fff;
  text-align: left;
}

.btn-warning {
  background: #ff7d5a;
  color: #fff !important;
  border: none;
  padding-right: 15px;
  padding-left: 15px;
  font-weight: 600;
  border-radius: 50px;
  transition: 0.3s ease;
}

.btn-warning:hover {
  background: #ff5722;
  color: #fff !important;
  transform: translateY(-3px);
}

#blogs .card .card-body {
  padding: 10px 0 0;
}

.blog-card {
  border-radius: 20px;
  overflow: hidden;
  background: #1e233b;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  transition: transform .25s ease, box-shadow .25s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
}

.blog-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  transition: transform .4s ease;
}

.blog-card:hover .blog-img {
  transform: scale(1.05);
}

.blog-content {
  padding: 20px;
}

.blog-meta {
  font-size: 13px;
  color: #9aa3c0;
  margin-bottom: 8px;
}

.blog-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #fff;
}

.blog-excerpt {
  font-size: 14px;
  color: #c5c9e8;
  margin-bottom: 16px;
}

.btn-read {
  display: inline-block;
  background: linear-gradient(135deg, #8a5cf6, #6c39fa);
  border: 0;
  color: #fff;
  padding: 10px 18px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 14px;
  transition: filter .2s ease, transform .2s ease;
}

.btn-read:hover {
  filter: brightness(1.15);
  transform: translateY(-2px);
  color: #fff;
  text-decoration: none;
}

/* blogs hero section */
.blog-hero {
  background: linear-gradient(135deg, #5a3efc, #2e186a);
  padding: 100px 20px;
  border-radius: 0 0 40px 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.blog-hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}

.blog-hero::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 280px;
  height: 280px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-subtitle {
  font-size: 18px;
  color: #e0dfff;
  margin-bottom: 30px;
}

.btn-hero {
  background: #ff7d5a;
  border: none;
  padding: 14px 28px;
  font-weight: 600;
  border-radius: 50px;
  color: #fff;
  transition: 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.btn-hero:hover {
  background: #ff5722;
  color: #fff;
  transform: translateY(-3px);
}

/* blogs hero section - end */

/* Single blog page */
.blog-hero {
  background: linear-gradient(135deg, #5a3efc, #2e186a);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  border-radius: 0 0 40px 40px;
}

.blog-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

.blog-meta {
  font-size: 14px;
  color: #bbb;
  margin-top: 10px;
}

.blog-content img {
  border-radius: 20px;
  margin: 20px 0;
}

.blog-content h2 {
  margin-top: 30px;
  font-size: 1.75rem;
  font-weight: 600;
}

.related-blogs .card {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.related-blogs .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.related-blogs img {
  height: 180px;
  object-fit: cover;
}

.blog-hero {
  margin-top: -70px !important;
}

.categories-list {
  list-style: none;
  padding: 0;
}

.categories-list li {
  margin: 10px 0;
}

.categories-list a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: 0.2s;
}

.categories-list a:hover {
  color: #5a3efc;
}

.blog-card {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  transition: 0.3s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.blog-card img {
  height: 200px;
  object-fit: cover;
}

@media (max-width: 576px) {
  .blog-card img {
    height: 160px;
  }
}

/* Single blog page -end  */

#llmsValidationResult .doc-preview {
  word-break: break-word;
  background: #0d1020;
  border: 1px solid #1a2142;
  padding: 10px;
  border-radius: 10px;
  height: 60vh;
  scrollbar-width: thin;
  overflow-y: scroll;
  scrollbar-color: #1a2142 #0d1020;
}

.postbody-container table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
  display: block;
  overflow: auto !important;
}

.postbody-container table thead {
  background: linear-gradient(135deg, var(--accent), #6c39fa);
  ;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.postbody-container table th,
.postbody-container table td {
  padding: 10px;
  text-align: left;
  vertical-align: middle;
  white-space: nowrap;
}

.postbody-container table tbody tr {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  transition: background-color 0.25s ease;
}

.postbody-container table tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

a {
  text-decoration: none;
}

.category-cards .category-card-body .card-text {
  color: #c5c9e8;
}