.odo-hero-section {
  font-family: "Inter", sans-serif;
  padding: 60px 0;
  background:
    radial-gradient(
      circle at 95% 80%,
      rgba(219, 234, 254, 0.4) 0%,
      transparent 45%
    ),
    radial-gradient(
      circle at 10% 10%,
      rgba(239, 246, 255, 0.5) 0%,
      transparent 35%
    ),
    linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.odo-hero-section * {
  font-family: "Inter", sans-serif;
}

.odo-bg-ring {
  position: absolute;
  right: -5%;
  bottom: -15%;
  width: 400px;
  height: 400px;
  border: 45px solid rgba(219, 234, 254, 0.3);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.odo-hero-container {
  z-index: 2;
}

.odo-badge-tag {
  background-color: #eef2ff;
  color: #1d4ed8;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid #e0e7ff;
  margin-bottom: 24px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.odo-badge-icon {
  width: 14px;
  height: 14px;
  fill: currentColor;
  margin-right: 6px;
}

.odo-main-heading {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

@media (min-width: 576px) {
  .odo-main-heading {
    font-size: 3.125rem;
  }
}

.odo-main-description {
  color: #475569;
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 620px;
}

.btn.odo-btn-primary {
  background-color: #1d4ed8;
  color: #ffffff;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 10px;
  border: none;
  box-shadow:
    0 10px 15px -3px rgba(29, 78, 216, 0.2),
    0 4px 6px -2px rgba(29, 78, 216, 0.1);
  transition: all 0.2s ease;
}

.btn.odo-btn-primary:hover {
  background-color: #1e40af;
  color: #ffffff;
}

.btn.odo-btn-secondary {
  background-color: #ffffff;
  color: #1d4ed8;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 10px;
  border: 2px solid #e2e8f0;
  transition: all 0.2s ease;
}

.btn.odo-btn-secondary:hover {
  background-color: #f8fafc;
  border-color: #cbd5e1;
  color: #1d4ed8;
}

.odo-section-divider {
  width: 100%;
  height: 1px;
  background-color: #e2e8f0;
  margin: 36px 0;
}

.odo-feature-item {
  font-weight: 600;
  color: #1e293b;
  font-size: 0.975rem;
}

.odo-check-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #dbeafe;
  color: #1d4ed8;
  flex-shrink: 0;
}

.odo-check-icon {
  width: 12px;
  height: 12px;
}

.odo-image-frame-box {
  position: relative;
  z-index: 5;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(226, 232, 240, 0.6);
  background-color: #1e293b;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4 / 3;
}

.odo-showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  opacity: 0.95;
}

.odo-dots-pattern {
  position: absolute;
  top: -24px;
  left: -12px;
  width: 72px;
  height: 72px;
  opacity: 0.35;
  z-index: 2;
  background-image: radial-gradient(#1d4ed8 2px, transparent 2px);
  background-size: 12px 12px;
}





.odo-stats-section {
  padding: 60px 0;
  background-color: #ffffff;
}
.odo-stats-card-wrapper {
  background: linear-gradient(135deg, #fcfeff 0%, #f0f4ff 50%, #cefbff 100%);
  border-radius: 24px;
  border: 1px solid rgba(29, 78, 216, 0.12);
  overflow: hidden;
  box-shadow:
    0 20px 40px -15px rgba(29, 78, 216, 0.08),
    0 1px 3px rgba(29, 78, 216, 0.04);
  position: relative;
}

.odo-stat-box {
  padding: 55px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: transparent;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}

.odo-stat-box:hover {
  background-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.odo-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #1d4ed8 0%, #0f172a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.odo-stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #475569;
  margin-bottom: 0;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

@media (min-width: 992px) {
  .col-lg-3:not(:last-child) .odo-stat-box {
    border-right: 1px solid rgba(29, 78, 216, 0.08);
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .col-md-6:nth-child(odd) .odo-stat-box {
    border-right: 1px solid rgba(29, 78, 216, 0.08);
  }
  .col-md-6:nth-child(1) .odo-stat-box,
  .col-md-6:nth-child(2) .odo-stat-box {
    border-bottom: 1px solid rgba(29, 78, 216, 0.08);
  }
}

@media (max-width: 767.98px) {
  .odo-stat-box {
    padding: 40px 20px;
  }
  .col-12:not(:last-child) .odo-stat-box {
    border-bottom: 1px solid rgba(29, 78, 216, 0.08);
  }
  .odo-stat-number {
    font-size: 2.1rem;
  }
}

.odo-nav-sticky-bar {
  background-color: #ffffff;
  padding: 10px 0;
}

.odo-nav-pill-group {
  gap: 10px;
}

.odo-nav-pill {
  display: inline-block;
  padding: 8px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #475569;
  background-color: #f1f5f9;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.odo-nav-pill:hover {
  color: #1d4ed8;
  background-color: #e0ebff;
  text-decoration: none;
}

.odo-nav-pill.active {
  color: #ffffff;
  background-color: #1d4ed8;
}

.odo-direct-ans-section {
  padding: 30px 0;
  background-color: #ffffff;
}

.odo-direct-ans-section * {
  font-family: "Inter", sans-serif;
}

.odo-ans-card-wrapper {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 32px;
  border: 1px solid rgba(29, 78, 216, 0.08);
  padding: 50px;
  box-shadow:
    0 30px 60px -15px rgba(29, 78, 216, 0.05),
    0 1px 3px rgba(0, 0, 0, 0.02);
}

.odo-ans-eyebrow {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  font-size: 0.75rem;
  font-weight: 700;
  color: #1d4ed8;
  background-color: #f0f4ff;
  border: 1px solid rgba(29, 78, 216, 0.15);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
  box-shadow: 0 2px 6px rgba(29, 78, 216, 0.04);
}
.odo-ans-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.odo-ans-text {
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 20px;
}

.odo-checklist-card {
  background-color: #ffffff;
  border-radius: 24px;
  border: 1px solid #e2e8f0;
  padding: 36px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.odo-checklist-header {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.4;
  margin-bottom: 24px;
}

.odo-checklist-ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.odo-checklist-li {
  display: flex;
  align-items: flex-start;
  font-size: 14px;
  font-weight: 500;
  color: #334155;
  margin-bottom: 16px;
  line-height: 1.5;
}

.odo-checklist-li:last-child {
  margin-bottom: 0;
}

.odo-check-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #e0ebff;
  color: #1d4ed8;
  margin-right: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}

.odo-check-badge svg {
  width: 12px;
  height: 12px;
}

@media (max-width: 1199.98px) {
  .odo-ans-card-wrapper {
    padding: 35px;
  }
  .odo-ans-title {
    font-size: 2.1rem;
  }
}

@media (max-width: 575.98px) {
  .odo-ans-card-wrapper {
    padding: 24px;
    border-radius: 24px;
  }
  .odo-ans-title {
    font-size: 1.75rem;
  }
  .odo-checklist-card {
    padding: 24px;
  }
}

.odo-problems-section {
  padding: 50px 0;
}

.odo-problems-section * {
  font-family: "Inter", sans-serif;
}

.odo-prob-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  color: #1d4ed8;
  background-color: #f0f4ff;
  border: 1px solid rgba(29, 78, 216, 0.15);
  padding: 6px 14px;
  border-radius: 50px;
  word-spacing: 2;
  margin-bottom: 24px;
  box-shadow: 0 2px 6px rgba(29, 78, 216, 0.04);
}

.odo-prob-main-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  letter-spacing: -0.06em;
  margin-bottom: 20px;
}

.odo-prob-main-desc {
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.odo-prob-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 30px 24px;
  height: 100%;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.01),
    0 2px 4px -1px rgba(0, 0, 0, 0.01);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.odo-prob-card:hover {
  transform: translateY(-4px);
  border-color: rgba(29, 78, 216, 0.3);
  box-shadow:
    0 20px 25px -5px rgba(29, 78, 216, 0.05),
    0 10px 10px -5px rgba(29, 78, 216, 0.02);
}

.odo-prob-number {
  font-size: 0.85rem;
  font-weight: 800;
  color: #1d4ed8;
  background-color: #f0f4ff;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-right: 14px;
  flex-shrink: 0;
}

.odo-prob-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

.odo-prob-card-text {
  font-size: 0.925rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 0;
  margin-top: 4px;
}

@media (max-width: 991.98px) {
  .odo-prob-main-heading {
    font-size: 2.1rem;
  }
  .odo-prob-card {
    padding: 24px;
  }
}

@media (max-width: 575.98px) {
  .odo-problems-section {
    padding: 60px 0;
  }
  .odo-prob-main-heading {
    font-size: 1.75rem;
  }
  .odo-prob-main-desc {
    font-size: 1rem;
  }
}

.odo-services-section {
  padding: 50px 0;
  background-color: #ffffff;
}

.odo-services-section * {
  font-family: "Inter", sans-serif;
}

.odo-serv-eyebrow {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  font-size: 0.75rem;
  font-weight: 600;
  color: #1d4ed8;
  background-color: #f0f4ff;
  border: 1px solid rgba(29, 78, 216, 0.15);
  padding: 6px 14px;
  border-radius: 50px;
  word-spacing: 2px;
  margin-bottom: 24px;
  box-shadow: 0 2px 6px rgba(29, 78, 216, 0.04);
}

.odo-serv-main-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  letter-spacing: -0.06em;
  margin-bottom: 20px;
}

.odo-serv-main-desc {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.6;
  max-width: 700px;
}

.odo-serv-card {
  background-color: #ffffff;
  border: 1px solid #edf2f7;
  border-radius: 24px;
  padding: 35px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.odo-serv-card::after {
  content: "";
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #f0f4ff;
  z-index: 1;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.odo-serv-card:hover {
  transform: translateY(-5px);
  border-color: rgba(29, 78, 216, 0.2);
  box-shadow: 0 20px 25px -5px rgba(29, 78, 216, 0.05);
}

.odo-serv-card:hover::after {
  transform: scale(1.2);
  background-color: #e0ebff;
}
.odo-serv-icon-box {
  color: #1d4ed8;
  background-color: #f0f4ff;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 24px;
  border: 1px solid rgba(29, 78, 216, 0.1);
  transition: all 0.3s ease;
}

.odo-serv-icon-box svg {
  width: 22px;
  height: 22px;
}

.odo-serv-card:hover .odo-serv-icon-box {
  background-color: #1d4ed8;
  color: #ffffff;
  border-color: #1d4ed8;
}

.odo-serv-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.4;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.odo-serv-card-text {
  font-size: 0.925rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
  position: relative;
  z-index: 2;
}

.odo-serv-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  position: relative;
  z-index: 2;
  transition: color 0.2s ease;
}

.odo-serv-link .arrow {
  transition: transform 0.2s ease;
}

.odo-serv-link:hover {
  color: #1d4ed8;
  text-decoration: none;
}

.odo-serv-link:hover .arrow {
  transform: translateX(3px);
}

@media (max-width: 991.98px) {
  .odo-serv-main-heading {
    font-size: 2.1rem;
  }
  .odo-serv-card {
    padding: 30px 24px;
  }
}

@media (max-width: 575.98px) {
  .odo-services-section {
    padding: 60px 0;
  }
  .odo-serv-main-heading {
    font-size: 1.85rem;
    letter-spacing: -0.04em;
  }
}

.odo-deliverables-section {
  padding: 50px 0;
  background-color: #f3f9fb;
}

@media (min-width: 992px) {
  .odo-deliv-sticky-info {
    position: sticky;
    top: 40px;
  }
}

.odo-deliv-eyebrow {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  font-size: 0.75rem;
  font-weight: 600;
  color: #0d9488;
  background-color: #e6f6f4;
  border: 1px solid rgba(13, 148, 136, 0.15);
  padding: 6px 14px;
  border-radius: 50px;
  word-spacing: 2px;
  margin-bottom: 24px;
  box-shadow: 0 2px 6px rgba(13, 148, 136, 0.03);
}

.odo-deliv-main-heading {
  font-size: 2.75rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.15;
  letter-spacing: -0.05em;
  margin-bottom: 24px;
}

.odo-deliv-main-desc {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 32px;
}
.odo-deliv-blockquote {
  border-left: 4px solid #0d9488;
  padding-left: 20px;
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  font-weight: 500;
}

.odo-deliv-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 18px 14px;
  height: 100%;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.01),
    0 2px 4px -1px rgba(0, 0, 0, 0.01);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.odo-deliv-card:hover {
  transform: translateY(-3px);
  border-color: rgba(13, 148, 136, 0.25);
  box-shadow: 0 12px 20px -5px rgba(13, 148, 136, 0.05);
}

.odo-deliv-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.odo-deliv-card-text {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  .odo-deliverables-section {
    padding: 60px 0;
  }
  .odo-deliv-main-heading {
    font-size: 2.15rem;
  }
}

@media (max-width: 575.98px) {
  .odo-deliv-main-heading {
    font-size: 1.85rem;
  }
  .odo-deliv-card {
    padding: 24px 20px;
  }
}

.odo-process-section {
  padding: 50px 0;
  background-color: #ffffff;
}

.odo-proc-eyebrow {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  font-size: 0.75rem;
  font-weight: 600;
  color: #1d4ed8;
  background-color: #f0f4ff;
  border: 1px solid rgba(29, 78, 216, 0.15);
  padding: 6px 14px;
  border-radius: 50px;
  word-spacing: 2px;
  margin-bottom: 24px;
  box-shadow: 0 2px 6px rgba(29, 78, 216, 0.04);
}

.odo-proc-main-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  letter-spacing: -0.06em;
  margin-bottom: 20px;
}

.odo-proc-main-desc {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}
.odo-proc-list-wrapper {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.odo-proc-item-card {
  background-color: #ffffff;
  border: 1px solid #edf2f7;
  border-radius: 16px;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.25s ease-in-out;
}

.odo-proc-item-card:hover {
  border-color: rgba(29, 78, 216, 0.25);
  box-shadow: 0 10px 25px -5px rgba(29, 78, 216, 0.06);
  transform: translateY(-2px);
}
.odo-proc-left-meta {
  display: flex;
  align-items: center;
  flex: 0 0 30%;
  max-width: 30%;
  padding-right: 20px;
}
.odo-proc-badge {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #00aaff, rgb(0, 27, 163));
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-right: 20px;
  flex-shrink: 0;
}

.odo-proc-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0;
  line-height: 1.4;
}
.odo-proc-center-desc {
  font-size: 0.925rem;
  color: #64748b;
  line-height: 1.6;
  flex: 0 0 45%;
  max-width: 45%;
  padding-right: 30px;
}
.odo-proc-right-output {
  flex: 0 0 25%;
  max-width: 25%;
  display: flex;
  justify-content: flex-end;
}

.odo-output-pill {
  display: inline-block;
  width: 100%;
  max-width: 260px;
  text-align: center;
  background-color: #f0f4ff;
  color: #1d4ed8;
  border: 1px solid rgba(29, 78, 216, 0.12);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 8px;
  letter-spacing: -0.01em;
}
@media (max-width: 991.98px) {
  .odo-proc-main-heading {
    font-size: 2.1rem;
  }

  .odo-proc-item-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 16px;
  }

  .odo-proc-left-meta,
  .odo-proc-center-desc,
  .odo-proc-right-output {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 0;
  }

  .odo-proc-right-output {
    justify-content: flex-start;
    width: 100%;
  }

  .odo-output-pill {
    max-width: 100%;
    text-align: left;
    padding: 10px 14px;
  }
}

@media (max-width: 575.98px) {
  .odo-proc-main-heading {
    font-size: 1.85rem;
  }
}

.odo-control-section {
  padding: 50px 0;
  background-color: #f8fafc;
}

.odo-ctrl-eyebrow {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  font-size: 0.75rem;
  font-weight: 600;
  color: #1d4ed8;
  background-color: #f0f4ff;
  border: 1px solid rgba(29, 78, 216, 0.15);
  padding: 6px 14px;
  border-radius: 50px;
  letter-spacing: 0.05em;
  word-spacing: 2px;
  margin-bottom: 24px;
}

.odo-ctrl-main-heading {
  font-size: 2.75rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.odo-ctrl-main-desc {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.6;
  max-width: 750px;
  margin: 0 auto;
}
.odo-ctrl-card {
  background-color: #ffffff;
  border: 1px solid #edf2f7;
  border-radius: 20px;
  padding: 40px 32px;
  height: 100%;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.odo-ctrl-card:hover {
  transform: translateY(-4px);
  border-color: rgba(29, 78, 216, 0.25);
  box-shadow: 0 20px 35px -10px rgba(29, 78, 216, 0.08);
}
.odo-ctrl-step-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: #1d4ed8;
  background-color: #f0f4ff;
  padding: 4px 12px;
  border-radius: 6px;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.odo-ctrl-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.4;
  margin-bottom: 14px;
}

.odo-ctrl-card-text {
  font-size: 0.925rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .odo-ctrl-main-heading {
    font-size: 2.2rem;
  }
}

@media (max-width: 575.98px) {
  .odo-control-section {
    padding: 60px 0;
  }
  .odo-ctrl-main-heading {
    font-size: 1.85rem;
  }
  .odo-ctrl-card {
    padding: 32px 24px;
  }
}

.odo-modules-section {
  padding: 50px 0;
  background-color: #ffffff;
}

.odo-mod-eyebrow {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  font-size: 0.75rem;
  font-weight: 600;
  color: #1d4ed8;
  background-color: #f0f4ff;
  border: 1px solid rgba(29, 78, 216, 0.15);
  padding: 6px 14px;
  border-radius: 50px;
  word-spacing: 2px;
  margin-bottom: 24px;
  box-shadow: 0 2px 6px rgba(29, 78, 216, 0.04);
}

.odo-mod-main-heading {
  font-size: 2.75rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  letter-spacing: -0.05em;
  margin-bottom: 20px;
}

.odo-mod-main-desc {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.6;
  max-width: 700px;
}

.odo-mod-card {
  background-color: #ffffff;
  border: 1px solid #edf2f7;
  border-radius: 20px;
  padding: 32px 28px;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.odo-mod-card:hover {
  transform: translateY(-3px);
  border-color: rgba(29, 78, 216, 0.25);
  box-shadow: 0 15px 30px -10px rgba(29, 78, 216, 0.06);
}

.odo-mod-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.odo-mod-pill-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.odo-mod-pill {
  font-size: 0.825rem;
  font-weight: 600;
  color: #334155;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 6px 14px;
  border-radius: 50px;
  transition: all 0.2s ease;
}

.odo-mod-card:hover .odo-mod-pill {
  border-color: #cbd5e1;
}

.odo-mod-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #1d4ed8;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(29, 78, 216, 0.15);
}

.odo-mod-btn:hover {
  background-color: #1e40af;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(29, 78, 216, 0.25);
  text-decoration: none;
}

.odo-mod-btn .arrow {
  transition: transform 0.2s ease;
}

.odo-mod-btn:hover .arrow {
  transform: translateX(4px);
}

@media (max-width: 991.98px) {
  .odo-mod-main-heading {
    font-size: 2.2rem;
  }
}

@media (max-width: 575.98px) {
  .odo-modules-section {
    padding: 40px 0;
  }
  .odo-mod-main-heading {
    font-size: 1.85rem;
  }
  .odo-mod-card {
    padding: 24px 20px;
  }
}
.odo-engagement-section {
  padding: 60px 0;
  background-color: #f3f9fb;
}

.odo-eng-main-heading {
  font-size: 2.75rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  letter-spacing: -0.05em;
  margin-bottom: 20px;
}

.odo-eng-main-desc {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.odo-eng-card {
  background-color: #ffffff;
  border: 1px solid #edf2f7;
  border-radius: 20px;
  padding: 35px 30px;
  height: 100%;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.01),
    0 2px 4px -1px rgba(0, 0, 0, 0.01);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.odo-eng-card:hover {
  transform: translateY(-4px);
  border-color: rgba(29, 78, 216, 0.25);
  box-shadow: 0 20px 30px -10px rgba(29, 78, 216, 0.06);
}

.odo-eng-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1d4ed8;
  background-color: #f0f4ff;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  margin-bottom: 24px;
}

.odo-eng-badge svg {
  width: 22px;
  height: 22px;
}

.odo-eng-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.4;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.odo-eng-card-text {
  font-size: 0.925rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .odo-eng-main-heading {
    font-size: 2.2rem;
  }
}

@media (max-width: 575.98px) {
  .odo-engagement-section {
    padding: 60px 0;
  }
  .odo-eng-main-heading {
    font-size: 1.85rem;
  }
  .odo-eng-card {
    padding: 30px 24px;
  }
}

.odo-industries-section {
  padding: 50px 0;
  background-color: #ffffff;
}
.odo-ind-eyebrow {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  font-size: 0.75rem;
  font-weight: 600;
  color: #1d4ed8;
  background-color: #f0f4ff;
  border: 1px solid rgba(29, 78, 216, 0.15);
  padding: 6px 14px;
  border-radius: 50px;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  box-shadow: 0 2px 6px rgba(29, 78, 216, 0.04);
}

.odo-ind-main-heading {
  font-size: 2.75rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  letter-spacing: -0.05em;
  margin-bottom: 20px;
}

.odo-ind-main-desc {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.6;
  max-width: 760px;
}

.odo-ind-card {
  background-color: #ffffff;
  border: 1px solid #edf2f7;
  border-radius: 20px;
  padding: 35px 30px;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.odo-ind-card:hover {
  transform: translateY(-4px);
  border-color: rgba(29, 78, 216, 0.25);
  box-shadow: 0 20px 30px -10px rgba(29, 78, 216, 0.06);
}
.odo-ind-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: #1d4ed8;
  background-color: #f0f4ff;
  padding: 6px 14px;
  border-radius: 8px;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.odo-ind-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.4;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.odo-ind-card-text {
  font-size: 0.925rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}
.odo-ind-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1d4ed8;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.odo-ind-link .arrow {
  transition: transform 0.2s ease;
}

.odo-ind-card:hover .odo-ind-link {
  color: #1e40af;
}

.odo-ind-card:hover .odo-ind-link .arrow {
  transform: translateX(4px);
}
@media (max-width: 991.98px) {
  .odo-ind-main-heading {
    font-size: 2.2rem;
  }
}

@media (max-width: 575.98px) {
  .odo-industries-section {
    padding: 60px 0;
  }
  .odo-ind-main-heading {
    font-size: 1.85rem;
  }
  .odo-ind-card {
    padding: 30px 24px;
  }
}

.odo-cost-time-section {
  padding: 50px 0;
  background-color: #f8fafc;
}

.odo-ct-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  color: #1d4ed8;
  background-color: #f0f4ff;
  border: 1px solid rgba(29, 78, 216, 0.15);
  padding: 6px 14px;
  border-radius: 50px;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.odo-ct-main-heading {
  font-size: 2.75rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  letter-spacing: -0.05em;
  margin-bottom: 20px;
}

.odo-ct-main-desc {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.6;
  max-width: 850px;
  margin: 0 auto;
}

.odo-ct-main-card {
  background: #ffffff;
  border: 1px solid #edf2f7;
  border-radius: 20px;
  padding: 40px;
  height: 100%;
  box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.03);
}

.odo-ct-card-header-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.odo-ct-card-header-desc {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 30px;
}

.odo-ct-factor-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.odo-ct-factor-list li {
  font-size: 0.9rem;
  color: #334155;
  padding: 14px 0 14px 20px;
  border-top: 1px solid #f1f5f9;
  line-height: 1.5;
  position: relative;
}

.odo-ct-factor-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 21px;
  width: 6px;
  height: 6px;
  background-color: #1d4ed8;
  border-radius: 50%;
}

.odo-ct-strat-card {
  background-color: #ffffff;
  border: 1px solid #edf2f7;
  border-radius: 16px;
  padding: 30px 24px;
  height: 100%;
  transition: all 0.25s ease;
}

.odo-ct-strat-card:hover {
  border-color: rgba(29, 78, 216, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 12px 20px -8px rgba(29, 78, 216, 0.04);
}

.odo-ct-strat-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.odo-ct-strat-text {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 0;
}

.odo-ct-primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #1d4ed8;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(29, 78, 216, 0.15);
}

.odo-ct-primary-btn:hover {
  background-color: #1e40af;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(29, 78, 216, 0.25);
  text-decoration: none;
}

.odo-ct-primary-btn .btn-arrow {
  transition: transform 0.2s ease;
}

.odo-ct-primary-btn:hover .btn-arrow {
  transform: translateX(4px);
}

@media (max-width: 991.98px) {
  .odo-ct-main-heading {
    font-size: 2.2rem;
  }
  .odo-ct-main-card {
    padding: 32px 24px;
  }
}

@media (max-width: 575.98px) {
  .odo-cost-time-section {
    padding: 60px 0;
  }
  .odo-ct-main-heading {
    font-size: 1.85rem;
  }
}

.odo-risk-section {
  padding: 50px 0;
  background-color: #ffffff;
}

.odo-risk-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  color: #1d4ed8;
  background-color: #f0f4ff;
  border: 1px solid rgba(29, 78, 216, 0.15);
  padding: 6px 14px;
  border-radius: 50px;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  box-shadow: 0 2px 6px rgba(29, 78, 216, 0.04);
}

.odo-risk-main-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  letter-spacing: -0.05em;
  margin-bottom: 20px;
}

.odo-risk-main-desc {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.6;
  max-width: 800px;
}
.odo-risk-matrix {
  border: 1px solid #edf2f7;
  border-radius: 16px;
  overflow: hidden;
  margin-top: 40px;
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.02);
}
.odo-risk-row {
  display: flex;
  border-bottom: 1px solid #edf2f7;
  transition: background-color 0.2s ease;
}

.odo-risk-row:last-child {
  border-bottom: none;
}

.odo-risk-row:hover {
  background-color: #f8fafc;
}
.odo-risk-col-label {
  flex: 0 0 35%;
  max-width: 35%;
  background-color: #f0f4ff;
  color: #0f172a;
  padding: 24px 32px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  border-right: 1px solid #edf2f7;
}
.odo-risk-col-content {
  flex: 0 0 65%;
  max-width: 65%;
  color: #475569;
  padding: 24px 32px;
  font-size: 0.925rem;
  line-height: 1.6;
  display: flex;
  align-items: center;
}
@media (max-width: 991.98px) {
  .odo-risk-main-heading {
    font-size: 2.2rem;
  }

  .odo-risk-row {
    flex-direction: column;
  }

  .odo-risk-col-label,
  .odo-risk-col-content {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 20px 24px;
  }

  .odo-risk-col-label {
    border-right: none;
    border-bottom: 1px solid #edf2f7;
    font-size: 1.05rem;
  }
}

@media (max-width: 575.98px) {
  .odo-risk-section {
    padding: 60px 0;
  }
  .odo-risk-main-heading {
    font-size: 1.85rem;
  }
}

.odo-why-section {
  padding: 50px 0;
  background-color: #f3f9fb;
}


.odo-why-metrics-card {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border-radius: 24px;
  padding: 45px 35px;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.15);
}

.odo-why-metrics-title {
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 30px;
  letter-spacing: -0.01em;
}
.odo-why-stat-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 24px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.odo-why-stat-box .stat-number {
  color: #ffffff;
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.odo-why-stat-box .stat-label {
  color: #94a3b8;
  font-size: 0.8rem;
  line-height: 1.4;
}
.odo-why-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  color: #1d4ed8;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.odo-why-heading {
  font-size: 2.75rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.odo-why-desc {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 30px;
}
.odo-why-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 35px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.odo-why-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.odo-why-checklist .check-icon {
  color: #1d4ed8;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.4rem;
  flex-shrink: 0;
}

.odo-why-checklist p {
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.5;
  margin: 0;
}
.odo-why-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #1d4ed8;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(29, 78, 216, 0.15);
}

.odo-why-btn:hover {
  background-color: #1e40af;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(29, 78, 216, 0.25);
  text-decoration: none;
}

.odo-why-btn .btn-arrow {
  transition: transform 0.2s ease;
}

.odo-why-btn:hover .btn-arrow {
  transform: translateX(4px);
}
@media (max-width: 991.98px) {
  .odo-why-section {
    padding: 60px 0;
  }
  .odo-why-heading {
    font-size: 2.2rem;
  }
  .odo-why-metrics-card {
    padding: 35px 24px;
  }
}

@media (max-width: 575.98px) {
  .odo-why-heading {
    font-size: 1.85rem;
  }
}

.odo-evidence-section {
  padding: 50px 0;
  background-color: #ffffff;
}
.odo-ev-card-container {
  background: linear-gradient(60deg, #fafdff 75%, #a2d8ff 100%);
  border: 1px solid #cae4ff;
  border-radius: 24px;
  padding: 30px 40px;
  box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.03);
}
.odo-ev-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  color: #1d4ed8;
  background-color: #f0f4ff;
  border: 1px solid rgba(29, 79, 216, 0.171);
  padding: 6px 14px;
  border-radius: 50px;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  display: inline-block;
}

.odo-ev-main-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}

.odo-ev-main-desc {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 35px;
  max-width: 620px;
}
.odo-ev-feature-box {
  background-color: #ffffff;
  border: 1px solid #e0efff;
  border-radius: 20px;
  padding: 25px;
}

.odo-ev-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.odo-ev-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.odo-ev-checklist .check-mark {
  color: #1d4ed8;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.odo-ev-checklist .check-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
}
.odo-ev-primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #1d4ed8;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(29, 78, 216, 0.15);
}

.odo-ev-primary-btn:hover {
  background-color: #1e40af;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(29, 78, 216, 0.25);
  text-decoration: none;
}

.odo-ev-primary-btn .btn-arrow {
  transition: transform 0.2s ease;
}

.odo-ev-primary-btn:hover .btn-arrow {
  transform: translateX(4px);
}
@media (max-width: 991.98px) {
  .odo-ev-card-container {
    padding: 40px 30px;
  }
  .odo-ev-main-heading {
    font-size: 2.1rem;
  }
  .odo-ev-feature-box {
    padding: 25px;
  }
}

@media (max-width: 575.98px) {
  .odo-ev-main-heading {
    font-size: 1.8rem;
  }
}

.odo-faq-section {
  padding:50px 0;
  background-color: #ffffff;
}
.odo-faq-main-heading {
  font-size: 2.75rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.05em;
  margin-bottom: 10px;
}

.odo-faq-main-desc {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.6;
}
.odo-faq-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.odo-faq-card {
  background-color: #ffffff;
  border: 1px solid #edf2f7;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.25s ease;
}

.odo-faq-card:hover {
  border-color: rgba(29, 78, 216, 0.2);
  box-shadow: 0 4px 15px -4px rgba(29, 78, 216, 0.04);
}

.odo-faq-card.active {
  border-color: rgba(29, 78, 216, 0.25);
  box-shadow: 0 10px 20px -10px rgba(29, 78, 216, 0.06);
}
.odo-faq-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  text-align: left;
  cursor: pointer;
  outline: none;
}

.odo-faq-question {
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.odo-faq-card:hover .odo-faq-question,
.odo-faq-card.active .odo-faq-question {
  color: #1d4ed8;
}
.odo-faq-icon {
  font-size: 1.35rem;
  font-weight: 500;
  color: #94a3b8;
  transition: color 0.2s ease;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8fafc;
  border-radius: 50%;
}

.odo-faq-card:hover .odo-faq-icon,
.odo-faq-card.active .odo-faq-icon {
  color: #1d4ed8;
  background-color: #f0f4ff;
}
.odo-faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.odo-faq-content {
  padding: 0 28px 24px 28px;
  font-size: 0.925rem;
  color: #475569;
  line-height: 1.6;
}
.odo-faq-tags-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 50px;
}

.odo-faq-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
  background-color: #ffffff;
  border: 1px solid #edf2f7;
  padding: 8px 18px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.odo-faq-tag:hover {
  color: #1d4ed8;
  background-color: #f0f4ff;
  border-color: rgba(29, 78, 216, 0.25);
  text-decoration: none;
  transform: translateY(-1px);
}
@media (max-width: 991.98px) {
  .odo-faq-main-heading {
    font-size: 2.2rem;
  }
  .odo-faq-trigger {
    padding: 18px 22px;
  }
  .odo-faq-content {
    padding: 0 22px 20px 22px;
  }
}

@media (max-width: 575.98px) {
  .odo-faq-main-heading {
    font-size: 1.85rem;
  }
  .odo-faq-question {
    font-size: 0.925rem;
  }
  .odo-faq-tags-container {
    gap: 8px;
  }
  .odo-faq-tag {
    font-size: 0.8rem;
    padding: 6px 14px;
  }
}

.odo-cta-section {
  padding: 50px 0;
  background: linear-gradient(135deg, #2e1f38 0%, #1e293b 100%);
  position: relative;
  overflow: hidden;
}

.odo-cta-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  color: #38bdf8;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  gap: 8px;
}

.odo-cta-eyebrow::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 2px;
  background-color: #38bdf8;
}

.odo-cta-heading {
  font-size: 2.85rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}

.odo-cta-desc {
  font-size: 1.05rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 0;
}
.odo-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.odo-cta-btn:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #0f172a;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(255, 255, 255, 0.2);
  text-decoration: none;
}

.odo-cta-btn .btn-arrow {
  transition: transform 0.2s ease;
}

.odo-cta-btn:hover .btn-arrow {
  transform: translateX(5px);
}
@media (max-width: 991.98px) {
  .odo-cta-section {
    padding: 70px 0;
  }
  .odo-cta-heading {
    font-size: 2.25rem;
  }
  .odo-cta-btn {
    margin-top: 10px;
  }
}

@media (max-width: 575.98px) {
  .odo-cta-heading {
    font-size: 1.85rem;
  }
  .odo-cta-btn {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 14px 20px;
    font-size: 0.95rem;
  }
}







/* Trust Base Layer Rules */
.o2b-trust-section {
    padding: 30px 0;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    background-image: radial-gradient(rgba(8, 127, 245, 0.03) 1px, transparent 0);
    background-size: 24px 24px;
}

.o2b-trust-header {
    margin-bottom: 40px;
}

.o2b-trust-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #f59e0b; /* Yellow/Gold Accent Title */
    margin-bottom: 8px;
}

.o2b-trust-heading {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    color: #0b2240; /* Darker Navy Heading */
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.o2b-trust-subtext {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #64748b;
    max-width: 680px;
    margin: 0 auto 12px auto;
}

/* Three Gold Dots below header */
.o2b-header-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 10px;
}
.o2b-header-dots span {
    width: 7px;
    height: 7px;
    background-color: #f59e0b;
    border-radius: 50%;
    display: inline-block;
}

/* Accreditations Grid Layout */
/* ===== Accreditation Slider (mirrors home affiliation-slider-wrapper) ===== */
.o2b-accreditation-slider-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-bottom: 30px;
}

.o2b-accreditation-slider-track {
    display: flex;
    align-items: stretch;
    gap: 24px;
    will-change: transform;
    transition: transform 0.6s ease-in-out;
}

.o2b-accreditation-slider-track .o2b-badge-container {
    flex: 0 0 calc((100% - 72px) / 4); /* 4 cards visible (3 gaps of 24px) */
}

/* Tablet – 2 cards */
@media (max-width: 991px) {
    .o2b-accreditation-slider-track .o2b-badge-container {
        flex: 0 0 calc((100% - 24px) / 2);
    }
}

/* Mobile – 1 card */
@media (max-width: 575px) {
    .o2b-accreditation-slider-track .o2b-badge-container {
        flex: 0 0 100%;
    }
    .o2b-accreditation-slider-track {
        gap: 16px;
    }
}

.o2b-badge-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.o2b-badge-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 16px;
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.o2b-badge-card:hover {
    border-color: #cbd5e1;
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

.o2b-badge-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.o2b-badge-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Text Captions Beneath Badges */
.o2b-badge-label {
    margin-top: 16px;
    font-size: 13.5px;
    line-height: 1.4;
    color: #334155;
    font-weight: 500;
}
.o2b-badge-label span {
    font-weight: 400;
}
.o2b-badge-label .highlight-purple {
    color: #8b5cf6;
    font-weight: 700;
}
.o2b-badge-label .highlight-blue {
    color: #087ff5;
    font-weight: 600;
}

/* Elegant Center Section Divider for Clients */
.o2b-clients-divider {
    position: relative;
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.o2b-clients-divider::before {
    content: "";
    position: absolute;
    left: 10%;
    right: 10%;
    height: 1.5px;
    background: linear-gradient(90deg, rgba(8, 127, 245, 0.1) 0%, rgba(8, 127, 245, 0.7) 50%, rgba(8, 127, 245, 0.1) 100%);
    z-index: 1;
}

.o2b-divider-text {
    position: relative;
    z-index: 2;
    background-color: #ffffff;
    padding: 0 20px;
    font-size: 26px;
    font-weight: 800;
    color: #0b2240;
}

.o2b-divider-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #087ff5;
    border-radius: 50%;
    z-index: 3;
    top: 50%;
    transform: translateY(-50%);
}
.o2b-clients-divider .left-dot { left: 40%; }
.o2b-clients-divider .right-dot { right: 40%; }

/* Client Logo Double Row Systems */
.o2b-client-master-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
}

.o2b-client-grid-top {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.o2b-client-grid-bottom {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 68%;
    margin: 0 auto;
}

.o2b-client-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    height: 100px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.015);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.o2b-client-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.25s ease;
}

.o2b-client-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
    transform: translateY(-2px);
}

/* Features Highlight Ribbon Footer Component */
.o2b-features-ribbon {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #ffffff;
    padding: 24px 16px;
    margin-top: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
}

.o2b-feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 16px;
    border-right: 1px solid #e2e8f0;
}

.o2b-feature-item:last-child {
    border-right: none;
}

.o2b-feature-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(8, 127, 245, 0.08);
    color: #087ff5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.o2b-feature-icon-box svg {
    width: 22px;
    height: 22px;
}

.o2b-feature-text h4 {
    font-size: 14px;
    font-weight: 700;
    color: #0b2240;
    margin: 0 0 3px 0;
}

.o2b-feature-text p {
    font-size: 12px;
    color: #64748b;
    margin: 0;
    line-height: 1.3;
}

/* Responsive Breakpoint Matrix */
@media (max-width: 1200px) {
    .o2b-client-grid-bottom { max-width: 85%; }
    .o2b-clients-divider .left-dot { left: 28%; }
    .o2b-clients-divider .right-dot { right: 28%; }
}

@media (max-width: 991px) {
    .o2b-trust-heading { font-size: 2.2rem; }
    .o2b-accreditation-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .o2b-client-grid-top { grid-template-columns: repeat(3, 1fr); }
    .o2b-client-grid-bottom { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
    .o2b-features-ribbon { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .o2b-feature-item { border-right: none; }
    .o2b-clients-divider .left-dot, .o2b-clients-divider .right-dot { display: none; }
}

@media (max-width: 768px) {
    .o2b-accreditation-grid { grid-template-columns: repeat(2, 1fr); }
    .o2b-divider-text { font-size: 20px; }
}

@media (max-width: 575px) {
    .o2b-trust-heading { font-size: 1.8rem; }
    .o2b-accreditation-grid { grid-template-columns: 1fr; }
    .o2b-client-grid-top, .o2b-client-grid-bottom { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .o2b-features-ribbon { grid-template-columns: 1fr; gap: 20px; }
}


/* SECTION */
.video-testimonial-section {
    padding: 10px 0;
}

/* TITLES
.section-title {
    font-size: 40px;
    font-weight: 800;
    color: #0f172a;
} */

.section-subtitle {
    font-size: 16px;
    color: #64748b;
    max-width: 720px;
    margin: 12px auto 50px;
}

/* SLIDER */
.video-slider-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.video-slider {
    display: flex;
    gap: 24px;
    overflow: hidden;
    max-width: 1100px;
    height: 100%;
    width: 100%;
}

/* CARD */
.video-card {
    min-width: 250px;
    border-radius: 16px;
    border: 1px solid rgb(230, 230, 230);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-6px);
}

/* THUMB */
.video-thumb {
    height: 180px;
    background-size: cover;
    background-position: center;
    border-radius: 16px 16px 16px 16px;
    position: relative;
}

/* PLAY */
.play-btn {
    width: 30px;
    height: 30px;
    background: #ffffff9f;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.play-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 54%;
    transform: translate(-50%, -50%);
    border-left: 14px solid #2563eb;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

/* INFO */
.video-info {
    padding: 16px;
    text-align: left;
}

.video-info h6 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
}

.video-info p {
    margin-top: 4px;
    font-size: 13px;
    color: #64748b;
}

/* NAV BUTTONS */
.slider-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    font-size: 26px;
    cursor: pointer;

    /* POSITIONING */
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;

    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* LEFT */
.prev-btn {
    left: -22px;
    /* pulls button outside cards */
}

/* RIGHT */
.next-btn {
    right: -22px;
    /* pulls button outside cards */
}

.slider-btn:hover {
    background: #2563eb;
    color: #ffffff;
}

.video-slider {
    overflow: hidden;
    width: 100%;
    max-width: 1100px;
}

.video-track {
    display: flex;
    gap: 24px;
    width: max-content;
    /* animation: scroll-left 30s linear infinite; */
}

/* Pause on hover */
/* .video-slider:hover .video-track {
    animation-play-state: paused;
} */

/* @keyframes scroll-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
} */


/* STATS */
.stats-bar {
    margin-top: 80px;
    padding: 50px 0;
    background: linear-gradient(135deg, #0b5cff, #7c3aed);
    border: 1px solid rgb(243, 243, 243);
    border-radius: 30px;
}

.stats-bar h3 {
    font-size: 45px;
    font-weight: 800;
}

.stats-bar p {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 400;
}

/* MODAL */
.video-modal-content {
    background: #000;
    border-radius: 12px;
}

.video-close {
    position: absolute;
    top: 10px;
    right: 14px;
    color: #fff;
    font-size: 28px;
    z-index: 10;
}
.o2b-section {
    padding: 90px 0;
    background: #f8fbff;
    font-family: 'Inter', sans-serif;
}

.o2b-center {
    text-align: center;
}

.o2b-section-title {
    max-width: 850px;
    margin: 0 auto 50px;
}

.o2b-eyebrow {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    border-radius: 30px;
    margin-bottom: 18px;
}

.o2b-section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 18px;
}

.o2b-section-title p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.8;
    margin: 0;
}

.o2b-table-wrap {
    background: #ffffff;
    border-radius: 18px;
    overflow-x: auto;
    border: 1px solid #dbeafe;
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.08);
}

.o2b-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
}

.o2b-table thead {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.o2b-table thead th {
    padding: 20px 24px;
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    text-align: left;
    border: none;
}

.o2b-table tbody tr {
    transition: 0.3s ease;
}

.o2b-table tbody tr:nth-child(even) {
    background: #f8fbff;
}

.o2b-table tbody tr:hover {
    background: #eff6ff;
}

.o2b-table tbody td {
    padding: 22px 24px;
    font-size: 15px;
    color: #334155;
    line-height: 1.7;
    border-bottom: 1px solid #e2e8f0;
    vertical-align: top;
}

.o2b-table tbody td:first-child {
    font-weight: 700;
    color: #1d4ed8;
}

.o2b-table tbody tr:last-child td {
    border-bottom: none;
}

.o2b-table-wrap::-webkit-scrollbar {
    height: 8px;
}

.o2b-table-wrap::-webkit-scrollbar-track {
    background: #e2e8f0;
    border-radius: 10px;
}

.o2b-table-wrap::-webkit-scrollbar-thumb {
    background: #2563eb;
    border-radius: 10px;
}

@media (max-width: 1199px) {
    .o2b-section-title h2 {
        font-size: 36px;
    }
}

@media (max-width: 991px) {
    .o2b-section {
        padding: 70px 0;
    }

    .o2b-section-title {
        margin-bottom: 40px;
    }

    .o2b-section-title h2 {
        font-size: 32px;
    }

    .o2b-section-title p {
        font-size: 16px;
    }

    .o2b-table thead th {
        padding: 18px;
        font-size: 16px;
    }

    .o2b-table tbody td {
        padding: 18px;
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .o2b-section {
        padding: 60px 0;
    }

    .o2b-eyebrow {
        font-size: 13px;
        padding: 7px 16px;
    }

    .o2b-section-title h2 {
        font-size: 28px;
    }

    .o2b-section-title p {
        font-size: 15px;
    }

    .o2b-table {
        min-width: 800px;
    }

    .o2b-table thead th,
    .o2b-table tbody td {
        padding: 16px;
        font-size: 14px;
    }
}


/* .trust-section{
 background: radial-gradient( at top, #ffffff 0%, #f8fafc 100%);
} */
.brandpush-wrapper {
    position: relative;
    background: linear-gradient(90deg, #cbbcffa5 0%, #d9f5ff 50%, #c6f0ff 100%);
    border-radius: 20px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 10px auto;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.311);
    overflow: hidden;
}

.bp-leaf {
    position: absolute;
    height: 220px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.20;
    z-index: 0;
    pointer-events: none;
}

.bp-leaf-left {
    left: 20px;
}

.bp-leaf-right {
    right: 20px;
    transform: translateY(-50%) scaleX(-1);
}

.bp-header,
.bp-logo-container,
.bp-footer {
    position: relative;
    z-index: 1;
    width: 100%;
}

.bp-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #1e293b;
    text-transform: uppercase;
    margin-bottom: 25px;
    display: block;
}

.bp-logo-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 850px;
    margin: 0 auto;
}

.bp-logo-item img {
    max-width: 110px;
    max-height: 50px;
    width: auto;
    height: auto;
    filter: grayscale(100%);
    opacity: 1;
    transition: all 0.3s ease;
}

.bp-logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}