:root {
  --color-bg-dark: #0f172a;
  --color-primary: #178ece;
  --color-accent-blue: #4fa5e4;
  --color-text-white: #ffffff;
  --color-text-gray: #9ca3af;
  --color-text-dark: #222222;
  --color-card-white: #ffffff;
  --color-border: rgba(57, 57, 83, 0.3);
  --font-main: 'Inter', sans-serif;
}

* {
  box-sizing: border-box;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* img {
  max-width: 100%;
  height: auto;
  display: block;
} */

h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
}
#fulltitle{
    background: transparent !important;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 25px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background-color: var(--color-primary);
  color: white;
  border: none;
  /* box-shadow:
    0px 4px 6px -4px rgba(88, 28, 135, 0.5),
    0px 10px 15px -3px rgba(88, 28, 135, 0.5); */
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  font-weight: 600;
    font-size: 18px;
    padding: 5px 20px;
}

.section-spacer {
  padding: 80px 0;
}

.path_hero-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
}

.path_hero-bg {
  position: absolute;
  top: -63px;
  left: 0;
  width: 100%;
  /* height: 100%; 
  z-index: -1;
  overflow: hidden;*/
}

.path_hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.path_hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.path_hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px !important;
  margin: 0 auto;
  padding-top: 100px !important;
}
.path_hero-content h4{
    font-size: 38px;
    color: #fff;
    font-weight: 400;
}
.text_highlight{
    color: #178ECE;
}

.path_hero-title {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--color-text-white);
}

.path_hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: #d1d5db;
  max-width: 940px;
  margin-bottom: 30px;
}

.path_hero-cta {
  margin-top: 24px;
}
.path_hero-content .btn-primary{
    margin: 0px auto;
    width: fit-content;
}

.icon-circle {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .path_hero-title {
    font-size: 32px;
  }
  .path_hero-subtitle {
    font-size: 16px;
  }
}

.section-header {
  margin-bottom: 60px;
  max-width: 800px;
}
.section-header h2 {
  font-size: 36px;
  margin-bottom: 16px;
  color: var(--color-text-white);
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 500;
  text-align: left;
}
.section-header p {
  font-size: 18px;
  color: var(--color-text-gray);
  line-height: 1.5;
  text-align: left;
}

.pathways-layout {
  display: flex;
  gap: 40px;
}
.pathways-section{
    padding-top: 0px;
    position: relative;
    background: #0e0e2c !important;
}
.pathways-section::before{
    content: "";
    position: absolute;
    background: url("/wp-content/uploads/2025/12/top_5blur.png");
    background-position: top left;
    width: 100%;
    height: 96%;
    background-repeat: no-repeat;
    top: 100px;
    left: 0;
}
.pathways-section .section-header{
    width: 62%;
    margin: 0;
    margin-bottom: 50px;
}
.path_right_card{
    display: flex;
    flex-direction: column;
    width: 70%;
    margin-left: auto;
    gap: 30px;
}

.pathways-nav.sticky {
  position: sticky;
  top: 100px; /* adjust based on header height */
}

.pathways-card {
  scroll-margin-top: 130px; /* IMPORTANT for correct scroll offset */
}

.pathways-nav.stop {
  position: absolute;
  top: auto;
  bottom: 0;
}

.pathways-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 300px;
  flex-shrink: 0;
}
.pathways-nav span{
    font-size: 15px;
    line-height: normal;
}

.nav-item {
  padding: 16px;
  border: 1px solid #14395c;
  border-radius: 8px;
  color: var(--color-text-gray);
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-item.active {
  background-color: var(--color-accent-blue);
  color: #fff;
  border-color: var(--color-accent-blue);
  font-weight: 600;
}

.pathways-card {
  flex-grow: 1;
  background-color: var(--color-card-white);
  border-radius: 16px;
  padding: 40px;
  color: var(--color-text-dark);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
}

.card-title-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.card-title-text h3 {
    font-size: 22px;
    font-weight: 600;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #fff;
    background: #4FA5E4;
    padding: 0px 12px;
    border-radius: 20px;
    width: fit-content;
}

.tech-cluster {
  background-color: #F2FAFF;
  border-radius: 0px;
  padding: 15px;
  margin-bottom: 20px;
  background-image: repeating-linear-gradient(90deg, #4fa5e4, #4fa5e4 6px, transparent 6px, transparent 16px), repeating-linear-gradient(180deg, #4fa5e4, #4fa5e4 6px, transparent 6px, transparent 16px), repeating-linear-gradient(90deg, #4fa5e4, #4fa5e4 6px, transparent 6px, transparent 16px), repeating-linear-gradient(180deg, #4fa5e4, #4fa5e4 6px, transparent 6px, transparent 16px);
  background-position: left top, right top, left bottom, left top;
  background-repeat: repeat-x, repeat-y, repeat-x, repeat-y;
  background-size: 100% 1px, 1px 100%, 100% 1px, 1px 100%;
}

.tech-cluster h4 {
  font-size: 18px;
  text-transform: uppercase;
  color: #222222;
  margin-bottom: 8px;
  font-weight: 600;
}

.tech-cluster p {
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}

.applications-section h4 {
    font-size: 20px;
    font-family: 'Montserrat';
    font-weight: 600;
}

.apps-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 24px;
  margin-top: 10px;
}

.app-item {
  padding: 10px 0px;
}
.blueicon-circle{
    background-color: var(--color-primary);
    width: 50px;
    height: 35px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.real_data li{
      font-size: 16px;
    color: #222;
    font-weight: 500;
}
.highlight-box p{
  font-size: 16px;
  line-height: normal;
}
.real_data{
      margin: 0px 20px;
}
.add_ress ul li{
      font-size: 16px;
    color: #222;
    font-weight: 500;
        line-height: 26px;
}
.add_ress ul{    
    margin: 0;
    padding-left: 20px;
}
.add_ress ul{
  margin-top: 5px;
}

.app-header {
  display: flex;
  align-items: center;
  gap: 8px;
      flex-direction: column;
    align-items: flex-start;
}
.foundation p{
  font-size: 16px;
    color: #222 !important;
    font-weight: 500 !important;
    margin-top: 5px;
}

.app-header h5 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.app-item p {
  font-size: 14px;
  color: #4b5563;
  line-height: normal;
}

.card-footer {
  margin-top: 0px;
  padding-top: 20px;
}

.footer-tags {
  display: flex;
  gap: 16px;
}

.tag {
  display: flex !important;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  font-size: 14px;
}

.tag img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

@media (max-width: 1024px) {
  .pathways-layout {
    flex-direction: column;
  }
  .pathways-nav {
    width: 100%;
    flex-direction: row;
    overflow-x: auto;
  }
  .nav-item {
    white-space: nowrap;
  }
}

@media (max-width: 768px) {
  .apps-grid {
    grid-template-columns: 1fr;
  }
  .card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

.enterprise-section {
    padding: 80px 0;
    background: url("/wp-content/themes/unicon/assets/image/white_grid.png") #fff;
    background-position: 0px -170px;
    background-size: contain;
    background-repeat: no-repeat;
}

.enterprise-card {
  background-color: var(--color-bg-dark);
  border-radius: 24px;
  padding: 60px;
  color: var(--color-text-white);
  margin-bottom: 30px;
}
.enterprise-card .card-header{
    border-bottom: 1px solid #445162;
}
.ent-grid-split h4{
    color: #fff;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600;
    margin: 0px !important;
    padding-left: 10px;
}

.enterprise-card .card-title-text h3{
    font-size: 30px;
    color: #fff;
    font-family: 'Montserrat', sans-serif !important;
}

.ent-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-direction: column;
    text-align: center;
}

.ent-title-block h2 {
  font-size: 40px;
  background: linear-gradient(90deg, #0090dd 0%, #00659b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif !important;
}

.ent-title-block p {
    color: #4E4E4E;
    max-width: 700px;
    margin: 0px auto;
    line-height: 30px;
    font-size: 20px;
    margin-bottom: 20px;
}

.ent-grid-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  margin-bottom: 30px;
}

.ent-col {
  /* background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px; */
  padding: 30px 50px 20px 0px;
}

.icon-box {
  /* width: 40px;
  height: 40px; */
  border-radius: 12px;
  display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 20px;
}

/* .icon-box.red {
  background: rgba(220, 38, 38, 0.2);
}
.icon-box.green {
  background: rgba(22, 163, 74, 0.2);
} */
/* .icon-box.blue {
  background: rgba(23, 142, 206, 0.2);
} */

.ent-col h4 {
  font-size: 20px;
  margin-bottom: 12px;
}

.ent-col p {
    color: #d1d5db;
    line-height: 28px;
    font-size: 16px;
    letter-spacing: normal;
}

.ent-components {
  margin-bottom: 30px;
}

.ent-components h3 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 24px;
color: #fff;
font-weight: 600;
}

.components-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.comp-item {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(23, 142, 206, 0.3);
  border-radius: 12px;
  padding: 24px;
}

.comp-item h5 {
  font-size: 18px;
  margin-bottom: 12px;
      color: #fff;
    font-weight: 600;
}

.comp-item p {
  font-size: 14px;
  color: #9ca3af;
  line-height: 1.5;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #9ca3af;
  margin-bottom: 8px;
}

.ent-results h3 {
  text-align: center;
  margin-bottom: 40px;
      color: #fff;
    font-weight: 600;
    font-size: 24px;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
.rg_second{
    grid-template-columns: repeat(4, 1fr);
}

.result-value {
  font-size: 40px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
  line-height: normal;
}

.result-label {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: normal;
}

.result-desc {
  font-size: 14px;
  color: #9ca3af;
  line-height: normal;
    width: 70%;
    margin: 0px auto;
}

@media (max-width: 1024px) {
  .components-grid,
  .results-grid {
    grid-template-columns: 1fr;
  }
  .ent-grid-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .enterprise-card {
    padding: 30px;
  }
  .ent-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}


/* build pathway css */
.build_pathway{
    background: #111827;
    padding: 70px 0px 70px 0px !important;
}
.build_pathwayheader{
    width: 1240px;
    margin: 0px auto;
    text-align: center;
    padding-bottom: 20px;
}
.build_pathwayheader h2{
    color: #fff;
        font-size: 36px !important;
    font-weight: 500 !important;
    font-family: 'Montserrat', sans-serif !important;
}
.build_pathwayheader .text-highlight {
    color: #4fa5e4;
}
.text-highlight {
    color: #4fa5e4;
}
.build_pathwayheader p{
    width: 75%;
    margin: 0px auto;
    font-size: 18px;
    color: #D1D5DB;
    padding: 15px 0px;
    margin-bottom: 50px;
    line-height: 30px;
}
.pathway_graphic{
    width: 1240px;
    margin: 0px auto;
    overflow: hidden;
}
.pathway_graphic img{
    max-width: 100%;
}


/* CSS from section:capabilities */
#capabilities {
  padding-top: 100px;
  padding-bottom: 120px;
  background: url("/wp-content/themes/unicon/assets/css/blue_grid.png") no-repeat;
    background-size: 70%;
    background-position: center 30px;
}
#capabilities .btn-primary{
    width: fit-content;
    margin:0;
    border-radius: 40px;
    border: 1px solid var(--color-primary);
    background: var(--color-primary);
}
.capabilities-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1438px;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}
.capabilities-bg .bg-blur-1 {
  position: absolute;
  top: 100px;
  left: 250px;
  filter: blur(200px);
}
.capabilities-bg .bg-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0.4;
}
.section-header {
  text-align: center;
  max-width: fit-content;
  margin: 0 auto 0;
}
.section-header p {
  margin-top: 0;
  font-size: 20px;
}
.capabilities-grid {
  display: flex !important;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px !important;
  margin-top: 50px;
}
#capabilities h2{
    font-size: 36px;
    font-weight: 500;
    color: #fff;
    text-align: center;
}
#capabilities .section-header{
    margin: 0x;
}
.capability-card {
    padding: 20px;
    border-radius: 5px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-basis: calc(33.333% - 27px);
    min-width: 290px;
    border: 1px solid #20454F;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.card-icon-title {
display: flex;
    align-items: flex-start;
    gap: 15px;
    justify-content: flex-start;
    flex-direction: column;
}
.card-icon-title img {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
}
.number-badge {
    background: var(--color-primary);
    color: white;
    padding: 4px 15px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 14px;
    line-height: normal;
}
.card-icon-title h3 {
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 0;
    font-size: 20px;
    color: #fff;
}
.capability-card p {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.5;
color: #E2E9F2;
text-align: left;
    min-height: 110px;
}
@media (max-width: 1200px) {
  .capabilities-grid {
    gap: 20px;
  }
  .capability-card {
    width: calc(50% - 10px);
  }
}
@media (max-width: 768px) {
  .capability-card {
    width: 100%;
  }
}



.styles_divider__elk7j {
    width: 100%;
    height: 1px;
    position: relative;
}
.styles_divider__elk7j:before {
    bottom: 0;
    z-index: 0;
    content: "";
    width: 500px;
    height: 40px;
    position: absolute;
    left: calc(50% - 250px);
    border-bottom: 1px solid;
    border-image-source: linear-gradient(90deg, transparent, rgb(18 122 177) 50%, transparent);
    border-image-slice: 1;
    background: radial-gradient(50% 100% at 50% 100%, rgba(157, 137, 255, .1) 0, rgba(1, 3, 20, 0) 100%);
}
.styles_divider__elk7j:after {
    top: 0;
    z-index: 0;
    content: "";
    width: 1000px;
    height: 80px;
    position: absolute;
    left: calc(50% - 500px);
    border-top: 1px solid;
    border-image-source: linear-gradient(90deg, transparent, rgb(18 122 177) 50%, transparent);
    border-image-slice: 1;
    background: radial-gradient(43.9% 100% at 50% 0, rgba(157, 137, 255, .15) 0, rgba(1, 3, 20, 0) 100%);
}
.styles_background__Lhd1K {
    padding: 3rem 0;
    position: relative;
}


.clustered_tech{
  padding: 80px 0px;
  position: relative;
}
.clustered_head{
  margin-bottom: 40px;
}
.clustered_head h2{
  font-size: 36px;
  color: #fff;
  font-weight: 500;
}
.clustered_head p{
  font-size: 20px;
  color: #9CA3AF;
  font-weight: 400;
}


.arch-section {
  padding: 80px 0;
  background: url("/wp-content/themes/unicon/assets/image/reusable_bg.svg");
  background-size: contain;
  background-position: center 100px;
  background-repeat: no-repeat;
}

.arch-layout {
  display: flex;
  gap: 60px;
  margin-top: 60px;
}

.arch-comparison {
  flex: 0 0 460px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.comparison-item {
  display: flex;
  gap: 20px;
}

.icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-wrap.red {
  background: rgba(220, 38, 38, 0.2);
}
.icon-wrap.green {
  background: rgba(22, 163, 74, 0.2);
}

.comparison-text h2 {
    font-size: 36px;
    margin-bottom: 5px;
    color: var(--text-gray);
    font-weight: 500;
    color: #fff;
}
.comparison-text p {
  font-size: 16px;
  color: #fff;
  line-height: 1.4;
  margin-top: 10px;
}

.comparison-note {
    /* margin-top: 20px;
    padding-top: 20px; */
    margin-left: 60px;
    margin-bottom: 20px;
}
.comparison-note h4 {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
}
.comparison-note p {
  font-size: 16px;
  color: var(--text-gray);
      font-weight: 500;
          line-height: 25px;
    margin: 15px 0px;
}

.arch-stack {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  /* top: 120px; */
  /* position: relative;
  height: 520px; */
}

.timeline-line {
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 20px;
  width: 2px;
  background: rgba(23, 142, 206, 0.3);
  z-index: 0;
}

.stack-layer {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  gap: 30px;
/* 
    opacity: 0.4;
  transform: translateY(0px) scale(1);
  transition:
    opacity 0.4s ease,
    transform 0.45s cubic-bezier(.22,.61,.36,1);

  z-index: 1;
  pointer-events: none; */

}

/* Active card */
/* .stack-layer.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  z-index: 5;
  pointer-events: auto;
} */

/* Timeline highlight */
.stack-layer.active .layer-number {
  background: #1ea7fd;
  color: #fff;
  margin-top: 10px;
}
/* .stack-layer.passed {
  opacity: 0.7;
  transform: translateY(0) scale(1);
  z-index: 2;
} */

#architecture {
  /* position: sticky; */
  top: 0;
  min-height: 600px;
}
.layer-number {
  width: 32px;
  height: 32px;
  background: #178ECE;
  border: 2px solid var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  color: #fff;
}

.layer-card {
  flex: 1;
  background: linear-gradient(90deg, #dbeafe 0%, #ffffff 100%);
  border-radius: 10px;
  padding: 20px 30px;
  color: #222;
}
.layer-card ul{
  margin: 0;
  padding: 0;
}
.layer-card ul li{
  list-style: none;
  font-size: 16px;
  color: #222;
  line-height: normal;
    margin-bottom: 15px;
}
.layer-card ul li span{
    color: #222;
    font-weight: 700;
}

.layer-card ul li a{
  font-weight: 600;
}
.layer-card ul li a:hover{
  color: #178ece;
}
.layer-card h4 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #111;
    font-weight: 600;
}

.layer-meta {
    font-size: 16px;
    color: #222222;
    margin-bottom: 15px;
    line-height: 24px;
    font-weight: 500;
}

.layer-tag {
  display: inline-block;
  background: var(--primary-blue);
  color: white;
  padding: 5px 12px;
  border-radius: 38px;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
}

@media (max-width: 900px) {
  .arch-layout {
    flex-direction: column;
  }
  .arch-comparison {
    flex: auto;
  }
}