:root {
  --primary-blue: #178ece;
  --dark-bg: #0f172a;
  --text-white: #ffffff;
  --text-gray: #9ca3af;
  --text-dark: #222222;
  --card-border: rgba(255, 255, 255, 0.2);
  --font-main: 'Inter', sans-serif;
}

* {
  box-sizing: border-box;
}

/* body {
  margin: 0;
  padding: 0;
  font-family: var(--font-main);
  background-color: var(--dark-bg);
  color: var(--text-white);
  overflow-x: hidden;
} */

.text-highlight{
    color: #4fa5e4;
}
img,
svg {
  display: block;
  max-width: 100%;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

.section-padding {
  padding: 80px 24px;
}

/* Utility for gradients and effects */
.glass-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.46) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  border: 1px solid var(--card-border);
  box-shadow: inset 0px 4px 17.6px 0px rgba(255, 255, 255, 0.06);
}

.btn {
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn:hover {
  opacity: 0.9;
}

.dfs_hero-section {
  position: relative;
  padding-top: 40px;
  padding-bottom: 80px;
  overflow: hidden;
background: url("/wp-content/themes/unicon/assets/image/dfs_bannerbg.svg") no-repeat;
background-position: top center;
background-size: cover;
}

.dfs_hero-glow {
  position: absolute;
  top: 130px;
  left: 50%;
  transform: translateX(-50%);
  width: 475px;
  height: 340px;
  z-index: 0;
  pointer-events: none;
}

.glow-img {
  filter: blur(150px);
  width: 100%;
}

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

.logo-img {
  opacity: 0.7;
  filter: blur(0.5px); /* Slight blur from design */
}

.dfs_hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 auto;
}

.tag-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 6px 16px;
  border-radius: 9999px;
  margin: 0px auto;
}

.tag-text {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
}

.dfs_hero-title {
  font-size: 50px;
  line-height: 1.1;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 20px;
  color: #ffffff;
  /* background: linear-gradient(
    180deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0.7) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
}

.dfs_hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-gray);
  margin-bottom: 30px;
  max-width: 850px;
}

.dfs_hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.dfs_stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 24px;
  background-color: rgba(255, 255, 255, 0.1);
}

.dfs_hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  background-color: var(--primary-blue);
  border: none;
  border-radius: 40px;
  padding: 10px 10px 10px 25px;
  color: white;
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
  box-shadow:
    0px 4px 6px -4px rgba(88, 28, 135, 0.5),
    0px 10px 15px -3px rgba(88, 28, 135, 0.5);
        height: 45px;
}

.btn-icon-circle {
  width: 30px;
  height: 30px;
}

.btn-secondary {
  background-color: #1f2937;
  border: 1px solid #374151;
  border-radius: 34px;
  padding: 10px 32px !important;
  color: white;
  font-weight: 600;
}

.dfs_hero-bg-decoration {
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: center;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .dfs_hero-title {
    font-size: 40px;
  }
  .dfs_hero-stats {
    flex-direction: column;
    gap: 16px;
  }
  .stat-divider {
    display: none;
  }
}

.readiness-section {
  position: relative;
}
.data_readiness{
    display: flex;
    align-items: center;
    gap: 50px;
    justify-content: center;
    padding-top: 40px;
}

.section-header {
    text-align: left;
    max-width: 430px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #fff;
}

.section-header p {
  color: var(--text-gray);
  font-size: 16px;
  line-height: 1.5;
  padding-right: 30px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    max-width: 670px;
}
.cards-grid .usp-card:first-child {
    border-radius: 12px 0px 0px 0px;
} 
.cards-grid .usp-card:nth-child(2) {
    border-radius: 0px 12px 0px 0px;
} 
.cards-grid .usp-card:nth-child(3) {
    border-radius: 0px 0px 0px 12px;
} 
.cards-grid .usp-card:nth-child(4) {
    border-radius: 0px 0px 12px 0px;
} 
.usp-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  border: 1px solid rgba(255,255,255, .1);
  padding: 30px;
  /* border-radius: 12px; Approximated from visual style */
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.dfs_card-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.icon-circle {
  background-color: var(--primary-blue);
  width: 50px;
  height: 35px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dfs_card-header h3 {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.2;
    color: #fff;
}

.card-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
}

.barriers-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 70px;
}
.barriers-header h2 {
font-size: 36px;
    margin-bottom: 16px;
    font-weight: 600;
    color: #fff;
}
.sub-header {
    margin-bottom: 5px;
    font-weight: 500;
}
.sub-header p{
    font-size: 20px;
    color: #fff;
    font-weight: 500;
    margin: 0;
    padding: 0;
}
.barriers-desc {
  color: var(--text-gray);
  line-height: 1.6;
      font-size: 16px;
    padding: 0px 25px;
}

.barriers-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.barriers-grid .barrier-card:nth-child(2){
    background: rgba(255, 255, 255, .1);
}

.barrier-card {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid #313f5e;
  border-radius: 12px;
  width: 360px;
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.barrier-visual {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.5;
}

.barrier-content {
  position: relative;
  z-index: 1;
}

.barrier-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
    flex-direction: column;
    align-items: flex-start;
}
.barrier-title-row h3{
    font-size: 22px;
    color: #fff;
    font-weight: 500;
}

.icon-pill {
  background-color: var(--primary-blue);
  border-radius: 20px;
  padding: 6px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-pill img{
    max-height: 20px;
}

.barrier-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.barrier-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.4;
  color: #e4e4e4;
}

.barrier-list li img {
  margin-top: 3px;
}

.framework-section {
  background-color: #0F172A;
  color: var(--text-dark);
  padding: 80px 24px;
  border-radius: 10px;
  margin: 0px auto;
  max-width: 1440px;
  position: relative;
}
.framework-section::before{
    content: "";
    position: absolute;
    left: 0;
    top: 50px;
    width: 100%;
    height: 300px;
    background: url("/wp-content/themes/unicon/assets/css/blue_grid.png");
    background-repeat: no-repeat;
    background-size: 75%;
    background-position: top center;
}

.framework-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
}

.framework-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(59, 130, 246, 0.1);
  padding: 8px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  color: #60a5fa;
  font-weight: 500;
}

.framework-header h2 {
  font-size: 36px;
  margin-bottom: 20px;
      color: #fff;
    font-weight: 600;
}

.framework-header p {
    color: #9CA3AF;
    line-height: 1.6;
    font-size: 16px;
}

.framework-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 60px;
    background-color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 10px 10px 0px 0px;
    width: 1070px;
    margin: 0px auto;
    padding: 20px 20px;
}
.data_access_bottom{
    width: 1070px;
    background: #fff;
    border-radius: 0px 0px 10px 10px;
    margin: 0px auto;
    padding-top: 20px;
}

.framework-col {
  border-radius: 0;
  padding: 10px;
}

.col-header h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--text-dark);
  font-weight: 600;
}

.col-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

 /* .f-card {
 border-left: 1px solid var(--primary-blue);
  padding-left: 12px;
} */

.f-card-head {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 4px;
}
.f-card-head img{
    margin-top: 2px;
}

.f-card-head h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
      margin-bottom: 5px;
}

.f-card p {
  font-size: 16px;
  color: #222;
  line-height: 1.4;
      font-weight: 500;
}

.platform-logos {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding-bottom: 30px;
  padding-top: 20px;
}

.logo-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666666;
  font-weight: 500;
}

.framework-footer {
  text-align: center;
}
.framework-footer h3 {
  color: var(--primary-blue);
  margin-bottom: 10px;
      font-size: 20px;
    font-weight: 600;
}
.framework-footer p {
  color: var(--text-dark);
      font-size: 16px;
}

@media (max-width: 900px) {
  .framework-grid {
    grid-template-columns: 1fr;
  }
}

.enables-header {
  text-align: center;
  margin-bottom: 60px;
}
.enables-header h2 {
  font-size: 36px;
  margin-bottom: 16px;
color: #fff;
font-weight: 600;
}
.enables-header p {
  color: var(--text-white);
  font-size: 18px;
}

.enables-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
      width: 1060px;
    margin: 0px auto;
}

/* .enable-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 30px;
} */

.enables-section{
    background: url("/wp-content/themes/unicon/assets/image/enables_bg.png") no-repeat;
    background-position: center;
    background-size: contain;
}
.enable-icon-wrapper {
  margin-bottom: 15px;
}
.enable-icon {
  background-color: var(--primary-blue);
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.enable-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #f3f4f6;
      font-weight: 600;
}

.enable-desc {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  line-height: 1.5;
}

.requirements-box {
  padding: 30px;
  border-radius: 10px;
background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
border: 1px solid rgba(255, 255, 255, .1);
}

.requirements-box h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #ffffff;
  font-weight: 600;
}

.enables-header p{
    font-size: 18px;
    margin: 0px auto;
    width: 45%;
    line-height: normal;
}

.requirements-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.requirements-box li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #ffffff;
  position: relative;
      padding-left: 20px;
}
.requirements-box li::before{
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border: 3px solid #178ECE;
    left: 0;
    top: 6px;
    border-radius: 10px;
}

@media (max-width: 768px) {
  .enables-grid {
    grid-template-columns: 1fr;
  }
}

.expertise-header {
  text-align: center;
  margin-bottom: 80px;
}
.expertise-header h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #fff;
    font-weight: 600;
}
.expertise-header p {
  color: var(--text-gray);
      font-size: 16px;
}

.expertise-content {
  display: flex;
    flex-direction: row;
    gap: 70px;
    align-items: center;
}

.stats-row {
  display: grid;
  justify-content: space-between;
  gap: 30px;
      grid-template-columns: repeat(2, 1fr);
    width: 460px;
    position: relative;
}
.stats-row::before{
    content: "";
    position: absolute;
    left: 50%;
    width: 1px;
    height: 100%;
    top: 0px;
    background: #0F172A;
background: linear-gradient(180deg, rgba(15, 23, 42, 1) 0%, rgba(23, 142, 206, 1) 50%, rgba(15, 23, 42, 1) 100%);
}
.stats-row::after{
    content: "";
    position: absolute;
    top: 50%;
    left: 0px;
    width: 100%;
    height: 1px;
    background: #0F172A;
    background: linear-gradient(90deg, rgba(15, 23, 42, 1) 0%, rgba(23, 142, 206, 1) 50%, rgba(15, 23, 42, 1) 100%);
    
}
.stat-block {
  flex: 1;
  min-width: 200px;
  padding-left: 20px;
}

.stat-num {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-blue);
      margin-bottom: 5px;
    line-height: normal;
}

.stat-label {
    font-size: 14px !important;
    color: #ffffff !important;
    line-height: 22px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    width: 680px;
}
.partners-grid .partner-card:first-child{
    border-radius: 12px 0px 0px 0px;
}
.partners-grid .partner-card:nth-child(2){
    border-radius: 0px 12px 0px 0px;
}
.partners-grid .partner-card:nth-child(3){
    border-radius: 0px 0px 0px 12px;
}
.partners-grid .partner-card:nth-child(4){
    border-radius: 0px 0px 12px 0px;
}
.partner-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  border: 1px solid var(--card-border);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.partner-icon {
  background-color: var(--primary-blue);
  width: 50px;
  height: 35px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.partner-icon img{
    max-height: 16px;
}

.partner-card h4 {
      font-size: 20px;
    color: #ffffff;
    font-weight: 500;
}

.partner-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 900px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .partners-grid {
    grid-template-columns: 1fr;
  }
  .stats-row {
    flex-direction: column;
  }
}

.results-section{
    position: relative;
}
.results-section::before{
    content: "";
    position: absolute;
    left: 0;
    top: 50px;
    width: 100%;
    height: 300px;
    background: url("/wp-content/themes/unicon/assets/css/blue_grid.png");
    background-repeat: no-repeat;
    background-size: 75%;
    background-position: top center;
}

.results-header {
  text-align: center;
  margin-bottom: 60px;
}
.results-header p{
    font-size: 18px;
    color: BBC2CE;
}
.results-header h2 {
  font-size: 36px;
  margin-bottom: 10px;
color: #fff;
font-weight: 600;
}

.results-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.result-card {
  background: linear-gradient(90deg, #d3ecff 0%, #ffffff 68%);
  border-radius: 10px;
  padding: 30px;
  color: var(--text-dark);
}

.result-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 20px;
}

.result-title-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.result-title-row h3 {
  font-size: 24px;
  font-weight: 600;
}

.btn-small {
  background-color: #4fa5e4;
  color: white;
  border: none;
  padding: 15px 20px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  letter-spacing: normal;
  font-weight: 500;
  letter-spacing: normal;
}

.result-desc {
    color: #222222;
    margin-bottom: 20px;
    line-height: 24px;
    font-size: 16px;
    max-width: 75%;
}

/* .result-metrics {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 20px;
} */

.metric h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #222222;
      font-weight: 600;
}

.metric-items {
  display: flex;
  gap: 100px;
  flex-wrap: wrap;
  
}

.m-item {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.m-val {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-blue);
  line-height: normal;
}

.m-label {
  font-size: 14px;
  color: #222222;
}

/* .footer-cta {
  background-color: #0f172a;
  padding: 0px 0px 80px 0px;
}

.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  max-width: 1132px;
  margin: 0 auto;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 500;
    line-height: 50px;
}

.cta-content p {
  color: var(--text-white);
  margin-bottom: 40px;
  font-size: 18px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .cta-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  .cta-content h2,
  .cta-content p {
    max-width: 600px;
  }
} */

.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;
}

@media (max-width: 768px) {
  .ss_footer-content {
    flex-direction: column;
    text-align: center;
  }
  .ss_footer-actions {
    flex-direction: column;
    width: 100%;
  }
  .btn {
    width: 100%;
  }
}

.apps-section h2.section-title{
      color: #fff;
    font-size: 36px;
    font-weight: 600;
    text-align: center;
}
.apps-section .service-slider{
  margin: 0px auto;
}
.case-study-item {
    width: 350px !important;
}
.short-notes {
    min-height: inherit !important;
}

.apps-section {
    padding-top: 40px;
    /* background: url("/wp-content/themes/unicon/assets/css/blue_grid.png") no-repeat;
    background-size: 80%;
    background-position: top center; */
}

.view_all_btn{
  display: flex;
  justify-content: center;
}
.view_all_btn .btn{
  padding: 10px 25px;
}






/*content syndication css start*/
   #content_syndication .dfs_hero-section{
    padding: 100px 0px;
   }
/*content syndication css end*/