:root {
  --bg-dark: #0f172a;
  --bg-card-dark: #111827;
  --text-white: #ffffff;
  --text-gray: #bbc2ce;
  --text-dark: #222222;
  --text-muted: #4e4e4e;
  --primary-blue: #178ece;
  --border-light: rgba(255, 255, 255, 0.2);
  --font-main: 'Montserrat', sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-white);
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
}
h2.section-title{
    font-size: 36px !important;
    font-weight: 600;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-gray);
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
  line-height: 1.5;
}

.grid {
  display: grid;
  gap: 20px;
}

/* Utility for flex centering */
.flex-center {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }
  .section-subtitle {
    font-size: 16px;
  }
}

.service_support-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
#service_support{
    position: relative;
}
#service_support::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: url("/wp-content/uploads/2025/07/banner_shade.png");
    background-repeat: no-repeat;
    background-size: contain;
    height: 100%;
}
.text-highlight{
        color: #4fa5e4;
}

.blur-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  width: 100%;
  max-width: 1000px;
  opacity: 0.7;
}

.service_support-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px;
  margin-top: 40px;
  border-radius: 20px;
  background: #fff;
}

.card.white {
  border-radius: 0;
  padding: 40px;
  color: var(--text-dark);
}

.ss_card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.ss_card-header h3 {
  font-size: 20px;
  font-weight: 700;
}

.icon-box {
  width: 54px;
  height: 34px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box.blue {
  background: var(--primary-blue);
}

.card-text {
  color: var(--text-muted);
  margin-bottom: 30px;
  line-height: 1.6;
  font-size: 16px;
}

.industry-list,
.stats-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.industry-item {
  display: flex;
  gap: 15px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}
.dot.blue {
  background: #178ece;
}
.dot.orange {
  background: #f97316;
}
.dot.green {
  background: #22c55e;
}

.industry-content strong,
.stat-text strong {
  display: block;
  margin-bottom: 5px;
  color: #222;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 16px;
    line-height: normal;
}

.industry-content p,
.stat-text p {
  font-size: 16px;
  color: var(--text-muted);
  margin: 0;
  line-height: normal;
}

.ss_stat-item {
  display: flex;
  gap: 15px;
}

.stat-badge {
  background: var(--primary-blue);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
  height: fit-content;
  width: fit-content;
  line-height: normal;
}

.integration-note {
  padding-top: 20px;
}

.integration-note strong {
  display: block;
  margin-bottom: 5px;
    color: #178ECE;
    font-size: 20px;
}

.integration-note p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: normal;
}

@media (max-width: 900px) {
  .service_support-cards {
    grid-template-columns: 1fr;
  }
}

.stack-section {
  padding: 80px 0;
  background: url("/wp-content/themes/unicon/assets/css/blue_grid.png") no-repeat;
  background-size: 70%;
  background-position: center;
}

.stack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stack-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 30px;
  transition: transform 0.3s ease;
}

.stack-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-blue);
}

.stack-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.number-badge {
  background: var(--primary-blue);
  color: white;
  padding: 4px 15px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
  line-height: normal;
}

.stack-header h3 {
    font-size: 24px;
    font-weight: 300;
    color: #fff;
}

.stack-card p {
  color: var(--text-gray);
  font-size: 16px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .stack-grid {
    grid-template-columns: 1fr;
  }
}

.arch-section {
  padding: 80px 0;
  background: url("/wp-content/themes/unicon/assets/image/reusable_bg.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.arch-layout {
  display: flex;
  gap: 60px;
  margin-top: 60px;
}

.arch-comparison {
  flex: 0 0 430px;
  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 h4 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #fff;
    font-weight: 500;
}
.comparison-text p {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.4;
}

.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: -22%;
  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;
}
/* .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 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;
  }
}

.apps-section {
  padding: 40px 0;
  /* background: url("/wp-content/themes/unicon/assets/css/blue_grid.png") no-repeat;
  background-size: 80%;
  background-position: top center; */
}
/* #applications .service-slider{
  margin: 0px auto;
} */
.apps-section h2.section-title{
  text-align: center;
      margin-bottom: 60px;
}
.case-study-item{
  width: 350px !important;
}
.short-notes{
  min-height: inherit !important;
}

.main-app-card {
  background: linear-gradient(90deg, #dbeafe 0%, #ffffff 100%);
  border-radius: 10px;
  padding: 40px;
  color: #222;
  margin-bottom: 20px;
}

.app-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  border-bottom: 1px solid #eee;
}
.app-header h3{
    font-weight: 600;
    font-size: 24px;
}

.app-icon-box {
  width: 40px;
}

.app-content-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
}

.detail-group {
  margin-bottom: 20px;
}
.detail-group h4 {
    font-size: 20px;
    color: #222;
    margin-bottom: 5px;
    font-weight: 600;
}
.detail-group p {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
}
.detail-group p::before{
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    background: url("/wp-content/themes/unicon/assets/image/blue_c_arrow.svg") no-repeat;
    background-size: auto;
    background-position: left top;
    width: 20px;
    height: 20px;
}

.impact-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 15px;
}

.metric-val {
    font-size: 30px;
    font-weight: 700;
    color: #178ECE;
    line-height: normal;
}
.metric{
    font-size: 16px;
    line-height: normal;
}
.app-impact h4{
    font-size: 20px;
    font-weight: 600;
}

.tech-stack {
  margin-top: 30px;
  border-top: 1px solid #eee;
}
.tech-stack h4 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}
.tech-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.badge {
    display: inline-block;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    line-height: normal;
    border: 1px solid #178ECE;
    font-weight: 600;
    background: #178ECE !important;
}

.additional-apps {
  margin-bottom: 80px;
}
.additional-apps h3 {
    font-size: 36px;
    text-align: left;
    margin-bottom: 10px;
    font-weight: 600;
    color: #fff;
}
.sub-text {
    text-align: left;
    color: var(--text-gray);
    margin-bottom: 60px;
    font-size: 18px;
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 20px;
}

.mini-app-card {
  /* background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light); */
  padding: 20px;
  border-radius: 10px;
  text-align: left;
}
.mini-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
/* .mini-icon img {
  width: 24px;
} */
.mini-app-card p {
  font-size: 16px;
  line-height: 1.4;
  color: var(--text-gray);
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  align-items: center;
  justify-items: center;
  margin-top: 40px;
}
.logos-grid img {
  max-height: 40px;
  opacity: 0.8;
  filter: brightness(0) invert(1); /* Make logos white for dark theme */
}

@media (max-width: 900px) {
  .app-content-grid {
    grid-template-columns: 1fr;
  }
  .apps-grid {
    grid-template-columns: 1fr 1fr;
  }
  .logos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .apps-grid {
    grid-template-columns: 1fr;
  }
  .logos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pathway-section {
  padding: 80px 0;
  background-color: var(--bg-dark);
}

.pathway-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  max-width: 1000px;
  margin: 0px auto;
}

.path-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0) 100%  );
  /* border: 1px solid var(--border-light); */
  border-radius: 0;
  padding: 30px 30px;
  display: flex;
  gap: 10px;
  flex-direction: column;
}
.pathway-grid .path-card:first-child {
      border-right: 1px solid #2c364b;
}
.pathway-grid .path-card:nth-child(3) {
      border-right: 1px solid #2c364b;
}
.path-icon {
  width: 60px;
  height: 40px;
  background: var(--primary-blue);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.path-icon img {
  width: 20px;
}

.path-card h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 600;
}

.path-card p {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .pathway-grid {
    grid-template-columns: 1fr;
  }
}

.ss_footer-section {
    padding: 70px 0px 70px 0px;
    background: url("/wp-content/themes/unicon/assets/image/logo_grid.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-top: 1px solid #202c47;
}

.ss_footer-content {
  display: grid;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  grid-template-columns: 1.2fr 1fr;
}
.ss_footer-content p{
    font-size: 18px;
    padding-top: 15px;
    color: #fff;
    line-height: normal;
}

.ss_footer-text h2 {
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 600;
    color: #fff;
    line-height: 50px;
}

.ss_footer-text p {
  color: var(--text-gray);
  font-size: 16px;
  line-height: normal;
}

.ss_footer-actions {
  display: flex;
  gap: 20px;
}
.ss_footer-actions .btn{
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 37px;
    text-transform: uppercase;
        padding: 12px 25px;
            white-space: nowrap;
}

@media (max-width: 768px) {
  .ss_footer-content {
    flex-direction: column;
    text-align: center;
  }
  .ss_footer-actions {
    flex-direction: column;
    width: 100%;
  }
  .btn {
    width: 100%;
  }
}

.aditionalservices{
  background: url("/wp-content/themes/unicon/assets/image/additional_bg.svg") no-repeat;
    width: 100%;
    padding: 80px 0px 0px 0px;
    position: relative;
    background-size: cover;
    display: block;
}
.additional_info .btn{
  display: flex;
  align-items: center;
  border-radius: 50px;
  gap: 10px;
  padding: 15px 25px;
}

.platform-integration h3{
  font-size: 36px;
    text-align: center;
    font-weight: 600;
    color: #fff;
}
.platform-integration p{
      text-align: center;
}

.platform-integration{
    background: url("/wp-content/themes/unicon/assets/image/logo_grid.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}




.logo-slider-wrapper {
  padding: 60px 0;
}

.logo-slider .logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  /* border: 1px solid #eee;
  background: #fff; */
}

.logo-slider .logo-item img {
  max-width: 140px;
  max-height: 60px;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.logo-slider .logo-item img:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* Remove dots spacing */
.owl-theme .owl-dots {
  margin-top: 25px;
}

.owl-carousel .owl-item img{
  width: auto !important;
}


.clients-section {
  padding: 80px 0;
}

/* ONE SLIDE GRID */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  /* border-top: 1px solid #e6eef6;
  border-left: 1px solid #e6eef6; */
}
.logo-grid:before{
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background: #fff;
    left: 0;
    top: 50%;
    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%);
}

/* EACH LOGO CELL */
.logo-box {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  /* border-right: 1px solid #e6eef6;
  border-bottom: 1px solid #e6eef6; */
}
.logo-box:after {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    border-right: 1px solid #2c3c62;
    right: 0;
}

.logo-box:nth-child(4):after{
  border: none;
}
.logo-box:nth-child(8):after{
  border: none;
}

.logo-box img {
  /* max-width: 140px;
  max-height: 60px;
  filter: grayscale(100%);
  opacity: 0.8; */
  transition: 0.3s ease;
}

/* .logo-box img:hover {
  filter: grayscale(0);
  opacity: 1;
} */

/* MOBILE */
@media (max-width: 768px) {
  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}



.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 !important;
    position: relative;
}

.schedule_week{
  font-weight: 600;
  font-size: 16px;
  color: #178ece;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px 24px;
    border-radius: 9999px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: #178ece;
    color: #ffffff;
}

.view_all_btn{
  display: flex;
  justify-content: center;
}
.view_all_btn .btn{
  padding: 10px 25px;
}