:root {
  --bg: #f6f8fc;
  --surface: #ffffff;
  --text: #0b1f33;
  --muted: #5c6b7a;
  --line: rgba(11, 31, 51, 0.1);
  --primary: #2e7d32;
  --primary-2: #1b5e20;
  --accent: #0b3a63;
  --accent-2: #0e4a7d;
  --shadow: 0 10px 30px rgba(11, 31, 51, 0.1);
  --radius: 16px;
  --radius-sm: 12px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      1200px 600px at 20% 0%,
      rgba(14, 74, 125, 0.1),
      transparent 55%
    ),
    radial-gradient(
      900px 500px at 85% 10%,
      rgba(46, 125, 50, 0.1),
      transparent 60%
    ),
    var(--bg);
  line-height: 1.55;
  overflow-x: hidden !important;
}
a {
  color: inherit;
}
.container {
  width: min(var(--max), 92%);
  margin: 0 auto;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 10px 12px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  z-index: 9999;
}
.skip-link:focus {
  left: 12px;
}

/* Top nav */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid;
  place-items: center;
  color: white;
  font-weight: 800;
  letter-spacing: -0.02em;
  box-shadow: 0 12px 25px rgba(11, 58, 99, 0.25);
}
.brand-name {
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 18px;
}
.brand-name span {
  color: var(--accent);
}
.navlinks {
  display: flex;
  gap: 18px;
  align-items: center;
}
.navlinks a {
  text-decoration: none;
  font-weight: 600;
  color: rgba(11, 31, 51, 0.8);
  padding: 10px 10px;
  border-radius: 12px;
}

.navlinks a:hover {
  background: rgba(11, 31, 51, 0.05);
}

.actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn-primary {
  background-color: #0d6efd !important;
}
.btnn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 10px 14px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(11, 31, 51, 0.06);
}

.btn-default {
  box-shadow: 0 6px 18px rgba(11, 31, 51, 0.06);
  border: 1px solid #0b1f3345;
}

.btn-default:hover {
  box-shadow: 0 6px 18px rgba(11, 31, 51, 0.06);
  border: 1px solid #0b1f33a1;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(11, 31, 51, 0.1);
}
.btn:active {
  transform: translateY(0px);
}
.btn-started {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: white !important;
  border-color: rgba(255, 255, 255, 0.22);
}
.btn-ghost {
  background: transparent;
  box-shadow: none;
}

.burger {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 14px;
  padding: 10px 12px;
  cursor: pointer;
}

/* Hero */
.hero {
  padding: 56px 0 30px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(11, 58, 99, 0.08);
  border: 1px solid rgba(11, 58, 99, 0.12);
  color: var(--accent);
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
}
.eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(46, 125, 50, 0.15);
}
h1 {
  margin: 14px 0 12px;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}
.lead {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 18px;
  max-width: 52ch;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.trust {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  color: rgba(11, 31, 51, 0.65);
  font-weight: 600;
  font-size: 13px;
  align-items: center;
}
.trust .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  padding: 8px 10px;
  border-radius: 999px;
}
.icon {
  width: 16px;
  height: 16px;
  display: inline-block;
}

/* Mock dashboard card */
.hero-card {
  position: relative;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(11, 31, 51, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 16px;
  isolation: isolate;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: -40% -10% auto auto;
  width: 320px;
  height: 320px;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(46, 125, 50, 0.18),
    transparent 60%
  );
  filter: blur(0px);
  z-index: -1;
}
.windowbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.85);
  border-radius: 12px;
}
.dots {
  display: flex;
  gap: 7px;
  align-items: center;
}
.dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display: inline-block;
  opacity: 0.9;
}
.dots span:nth-child(1) {
  background: #ff5f57;
}
.dots span:nth-child(2) {
  background: #febc2e;
}
.dots span:nth-child(3) {
  background: #28c840;
}
.mini-tabs {
  display: flex;
  gap: 8px;
}
.mini-tabs i {
  width: 52px;
  height: 10px;
  border-radius: 999px;
  display: block;
  background: rgba(11, 31, 51, 0.1);
}
.dash {
  padding: 14px 8px 8px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
}
.panel {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
}
.skeleton {
  display: grid;
  gap: 10px;
}
.sk-line {
  height: 10px;
  border-radius: 999px;
  background: rgba(11, 31, 51, 0.09);
}
.sk-line.w70 {
  width: 70%;
}
.sk-line.w55 {
  width: 55%;
}
.sk-line.w85 {
  width: 85%;
}
.chart {
  width: 100%;
  height: 140px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(11, 58, 99, 0.12), rgba(11, 58, 99, 0)),
    radial-gradient(
      80px 80px at 70% 35%,
      rgba(46, 125, 50, 0.22),
      transparent 60%
    ),
    radial-gradient(
      80px 80px at 35% 70%,
      rgba(11, 58, 99, 0.18),
      transparent 60%
    ),
    rgba(11, 31, 51, 0.04);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(11, 31, 51, 0.08);
}
.chart svg {
  position: absolute;
  inset: 0;
}
.badges {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  gap: 10px;
}
.badge {
  display: flex;
  gap: 10px;
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 12px;
  box-shadow: 0 10px 20px rgba(11, 31, 51, 0.1);
  font-weight: 800;
  color: rgba(11, 31, 51, 0.85);
}
.badge small {
  display: block;
  font-weight: 700;
  color: rgba(11, 31, 51, 0.55);
}

/* Sections */
section {
  padding: 52px 0;
}
.section-title {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  margin-bottom: 26px;
}
.section-title h2 {
  margin: 0;
  font-size: clamp(24px, 2.6vw, 34px);
  letter-spacing: -0.04em;
}
.section-title p {
  margin: 0 auto;
  max-width: 68ch;
  color: var(--muted);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(11, 31, 51, 0.1);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 25px rgba(11, 31, 51, 0.06);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(11, 31, 51, 0.1);
}
.card h3 {
  margin: 0 0 6px;
  font-size: 16px;
  letter-spacing: -0.02em;
}
.card p {
  margin: 0;
  color: var(--muted);
}
.card .top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.card .glyph {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(11, 58, 99, 0.1);
  border: 1px solid rgba(11, 58, 99, 0.14);
  color: var(--accent);
  flex: 0 0 auto;
}

/* How it works */
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  counter-reset: step;
}
.step {
  position: relative;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(11, 31, 51, 0.1);
  border-radius: var(--radius);
  padding: 18px 16px;
  box-shadow: 0 10px 25px rgba(11, 31, 51, 0.06);
  overflow: hidden;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.9);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 10px 20px rgba(11, 58, 99, 0.2);
}
.step h3 {
  width: 80%;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.step p {
  margin: 0;
  color: var(--muted);
}

/* Testimonials */
.quote {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  position: relative;
  /* height: calc(100% + 50px) !important */
  justify-content: space-between;
}
.quote blockquote {
  margin: 0;
  color: rgba(11, 31, 51, 0.86);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.quote .who {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(11, 31, 51, 0.65);
  font-weight: 700;
  font-size: 13px;
  /* position: absolute;
  bottom: 10px; */
}
.avatar {
  width: 34px;
  height: 34px;
  border-radius: 14px;
  /* background: linear-gradient(
    135deg,
    rgba(46, 125, 50, 0.25),
    rgba(11, 58, 99, 0.25)
  ); */
  border: 1px solid rgba(11, 31, 51, 0.1);
  display: inline-block;
}

/* Newsletter */
.cta-band {
  padding: 18px;
  background: linear-gradient(
    135deg,
    rgba(11, 58, 99, 0.1),
    rgba(46, 125, 50, 0.08)
  );
  border: 1px solid rgba(11, 31, 51, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 10px 25px rgba(11, 31, 51, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-band h3 {
  margin: 0;
  letter-spacing: -0.03em;
}
.cta-band p {
  margin: 4px 0 0;
  color: var(--muted);
}
.form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
label {
  font-size: 12px;
  font-weight: 800;
  color: rgba(11, 31, 51, 0.65);
}
input:not([type="checkbox"]):not([type="radio"]),
select {
  width: 100%;
  padding: 11px 12px;
  border-radius: 5px;
  border: 1px solid rgba(11, 31, 51, 0.14);
  background: rgba(255, 255, 255, 0.92);
  outline: none;
  font-weight: 600;
  height: 40px;
}
input:focus {
  border-color: rgba(11, 58, 99, 0.4);
  box-shadow: 0 0 0 4px rgba(11, 58, 99, 0.12);
}

/* Bottom CTA */
.bottom-cta {
  background: linear-gradient(135deg, var(--accent), #0a2e4f);
  color: white;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding: 54px 0;
  margin-top: 10px;
}
.bottom-cta .wrap {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 10px !important;
  flex-wrap: wrap !important;
}
.bottom-cta h2 {
  margin: 0;
  letter-spacing: -0.04em;
}
.bottom-cta p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
}
.btn-light {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--accent);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}
.btn-light:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
}

footer {
  padding: 26px 0 34px;
  color: rgba(11, 31, 51, 0.65);
  font-weight: 600;
  font-size: 13px;
  text-align: center;
}
footer a {
  color: rgba(11, 31, 51, 0.7);
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0px);
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .btn:hover {
    transform: none;
  }
  .card:hover {
    transform: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Responsive */
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .dash {
    grid-template-columns: 1fr;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  input {
    width: min(320px, 85vw);
  }
  .navlinks {
    display: none;
  }
  .burger {
    display: inline-flex;
  }
  .actions {
    gap: 8px;
  }
}
@media (max-width: 520px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

/* Mobile menu */
.mobile {
  display: none;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
}
.mobile.open {
  display: block;
}
.mobile a {
  display: block;
  padding: 12px 0;
  text-decoration: none;
  font-weight: 700;
  color: rgba(11, 31, 51, 0.82);
}
.mobile .container {
  padding: 6px 0 10px;
}
.divider {
  height: 1px;
  background: var(--line);
  margin: 8px 0;
}

#testimonials .swiper {
  padding: 20px 10px 50px;
}

#testimonials .swiper-slide {
  height: auto;
}

.avatar img {
  width: 25px;
}

#testimonials .card {
  height: 100%;
}

.swiper-button-next,
.swiper-button-prev {
  color: #000;
}

/* Main layout for the plan section */
#plan .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

/* Left content */
#plan .section-title {
  flex: 0 0 50%;
  max-width: 44%;
}

#plan h2,
#plan p {
  text-align: start !important;
}
#plan h2 {
  line-height: 1.2;
}

/* Right content (cards / future content) */
#plan .wrap > div[style] {
  flex: 0 0 50%;
  max-width: 50%;
}

/* Responsive: Mobile & Tablet */
@media (max-width: 768px) {
  #plan .section-title,
  #plan .wrap > div[style] {
    flex: 0 0 100%;
    max-width: 100%;
  }

  #plan .wrap {
    gap: 24px;
  }
}

.fw400 {
  font-weight: 400 !important;
}

section#video_section {
  background: #f7f7ff !important;
  padding: 0 !important;
  overflow: hidden !important;
}

.textsection {
  background-color: #0b3a63 !important;
  height: stretch;
  justify-content: center;
  padding: 90px 100px;
  margin: 0 !important;
}

mi .textsection h2,
.textsection p {
  color: #fff !important;
}
.textsection a {
  width: max-content;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
}

/* Common two-column layout */
.two-col {
  display: flex;
  gap: 32px;
  align-items: center;
}

/* Each column */
.two-col .col {
  flex: 0 0 50%;
  max-width: 50%;
}

.textsection h2,
.textsection p {
  color: #fff !important;
}

/* Responsive: stack on mobile */
@media (max-width: 768px) {
  .textsection {
    padding: 20px;
  }


  .two-col {
    flex-direction: column;
  }

  .two-col .col {
    flex: 0 0 100%;
    max-width: 100%;
  }
  img {
    width: 100%;
  }

  #secure .wrap > div:first-child {
    order: 2;
  }

  #secure .wrap > div:last-child {
    order: 1;
  }
}

h2 {
  font-size: clamp(24px, 2.6vw, 34px);
}
#secure h2,
#secure p {
  text-align: start !important;
}

.mailing h2 {
  margin: 0 !important;
}

.w-100 {
  width: 100% !important;
}

html,
body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  background: #fff;
}

footer {
  margin-top: auto;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}
.container-fluid {
  width: 100%;
  padding: 0 15px;
}

/* Row */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

/* Column base */
[class*="col-"] {
  padding-left: 15px;
  padding-right: 15px;
}

/* Mobile first */
.col-1 {
  width: 8.333%;
}
.col-2 {
  width: 16.666%;
}
.col-3 {
  width: 25%;
}
.col-4 {
  width: 33.333%;
}
.col-5 {
  width: 41.666%;
}
.col-6 {
  width: 50%;
}
.col-7 {
  width: 58.333%;
}
.col-8 {
  width: 66.666%;
}
.col-9 {
  width: 75%;
}
.col-10 {
  width: 83.333%;
}
.col-11 {
  width: 91.666%;
}
.col-12 {
  width: 100%;
}

/* Small ≥576px */
@media (min-width: 576px) {
  .col-sm-1 {
    width: 8.333%;
  }
  .col-sm-2 {
    width: 16.666%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-4 {
    width: 33.333%;
  }
  .col-sm-5 {
    width: 41.666%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-7 {
    width: 58.333%;
  }
  .col-sm-8 {
    width: 66.666%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-10 {
    width: 83.333%;
  }
  .col-sm-11 {
    width: 91.666%;
  }
  .col-sm-12 {
    width: 100%;
  }
}

/* Medium ≥768px */
@media (min-width: 768px) {
  .col-md-1 {
    width: 8.333%;
  }
  .col-md-2 {
    width: 16.666%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-4 {
    width: 33.333%;
  }
  .col-md-5 {
    width: 41.666%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-7 {
    width: 58.333%;
  }
  .col-md-8 {
    width: 66.666%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-10 {
    width: 83.333%;
  }
  .col-md-11 {
    width: 91.666%;
  }
  .col-md-12 {
    width: 100%;
  }
}

/* Large ≥992px */
@media (min-width: 992px) {
  .col-lg-1 {
    width: 8.333%;
  }
  .col-lg-2 {
    width: 16.666%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-4 {
    width: 33.333%;
  }
  .col-lg-5 {
    width: 41.666%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-7 {
    width: 58.333%;
  }
  .col-lg-8 {
    width: 66.666%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-10 {
    width: 83.333%;
  }
  .col-lg-11 {
    width: 91.666%;
  }
  .col-lg-12 {
    width: 100%;
  }
}

.text-center {
  text-align: center;
}
.mt-0 {
  margin-top: 0 !important;
}
.mt-1 {
  margin-top: 0.25rem !important;
}
.mt-2 {
  margin-top: 0.5rem !important;
}
.mt-3 {
  margin-top: 1rem !important;
}
.mt-4 {
  margin-top: 1.5rem !important;
}
.mt-5 {
  margin-top: 3rem !important;
}

.singin {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 0;
}

form p {
  margin-bottom: 0 !important;
  font-size: 12px;
}

.legend_red {
  color: #ff0000;
}
.legend_orange {
  color: #ff8000;
}
.legend_green {
  color: #00ff00;
}

footer {
  background-color: #f6f8fc !important;
}

footer li {
  font-size: 13px;
}

.dropdown-menu {
  padding: 5px !important;
}

.text-left label {
  text-align: start !important;
  width: 100%;
}

.landing span {
  color: #0b1f33 !important;
}

.landing .row .col-sm-4 span span span {
  font-size: 15px !important;
}
.landing .row .col-sm-4 {
  margin-top: 25px !important;
}

.pointer {
  cursor: pointer !important;
}

.text-right {
  text-align: end;
}

.show-grid .col-sm-6,
.show-grid .col-sm-12 {
  padding: 20px;
  border: 1px solid var(--line);
}

.opbh_blank {
  display: none !important;
}

.show-grid [class^="col-"] {
  padding: 10px 5px;
  border: 1px solid #ddd;
  position: relative;
}

li {
  font-size: 15px;
  text-align: start !important;
  list-style: none;
}

ol {
  padding: 0 !important;
}

.show-grid button {
}

button.btn.btn-primary.btn-xs {
  padding: 10px;
}

i.fa.fa-circle {
  margin-right: 10px;
  font-size: 10px !important;
}

i {
  font-size: 16px !important;
}

.btn {
  padding: 10px 15px !important;
}

.btn-success {
  color: #fff;
  background-color: #146c43;
  border-color: #146c43;
}

.btn-primary {
  color: #fff;
  background-color: #0b5ed7;
  border-color: #0b5ed7;
}

#project_title {
  font-size: 25px !important;
  color: #0b1f33 !important;
}

#too_small_text,
span {
  color: var(--muted);
  font-size: 1rem !important;
  text-align: start !important;
}

.read_comment_counter {
  position: absolute;
  bottom: 15px !important;
  width: 100%;
}

.navlinks ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 25px;
}

.navlinks ul li {
  position: relative;
}

.navlinks ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  padding: 10px 5px;
  display: block;
}

/* Dropdown menu */
.dropdown-submenu .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid #e5e5e5;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  display: none;
  flex-direction: column;
  padding: 8px 0;
  z-index: 999;
}

/* Dropdown items */
.dropdown-menu li {
  display: block;
}

.dropdown-menu li a {
  padding: 8px 15px;
  font-weight: 500;
  color: #333;
}

.dropdown-menu li a:hover {
  background: #f5f5f5;
}

/* Show dropdown on hover */
.dropdown-submenu:hover .dropdown-menu {
  display: block;
}

/* Optional arrow icon rotation */
.dropdown-submenu > a::after {
  content: " ▼";
  font-size: 11px;
}

#year {
  font-size: 13px !important;
}

.video-fluid {
  width: 100%;
  height: auto;
  max-height: 400px;
  border-radius: 8px;
}
