@charset "UTF-8";
/* Global resets */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.55;
  color: #12233d;
  background: #ffffff;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin: 0;
  margin-bottom: 15px;
  line-height: normal;
}

p {
  margin: 0;
  margin-bottom: 20px;
  line-height: normal;
}

a {
  color: #0756d9;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

input:not([type=submit], [type=button], [type=checkbox], [type=radio]),
select,
textarea {
  min-height: 40px;
  border: 1px solid #797979;
  background-color: white;
  color: #2c2c2c;
  border-radius: 5px;
  padding: 10px 14px;
  font-size: 16px;
}

label {
  font-size: 14px;
  font-weight: 550;
  line-height: normal;
}

input[type=checkbox] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  border-radius: 4px;
  border: 1px solid var(--Black---70, #222);
  background: var(--Grayscale-White, #fff);
  min-height: auto;
  -webkit-appearance: initial;
     -moz-appearance: initial;
          appearance: initial;
}
input[type=checkbox]:checked {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12" fill="none"><path d="M10.0705 3.13127C10.2467 3.30752 10.2467 3.59252 10.0705 3.7669L5.12047 8.71877C4.94422 8.89502 4.65922 8.89502 4.48484 8.71877L1.93297 6.16877C1.75672 5.99252 1.75672 5.70752 1.93297 5.53315C2.10922 5.35877 2.39422 5.3569 2.56859 5.53315L4.79984 7.7644L9.43297 3.13127C9.60922 2.95502 9.89422 2.95502 10.0686 3.13127H10.0705Z" fill="%23052E70"/></svg>');
  background-size: contain;
}
input[type=checkbox]:checked::before {
  display: none !important;
}

input[type=radio] {
  width: 12px;
  height: 12px;
  min-width: 12px;
  min-height: 12px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid var(--Black---70, #222) !important;
  background: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
input[type=radio]:checked::after {
  content: "";
  width: 9px;
  height: 9px;
  display: block;
  background: #052e70;
  border-radius: 50%;
  margin: auto;
}
input[type=radio]::before {
  display: none !important;
}

.wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 14px 22px;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease-in;
  background: #0756d9;
  color: #ffffff !important;
  text-transform: uppercase;
  border: 1px solid #0756d9;
  text-decoration: none;
  cursor: pointer;
}
.wpcf7-submit:hover {
  background: #ffffff;
  color: #0756d9 !important;
  text-decoration: none;
}

.wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.wpcf7-checkbox > * {
  margin: 0;
}
.wpcf7-checkbox > * label {
  display: flex;
  align-items: center;
  gap: 5px;
}

select {
  min-height: 45px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="16" viewBox="0 0 14 16" fill="none"><path d="M6.29414 11.7062C6.68477 12.0969 7.31914 12.0969 7.70977 11.7062L12.7098 6.70624C13.1004 6.31562 13.1004 5.68124 12.7098 5.29062C12.3191 4.89999 11.6848 4.89999 11.2941 5.29062L7.00039 9.58437L2.70664 5.29374C2.31602 4.90312 1.68164 4.90312 1.29102 5.29374C0.900391 5.68437 0.900391 6.31874 1.29102 6.70937L6.29102 11.7094L6.29414 11.7062Z" fill="%23071a42"></path></svg>');
  background-repeat: no-repeat;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-position: top 14px right 10px;
  min-width: 130px;
  background-size: 16px;
  padding-right: 33px;
}

.popup {
  position: fixed;
  padding: 30px;
  width: 70%;
  height: auto;
  max-height: 80%;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1019607843);
  border-radius: 10px;
  overflow-y: auto;
  animation: popupShow 0.3s ease;
  display: none;
}
.popup.active {
  display: block;
}
.popup .close button {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  font-size: 18px;
  cursor: pointer;
  border: none;
  background: none;
}
@media (max-width: 767px) {
  .popup {
    width: 90%;
  }
}

@keyframes popupShow {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.container,
.owls-container,
.owl-container {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  width: min(1180px, 92vw);
}

.text-blue {
  color: #0756d9;
}

.text-muted {
  color: #50617c;
}

.w-100 {
  width: 100%;
}

.bg-soft {
  background: #f4f8ff;
}

.center,
.owls-center {
  text-align: center;
}

.owls-btn,
.owl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 15px 15px;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease-in;
}
.owls-btn svg,
.owls-btn img,
.owl-btn svg,
.owl-btn img {
  width: 20px;
  margin-left: 10px;
}

.owls-card,
.owls-service-card,
.owls-mini-card,
.owls-blog-card,
.card,
blockquote,
details {
  background: #ffffff;
  border: 1px solid #dbe6f5;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(7, 31, 62, 0.05);
}

.owls-section,
.section {
  padding: 58px 0;
}

.owls-section.compact,
.section.soft {
  padding: 42px 0;
}

.grid {
  display: grid;
  gap: 22px;
}

.grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid.cols-5 {
  grid-template-columns: repeat(5, 1fr);
}

.grid.cols-6 {
  grid-template-columns: repeat(6, 1fr);
}

.owls-card-grid {
  display: grid;
  gap: 22px;
  margin-top: 28px;
}

.owls-icon,
.icon {
  font-size: 34px;
  color: #0756d9;
  margin-bottom: 16px;
}

small,
.small {
  font-size: 11px;
}

/*
  _main.scss
  Contains remaining page-specific styles.
  Shared base patterns are imported from _global.scss.
*/
/* Shared page styles */
/* MOVED TO _global.scss: :root variable block, * { box-sizing }, .owls-container, .owls-btn base, .nrows-card base, .owls-section base, .owls-center, .grid base */
.owls-home {
  font-family: Inter, Arial, sans-serif;
  color: #12233d;
  background: #ffffff;
}
.owls-home h2 {
  font-size: 30px;
  line-height: 1.2;
  margin: 0 0 14px;
  color: #0a2140;
}
.owls-home h3 {
  font-size: 18px;
  line-height: 1.3;
  margin: 0 0 12px;
  color: #0a2140;
}
.owls-home p {
  color: #50617c;
  line-height: 1.6;
}
.owls-home a:not(.owls-btn) {
  color: #0756d9;
  font-weight: 700;
}

.owls-hero {
  background: linear-gradient(105deg, #ffffff 0%, #f7fbff 50%, #eaf4ff 100%);
  padding: 84px 0 72px;
  overflow: hidden;
}
.owls-hero h1 {
  font-size: 48px;
  line-height: 1.3;
  margin: 0 0 24px;
  color: #09213f;
  letter-spacing: -1.2px;
}
.owls-hero p {
  font-size: 18px;
  line-height: 1.7;
  max-width: 560px;
  color: #2b3b50;
}

.owls-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
}
@media (max-width: 980px) {
  .owls-hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.owls-hero-subtitle {
  color: #ed9618;
  font-size: 18px;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
  letter-spacing: normal;
}

.owls-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.owls-btn-primary,
.owl-btn-primary {
  background: #0756d9;
  color: #ffffff !important;
  text-transform: uppercase;
  border: 1px solid #0756d9;
  text-decoration: none;
}
.owls-btn-primary:hover, .owls-btn-primary:focus-visible,
.owl-btn-primary:hover,
.owl-btn-primary:focus-visible {
  background: #ffffff;
  color: #0756d9 !important;
  text-decoration: none;
}

.owls-btn-outline,
.owl-btn-outline {
  border: 1px solid #0756d9;
  color: #0756d9;
  background: #ffffff;
  text-transform: uppercase;
  text-decoration: none;
}
.owls-btn-outline:hover, .owls-btn-outline:focus-visible,
.owl-btn-outline:hover,
.owl-btn-outline:focus-visible {
  color: #ffffff;
  background: #0756d9;
  text-decoration: none;
}

.owls-dashboard {
  position: relative;
  min-height: 320px;
}

.owls-main-card {
  padding: 30px;
  max-width: 430px;
  margin: auto;
}
.owls-main-card h3 {
  margin: 26px 0 22px;
}

.owls-window-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  background: #8ed0ff;
  border-radius: 50%;
  margin-right: 7px;
}

.owls-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.owls-metrics strong {
  background: #f6f9fe;
  padding: 16px;
  border-radius: 8px;
}
.owls-metrics small {
  display: block;
  color: #50617c;
  font-size: 11px;
  margin-top: 5px;
}

.owls-chart {
  height: 100px;
  margin-top: 18px;
  border-radius: 8px;
  background: linear-gradient(135deg, transparent 50%, rgba(11, 99, 206, 0.08) 50%), linear-gradient(160deg, #ffffff, #eaf4ff);
}

.owls-floating-card {
  position: absolute;
  background: #ffffff;
  border: 1px solid #dbe6f5;
  border-radius: 12px;
  padding: 18px 22px;
  box-shadow: 0 12px 28px rgba(7, 31, 62, 0.12);
  font-weight: 700;
}
.owls-floating-card span {
  color: #0756d9;
  font-weight: 600;
}
.owls-floating-card.left {
  left: 20px;
  bottom: 42px;
}
.owls-floating-card.right {
  right: 10px;
  bottom: 75px;
}

.owls-trust-band,
.owls-pods,
.owls-section.light {
  padding: 58px 0;
}

.owls-feature-grid {
  display: grid;
  gap: 28px;
}
.owls-feature-grid.five {
  grid-template-columns: 1.4fr repeat(4, 1fr);
}
.owls-feature-grid article {
  border-left: 1px solid #dbe6f5;
  padding-left: 24px;
  text-align: center;
}
.owls-feature-grid article svg {
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .owls-feature-grid {
    grid-template-columns: 100% !important;
  }
}

.owls-section.compact {
  padding: 42px 0;
}
.owls-section.compact h2 {
  font-size: 30px;
  max-width: 730px;
  margin: auto;
}
.owls-section.compact h2 + .dec {
  max-width: 730px;
  margin: auto;
  text-align: center;
}

.owls-card-grid {
  display: grid;
  gap: 22px;
  margin-top: 28px;
}
.owls-card-grid.four {
  grid-template-columns: repeat(4, 1fr);
}
.owls-card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}
.owls-card-grid.five {
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
@media (max-width: 992px) {
  .owls-card-grid.five {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 991px) {
  .owls-card-grid.four, .owls-card-grid.three, .owls-card-grid.five {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .owls-card-grid.four, .owls-card-grid.three, .owls-card-grid.five {
    grid-template-columns: repeat(1, 1fr);
  }
}

.owls-service-card,
.owls-mini-card,
.owls-blog-card,
blockquote {
  padding: 26px;
}

.owls-home h2 {
  font-size: 30px;
  line-height: 1.2;
  margin: 0 0 14px;
  color: #0a2140;
}
.owls-home h3 {
  font-size: 18px;
  line-height: 1.3;
  margin: 0 0 12px;
  color: #0a2140;
}
.owls-home p {
  color: #50617c;
  line-height: 1.6;
}
.owls-home a {
  color: #0756d9;
  font-weight: 700;
}

.owls-pods .owls-steps article:not(:last-child):before {
  content: "";
  position: absolute;
  right: -27%;
  top: 15%;
  width: 45%;
  height: 24px;
  background: url(https://owlsln.com/owlslnsys/wp-content/uploads/2026/05/move-right-1.png) no-repeat;
  background-size: contain;
  opacity: 0.6;
}

@media (max-width: 980px) {
  .owls-pods .owls-steps article:not(:last-child):before {
    display: none;
  }
}
.owls-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  text-align: center;
  margin-top: 20px;
}
.owls-steps.six-columns {
  grid-template-columns: repeat(6, 1fr);
}
.owls-steps article {
  position: relative;
}
.owls-steps span {
  display: inline-flex;
  width: 78px;
  height: 78px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #dbe6f5;
  font-size: 34px;
  box-shadow: 0 10px 30px rgba(7, 31, 62, 0.06);
  margin-bottom: 15px;
}
.owls-steps span svg {
  width: 40px;
  height: 40px;
}
.owls-steps small {
  display: block;
  color: #0756d9;
  font-weight: 800;
  margin: 10px 0;
}
@media (max-width: 767px) {
  .owls-steps {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}

.howto-steps {
  position: relative;
  counter-reset: my-sec-counter;
}
.howto-steps::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 13%;
  width: 88%;
  height: 1px;
  background: #d5d5d5;
}
@media (max-width: 980px) {
  .howto-steps::before {
    display: none;
  }
}
.howto-steps article:not(:last-child):before {
  display: none;
}
.howto-steps article span::before {
  content: "" counter(my-sec-counter) "";
  counter-increment: my-sec-counter;
  color: white;
  font-size: 28px;
  border-radius: 50%;
  background: #0756d9;
  width: 45px;
  height: 45px;
}

.owls-industries {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.owls-industries .box {
  border: 1px solid #dbe6f5;
  border-radius: 8px;
  padding: 24px 12px;
  background: #ffffff;
  font-weight: 800;
  display: flex;
  flex-direction: row;
  gap: 15px;
  box-shadow: 0 0 7px 2px rgba(0, 0, 0, 0.07);
}
.owls-industries .box .icon {
  width: 80px;
  height: 80px;
  padding: 15px;
  border-radius: 50%;
  background: rgba(7, 86, 217, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}
.owls-industries .box .icon svg {
  width: 40px;
  height: 40px;
}
.owls-industries .box .content {
  flex: 1;
}
.owls-industries .box .content h3 {
  font-size: 22px;
}
.owls-industries .box .content h3::after {
  content: "";
  width: 40px;
  height: 3px;
  background: #0756d9;
  display: block;
  margin-top: 10px;
}
.owls-industries .box .content p {
  font-weight: 400;
  font-size: 18px;
}
.owls-industries .box:hover {
  border-color: #0756d9;
}
@media (max-width: 991px) {
  .owls-industries {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .owls-industries {
    grid-template-columns: repeat(1, 1fr);
  }
}

.owls-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.owls-mini-card {
  position: relative;
  z-index: 1;
}
.owls-mini-card img {
  width: 125px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  opacity: 0.7;
}

.owls-mini-card small,
.owls-blog-card small {
  color: #0756d9;
  font-weight: 800;
  font-size: 11px;
}

.owls-blog-card div {
  height: 110px;
  border-radius: 8px;
  margin: -10px -10px 18px;
  background: linear-gradient(135deg, #0a315f, #9ec7f5);
  overflow: hidden;
}

.owls-blog-card div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.owls-cta {
  background: linear-gradient(105deg, #06264b, #004b95);
  color: #ffffff;
  padding: 56px 0;
}
.owls-cta .icon-heading {
  display: flex;
  gap: 15px;
}
.owls-cta .icon-heading svg {
  width: 60px;
  margin: 2px 0 0 0;
}
.owls-cta .owls-btn-primary {
  background: #ffffff;
  color: #02386f !important;
  text-transform: uppercase;
  border: 1px solid #ffffff;
}
.owls-cta .owls-btn-primary:hover {
  background: transparent;
  color: #ffffff !important;
}
.owls-cta .owls-btn-outline {
  border: 1px solid #ffffff;
  color: #ffffff !important;
  background: transparent;
  text-transform: uppercase;
}
.owls-cta .owls-btn-outline:hover {
  color: #02386f !important;
  background: #ffffff;
  text-transform: uppercase;
}
.owls-cta h2,
.owls-cta p {
  color: #ffffff;
}

.owls-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}
@media (max-width: 767px) {
  .owls-cta-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.owls-btn-light {
  background: #ffffff;
  color: #09213f;
}

.owls-btn-dark-outline {
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #ffffff;
}

.owls-faq-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 14px;
  margin-top: 24px;
}

details {
  padding: 16px 18px;
}

summary {
  font-weight: 800;
  cursor: pointer;
  position: relative;
}

summary::marker {
  display: none;
  content: "";
}

summary::before {
  content: "+";
  display: inline-flex;
  width: 16px;
  height: 16px;
  color: #12233d;
  position: absolute;
  right: 0;
  font-size: 20px;
  justify-content: center;
  align-items: center;
  top: 50%;
  transform: translateY(-50%);
}

details[open] summary::before {
  content: "-";
}

blockquote {
  margin: 0;
  color: #263b55;
}

blockquote:before {
  content: "“";
  display: block;
  color: #0756d9;
  font-size: 50px;
  line-height: 20px;
  font-weight: 600;
  font-family: emoji;
}

cite {
  display: block;
  margin-top: 22px;
  font-style: normal;
  font-weight: 800;
  color: #12233d;
  font-size: 13px;
}

.owls-hero .company-highlights__wrapper {
  max-width: 640px;
  border: 1px solid #d9d9d9;
  border-radius: 24px;
  background: #ffffff;
  overflow: hidden;
}

.owls-hero .company-highlights__list {
  margin: 0;
  padding: 20px 30px;
  list-style: none;
  border: 1px solid #d9d9d9;
  border-radius: 15px;
}

.owls-hero .company-highlights__item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid #d9d9d9;
  margin: auto;
}

.owls-hero .company-highlights__item:last-child {
  border-bottom: 0;
}

.owls-hero .company-highlights__icon {
  width: 32px;
  height: 32px;
}

.owls-hero .company-highlights__icon svg {
  width: 32px;
  height: 32px;
}

.owls-hero .company-highlights__content p {
  margin: 0;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 500;
  color: #09213f;
}

.owls-service-card {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: none;
  border: 2px solid #efefef;
}

.owls-service-card .owls-icon {
  font-size: unset;
  margin-bottom: 15px;
}

.owls-service-card .owls-icon svg {
  width: 40px;
  height: 40px;
  stroke: #0756d9;
  stroke-width: 1.5px;
}

.owls-service-card h3 {
  text-align: center;
}

.owls-service-card p {
  text-align: center;
}

.owls-service-card a {
  text-decoration: none;
  display: inline-block;
  margin-top: auto;
}

.owls-service-card a:hover {
  text-decoration: underline;
}

.owls-service-card:has(a:hover) {
  border-color: #0756d9;
}

.feature-grid {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(4, 1fr);
  background: #ffffff;
  border: 1px solid #dbe6f5;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 0 7px 2px rgba(0, 0, 0, 0.0705882353);
  margin-top: 20px;
}

.feature-grid .feature-grid__item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 20px;
  padding: 25px 15px;
  position: relative;
  align-items: start;
}

.feature-grid .feature-grid__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 0;
  width: 1px;
  height: calc(100% - 40px);
  background: #dbe6f5;
}

.feature-grid .feature-grid__item .feature-grid__icon svg {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}

.feature-grid .feature-grid__item .feature-grid__content h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
}

.feature-grid .feature-grid__item .feature-grid__content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-grid .feature-grid__item:nth-child(2)::after,
  .feature-grid .feature-grid__item:nth-child(4)::after {
    display: none;
  }
}
@media (max-width: 767px) {
  .feature-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .feature-grid .feature-grid__item {
    padding: 20px 30px;
  }
  .feature-grid .feature-grid__item:not(:last-child)::after {
    display: block;
    width: calc(100% - 60px);
    height: 1px;
    left: 30px;
    bottom: 0;
    top: unset;
  }
}
/* Owl page styles */
.owl-page {
  font-family: Inter, Arial, sans-serif;
  color: #12233d;
  background: #ffffff;
  line-height: 1.55;
}

.owl-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e7eef9;
}
.owl-header :has(.is-open)::before {
  content: "";
  width: 100%;
  height: 100vh;
  position: fixed;
  background: rgba(0, 0, 0, 0.4705882353);
  left: 0;
  top: 0;
}

.owl-nav {
  height: 72px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.owl-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 22px;
  color: #052257;
  text-decoration: none;
}

.owl-logo-mark {
  color: #ffffff;
  display: grid;
  place-items: center;
}

.owl-logo-mark img {
  width: 220px;
}

.owl-menu {
  margin-left: auto;
}
.owl-menu .navbar {
  width: 100%;
  list-style: none;
  display: flex;
  gap: 16px;
  margin: 0;
  margin-left: auto;
  align-items: center;
  padding: 0;
}
@media (min-width: 901px) {
  .owl-menu .navbar > li:focus-within > ul {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    overflow: visible !important;
  }
}
.owl-menu .navbar .nav-item {
  position: relative;
}
.owl-menu .navbar .nav-item .nav-link {
  display: flex;
  font-size: 14px;
  font-weight: 750;
  color: #071a42;
  text-decoration: none;
  padding: 25px 0;
  border-bottom: 3px solid transparent;
  align-items: center;
}
.owl-menu .navbar .nav-item .nav-link:hover {
  color: #0756d9;
}
@media (min-width: 901px) {
  .owl-menu .navbar .nav-item.has-dropdown > a::after {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="16" viewBox="0 0 14 16" fill="none"><path d="M6.29414 11.7062C6.68477 12.0969 7.31914 12.0969 7.70977 11.7062L12.7098 6.70624C13.1004 6.31562 13.1004 5.68124 12.7098 5.29062C12.3191 4.89999 11.6848 4.89999 11.2941 5.29062L7.00039 9.58437L2.70664 5.29374C2.31602 4.90312 1.68164 4.90312 1.29102 5.29374C0.900391 5.68437 0.900391 6.31874 1.29102 6.70937L6.29102 11.7094L6.29414 11.7062Z" fill="%23071a42"></path></svg>');
    margin-left: 8px;
    height: 18px;
  }
  .owl-menu .navbar .nav-item.has-dropdown > a:hover::after {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="16" viewBox="0 0 14 16" fill="none"><path d="M6.29414 11.7062C6.68477 12.0969 7.31914 12.0969 7.70977 11.7062L12.7098 6.70624C13.1004 6.31562 13.1004 5.68124 12.7098 5.29062C12.3191 4.89999 11.6848 4.89999 11.2941 5.29062L7.00039 9.58437L2.70664 5.29374C2.31602 4.90312 1.68164 4.90312 1.29102 5.29374C0.900391 5.68437 0.900391 6.31874 1.29102 6.70937L6.29102 11.7094L6.29414 11.7062Z" fill="%230756d9"></path></svg>');
  }
  .owl-menu .navbar .nav-item:hover .submenu {
    display: block;
  }
}
.owl-menu .navbar .submenu {
  display: none;
  width: 275px;
  border-radius: 0px;
  padding: 16px 16px 16px 16px;
  text-align: left;
  margin-top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  top: 100%;
  position: absolute;
  list-style: none;
}
.owl-menu .navbar .submenu > .nav-item {
  position: relative;
}
.owl-menu .navbar .submenu > .nav-item > .nav-link {
  text-align: left;
  display: block;
  padding: 8px 0px;
  font-size: 16px;
  font-weight: 500;
}
.owl-menu .navbar .submenu > .nav-item > .nav-link:hover {
  text-decoration: none;
  color: #0756d9;
}
@media (max-width: 900px) {
  .owl-menu .navbar .submenu {
    position: static;
    transform: none;
    width: 100%;
    background: none;
    box-shadow: none;
  }
}

.owl-hero {
  padding: 70px 0 56px;
  background: radial-gradient(circle at 72% 20%, #e8f1ff 0, transparent 35%), linear-gradient(180deg, #ffffff, #f9fbff);
}

.owl-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 58px;
  align-items: center;
}

.owl-kicker {
  display: inline-block;
  color: #285ab8;
  background: #eef5ff;
  border: 1px solid #dbe6f5;
  border-radius: 99px;
  padding: 6px 11px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.owl-h1 {
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: 1.05;
  margin: 16px 0 22px;
  letter-spacing: -0.05em;
}

.owl-h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.14;
  margin: 0 0 16px;
  letter-spacing: -0.035em;
}

.owl-lead {
  font-size: 18px;
  color: #263753;
  max-width: 650px;
}

.owl-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.owl-visual {
  min-height: 320px;
  border-radius: 24px;
  background: linear-gradient(135deg, #edf5ff, #ffffff);
  border: 1px solid #dbe6f5;
  box-shadow: 0 18px 45px rgba(7, 37, 96, 0.09);
  position: relative;
  padding: 34px;
  overflow: hidden;
}

.owl-visual:before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: repeating-radial-gradient(circle, #c9ddff 0 2px, transparent 2px 17px);
  opacity: 0.75;
}

.dash-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #dbe6f5;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 18px 45px rgba(7, 37, 96, 0.09);
  margin: 10px;
}

.dash-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.metric {
  background: #f5f8ff;
  border: 1px solid #e5eefc;
  border-radius: 13px;
  padding: 15px;
  font-weight: 800;
}

.section {
  padding: 58px 0;
}

.section.soft {
  background: linear-gradient(180deg, #f7fbff, #ffffff);
}

.center {
  text-align: center;
}

.grid {
  display: grid;
  gap: 22px;
}

.grid.cols-2,
.grid.cols-3,
.grid.cols-4,
.grid.cols-5,
.grid.cols-6 {
  grid-template-columns: repeat(1, 1fr);
}

.grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid.cols-5 {
  grid-template-columns: repeat(5, 1fr);
}

.grid.cols-6 {
  grid-template-columns: repeat(6, 1fr);
}

.card {
  background: #ffffff;
  border: 1px solid #dbe6f5;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 8px 25px rgba(9, 27, 66, 0.04);
}

.card.large {
  padding: 36px;
}

.icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: #edf4ff;
  color: #0756d9;
  display: grid;
  place-items: center;
  font-size: 30px;
  margin-bottom: 18px;
}

.card h3 {
  font-size: 22px;
  line-height: 1.2;
  margin: 0 0 12px;
}

.card p,
.card li {
  color: #2e3b55;
}

.mini-list {
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.mini-list li:before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #eaf2ff;
  color: #0756d9;
  font-size: 12px;
  font-weight: 900;
  margin-right: 8px;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
}

.process {
  display: flex;
  gap: 18px;
  justify-content: space-between;
  align-items: stretch;
}

.step {
  flex: 1;
  text-align: center;
  position: relative;
}

.step .circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  margin: 0 auto 12px;
  background: #ffffff;
  border: 2px solid #cfe0fb;
  color: #0756d9;
  display: grid;
  place-items: center;
  font-size: 24px;
  box-shadow: 0 18px 45px rgba(7, 37, 96, 0.09);
}

.step:not(:last-child):after {
  content: "→";
  position: absolute;
  right: -14px;
  top: 18px;
  color: #6f92cf;
  font-weight: 900;
}

.stats .card {
  text-align: center;
}

.stat {
  font-size: 36px;
  color: #0756d9;
  font-weight: 950;
  line-height: 1;
}

.testimonial {
  position: relative;
}

.testimonial:before {
  content: "“";
  font-size: 58px;
  color: #0756d9;
  line-height: 0;
}

.faq {
  display: grid;
  gap: 14px;
}

.faq details {
  background: #ffffff;
  border: 1px solid #dbe6f5;
  border-radius: 9px;
  padding: 15px 18px;
}

.faq summary {
  cursor: pointer;
  font-weight: 850;
}

.cta {
  background: linear-gradient(135deg, #073178, #0756d9);
  color: #ffffff;
  border-radius: 16px;
  padding: 42px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  position: relative;
  overflow: hidden;
}

.cta:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 240px;
  background: repeating-radial-gradient(circle, rgba(255, 255, 255, 0.45) 0 2px, transparent 2px 16px);
  opacity: 0.4;
  z-index: -1;
}

.cta > * {
  position: relative;
}

.footer {
  background: #041c3d;
  color: #dfeaff;
  padding: 48px 0 24px;
}
.footer .owl-logo-mark {
  margin-left: -15px;
  margin-bottom: 15px;
}
.footer a {
  color: #e8f1ff;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}
.footer h4 {
  color: #ffffff;
  margin: 0 0 14px;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.footer ul.social-links {
  display: flex;
  list-style: none;
  gap: 12px;
}
.footer ul.social-links a {
  color: white;
  transition: all 0.2s ease-in-out;
}
.footer ul.social-links a svg {
  fill: white;
}
.footer ul.social-links a:hover svg {
  opacity: 0.75;
}
.footer .footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.5fr;
  gap: 32px;
}
.footer .copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  margin-top: 36px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.footer .footer-contact {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer .footer-contact svg {
  width: 24px;
  flex: 0 0 24px;
}
@media (max-width: 991px) {
  .footer .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 34px;
}

.form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form .full {
  grid-column: 1/-1;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #cddbf0;
  border-radius: 8px;
  font: inherit;
}

.form textarea {
  min-height: 140px;
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border: 1px solid #dbe6f5;
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
}

.logo-strip div {
  padding: 24px;
  text-align: center;
  font-size: 26px;
  font-weight: 900;
  border-right: 1px solid #dbe6f5;
  color: #57657c;
}

.logo-strip div:last-child {
  border-right: 0;
}

.posts .card {
  padding: 0;
  overflow: hidden;
}

.post-img {
  height: 150px;
  background: linear-gradient(135deg, #0b2f68, #dbe9ff);
  position: relative;
}

.post-img:after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.6), transparent 34%);
}

.post-body {
  padding: 24px;
}

.nav-toggle {
  display: none;
}

.badge {
  display: inline-block;
  border-radius: 99px;
  background: #edf4ff;
  color: #0756d9;
  font-weight: 900;
  font-size: 12px;
  padding: 5px 9px;
  margin-bottom: 10px;
}

.menu-close {
  display: none;
}

.plus-minus {
  position: absolute;
  top: 2px;
  right: 0px;
  cursor: pointer;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.plus-minus:hover::after {
  filter: brightness(0) saturate(100%) invert(21%) sepia(100%) saturate(6345%) hue-rotate(215deg) brightness(95%) contrast(95%);
}
.plus-minus:after {
  content: "";
  width: 16px;
  height: 16px;
  display: flex;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="16" viewBox="0 0 14 16" fill="none"><path d="M6.29414 11.7062C6.68477 12.0969 7.31914 12.0969 7.70977 11.7062L12.7098 6.70624C13.1004 6.31562 13.1004 5.68124 12.7098 5.29062C12.3191 4.89999 11.6848 4.89999 11.2941 5.29062L7.00039 9.58437L2.70664 5.29374C2.31602 4.90312 1.68164 4.90312 1.29102 5.29374C0.900391 5.68437 0.900391 6.31874 1.29102 6.70937L6.29102 11.7094L6.29414 11.7062Z" fill="%23071a42"></path></svg>');
  background-repeat: no-repeat;
  background-size: contain;
}
.plus-minus.minus-icon:after {
  transform: rotate(180deg);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    background: #ffffff;
    color: #071a42;
    padding: 12px 16px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(7, 26, 66, 0.12);
    cursor: pointer;
    font-weight: 800;
    font-size: 14px;
    margin-left: auto;
  }
  .nav-toggle-icon {
    width: 18px;
    height: 2px;
    position: relative;
    background: currentColor;
    display: inline-block;
  }
  .nav-toggle-icon::before,
  .nav-toggle-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    background: currentColor;
  }
  .nav-toggle-icon::before {
    top: -6px;
  }
  .nav-toggle-icon::after {
    top: 6px;
  }
  .owl-menu {
    position: fixed;
    transform: translateX(100%);
    transition: transform 0.24s ease, visibility 0.24s ease;
    visibility: hidden;
    background: var(--Light-grey-1, #f5f5f5);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
    padding: 20px 30px;
    width: 85%;
    height: 100vh;
    overflow-y: auto;
    top: 0;
    right: 0;
    z-index: 99;
  }
  .owl-menu .menu-close {
    position: absolute;
    top: 18px;
    right: 18px;
    border: none;
    background: transparent;
    color: #071a42;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    padding: 8px;
    display: block;
  }
  .owl-menu.is-open {
    visibility: visible;
    transform: translateX(0);
  }
  .owl-menu .navbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top: 55px;
  }
  .owl-menu .navbar .nav-item {
    width: 100%;
  }
  .owl-menu .navbar .nav-item .nav-link {
    display: block;
    padding: 0 0 10px;
    width: 100%;
    border-bottom: 1px solid rgba(7, 26, 66, 0.08);
  }
  .owl-hero-grid,
  .split,
  .contact-grid,
  .cta {
    grid-template-columns: 1fr;
  }
  .grid.cols-3,
  .grid.cols-4,
  .grid.cols-5,
  .grid.cols-6,
  .grid.cols-2,
  .footer-grid,
  .faq {
    grid-template-columns: 1fr;
  }
  .process {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .step:after {
    display: none;
  }
  .form {
    grid-template-columns: 1fr;
  }
  .copyright {
    display: block;
  }
  .owl-h1 {
    font-size: 42px;
  }
}
.btn-talk {
  align-self: center;
  padding: 10px 20px;
  height: auto;
  line-height: 1;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
}

/* Why page styles */
.owl-why-page {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #061936;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  line-height: 1.55;
}

.owl-container.narrow {
  width: min(1040px, 92vw);
}

.owl-hero {
  padding: 70px 0 62px;
  background: radial-gradient(circle at 76% 28%, #eaf4ff 0 18%, transparent 36%), linear-gradient(90deg, #ffffff 0%, #f7fbff 100%);
}

.owl-hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(300px, 1fr));
  gap: 60px;
  align-items: center;
}

.owl-hero h1 {
  font-size: 48px;
  line-height: 1.3;
  margin: 0 0 24px;
  color: #09213f;
  letter-spacing: -1.2px;
}

.owl-hero p {
  font-size: 18px;
  max-width: 610px;
  color: #263a59;
  margin: 0 0 34px;
}

.owl-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.owl-hero-visual {
  position: relative;
  min-height: 380px;
}

.soft-squares {
  position: absolute;
  inset: 15px 80px 40px 40px;
  background: repeating-linear-gradient(90deg, transparent 0 55px, rgba(13, 100, 232, 0.08) 56px 110px), repeating-linear-gradient(0deg, transparent 0 55px, rgba(13, 100, 232, 0.08) 56px 110px);
  border-radius: 26px;
  opacity: 0.7;
}

.metric-card,
.chart-card,
.check-card {
  position: absolute;
  background: #ffffff;
  border: 1px solid #dbe6f5;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(5, 34, 74, 0.12);
  padding: 24px;
}

.delivery {
  left: 135px;
  top: 35px;
  width: 190px;
  text-align: center;
}

.delivery span,
.chart-card strong {
  display: block;
  font-weight: 800;
  margin-bottom: 14px;
}

.delivery strong {
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  margin: 0 auto 10px;
  border: 7px solid #0d64e8;
  border-radius: 50%;
  font-size: 34px;
}

.delivery small {
  font-weight: 700;
  color: #40536d;
}

.chart-card {
  right: 8px;
  top: 80px;
  width: 310px;
  height: 235px;
}

.line-chart {
  height: 82px;
  margin: 15px 0;
  background: linear-gradient(135deg, transparent 48%, #0d64e8 49% 52%, transparent 53%), linear-gradient(160deg, transparent 40%, #0d64e8 41% 44%, transparent 45%);
  border-bottom: 1px solid #dbe7f8;
}

.bars {
  display: flex;
  gap: 16px;
  align-items: end;
  height: 66px;
}

.bars i {
  display: block;
  width: 28px;
  background: #0d64e8;
  border-radius: 5px 5px 0 0;
}

.bars i:nth-child(1) {
  height: 35px;
}

.bars i:nth-child(2) {
  height: 54px;
}

.bars i:nth-child(3) {
  height: 32px;
}

.bars i:nth-child(4) {
  height: 62px;
}

.check-card {
  left: 210px;
  bottom: 30px;
  width: 210px;
  display: grid;
  gap: 10px;
  color: #1b4678;
  font-weight: 700;
}

.owl-section {
  padding: 45px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 24px;
}

.section-title h2 {
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.15;
  margin: 0;
  color: #061936;
}

.section-title p {
  margin: 8px 0 0;
  color: #49617f;
}

.pillar-list {
  display: grid;
  gap: 16px;
}

.pillar-card {
  display: grid;
  grid-template-columns: 150px 1fr 330px;
  gap: 38px;
  align-items: center;
  background: #ffffff;
  border: 1px solid #dbe6f5;
  border-radius: 14px;
  padding: 28px 36px;
  box-shadow: 0 14px 35px rgba(10, 39, 83, 0.06);
}

.pillar-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: #f0f5fd;
  color: #0d64e8;
  font-size: 42px;
}

.pillar-icon img.emoji {
  width: 40px !important;
  height: 40px !important;
}

.pillar-content h3 {
  font-size: 24px;
  margin: 0 0 12px;
}

.pillar-content p {
  margin: 0 0 18px;
  color: #263a59;
}

.pillar-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(170px, 1fr));
  gap: 8px 20px;
  color: #173b76;
  font-weight: 700;
  font-size: 14px;
}

.pillar-visual {
  min-height: 138px;
  border: 1px solid #dbe6f5;
  border-radius: 10px;
  background: linear-gradient(180deg, #ffffff, #f6f9ff);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px;
  color: #102a56;
  font-weight: 800;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial-grid blockquote {
  margin: 0;
  background: #ffffff;
  border: 1px solid #dbe6f5;
  border-radius: 10px;
  padding: 26px 28px;
  box-shadow: 0 12px 28px rgba(10, 39, 83, 0.05);
}

.testimonial-grid b {
  font-size: 44px;
  color: #0d64e8;
  line-height: 1;
}

.testimonial-grid p {
  min-height: 110px;
  margin: 0 0 22px;
  color: #253b5a;
}

.testimonial-grid footer {
  font-weight: 800;
}

.testimonial-grid span {
  font-weight: 600;
  color: #50617c;
}

.dots {
  text-align: center;
  margin-top: 20px;
}

.dots i {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #9eb2cf;
  border-radius: 50%;
  margin: 0 6px;
}

.cta {
  margin-top: 35px;
  margin-bottom: 35px;
  padding: 42px 46px;
  border-radius: 12px;
  color: #ffffff;
  background: radial-gradient(circle at 95% 20%, rgba(94, 160, 255, 0.45), transparent 28%), linear-gradient(135deg, #03316b, #052a5d 55%, #0a56ca);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta h2 {
  font-size: 30px;
  margin: 0;
}

.cta p {
  margin: 8px 0 0;
  max-width: 520px;
}

.chat-icon {
  float: left;
  margin-right: 22px;
  width: 62px;
  height: 62px;
  border-radius: 10px;
  display: grid;
  place-items: center;
}

.hero-card-accessibility .hero-card-list {
  position: relative;
  z-index: 1;
}
.hero-card-accessibility .hero-card-list::before {
  content: "";
  width: 1px;
  height: 85%;
  border: 1px #d5d5d5;
  border-style: dashed;
  position: absolute;
  top: 0;
  left: 30px;
  z-index: -1;
}
.hero-card-accessibility .hero-card-list .hero-card-point {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: center;
}
.hero-card-accessibility .hero-card-list .hero-card-point:last-child {
  margin-bottom: 0;
}
.hero-card-accessibility .hero-card-list .hero-card-point > * {
  flex: 1;
}
.hero-card-accessibility .hero-card-list .hero-card-point .hero-card-icon {
  width: 70px;
  height: 60px;
  flex: 0 0 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card-accessibility .hero-card-list .hero-card-point .hero-card-icon svg {
  width: 40px;
  height: 40px;
}
.hero-card-accessibility .hero-card-list .hero-card-point h4 {
  margin: 0;
  margin-bottom: 10px;
  line-height: 1;
}
.hero-card-accessibility .hero-card-list .hero-card-point p {
  margin: 0;
  font-size: 14px;
}
.hero-card-accessibility .hero-card-list .hero-card-point:nth-child(1) .hero-card-icon {
  background: #c2ffdb;
}
.hero-card-accessibility .hero-card-list .hero-card-point:nth-child(1) .hero-card-icon svg {
  stroke: #00933d;
}
.hero-card-accessibility .hero-card-list .hero-card-point:nth-child(2) .hero-card-icon {
  background: #95ecff;
}
.hero-card-accessibility .hero-card-list .hero-card-point:nth-child(2) .hero-card-icon svg {
  stroke: #005e74;
}
.hero-card-accessibility .hero-card-list .hero-card-point:nth-child(3) .hero-card-icon {
  background: #c8a4ff;
}
.hero-card-accessibility .hero-card-list .hero-card-point:nth-child(3) .hero-card-icon svg {
  stroke: #3f009e;
}
.hero-card-accessibility .hero-card-list .hero-card-point:nth-child(4) .hero-card-icon {
  background: #ffe7b6;
}
.hero-card-accessibility .hero-card-list .hero-card-point:nth-child(4) .hero-card-icon svg {
  stroke: #ffb625;
}

.standards {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.standards span {
  background: #fff;
  border: 1px solid;
  padding: 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
}
.standards span svg {
  width: 22px;
  stroke-width: 2px;
  stroke: #000;
}
.standards span:nth-child(1) {
  background: #ede1ff;
  border-color: #4f00c6;
}
.standards span:nth-child(1) svg {
  stroke: #4f00c6;
}
.standards span:nth-child(2) {
  border-color: #49b002;
  background: #ebffdd;
}
.standards span:nth-child(2) svg {
  stroke: #49b002;
}
.standards span:nth-child(3) {
  background: #e8f8fb;
  border-color: #07739b;
}
.standards span:nth-child(3) svg {
  stroke: #07739b;
}
.standards span:nth-child(4) {
  background: #fff9e8;
  border-color: #c28f00;
}
.standards span:nth-child(4) svg {
  stroke: #c28f00;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 35px;
}
.card-grid h2 {
  margin: 0;
  margin-bottom: 15px;
  text-align: left;
  list-style: normal;
}
.card-grid p {
  text-align: left;
  margin: 0;
}
.card-grid .card {
  background: #fff;
  border: 1px solid #dbe5f2;
  border-radius: 14px;
  padding: 28px 20px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
  text-align: left;
}
.card-grid .card .icon-box {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d5d5d5;
  border-radius: 50%;
  margin-bottom: 15px;
  margin-left: 0px;
}
.card-grid .card .icon-box svg {
  width: 38px;
  height: 38px;
}
.card-grid .card h3::after {
  content: "";
  width: 40px;
  height: 3px;
  background: #0756d9;
  display: block;
  margin-top: 10px;
}
.card-grid .card p {
  margin: 0;
}
.card-grid .card:nth-child(1) .icon-box {
  background: #ebffdd;
}
.card-grid .card:nth-child(1) .icon-box svg {
  stroke: #49b002;
}
.card-grid .card:nth-child(1) h3::after {
  background: #49b002;
}
.card-grid .card:nth-child(2) .icon-box {
  background: #dbf0ff;
}
.card-grid .card:nth-child(2) .icon-box svg {
  stroke: #0086ea;
  fill: #0065af;
}
.card-grid .card:nth-child(2) h3::after {
  background: #0065af;
}
.card-grid .card:nth-child(3) .icon-box {
  background: #ebddff;
}
.card-grid .card:nth-child(3) .icon-box svg {
  stroke: #4f00c6;
}
.card-grid .card:nth-child(3) h3::after {
  background: #4f00c6;
}
.card-grid .card:nth-child(4) .icon-box {
  background: #fff9de;
}
.card-grid .card:nth-child(4) .icon-box svg {
  stroke: #dba500;
}
.card-grid .card:nth-child(4) h3::after {
  background: #dba500;
}
.card-grid .card:nth-child(5) .icon-box {
  background: #edffe1;
}
.card-grid .card:nth-child(5) .icon-box svg {
  stroke: #53cf00;
}
.card-grid .card:nth-child(5) h3::after {
  background: #53cf00;
}
@media (max-width: 991px) {
  .card-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.issues {
  padding: 55px 0;
  background: #f4f8fd;
  text-align: center;
}
.issues h2 {
  margin: 0;
  margin-bottom: 15px;
  text-align: left;
  font-size: 35px;
  line-height: normal;
}
.issues p {
  text-align: left;
  margin: 0;
}
.issues .issue-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin-top: 30px;
}
.issues .issue-grid .box {
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
  border-radius: 12px;
  padding: 20px 10px;
  font-weight: 600;
}
.issues .issue-grid .box .icon-box {
  width: 75px;
  height: 75px;
  padding: 10px;
  background: rgba(7, 86, 217, 0.1098039216);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}
.issues .issue-grid .box .icon-box svg {
  stroke: #0756d9;
  width: 42px;
  height: auto;
}
.issues .issue-grid .box h3 {
  font-size: 18px;
  margin: 0;
  margin-bottom: 15px;
  line-height: 1.5;
}
.issues .issue-grid .box h3::after {
  content: "";
  width: 40px;
  height: 3px;
  background: rgba(7, 87, 217, 0.3215686275);
  display: block;
  margin-top: 10px;
  text-align: center;
  left: 50%;
  position: relative;
  transform: translateX(-50%);
}
.issues .issue-grid .box p {
  font-size: 16px;
  margin: 0;
  font-weight: 400;
  text-align: center;
}
@media (max-width: 991px) {
  .issues .issue-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.approach .approach-header {
  margin-bottom: 50px;
}
.approach .approach-header .sub-title {
  color: #0756d9;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 8px;
}
.approach .approach-header .sub-title h2 {
  color: #061f4a;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 15px;
}
.approach {
  /* Individual Card Layout */
}
.approach .step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  position: relative;
  /* Icons Container and Styles */
}
.approach .step-card .icon-wrapper {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: 1px solid #e2e8f0;
}
.approach .step-card .icon-wrapper svg {
  width: 53px;
  height: 53px;
}
.approach .step-card .icon-wrapper.icon-blue {
  background: #eff6ff;
  border-color: #dbeafe;
}
.approach .step-card .icon-wrapper.icon-blue svg {
  color: #0756d9;
}
.approach .step-card .icon-wrapper.icon-green {
  background: #f0fdf4;
  border-color: #d1fae5;
}
.approach .step-card .icon-wrapper.icon-green svg {
  color: #10b981;
}
.approach .step-card .icon-wrapper.icon-purple {
  background: #faf5ff;
  border-color: #faf5ff;
}
.approach .step-card .icon-wrapper.icon-purple svg {
  color: #6b21a8;
}
.approach .step-card h3 {
  color: #0756d9;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  margin: 0;
}
.approach .step-card h3::after {
  content: "";
  width: 40px;
  height: 3px;
  background: #0756d9;
  border-radius: 10px;
  display: block;
  margin-top: 10px;
  text-align: center;
  left: 50%;
  position: relative;
  transform: translateX(-50%);
}
.approach .step-card h3.txt-green {
  color: #10b981;
}
.approach .step-card h3.txt-green::after {
  background: #10b981;
}
.approach .step-card h3.txt-purple {
  color: #6b21a8;
}
.approach .step-card h3.txt-purple::after {
  background: #6b21a8;
}
.approach .step-card .step-desc {
  color: #50617c;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
  min-height: 75px; /* Keeps boxes aligned */
}
.approach .step-card .outcome-box {
  width: 100%;
  background: rgba(240, 253, 244, 0.6);
  border: 1px solid #d1fae5;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  gap: 12px;
  text-align: left;
  box-sizing: border-box;
}
.approach .step-card .outcome-box p {
  margin: 0;
  font-size: 14px;
  color: #071b3a;
}
.approach .step-card .outcome-box.blue-box {
  background: #eff6ff;
  border-color: #dbeafe;
}
.approach .step-card .outcome-box.green-box {
  background: rgba(240, 253, 244, 0.6);
  border: 1px solid #d1fae5;
}
.approach .step-card .outcome-box.purple-box {
  background: #faf5ff;
  border-color: #f3e8ff;
}
.approach .step-card .outcome-box .check-icon {
  color: #0756d9;
  font-weight: bold;
  font-size: 18px;
  line-height: 1;
}
.approach .step-card .outcome-box .check-icon.green-text {
  color: #10b981;
}
.approach .step-card .outcome-box .check-icon.purple-text {
  color: #6b21a8;
}

#accessibility-contact h2 span {
  color: #43bbff;
}
#accessibility-contact .cta-grid {
  grid-template-columns: 1fr 0.5fr;
}
@media (max-width: 991px) {
  #accessibility-contact .cta-grid {
    grid-template-columns: 1fr;
  }
}
#accessibility-contact .trust-points {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 25px;
  font-size: 14px;
}
#accessibility-contact .trust-points .trust-point {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 14px;
  font-weight: 600;
  align-items: center;
}
#accessibility-contact .trust-points .trust-point .icon-box {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #43bbff;
}
#accessibility-contact .trust-points .trust-point .icon-box svg {
  width: 26px;
  height: auto;
  stroke: #43bbff;
}
#accessibility-contact .contact-icon-card {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: center;
}
#accessibility-contact .contact-icon-card .contact-card-icon {
  width: 70px;
  height: 70px;
  flex: 0 0 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#accessibility-contact .contact-icon-card .contact-card-icon svg {
  width: 40px;
  height: 40px;
}
#accessibility-contact .contact-icon-card .contact-card-icon.icon-blue {
  background: #eff6ff;
  border-color: #dbeafe;
}
#accessibility-contact .contact-icon-card .contact-card-icon.icon-blue svg {
  stroke: #0756d9;
}
#accessibility-contact .contact-icon-card .contact-card-icon.icon-green {
  background: #f0fdf4;
  border-color: #d1fae5;
}
#accessibility-contact .contact-icon-card .contact-card-icon.icon-green svg {
  stroke: #10b981;
}
#accessibility-contact .contact-icon-card .contact-card-icon.icon-purple {
  background: #faf5ff;
  border-color: #ecd9ff;
}
#accessibility-contact .contact-icon-card .contact-card-icon.icon-purple svg {
  stroke: #6b21a8;
}
#accessibility-contact .contact-icon-card h4 {
  margin: 0;
  margin-bottom: 6px;
  line-height: normal;
}
#accessibility-contact .contact-icon-card p {
  margin: 0;
}

.after-Howtosteps {
  background: #ffffff;
  border: 1px solid #dbe6f5;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 0 7px 2px rgba(0, 0, 0, 0.0705882353);
  margin-top: 20px;
  padding: 20px;
}
.after-Howtosteps .afterhowtoGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-items: center;
}
@media (max-width: 991px) {
  .after-Howtosteps .afterhowtoGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .after-Howtosteps .afterhowtoGrid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.after-Howtosteps_item {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  padding: 10px;
  position: relative;
  align-items: start;
}
.after-Howtosteps_item .after-Howtosteps_icon {
  align-self: center;
}
.after-Howtosteps_item .after-Howtosteps_icon svg {
  width: 24px;
  height: auto;
}
.after-Howtosteps_item .after-Howtosteps_content {
  align-self: center;
}
.after-Howtosteps_item .after-Howtosteps_content h3 {
  margin: 0;
  font-size: 15px;
}
.after-Howtosteps p {
  text-align: center;
  margin: 0;
}

.mission-section {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
  min-height: 425px;
}

.about-page .owl-hero-grid {
  grid-template-columns: 45% 55%;
}

/* Background Image */
section.owl-hero.about-page {
  padding: 70px 0 62px;
  background: radial-gradient(circle at 76% 28%, #fafdff 0 18%, transparent 36%), linear-gradient(90deg, #ffffff 0%, #fbfdff 100%);
}

.mission-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(253, 254, 255) 0%, rgba(255, 255, 255, 0) 10%, rgb(253, 254, 255) 100%), url("https://owlsln.com/owlslnsys/wp-content/uploads/2026/05/abt-img-1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.mission-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background:rgba(255,255,255,0.25);
    backdrop-filter:blur(2px);*/
}

/* Blue Content Box */
.content-box {
  position: relative;
  z-index: 2;
  width: 420px;
  background: #0a2d75;
  color: #fff;
  margin-left: auto;
  margin-top: 40px;
  margin-right: 40px;
  padding: 20px;
  border-radius: 24px;
  box-shadow: 0px 0px 30px rgb(7, 55, 129);
}

.item {
  display: flex;
  gap: 18px;
  margin-bottom: 20px;
}

.abt-icon {
  min-width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}

.item h3 {
  font-size: 16px;
  margin-bottom: 3px;
  font-weight: 600;
  margin-top: 0px;
}

.item p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 0px;
}

.owl-bold-txt {
  font-weight: bold;
  margin-bottom: 20px !important;
}

.owl-kicker-abt {
  display: inline-block;
  color: #285ab8;
  border-radius: 99px;
  padding: 0;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.grid.cols-4.abt-card {
  background: #f8fbfe;
  border: 1px solid #ebf0f6;
  padding: 20px;
  border-radius: 20px;
}

.abt-card .card {
  background: transparent !important;
  border-right: 1px solid #ecf1fa !important;
  padding: 0px 15px;
  box-shadow: none;
  border-radius: 0px;
  border: none;
  text-align: center;
}

.abt-card .card:last-child {
  border: none !important;
}

.abt-card .icon {
  margin: 0px auto 10px;
  background: transparent;
  font-size: 34px;
}

.abt-card .card p {
  color: #2e3b55;
  font-size: 16px;
}

.our-team .owls-card {
  padding: 20px;
  text-align: center;
}
.our-team .owls-card > img {
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

cite small {
  font-weight: 600;
  font-size: 13px;
}

.linkedin-box {
  width: 40px;
  height: 40px;
  background: #0a66c2;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px auto;
}

.linkedin-box i {
  color: #fff;
  font-size: 22px;
}

.governance-section {
  background: #f9fcfd;
  border: 1px solid #e5e7ef;
  border-radius: 14px;
  padding: 20px 20px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  overflow: hidden;
}

/* Left Content */
.left-content {
  width: 320px;
  padding-right: 25px;
  border-right: 1px solid #e5e7ef;
}

.left-content h2 {
  font-size: 16px;
  line-height: 1.2;
  color: #111827;
  margin-bottom: 18px;
  font-weight: 700;
}

.left-content p {
  font-size: 15px;
  line-height: 1.8;
}

/* Right Timeline */
.timeline {
  flex: 1;
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 25px;
}

/* Dotted Line */
.timeline::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 52px;
  right: 52px;
  border-top: 2px dotted #6d8cff;
  z-index: 0;
}

/* Item */
.timeline-item {
  width: 155px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.icon-box {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #eef3ff;
  border: 2px solid #d8e2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto auto 16px;
}

.icon-box i {
  font-size: 28px;
  color: #2d5bff;
}

.timeline-item h4 {
  font-size: 16px;
  color: #111827;
  margin-bottom: 10px;
  font-weight: 700;
}

.timeline-item p {
  font-size: 14px;
  line-height: 1.7;
}

.stats-section {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.stat-card {
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  padding: 22px 16px;
  background: #fff;
  transition: 0.3s ease;
  line-height: normal;
}
.stat-card .card-top {
  gap: 10px;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.stat-card .stat-number {
  font-size: 25px;
  color: #0756d9;
  margin-bottom: 8px;
  font-weight: 600;
}
.stat-card .icon-box {
  margin: 0;
}
.stat-card svg {
  padding: 5px;
}
.stat-card svg path {
  stroke: #0756d9;
}
.stat-card .stat-label {
  color: #333;
  font-weight: 600;
}
.stat-card .stat-desc {
  margin: 0;
  margin-top: 8px;
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.icn-wrp .icon {
  color: #1d4eff;
  font-size: 30px;
  margin-bottom: 14px;
  border-radius: 50px;
  width: 50px;
  height: 50px;
}

.number {
  font-size: 26px;
  font-weight: 700;
  color: #1236b8;
  line-height: 1;
  margin-bottom: 10px;
}

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

.desc {
  font-size: 14px;
  line-height: 1.6;
}

.icn-wrp {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.awards-section {
  border: 1px solid #e7e7e7;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.awards-wrapper {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
}

.award-item {
  text-align: center;
  padding: 22px 18px;
  position: relative;
}

.award-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  width: 1px;
  height: 60%;
  background: #e5e5e5;
}

.award-logo {
  height: 54px;
  -o-object-fit: contain;
     object-fit: contain;
}

.award-title {
  font-size: 15px;
  font-weight: 700;
  color: #111;
  margin-bottom: 6px;
  line-height: 1.4;
}

.award-subtitle {
  font-size: 14px;
  color: #222;
  line-height: 1.5;
}

.chat-icon i.fa-solid.fa-users {
  font-size: 26px;
}

.owl-about-page span.chat-icon {
  border-radius: 50%;
}

.owl-about-page .cta:after {
  top: 0;
  bottom: 0;
  width: 240px;
  opacity: 0.9;
  z-index: -1;
  content: "";
  position: absolute;
  background-image: radial-gradient(rgba(255, 255, 255, 0.4) 1px, transparent 1px);
  background-size: 15px 15px;
  right: 0;
}

@media (max-width: 992px) {
  .awards-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
  .award-item:nth-child(3)::after {
    display: none;
  }
}
@media (max-width: 600px) {
  .awards-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .award-item:nth-child(even)::after {
    display: none;
  }
}
@media (max-width: 480px) {
  .awards-wrapper {
    grid-template-columns: 1fr;
  }
  .award-item::after {
    display: none;
  }
}
@media (max-width: 1200px) {
  .stats-section {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .stats-section {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .stats-section {
    grid-template-columns: 1fr;
  }
}
/* Responsive */
@media (max-width: 991px) {
  .about-page .owl-hero-grid {
    grid-template-columns: 1fr;
  }
  .governance-section {
    flex-direction: column;
  }
  .left-content {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e5e7ef;
    padding-bottom: 30px;
    text-align: center;
  }
  .timeline-item {
    width: 215px;
  }
  .owl-btn {
    text-align: center;
  }
  .timeline {
    flex-wrap: wrap;
    justify-content: center;
  }
  .timeline::before {
    display: none;
  }
}
/* Responsive */
@media (max-width: 768px) {
  .mission-section {
    min-height: auto;
  }
  .timeline-item {
    width: 100%;
  }
  .content-box {
    width: 90%;
    margin: 30px auto;
  }
}
.owl-indstry-page .owl-visuals img {
  width: 100%;
}

.owl-indstry-page .soft {
  background: #f7fbff;
  padding: 30px;
  border-radius: 20px;
}

.owl-indstry-page .enginer .card {
  background: transparent !important;
  border-right: 1px solid #ecf1fa !important;
  padding: 0px 15px;
  box-shadow: none;
  border-radius: 0px;
  border: none;
}

.owl-indstry-page .enginer .card:last-child {
  border-right: none !important;
}

.circle {
  border-radius: 50px;
}

.owl-hero .owl-kicker {
  display: inline-block;
  color: #285ab8;
  background: #eef5ff;
  border: 1px solid #dbe6f5;
  border-radius: 99px;
  padding: 6px 11px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.owl-kicker {
  display: inline-block;
  color: #285ab8;
  background: transparent !important;
  border: none !important;
  border-radius: 99px;
  padding: 6px 11px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.process-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
}

.process-item {
  flex: 1;
  text-align: center;
  position: relative;
}

/* dotted arrow line */
.process-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 38px;
  right: -35px;
  width: 70px;
  border-top: 2px dashed #b7b7b7;
}

.process-item:not(:last-child)::before {
  content: "➝";
  position: absolute;
  top: 29px;
  right: -43px;
  color: #8f8f8f;
  font-size: 14px;
}

.icon-circle {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle svg {
  width: 28px;
  height: 28px;
  stroke-width: 2;
}

.blue {
  background: #eef2ff;
  color: #3b82f6;
}

.green {
  background: #e9fbf5;
  color: #10b981;
}

.purple {
  background: #f3ecff;
  color: #8b5cf6;
}

.orange {
  background: #fff2e7;
  color: #f59e0b;
}

.rocket {
  background: #eef2ff;
  color: #2563eb;
}

.process-item h3 {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 14px;
}

.process-item p {
  font-size: 15px;
  line-height: 1.7;
  color: #4b5563;
  max-width: 200px;
  margin: auto;
}

.case-study-wrapper {
  max-width: 1200px;
  margin: auto;
  margin-top: 28px;
}

.case-study-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.case-card {
  background: #fff;
  border: 1px solid #e7eaf0;
  border-radius: 12px;
  padding: 22px;
  transition: 0.3s ease;
  min-height: 250px;
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.card-top {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}

.icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-box svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

/* Colors */
.green-bg {
  background: #eef9f1;
  color: #3cb371;
}

.blue-bg {
  background: #eef2ff;
  color: #4f46e5;
}

.orange-bg {
  background: #fff3e9;
  color: #f97316;
}

.tag {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 0.4px;
}

.green-text {
  color: #41b883;
}

.blue-text {
  color: #4f46e5;
}

.orange-text {
  color: #f97316;
}

.card-content h3 {
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 14px;
}

.card-content p {
  color: #475569;
  font-size: 18px;
  line-height: 1.7;
}

.divider {
  height: 1px;
  background: #e5e7eb;
  margin: 24px 0 18px;
}

.outcome {
  font-size: 17px;
  line-height: 1.7;
  color: #475569;
}

.outcome span {
  font-weight: 700;
}

.view-more {
  text-align: center;
  margin-top: 35px;
}

.view-more a {
  color: #1d4ed8;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.view-more a:hover {
  gap: 14px;
}

.card-top .icon-box {
  margin: 0;
  border: none;
}

.accessibility-section {
  background: #f6f5fb;
  border-radius: 18px;
  padding: 45px 50px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  max-width: 1400px;
  margin: auto;
}

.left-contents {
  max-width: 420px;
}

.tag {
  color: #4f46e5;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.left-contents h2 {
  font-size: 22px;
  line-height: 1.15;
  color: #111827;
  margin-bottom: 22px;
  font-weight: 700;
}

.left-contents p {
  margin-bottom: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 26px;
  border: 1.5px solid #4f46e5;
  border-radius: 10px;
  color: #4f46e5;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
  background: #fff;
  text-align: center;
}

.btn:hover {
  background: #4f46e5;
  color: #fff;
}

.features {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-box {
  padding-left: 28px;
  border-left: 1px solid #ddd;
}

.feature-box .icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: bold;
  margin: 0px auto 20px;
}

.purple {
  background: #eee8ff;
  color: #6d28d9;
}

.green {
  background: #dff7f2;
  color: #059669;
}

.pink {
  background: #ffe7ee;
  color: #e11d48;
}

.blue {
  background: #e7f0ff;
  color: #2563eb;
}

.feature-box h4 {
  font-size: 18px;
  color: #111827;
  margin-bottom: 12px;
  text-align: center;
}

.feature-box p {
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
}

.mar-non {
  margin-top: 0px !important;
}

.owl-indstry-page .card h3 {
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 12px;
}

.owl-indstry-page p {
  font-size: 16px;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .accessibility-section {
    flex-direction: column;
  }
  .features {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }
  .feature-box {
    border: none;
    padding-left: 0;
  }
}
@media (max-width: 650px) {
  .features {
    grid-template-columns: 1fr;
  }
  .left-content h2 {
    font-size: 32px;
  }
}
@media (max-width: 991px) {
  .case-study-grid {
    grid-template-columns: 1fr;
  }
  .card-content h3 {
    font-size: 24px;
  }
}
@media (max-width: 991px) {
  .process-wrapper {
    gap: 50px;
    grid-template-columns: repeat(2, 1fr);
    display: grid;
  }
  .process-item:not(:last-child)::after,
  .process-item:not(:last-child)::before {
    display: none;
  }
  .process-item p {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .process-wrapper {
    gap: 50px;
    grid-template-columns: repeat(1, 1fr);
    display: grid;
  }
}
.forms input,
.forms select,
.forms textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #cddbf0;
  border-radius: 8px;
  font: inherit;
}
.forms form.wpcf7-form.init {
  display: block;
}
.forms .cont-wrap {
  display: flex;
  gap: 16px;
  flex-wrap: nowrap;
}
.forms textarea {
  height: 100px;
}
.forms .cont-btn input {
  width: auto;
  text-align: left;
}

.contact-page .contact-grid {
  align-items: flex-start;
}
.contact-page .wpcf7-spinner {
  width: 0px;
  height: 0px;
  margin: 0px;
}

@media (max-width: 1024px) {
  .owl-hero-grid,
  .pillar-card,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .owl-hero-visual {
    min-height: 430px;
  }
  .pillar-card {
    gap: 20px;
  }
  .pillar-icon {
    width: 90px;
    height: 90px;
    font-size: 42px;
  }
  .pillar-visual {
    min-height: 110px;
  }
  .cta {
    display: block;
  }
  .cta .owl-actions {
    margin-top: 24px;
  }
}
@media (max-width: 640px) {
  .owl-hero {
    padding: 44px 0;
  }
  .owl-hero h1 {
    font-size: 38px;
  }
  .owl-btn {
    width: 100%;
    padding: 13px 16px;
  }
  .pillar-card {
    padding: 22px;
  }
  .pillar-points {
    grid-template-columns: 1fr;
  }
  .testimonial-grid p {
    min-height: auto;
  }
  .chart-card {
    right: 0;
    width: 260px;
  }
  .delivery {
    left: 0;
  }
  .check-card {
    left: 20px;
  }
}
form.wpcf7-form.init {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
form.wpcf7-form.init > * {
  flex: 0 0 calc(50% - 8px);
  margin: 0;
  line-height: normal;
}
form.wpcf7-form.init .wpcf7-form-control-wrap {
  display: block;
  margin-top: 8px;
}
form.wpcf7-form.init input:not([type=submit], [type=button], [type=checkbox], [type=radio]),
form.wpcf7-form.init select,
form.wpcf7-form.init textarea {
  width: 100%;
}
form.wpcf7-form.init p:has(.wpcf7-submit) {
  flex: 0 0 100%;
  text-align: center;
}
#wpcf7-f27476-o1 form.wpcf7-form.init > p:nth-of-type(7) {
  flex: 0 0 100%;
}
#wpcf7-f27476-o1 form.wpcf7-form.init > p:nth-of-type(8) {
  flex: 0 0 100%;
}
@media (max-width: 767px) {
  form.wpcf7-form.init > * {
    flex: 0 0 100% !important;
    margin: 0;
    line-height: normal;
  }
}

.page-template-page-owlsystems-product-engineering section:not(.owl-hero) .owl-hero-grid {
  grid-template-columns: 400px 1fr;
}
.page-template-page-owlsystems-product-engineering section:not(.owl-hero) .owl-hero-grid .owl-hero-img {
  width: 100%;
}

@media (min-width: 981px) {
  .page-template-page-owlsystems-learning-platforms .mini-list::before {
    content: "";
    height: 100%;
    width: 1px;
    background: #d6d6d6;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}

.page-template-page-owlsystems-learning-platforms .accessibility-first .grid {
  grid-template-columns: 60px 1fr;
  gap: 20px;
}
@media (max-width: 980px) {
  .page-template-page-owlsystems-learning-platforms .accessibility-first .grid {
    grid-template-columns: 1fr;
  }
}

.page-template-page-owlsystems-managed-web-operations .card .grid {
  grid-template-columns: 60px 1fr;
}

.pod-section {
  max-width: 1280px;
  margin: auto;
  display: flex;
  gap: 35px;
  align-items: flex-start;
}

/* LEFT CONTENT */
.pod-left {
  width: 34%;
}

.pod-left h2 {
  font-size: 26px;
  font-weight: 700;
  color: #0d1b3e;
  margin-bottom: 18px;
  line-height: 1.2;
}

.pod-left p {
  color: #374151;
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 28px;
}

.feature-list {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  color: #14213d;
  font-size: 16px;
  line-height: 1.5;
}

.feature-list i {
  color: #2563ff;
  font-size: 16px;
  margin-top: 4px;
}

/* RIGHT CARD */
.pod-right {
  width: 66%;
}

.pod-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e9edf5;
  padding: 28px 30px 22px;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.pod-title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 42px;
}

/* TOP CONNECTOR LINE */
.connector-line {
  position: absolute;
  top: 72px;
  left: 12%;
  width: 76%;
  border-top: 2px dashed #cfd8f6;
  z-index: 0;
}

.pod-grid {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  margin-bottom: 34px;
}

.pod-item {
  width: 18%;
  text-align: center;
  position: relative;
}

.icon-circle {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: #f5f7ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #2563ff;
  font-size: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.pod-item h4 {
  font-size: 14px;
  font-weight: 600;
  color: #101828;
  line-height: 1.5;
}

/* BOTTOM BOX */
.practice-box {
  background: #f5f7fd;
  border-radius: 10px;
  padding: 18px 25px;
  text-align: center;
}

.practice-box h3 {
  font-size: 18px;
  color: #1d4ed8;
  margin-bottom: 8px;
  font-weight: 700;
}

.practice-box p {
  margin: 0;
  color: #374151;
  font-size: 15px;
  line-height: 1.7;
}

.connector-wrapper {
  max-width: 90%;
  margin: 0px auto;
}

.connector-svg {
  width: 100%;
  height: 70px;
  display: block;
}

.pods-crd .card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.pods-crd .icon {
  width: 55px;
  height: 55px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .pod-section {
    flex-direction: column;
  }
  .pod-left,
  .pod-right {
    width: 100%;
  }
  .pod-grid {
    flex-wrap: wrap;
    gap: 25px;
  }
  .pod-item {
    width: 45%;
  }
  .connector-line {
    display: none;
  }
  .pod-item::before,
  .pod-item::after {
    display: none;
  }
}
@media (max-width: 600px) {
  .pod-left h2 {
    font-size: 30px;
  }
  .pod-item {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */