/* DKY Infotech brand overrides */
.left-wiget .logo img,
a.logo img {
  max-height: 48px;
  width: auto;
  height: auto;
}
/* header logo controlled in dky-header.css */
.right-rating-area .logo {
  max-height: 36px;
  width: auto;
}

/* Clients section + marquee */
.dky-clients-area {
  padding: 60px 0;
  background: #f5f7fb;
  overflow: hidden;
}
.dky-clients-area .title-center-wrapper {
  margin-bottom: 40px;
  text-align: center;
}
.dky-clients-area .title-center-wrapper .disc {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.dky-marquee {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.dky-marquee-track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding: 8px 0 16px;
  animation: dky-marquee 55s linear infinite;
}
.dky-marquee:hover .dky-marquee-track {
  animation-play-state: paused;
}
.dky-marquee .client-item {
  flex: 0 0 auto;
  width: 196px;
  background: #fff;
  border: 1px solid #e8eef8;
  border-radius: 14px;
  padding: 16px 18px;
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.06);
  box-sizing: border-box;
}
.dky-marquee .client-item img {
  max-width: 100%;
  max-height: 68px;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
  opacity: 1;
  filter: none;
}

@keyframes dky-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .dky-marquee-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* Keep old grid class usable if referenced elsewhere */
.dky-clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px;
  align-items: center;
}
.dky-clients-grid .client-item {
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.06);
}
.dky-clients-grid .client-item img {
  max-width: 100%;
  max-height: 68px;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
}


/* ---- Services: unified Font Awesome icons (same size + Digix blue) ---- */
.single-service-style-one .icon.dky-fa-icon,
.dky-fa-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.single-service-style-one .icon.dky-fa-icon i,
.dky-fa-icon i {
  font-size: 40px;
  line-height: 1;
  color: #0F62FE; /* Digix brand blue — all icons same colour */
  width: 1em;
  height: 1em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
/* Hide any leftover SVG/img in icon slots if present */
.single-service-style-one .icon.dky-fa-icon img {
  display: none;
}

/* List cards (managed / infra) — same card type */
.single-service-style-one.dky-list-card .title {
  font-size: 24px;
  color: #050D20;
  font-weight: 600;
  margin-bottom: 18px;
  display: block;
}
.dky-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.dky-service-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #717383;
  line-height: 1.5;
}
.dky-service-list li > i {
  color: #0F62FE;
  margin-top: 4px;
  font-size: 12px;
  flex-shrink: 0;
}

/* Capability rows — aligned with Digix text colors */
.dky-capability-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid #EAF0FF;
  border-radius: 16px;
  background: #fff;
  height: 100%;
  transition: all 0.3s ease;
}
.dky-capability-item:hover {
  border-color: #c9d7ff;
  box-shadow: 0 8px 24px rgba(5, 13, 32, 0.06);
}
.dky-capability-item .icon {
  flex-shrink: 0;
  margin-bottom: 0;
  width: 44px;
  height: 44px;
}
.dky-capability-item .icon.dky-fa-icon-sm i {
  font-size: 28px;
  color: #0F62FE;
}
.dky-capability-item .disc {
  font-size: 16px;
  color: #717383;
  line-height: 1.55;
  margin: 0;
}


/* Case / infrastructure solutions slider images */
.single-case-style-one .thumbnail-case {
  display: block;
  overflow: hidden;
}
.single-case-style-one .thumbnail-case img,
.single-case-style-one .thumbnail-case img.dky-case-img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center;
  display: block;
}


/* ---- About section (homepage) ---- */
.dky-about-thumbs .left-image {
  overflow: hidden;
  border-radius: 16px;
}
.dky-about-thumbs .left-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.dky-experience-badge {
  background: #0F62FE;
  color: #fff;
  border-radius: 14px;
  padding: 14px 18px;
  min-width: 110px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(15, 98, 254, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  z-index: 2;
}
.dky-experience-badge .num {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  display: block;
}
.dky-experience-badge .label {
  font-size: 12px;
  line-height: 1.3;
  color: rgba(255,255,255,0.95);
  display: block;
  font-weight: 500;
}
.dky-about-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  max-width: 520px;
}
.dky-about-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 15px;
  color: #717383;
  line-height: 1.5;
}
.dky-about-highlights li i {
  color: #0F62FE;
  margin-top: 4px;
  font-size: 12px;
  flex-shrink: 0;
}
.dky-sign-block {
  width: 100%;
  text-align: right;
  margin-top: 12px;
}
.dky-sign-block strong {
  display: block;
  font-size: 16px;
  color: #050D20;
  font-weight: 700;
}
.dky-sign-block span {
  display: block;
  font-size: 13px;
  color: #717383;
  margin-top: 2px;
}
.about-content-style-one .review-area .title {
  color: #0F62FE;
}
.dky-about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.dky-about-actions .btn-border {
  background: transparent;
  color: #050D20;
  border: 1px solid #D9D9D9;
}
.dky-about-actions .btn-border:hover {
  border-color: #0F62FE;
  color: #0F62FE;
}

/* ---- Professional header top bar ---- */
.header-top-dky {
  background: #050D20;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  padding: 8px 0;
}
.header-top-dky-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.header-top-dky a,
.header-top-dky span {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  margin-right: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.header-top-dky a:hover {
  color: #fff;
}
.header-top-dky i {
  color: #0F62FE;
  font-size: 12px;
}
.dky-header .header-wrapper-main {
  padding-top: 12px;
  padding-bottom: 12px;
}
.dky-header .nav-area > ul > li.main-nav > a {
  font-weight: 500;
}

/* ---- Professional hero ---- */
.dky-hero-wrap {
  position: relative;
}
.dky-hero-wrap .right-rating-area {
  display: none !important;
}
.dky-hero-slide {
  min-height: 620px;
  display: flex;
  align-items: center;
}
.dky-hero-content {
  max-width: 640px;
  padding: 80px 0 70px;
}
.dky-hero-content .pre-title {
  display: inline-block;
  background: rgba(15, 98, 254, 0.12);
  color: #0F62FE !important;
  border: 1px solid rgba(15, 98, 254, 0.25);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}
.dky-hero-slide.two .dky-hero-content .pre-title,
.dky-hero-slide.bg_image .dky-hero-content .pre-title {
  background: rgba(255,255,255,0.15);
  color: #fff !important;
  border-color: rgba(255,255,255,0.3);
}
.dky-hero-content .title {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 18px;
  max-width: 100%;
}
.dky-hero-content .title span,
.dky-hero-content .title img {
  display: none !important;
}
.dky-hero-content .disc {
  font-size: 17px;
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 28px;
  opacity: 0.92;
}
.dky-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 28px;
}
.dky-hero-btns .vedio-icone {
  display: none !important;
}
.dky-btn-outline-light {
  background: transparent !important;
  border: 1px solid rgba(255,255,255,0.55) !important;
  color: #fff !important;
  box-shadow: none !important;
}
.dky-btn-outline-light:hover {
  background: rgba(255,255,255,0.12) !important;
  border-color: #fff !important;
}
.dky-btn-outline-light i {
  margin-right: 8px;
}
.dky-hero-trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
}
.dky-hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: inherit;
  opacity: 0.95;
}
.dky-hero-trust li i {
  color: #0F62FE;
  background: #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}
.dky-hero-slide.two .dky-hero-trust li i,
.dky-hero-slide .dky-hero-trust li i {
  color: #0F62FE;
}

.dky-hero-visual {
  position: relative;
  padding: 40px 0 40px 20px;
}
.dky-hero-visual > img {
  width: 100%;
  max-width: 480px;
  height: 420px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(5, 13, 32, 0.28);
  display: block;
  margin-left: auto;
}
.dky-hero-float {
  position: absolute;
  left: 0;
  bottom: 70px;
  background: #fff;
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 40px rgba(5, 13, 32, 0.15);
  min-width: 200px;
}
.dky-hero-float i {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(15, 98, 254, 0.1);
  color: #0F62FE;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.dky-hero-float strong {
  display: block;
  font-size: 15px;
  color: #050D20;
  line-height: 1.2;
}
.dky-hero-float span {
  display: block;
  font-size: 13px;
  color: #717383;
  margin-top: 2px;
}

@media (max-width: 991px) {
  .dky-hero-slide {
    min-height: auto;
  }
  .dky-hero-content {
    padding: 60px 0 50px;
  }
  .dky-hero-content .title {
    font-size: 34px;
  }
}

/* ---- About page redesign ---- */
.dky-page-hero {
  padding-top: 40px;
  padding-bottom: 60px;
}
.dky-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 18px;
  color: #717383;
}
.dky-breadcrumb a {
  color: #0F62FE;
  text-decoration: none;
}
.dky-breadcrumb .current {
  color: #050D20;
  font-weight: 500;
}
.dky-badge {
  display: inline-block !important;
  border: 1px solid #EAF0FF;
  background: #F5F8FF;
  color: #0F62FE !important;
  padding: 4px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}
.dky-page-hero-content .title {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.2;
  color: #050D20;
  font-weight: 700;
  margin-bottom: 18px;
}
.dky-page-hero-content .disc {
  font-size: 17px;
  color: #717383;
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 28px;
}
.dky-page-hero-image {
  position: relative;
}
.dky-page-hero-image > img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(5,13,32,0.12);
}
.dky-page-float {
  left: -10px;
  bottom: 30px;
}
.dky-about-media {
  position: relative;
  padding-bottom: 60px;
  padding-right: 40px;
}
.dky-about-media .main-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 24px;
}
.dky-about-media .sub-img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
  height: 200px;
  object-fit: cover;
  border-radius: 18px;
  border: 6px solid #fff;
  box-shadow: 0 12px 30px rgba(5,13,32,0.15);
}
.dky-purpose-card {
  background: #fff;
  border: 1px solid #EAF0FF;
  border-radius: 20px;
  padding: 32px 28px;
  height: 100%;
  transition: all 0.3s ease;
}
.dky-purpose-card:hover {
  box-shadow: 0 16px 40px rgba(5,13,32,0.08);
  border-color: #c9d7ff;
}
.dky-purpose-card .icon {
  margin-bottom: 20px;
}
.dky-purpose-card .title {
  font-size: 22px;
  color: #050D20;
  font-weight: 600;
  margin-bottom: 12px;
}
.dky-purpose-card .disc {
  font-size: 15px;
  color: #717383;
  line-height: 1.65;
  margin: 0;
}
.dky-stats-band {
  background: #050D20;
  padding: 50px 0;
}
.dky-stat-item h3 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.dky-stat-item p {
  margin: 0;
  color: rgba(255,255,255,0.7);
  font-size: 15px;
}
.dky-about-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #F5F8FF;
  border: 1px solid #EAF0FF;
  border-radius: 20px;
  padding: 32px 36px;
}
.dky-about-cta h3 {
  font-size: 24px;
  color: #050D20;
  margin-bottom: 6px;
}
.dky-about-cta p {
  margin: 0;
  color: #717383;
}
@media (max-width: 991px) {
  .dky-page-hero-image > img {
    height: 320px;
  }
  .dky-about-media {
    padding-right: 20px;
    padding-bottom: 40px;
  }
  .dky-about-media .main-img {
    height: 300px;
  }
}

/* Fix sticky header + about page layout */
.dky-header.header--sticky {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  width: 100%;
}
.dky-header .header-wrapper-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
}
.dky-header .logo-area {
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.dky-header .logo-area img {
  max-height: 48px;
  width: auto;
  display: block;
}
.dky-header .nav-area {
  flex: 1;
  display: flex;
  justify-content: center;
}
.dky-header .button-wrapper-flex {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* About hero must sit fully BELOW header — no overlap */
.dky-page-hero {
  position: relative;
  z-index: 1;
  clear: both;
  padding-top: 48px !important;
  padding-bottom: 70px !important;
  background: #fff;
  overflow: visible;
}
.dky-page-hero .container {
  position: relative;
  z-index: 1;
}
.dky-page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 100%;
}
.dky-page-hero-content .title {
  position: relative;
  z-index: 2;
}
.dky-page-hero-image {
  position: relative;
  z-index: 1;
  margin-top: 0;
}
/* Prevent float card from escaping layout */
.dky-page-float {
  z-index: 3;
}


/* =========================================================
   CRITICAL FIX: Digix .header-one is position:absolute by default.
   Homepage hero is designed for that. Inner pages must use
   relative header so content is NOT under the nav.
   ========================================================= */
.dky-inner-page .header-one.dky-header,
.dky-header.header-relative,
.header-one.header-relative.dky-header {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  width: 100%;
  background: #ffffff !important;
  z-index: 1000;
  box-shadow: 0 1px 0 rgba(5, 13, 32, 0.08);
}
.dky-inner-page .dky-header .nav-area a,
.dky-header.header-relative .nav-area a {
  color: #071431 !important;
}
.dky-inner-page .dky-header .menu-btn-toggle svg rect,
.dky-header.header-relative .menu-btn-toggle svg rect {
  fill: #1F1F25 !important;
}
/* When sticky class applied on scroll, keep readable white bar */
.dky-inner-page .header--sticky.sticky,
.dky-header.header-relative.sticky {
  position: fixed !important;
  background: #ffffff !important;
  box-shadow: 0 8px 24px rgba(5, 13, 32, 0.08) !important;
}

/* About hero clean spacing below relative header */
.dky-inner-page .dky-page-hero {
  margin-top: 0;
  padding-top: 50px !important;
  padding-bottom: 70px !important;
  background: #fff;
  overflow: hidden;
}
.dky-inner-page .dky-page-hero .row {
  align-items: center;
}
.dky-inner-page .dky-page-hero-content {
  padding-right: 10px;
}
.dky-inner-page .dky-page-hero-image > img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

/* =========================================================
   NAVBAR FIX — always show menu + readable colors
   Digix hides .nav-area under 1200px and uses white links
   for absolute headers (invisible on white bars).
   ========================================================= */

/* Solid header bar on ALL pages (home + inner) */
.header-one.dky-header {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  width: 100% !important;
  background: #ffffff !important;
  z-index: 1000;
  box-shadow: 0 1px 0 rgba(5, 13, 32, 0.08);
}

.header-one.dky-header.header--sticky.sticky {
  position: fixed !important;
  background: #ffffff !important;
  box-shadow: 0 8px 24px rgba(5, 13, 32, 0.1) !important;
}

/* Flex layout for logo | nav | button */
.dky-header .header-wrapper-main {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px;
  min-height: 78px;
  width: 100%;
}

.dky-header .logo-area {
  flex: 0 0 auto;
  max-width: 220px;
}
.dky-header .logo-area img {
  max-height: 48px !important;
  width: auto !important;
  display: block;
}

/* FORCE nav visible on desktop (override Digix max-width:1199px hide) */
.dky-header .nav-area {
  display: flex !important;
  flex: 1 1 auto !important;
  justify-content: center !important;
  align-items: center !important;
  visibility: visible !important;
  opacity: 1 !important;
  padding: 0 !important;
  border: none !important;
  min-width: 0;
}

.dky-header .nav-area > ul {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center !important;
  justify-content: center;
  gap: 8px 28px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.dky-header .nav-area > ul > li.main-nav {
  display: list-item !important;
  margin: 0 !important;
  position: relative;
}

.dky-header .nav-area > ul > li.main-nav > a {
  display: block !important;
  padding: 10px 0 !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  color: #071431 !important;
  text-decoration: none !important;
  white-space: nowrap;
  visibility: visible !important;
  opacity: 1 !important;
}

.dky-header .nav-area > ul > li.main-nav > a:hover,
.dky-header .nav-area > ul > li.main-nav > a:focus {
  color: #0F62FE !important;
}

/* Active / current page feel */
.dky-header .nav-area > ul > li.main-nav > a[href="about.php"] {
  /* leave default; page-specific handled if needed */
}

.dky-header .button-wrapper-flex {
  flex: 0 0 auto;
  display: flex !important;
  align-items: center;
  gap: 12px;
}

/* Dropdown submenus stay usable */
.dky-header .nav-area .submenu {
  background: #fff;
  z-index: 1001;
}
.dky-header .nav-area .submenu a {
  color: #071431 !important;
}

/* Tablet/mobile: hide desktop nav, show hamburger */
@media only screen and (max-width: 991px) {
  .dky-header .nav-area {
    display: none !important;
  }
  .dky-header .menu-btn-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
}

@media only screen and (min-width: 992px) {
  .dky-header .nav-area {
    display: flex !important;
  }
  .dky-header .menu-btn-toggle {
    display: none !important;
  }
}

/* Homepage hero sits under relative white header now */
.dky-hero-wrap,
.banner-swiper-main-wrapper-one.dky-hero-wrap {
  margin-top: 0;
}
.dky-hero-content .title,
.dky-hero-content .disc,
.dky-hero-content .pre-title {
  /* keep readable on dark banner slides */
}


/* ============================================================
   DKY NAVBAR v4 — complete rebuild (do not collapse)
   ============================================================ */
.dky-header.header-one {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  width: 100% !important;
  background: #fff !important;
  z-index: 9999;
  box-shadow: 0 1px 0 rgba(5,13,32,.08);
}
.dky-header.header--sticky.sticky {
  position: fixed !important;
  top: 0 !important;
  background: #fff !important;
  box-shadow: 0 8px 28px rgba(5,13,32,.1) !important;
}

/* Top contact strip — always show on desktop */
.dky-header .header-top-dky {
  display: block !important;
  background: #050D20;
  color: rgba(255,255,255,.9);
  font-size: 13px;
  padding: 9px 0;
  line-height: 1.4;
}
.dky-header .header-top-dky-inner {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.dky-header .header-top-dky a,
.dky-header .header-top-dky span {
  color: rgba(255,255,255,.9) !important;
  text-decoration: none;
  margin-right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}
.dky-header .header-top-dky i {
  color: #5B9BFF;
  font-size: 12px;
}

/* Main bar */
.dky-header-main {
  background: #fff;
  border-bottom: 1px solid #EEF1F6;
}
.dky-header-bar {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 24px;
  min-height: 80px;
  width: 100%;
}
.dky-header-bar .logo-area {
  flex: 0 0 auto;
  max-width: 200px;
}
.dky-header-bar .logo-area a {
  display: inline-block;
}
.dky-header-bar .logo-area img {
  max-height: 46px !important;
  width: auto !important;
  height: auto !important;
  display: block;
}

/* Desktop nav — never hide above 992px */
.dky-nav {
  display: flex !important;
  flex: 1 1 auto;
  justify-content: center;
  align-items: center;
  min-width: 0;
}
.dky-nav-list {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 6px 8px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.dky-nav-list > li {
  display: block !important;
  position: relative;
  margin: 0 !important;
  padding: 0 10px !important;
  list-style: none !important;
}
.dky-nav-list > li > a {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  padding: 12px 4px !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  line-height: 1.2 !important;
  color: #071431 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  background: transparent !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.dky-nav-list > li > a:hover {
  color: #0F62FE !important;
}
.dky-nav-list > li > a i {
  font-size: 10px;
  opacity: .7;
  transition: transform .2s ease;
}
.dky-nav-list > li.dky-has-sub:hover > a i {
  transform: rotate(180deg);
}

/* Kill Digix white link + after chevron on our nav */
.dky-header .main-nav > a,
.dky-header .nav-area * ,
.dky-header header .main-nav > a {
  color: #071431 !important;
}
.dky-header .dky-nav-list > li::after,
.dky-header .dky-nav-list > li > a::after,
.dky-header .project-a-after::after,
.dky-header .has-dropdown::after {
  display: none !important;
  content: none !important;
}

/* Dropdown */
.dky-sub {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 240px;
  background: #fff;
  border: 1px solid #EAF0FF;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(5,13,32,.12);
  padding: 10px 0;
  margin: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all .2s ease;
  z-index: 10000;
}
.dky-has-sub:hover > .dky-sub,
.dky-has-sub:focus-within > .dky-sub {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dky-sub li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.dky-sub a {
  display: block !important;
  padding: 10px 18px !important;
  font-size: 14px !important;
  color: #334155 !important;
  text-decoration: none !important;
  white-space: nowrap;
}
.dky-sub a:hover {
  background: #F5F8FF;
  color: #0F62FE !important;
}

/* CTA + hamburger */
.dky-header-actions {
  display: flex !important;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}
.dky-header-cta {
  white-space: nowrap;
  padding: 12px 22px !important;
}
.dky-menu-toggle {
  display: none !important;
  width: 44px;
  height: 44px;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  background: #fff;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}
.dky-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #071431;
  border-radius: 2px;
}

/* Hide old Digix nav-area if any leftover */
.dky-header .nav-area { display: none !important; }

/* Responsive */
@media (max-width: 1199px) {
  .dky-nav-list > li { padding: 0 6px !important; }
  .dky-nav-list > li > a { font-size: 14px !important; }
  .dky-header-bar { gap: 12px; }
}
@media (max-width: 991px) {
  .dky-header .header-top-dky { display: none !important; }
  .dky-nav { display: none !important; }
  .dky-menu-toggle { display: flex !important; }
  .dky-header-bar { min-height: 68px; }
  .dky-header-cta { padding: 10px 14px !important; font-size: 13px; }
}

/* Old class cleanup so Digix absolute header doesn't fight us */
.dky-header .header-wrapper-main { display: none !important; }


/* ============================================================
   DKY Services MEGA MENU — Digix-style + hover-bridge fix
   ============================================================ */

/* Keep mega open while hovering trigger OR panel */
.dky-header-main {
  position: relative;
  z-index: 1000;
}

.dky-has-mega {
  position: relative !important;
}

.dky-has-mega > a {
  position: relative;
  z-index: 2;
  /* extend clickable/hover area slightly below link */
  padding-bottom: 28px !important;
  margin-bottom: -16px !important;
}

/* Full-width panel under the whole header main bar */
.dky-mega {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  top: 100%;
  width: min(1140px, calc(100vw - 32px));
  padding-top: 0;
  margin-top: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
  z-index: 10050;
}

/* Invisible bridge from nav item down to panel (full width of mega) */
.dky-mega::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -28px;
  height: 32px;
  background: transparent;
}

/* Open when hovering Services item OR the mega itself */
.dky-has-mega:hover > .dky-mega,
.dky-has-mega:focus-within > .dky-mega,
.dky-mega:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Also keep open if pointer is over header-main while mega was opened via has() */
.dky-header-main:has(.dky-has-mega:hover) .dky-has-mega > .dky-mega,
.dky-header-main:has(.dky-mega:hover) .dky-has-mega > .dky-mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dky-mega-inner {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #EAF0FF;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(5, 13, 32, 0.14);
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 0;
  align-items: stretch;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.dky-mega-services {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}

.dky-mega-group {
  margin: 0 0 18px;
}
.dky-mega-group-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
  margin: 0 0 10px;
  padding: 0 0 8px;
  border-bottom: 1px solid #EAF0FF;
}
.dky-mega-group-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.dky-mega-card {
  display: flex !important;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 0 12px !important;
  border: 1px solid #EEF2FF;
  border-radius: 10px;
  background: #F8FAFF;
  text-decoration: none !important;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: normal !important;
  min-height: 48px;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  cursor: pointer;
}
.dky-mega-card:hover {
  background: #fff;
  border-color: #C9D7FF;
  box-shadow: 0 6px 16px rgba(15, 98, 254, 0.08);
  transform: none;
}
.dky-mega-card .icon {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(15, 98, 254, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
}
.dky-mega-card .icon i {
  font-size: 14px;
  color: #0F62FE !important;
  line-height: 1;
}
.dky-mega-card .info { min-width: 0; flex: 1; overflow: hidden; max-width: 100%; }
.dky-mega-card .title {
  font-size: 13.5px !important;
  font-weight: 600 !important;
  color: #0b1220 !important;
  margin: 0 !important;
  line-height: 1.25 !important;
  padding: 0 !important;
  display: block !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  max-width: 100%;
}
.dky-mega-card .details {
  display: none !important;
}

.dky-mega-process {
  border-left: 1px solid #EAF0FF;
  padding: 24px 20px;
  min-height: 100%;
  background: linear-gradient(180deg, #FAFBFF 0%, #fff 100%);
}
.dky-mega-process .process-title {
  font-size: 16px;
  font-weight: 700;
  color: #050D20;
  margin: 0 0 6px;
  line-height: 1.3;
}
.dky-mega-process .process-lead {
  font-size: 12.5px;
  line-height: 1.5;
  color: #717383;
  margin: 0 0 14px;
}
.dky-mega-process ul {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
}
.dky-mega-process ul li { margin: 0; padding: 0; }
.dky-mega-process ul li a {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 8px 0 !important;
  font-size: 13.5px !important;
  font-weight: 500 !important;
  color: #0F62FE !important;
  text-decoration: none !important;
  white-space: normal !important;
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid #F1F5F9 !important;
  cursor: pointer;
}
.dky-mega-process ul li:last-child a {
  border-bottom: 0 !important;
}
.dky-mega-process ul li a:hover {
  color: #050D20 !important;
  padding-left: 2px !important;
}
.dky-mega-process .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: rgba(15, 98, 254, 0.1);
  color: #0F62FE;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.dky-mega-all {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #0F62FE !important;
  text-decoration: none !important;
  cursor: pointer;
}
.dky-mega-all:hover { color: #050D20 !important; }
.dky-mega-services-foot {
  padding-top: 8px;
  border-top: 1px solid #EAF0FF;
}

.dky-has-mega > .dky-sub { display: none !important; }

@media (max-width: 1199px) {
  .dky-mega { width: min(960px, calc(100vw - 24px)); }
  .dky-mega-inner {
    grid-template-columns: minmax(0, 1fr) 200px;
    padding: 0;
    gap: 0;
  }
  .dky-mega-group-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .dky-mega-card {
    padding: 0 12px !important;
    min-height: 48px;
    height: 48px;
  }
  .dky-mega-card .title { font-size: 13px !important; }
}

@media (max-width: 991px) {
  .dky-mega { display: none !important; }
  .dky-has-mega > a {
    padding-bottom: 12px !important;
    margin-bottom: 0 !important;
  }
}

/* JS-assisted open state (mouse can travel into panel) */
.dky-has-mega.is-open > .dky-mega {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateX(-50%) translateY(0) !important;
}

/* Active nav item */
.dky-nav-list > li.is-active > a,
.dky-nav-list > li.dky-has-mega.is-active > a {
  color: #0F62FE !important;
}


/* Force service page FA icons */
.dky-fa-icon i,
.single-service-style-one .icon.dky-fa-icon i {
  font-family: "Font Awesome 6 Pro", "Font Awesome 5 Pro", "FontAwesome" !important;
  font-weight: 900 !important;
  font-style: normal !important;
  display: inline-block !important;
  color: #0F62FE !important;
  line-height: 1 !important;
  -webkit-font-smoothing: antialiased !important;
}

/* =========================================================
   Service detail pages — brand UI
   ========================================================= */
.dky-svc-hero {
  padding: 48px 0 56px;
  background: #fff;
}
.dky-svc-title {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  font-weight: 700;
  color: #050D20;
  margin: 12px 0 18px;
}
.dky-svc-lead {
  font-size: 17px;
  line-height: 1.7;
  color: #717383;
  max-width: 540px;
  margin: 0 0 28px;
}
.dky-svc-meta {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin: 28px 0 0;
  padding: 0;
}
.dky-svc-meta li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #334155;
}
.dky-svc-meta li i {
  color: #0F62FE;
  font-size: 12px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(15, 98, 254, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.dky-svc-hero-media {
  position: relative;
}
.dky-svc-hero-media > img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(5, 13, 32, 0.12);
  display: block;
}
.dky-svc-hero-chip {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 32px rgba(5, 13, 32, 0.14);
  max-width: calc(100% - 40px);
}
.dky-svc-hero-chip .chip-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(15, 98, 254, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dky-svc-hero-chip .chip-icon i {
  color: #0F62FE;
  font-size: 18px;
  font-family: "Font Awesome 6 Pro", "Font Awesome 5 Pro", FontAwesome !important;
  font-weight: 900 !important;
}
.dky-svc-hero-chip strong {
  display: block;
  font-size: 14px;
  color: #050D20;
  line-height: 1.25;
}
.dky-svc-hero-chip span {
  display: block;
  font-size: 12px;
  color: #717383;
  margin-top: 2px;
}

.dky-svc-body {
  background: #F7F9FC;
}
.dky-svc-panel {
  background: #fff;
  border: 1px solid #EAF0FF;
  border-radius: 20px;
  padding: 32px 28px;
}
.dky-svc-copy {
  font-size: 16px;
  line-height: 1.75;
  color: #717383;
  margin: 0 0 16px;
}
.dky-svc-benefit {
  background: #FAFBFF;
  border: 1px solid #EEF2FF;
  border-radius: 16px;
  padding: 22px 18px;
  height: 100%;
  transition: all 0.25s ease;
}
.dky-svc-benefit:hover {
  border-color: #C9D7FF;
  box-shadow: 0 10px 28px rgba(15, 98, 254, 0.08);
}
.dky-svc-benefit .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(15, 98, 254, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.dky-svc-benefit .icon i {
  color: #0F62FE;
  font-size: 18px;
  font-family: "Font Awesome 6 Pro", "Font Awesome 5 Pro", FontAwesome !important;
  font-weight: 900 !important;
}
.dky-svc-benefit h4 {
  font-size: 17px;
  color: #050D20;
  margin: 0 0 8px;
  font-weight: 600;
}
.dky-svc-benefit p {
  font-size: 14px;
  line-height: 1.55;
  color: #717383;
  margin: 0;
}

.dky-svc-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #EAF0FF;
  border-radius: 16px;
  padding: 20px 18px;
  height: 100%;
  transition: all 0.25s ease;
}
.dky-svc-step:hover {
  border-color: #0F62FE;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(5, 13, 32, 0.06);
}
.dky-svc-step .step-num {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #0F62FE;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dky-svc-step h4 {
  font-size: 16px;
  color: #050D20;
  margin: 0 0 6px;
  font-weight: 600;
}
.dky-svc-step p {
  font-size: 13px;
  color: #717383;
  margin: 0;
  line-height: 1.5;
}

.dky-svc-aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 100px;
}
.dky-svc-aside-card {
  background: #fff;
  border: 1px solid #EAF0FF;
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 10px 30px rgba(5, 13, 32, 0.04);
}
.dky-svc-aside-soft {
  background: #FAFBFF;
}
.dky-svc-aside-card .aside-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(15, 98, 254, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.dky-svc-aside-card .aside-icon i {
  color: #0F62FE;
  font-size: 22px;
  font-family: "Font Awesome 6 Pro", "Font Awesome 5 Pro", FontAwesome !important;
  font-weight: 900 !important;
}
.dky-svc-aside-card h3 {
  font-size: 22px;
  color: #050D20;
  margin: 0 0 8px;
}
.dky-svc-aside-card h4 {
  font-size: 18px;
  color: #050D20;
  margin: 0 0 14px;
}
.dky-svc-aside-card > p {
  font-size: 14px;
  color: #717383;
  line-height: 1.6;
  margin: 0 0 18px;
}
.aside-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
.aside-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #334155;
}
.aside-list li i {
  color: #0F62FE;
  margin-top: 3px;
  width: 16px;
}
.aside-list a {
  color: #334155;
  text-decoration: none;
}
.aside-list a:hover {
  color: #0F62FE;
}
.dky-svc-aside-btn {
  width: 100%;
  text-align: center;
  margin-bottom: 10px !important;
  display: block !important;
}
.aside-links {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
}
.aside-links li {
  margin: 0;
}
.aside-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #EAF0FF;
  color: #334155;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}
.aside-links a i {
  color: #0F62FE;
  width: 18px;
  font-family: "Font Awesome 6 Pro", "Font Awesome 5 Pro", FontAwesome !important;
  font-weight: 900 !important;
}
.aside-links a.current,
.aside-links a:hover {
  color: #0F62FE;
}
.aside-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #0F62FE;
  text-decoration: none;
}
.aside-view-all:hover {
  color: #050D20;
}

.dky-svc-cta-band {
  background: #050D20;
  padding: 56px 0;
}
.dky-svc-cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.dky-svc-cta-inner h2 {
  color: #fff;
  font-size: clamp(24px, 3vw, 32px);
  margin: 0 0 8px;
  font-weight: 700;
}
.dky-svc-cta-inner p {
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
  font-size: 16px;
  max-width: 520px;
}
.dky-svc-cta-band .btn-white {
  background: #fff !important;
  color: #0F62FE !important;
}
.dky-svc-cta-band .dky-btn-outline-light {
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.45) !important;
  color: #fff !important;
}

.dky-svc-related {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #EAF0FF;
  border-radius: 16px;
  padding: 22px 18px;
  height: 100%;
  text-decoration: none !important;
  transition: all 0.25s ease;
}
.dky-svc-related:hover {
  border-color: #C9D7FF;
  box-shadow: 0 14px 32px rgba(5, 13, 32, 0.08);
  transform: translateY(-2px);
}
.dky-svc-related .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(15, 98, 254, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dky-svc-related .icon i {
  color: #0F62FE;
  font-size: 18px;
  font-family: "Font Awesome 6 Pro", "Font Awesome 5 Pro", FontAwesome !important;
  font-weight: 900 !important;
}
.dky-svc-related h5 {
  font-size: 17px;
  color: #050D20;
  margin: 0 0 6px;
  font-weight: 600;
}
.dky-svc-related p {
  font-size: 13px;
  color: #717383;
  line-height: 1.5;
  margin: 0 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.dky-svc-related .more {
  font-size: 13px;
  font-weight: 600;
  color: #0F62FE;
}
.dky-svc-related .more i {
  font-size: 11px;
  margin-left: 4px;
}

@media (max-width: 991px) {
  .dky-svc-hero {
    padding: 32px 0 40px;
  }
  .dky-svc-hero-media > img {
    height: 300px;
  }
  .dky-svc-aside {
    position: static;
  }
  .dky-svc-panel {
    padding: 24px 18px;
  }
}


/* =========================================================
   Clients page — Team Computers inspired
   ========================================================= */
.tc-clients-story {
  padding: 56px 0 40px;
  background: #fff;
}
.tc-eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0F62FE;
  margin: 0 0 12px;
}
.tc-display {
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.05;
  font-weight: 700;
  color: #0b1220;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}
.tc-lead {
  font-size: 20px;
  line-height: 1.55;
  color: #334155;
  font-weight: 500;
  margin: 0 0 14px;
  max-width: 34em;
}
.tc-body {
  font-size: 16px;
  line-height: 1.7;
  color: #64748b;
  margin: 0 0 22px;
  max-width: 38em;
}
.tc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  color: #0F62FE;
  text-decoration: none;
}
.tc-link:hover { color: #0b1220; }
.tc-link i { font-size: 12px; }

.tc-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  background: #0b1220;
  border-radius: 20px;
  padding: 28px 18px;
}
.tc-stat {
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.tc-stat:last-child { border-right: 0; }
.tc-stat strong {
  display: block;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}
.tc-stat strong span { color: #6BA3FF; }
.tc-stat em {
  display: block;
  margin-top: 6px;
  font-style: normal;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}

/* Ecosystem logo rails */
.tc-ecosystem {
  padding: 48px 0 56px;
  background: #f6f8fc;
  overflow: hidden;
}
.tc-section-head {
  text-align: center;
  margin-bottom: 36px;
}
.tc-section-head h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: #0b1220;
  margin: 0 0 8px;
}
.tc-section-head p {
  margin: 0;
  font-size: 18px;
  color: #64748b;
}
.tc-section-head-left {
  text-align: left;
  margin-bottom: 32px;
}
.tc-section-head-left h2 {
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.tc-logo-rail {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}
.tc-logo-rail-gap { margin-top: 16px; }
.tc-logo-track {
  display: flex;
  width: max-content;
  gap: 16px;
  padding: 4px 0;
}
.tc-logo-cell {
  flex: 0 0 auto;
  width: 190px;
  height: 108px;
  background: #fff;
  border: 1px solid #e8eef8;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  box-shadow: 0 6px 18px rgba(11, 18, 32, 0.04);
  box-sizing: border-box;
  overflow: hidden;
}
.tc-logo-cell img {
  max-width: 100%;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
  opacity: 1;
  filter: none;
}
.tc-scroll-left {
  animation: tc-left 60s linear infinite;
}
.tc-scroll-right {
  animation: tc-right 65s linear infinite;
}
.tc-logo-rail:hover .tc-logo-track {
  animation-play-state: paused;
}
@keyframes tc-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes tc-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

/* Solutions grid */
.tc-solutions {
  padding: 72px 0;
  background: #fff;
}
.tc-solution-card {
  display: block;
  height: 100%;
  background: #f7f9fd;
  border: 1px solid #eaf0ff;
  border-radius: 18px;
  padding: 28px 22px 24px;
  text-decoration: none !important;
  transition: all 0.25s ease;
}
.tc-solution-card:hover {
  background: #fff;
  border-color: #c9d7ff;
  box-shadow: 0 16px 40px rgba(15, 98, 254, 0.1);
  transform: translateY(-3px);
}
.tc-sol-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(15, 98, 254, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.tc-sol-icon i {
  color: #0F62FE;
  font-size: 22px;
  font-family: "Font Awesome 6 Pro", "Font Awesome 5 Pro", FontAwesome !important;
  font-weight: 900 !important;
}
.tc-solution-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0b1220;
  margin: 0 0 10px;
  line-height: 1.25;
  min-height: 2.5em;
}
.tc-solution-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #64748b;
  margin: 0 0 16px;
  min-height: 4.5em;
}
.tc-learn {
  font-size: 14px;
  font-weight: 600;
  color: #0F62FE;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.tc-learn i { font-size: 11px; transition: transform 0.2s ease; }
.tc-solution-card:hover .tc-learn i { transform: translateX(3px); }

/* Industry */
.tc-industry {
  padding: 72px 0;
  background: #0b1220;
  color: #fff;
}
.tc-industry .tc-eyebrow { color: #6BA3FF; }
.tc-industry-title {
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.1;
  font-weight: 700;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.tc-industry .tc-body { color: rgba(255,255,255,0.65); }
.tc-industry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.tc-industry-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 16px 14px;
  transition: all 0.2s ease;
}
.tc-industry-item:hover {
  background: rgba(15, 98, 254, 0.18);
  border-color: rgba(107, 163, 255, 0.35);
}
.tc-industry-item .ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(15, 98, 254, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tc-industry-item .ico i {
  color: #6BA3FF;
  font-size: 16px;
  font-family: "Font Awesome 6 Pro", FontAwesome !important;
  font-weight: 900 !important;
}
.tc-industry-item .lbl {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

/* Connect */
.tc-connect {
  padding: 56px 0 72px;
  background: #f6f8fc;
}
.tc-connect-box {
  background: #fff;
  border: 1px solid #eaf0ff;
  border-radius: 24px;
  padding: 40px 42px;
  box-shadow: 0 12px 40px rgba(11, 18, 32, 0.05);
}
.tc-connect-box h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: #0b1220;
  margin: 0 0 10px;
}
.tc-connect-box p {
  margin: 0;
  color: #64748b;
  font-size: 16px;
  line-height: 1.65;
  max-width: 36em;
}
.tc-connect-btn {
  margin-bottom: 12px !important;
}
.tc-connect-phone {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  color: #0F62FE;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
}
.tc-connect-phone:hover { color: #0b1220; }

@media (max-width: 991px) {
  .tc-stat-row { margin-top: 12px; }
  .tc-industry-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tc-connect-box { padding: 28px 22px; text-align: center; }
  .tc-connect-box p { margin: 0 auto 16px; }
  .tc-connect-phone { justify-content: center; }
}
@media (max-width: 575px) {
  .tc-stat-row { grid-template-columns: 1fr; }
  .tc-stat { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 12px; }
  .tc-stat:last-child { border-bottom: 0; padding-bottom: 0; }
  .tc-industry-grid { grid-template-columns: 1fr; }
  .tc-logo-cell { width: 160px; height: 96px; }
  .tc-logo-cell img { max-height: 60px; }
}
@media (prefers-reduced-motion: reduce) {
  .tc-scroll-left, .tc-scroll-right { animation: none; }
  .tc-logo-track { flex-wrap: wrap; width: 100%; justify-content: center; max-width: 1100px; margin: 0 auto; }
}


/* =========================================================
   FAQ page — brand UI
   ========================================================= */
.dky-faq-hero {
  padding: 48px 0 20px;
  background: #fff;
}
.dky-breadcrumb-center {
  justify-content: center;
  margin-bottom: 16px;
}
.dky-faq-title {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 700;
  color: #050D20;
  margin: 12px 0 14px;
  line-height: 1.15;
}
.dky-faq-lead {
  font-size: 17px;
  line-height: 1.7;
  color: #717383;
  max-width: 560px;
  margin: 0 auto;
}

.dky-faq-section {
  padding: 40px 0 72px;
  background: #F7F9FC;
}
.dky-faq-nav {
  background: #fff;
  border: 1px solid #EAF0FF;
  border-radius: 18px;
  padding: 24px 20px;
  position: sticky;
  top: 100px;
}
.dky-faq-nav h4 {
  font-size: 16px;
  font-weight: 700;
  color: #050D20;
  margin: 0 0 14px;
}
.dky-faq-nav ul {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}
.dky-faq-nav li { margin: 0; }
.dky-faq-nav a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #475569;
  text-decoration: none;
  transition: all 0.2s ease;
}
.dky-faq-nav a:hover,
.dky-faq-nav a.is-active {
  background: rgba(15, 98, 254, 0.08);
  color: #0F62FE;
}
.dky-faq-nav-cta {
  border-top: 1px solid #EAF0FF;
  padding-top: 18px;
}
.dky-faq-nav-cta p {
  font-size: 14px;
  color: #717383;
  margin: 0 0 12px;
}
.dky-faq-nav-cta .rts-btn {
  width: 100%;
  text-align: center;
}

.dky-faq-group {
  margin-bottom: 36px;
}
.dky-faq-group-title {
  font-size: 22px;
  font-weight: 700;
  color: #050D20;
  margin: 0 0 16px;
}
.dky-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dky-faq-item {
  border: 1px solid #EAF0FF !important;
  border-radius: 16px !important;
  background: #fff !important;
  overflow: hidden;
  margin: 0 !important;
}
.dky-faq-item .accordion-button {
  background: #fff !important;
  color: #050D20 !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  padding: 18px 52px 18px 22px !important;
  box-shadow: none !important;
  border: 0 !important;
  border-radius: 16px !important;
}
.dky-faq-item .accordion-button:not(.collapsed) {
  color: #0F62FE !important;
  background: #FAFBFF !important;
}
.dky-faq-item .accordion-button::after {
  position: absolute;
  right: 20px;
  width: 1.1rem;
  height: 1.1rem;
  background-size: 1.1rem;
  opacity: 0.7;
}
.dky-faq-item .accordion-body {
  padding: 0 22px 20px !important;
  color: #64748b !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
  background: #fff;
}
.dky-faq-item .accordion-button:focus {
  box-shadow: none !important;
  border-color: transparent !important;
}

@media (max-width: 991px) {
  .dky-faq-nav {
    position: static;
    margin-bottom: 8px;
  }
  .dky-faq-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }
  .dky-faq-nav a {
    padding: 8px 12px;
    background: #F5F8FF;
  }
  .dky-faq-nav-cta { display: none; }
}


/* =========================================================
   FAQ page — brand UI
   ========================================================= */
.dky-faq-hero {
  padding: 48px 0 20px;
  background: #fff;
}
.dky-breadcrumb-center {
  justify-content: center;
  margin-bottom: 16px;
}
.dky-faq-title {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 700;
  color: #050D20;
  margin: 12px 0 14px;
  line-height: 1.15;
}
.dky-faq-lead {
  font-size: 17px;
  line-height: 1.7;
  color: #717383;
  max-width: 560px;
  margin: 0 auto;
}

.dky-faq-section {
  padding: 40px 0 72px;
  background: #F7F9FC;
}
.dky-faq-nav {
  background: #fff;
  border: 1px solid #EAF0FF;
  border-radius: 18px;
  padding: 24px 20px;
  position: sticky;
  top: 100px;
}
.dky-faq-nav h4 {
  font-size: 16px;
  font-weight: 700;
  color: #050D20;
  margin: 0 0 14px;
}
.dky-faq-nav ul {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}
.dky-faq-nav li { margin: 0; }
.dky-faq-nav a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #475569;
  text-decoration: none;
  transition: all 0.2s ease;
}
.dky-faq-nav a:hover,
.dky-faq-nav a.is-active {
  background: rgba(15, 98, 254, 0.08);
  color: #0F62FE;
}
.dky-faq-nav-cta {
  border-top: 1px solid #EAF0FF;
  padding-top: 18px;
}
.dky-faq-nav-cta p {
  font-size: 14px;
  color: #717383;
  margin: 0 0 12px;
}
.dky-faq-nav-cta .rts-btn {
  width: 100%;
  text-align: center;
}

.dky-faq-group {
  margin-bottom: 36px;
}
.dky-faq-group-title {
  font-size: 22px;
  font-weight: 700;
  color: #050D20;
  margin: 0 0 16px;
}
.dky-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dky-faq-item {
  border: 1px solid #EAF0FF !important;
  border-radius: 16px !important;
  background: #fff !important;
  overflow: hidden;
  margin: 0 !important;
}
.dky-faq-item .accordion-button {
  background: #fff !important;
  color: #050D20 !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  padding: 18px 52px 18px 22px !important;
  box-shadow: none !important;
  border: 0 !important;
  border-radius: 16px !important;
}
.dky-faq-item .accordion-button:not(.collapsed) {
  color: #0F62FE !important;
  background: #FAFBFF !important;
}
.dky-faq-item .accordion-button::after {
  position: absolute;
  right: 20px;
  width: 1.1rem;
  height: 1.1rem;
  background-size: 1.1rem;
  opacity: 0.7;
}
.dky-faq-item .accordion-body {
  padding: 0 22px 20px !important;
  color: #64748b !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
  background: #fff;
}
.dky-faq-item .accordion-button:focus {
  box-shadow: none !important;
  border-color: transparent !important;
}

@media (max-width: 991px) {
  .dky-faq-nav {
    position: static;
    margin-bottom: 8px;
  }
  .dky-faq-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }
  .dky-faq-nav a {
    padding: 8px 12px;
    background: #F5F8FF;
  }
  .dky-faq-nav-cta { display: none; }
}


/* =========================================================
   Contact page — brand UI
   ========================================================= */
.dky-contact-hero {
  padding: 48px 0 28px;
  background: #fff;
}
.dky-contact-title {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 700;
  color: #050D20;
  margin: 12px 0 14px;
  line-height: 1.15;
}
.dky-contact-lead {
  font-size: 17px;
  line-height: 1.7;
  color: #717383;
  max-width: 560px;
  margin: 0 auto;
}

.dky-contact-section {
  padding: 20px 0 56px;
  background: #F7F9FC;
}
.dky-contact-channels {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.dky-contact-channel {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #EAF0FF;
  border-radius: 18px;
  padding: 22px 18px;
  transition: all 0.25s ease;
}
.dky-contact-channel:hover {
  border-color: #C9D7FF;
  box-shadow: 0 12px 28px rgba(15, 98, 254, 0.08);
}
.dky-contact-channel-soft {
  background: #FAFBFF;
}
.dky-contact-channel .ch-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(15, 98, 254, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dky-contact-channel .ch-icon i {
  color: #0F62FE;
  font-size: 18px;
  font-family: "Font Awesome 6 Pro", "Font Awesome 5 Pro", FontAwesome !important;
  font-weight: 900 !important;
}
.dky-contact-channel h3 {
  font-size: 18px;
  font-weight: 700;
  color: #050D20;
  margin: 0 0 6px;
}
.dky-contact-channel p {
  font-size: 14px;
  line-height: 1.6;
  color: #717383;
  margin: 0 0 8px;
}
.dky-contact-channel .ch-link {
  font-size: 14px;
  font-weight: 600;
  color: #0F62FE;
  text-decoration: none;
}
.dky-contact-channel .ch-link:hover { color: #050D20; }
.dky-contact-channel .ch-link i {
  font-size: 11px;
  margin-left: 4px;
}

.dky-contact-form-card {
  background: #fff;
  border: 1px solid #EAF0FF;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 12px 36px rgba(5, 13, 32, 0.04);
  height: 100%;
}
.dky-contact-form-head {
  margin-bottom: 24px;
}
.dky-contact-form-head h2 {
  font-size: 26px;
  font-weight: 700;
  color: #050D20;
  margin: 0 0 8px;
}
.dky-contact-form-head p {
  margin: 0;
  color: #717383;
  font-size: 15px;
  line-height: 1.6;
}
.dky-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 8px;
}
.dky-label span { color: #0F62FE; }
.dky-input {
  width: 100%;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 15px;
  color: #0b1220;
  background: #fff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.dky-input:focus {
  border-color: #0F62FE;
  box-shadow: 0 0 0 3px rgba(15, 98, 254, 0.12);
}
.dky-input::placeholder { color: #94a3b8; }
.dky-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2364748b' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.dky-textarea {
  resize: vertical;
  min-height: 130px;
}
.dky-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #64748b;
  cursor: pointer;
  margin: 4px 0 8px;
}
.dky-check input {
  margin-top: 3px;
  accent-color: #0F62FE;
}
.dky-contact-submit {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  padding: 14px 26px !important;
}
.dky-contact-submit i {
  font-size: 13px;
}
.dky-form-messages {
  display: none;
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
}
.dky-form-messages.success {
  display: block;
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}
.dky-form-messages.error {
  display: block;
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

.dky-contact-map-wrap {
  padding: 0 0 72px;
  background: #F7F9FC;
}
.dky-contact-map {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #EAF0FF;
  box-shadow: 0 12px 36px rgba(5, 13, 32, 0.06);
  height: 360px;
  background: #e2e8f0;
}
.dky-contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 991px) {
  .dky-contact-form-card {
    padding: 24px 18px;
  }
  .dky-contact-map {
    height: 280px;
  }
}


/* =========================================================
   Working Process page — brand UI
   ========================================================= */
.dky-process-hero {
  padding: 48px 0 28px;
  background: #fff;
}
.dky-process-title {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 700;
  color: #050D20;
  margin: 12px 0 14px;
  line-height: 1.15;
}
.dky-process-lead {
  font-size: 17px;
  line-height: 1.7;
  color: #717383;
  max-width: 580px;
  margin: 0 auto;
}

.dky-process-section {
  padding: 40px 0 56px;
  background: #F7F9FC;
}
.dky-process-section-title {
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 700;
  color: #050D20;
  margin: 12px 0 12px;
  line-height: 1.2;
  text-align: center;
}
.dky-process-section-lead {
  font-size: 16px;
  line-height: 1.7;
  color: #717383;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.dky-process-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 920px;
  margin: 0 auto;
}
.dky-process-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  align-items: stretch;
}
.dky-process-step-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.dky-process-num {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #0F62FE 0%, #0043CE 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(15, 98, 254, 0.28);
  flex-shrink: 0;
}
.dky-process-line {
  width: 2px;
  flex: 1;
  min-height: 24px;
  margin-top: 10px;
  background: linear-gradient(180deg, #C9D7FF 0%, #EAF0FF 100%);
  border-radius: 2px;
}
.dky-process-step-card {
  background: #fff;
  border: 1px solid #EAF0FF;
  border-radius: 20px;
  padding: 28px 26px;
  box-shadow: 0 10px 28px rgba(5, 13, 32, 0.04);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.dky-process-step-card:hover {
  border-color: #C9D7FF;
  box-shadow: 0 16px 36px rgba(15, 98, 254, 0.1);
  transform: translateY(-2px);
}
.dky-process-step-head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.dky-process-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(15, 98, 254, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dky-process-icon i {
  color: #0F62FE;
  font-size: 20px;
  font-family: "Font Awesome 6 Pro", "Font Awesome 5 Pro", FontAwesome !important;
  font-weight: 900 !important;
}
.dky-process-step-head h3 {
  font-size: 22px;
  font-weight: 700;
  color: #050D20;
  margin: 0 0 6px;
}
.dky-process-step-head p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #717383;
}
.dky-process-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
}
.dky-process-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: #334155;
  margin: 0;
}
.dky-process-points li i {
  color: #0F62FE;
  font-size: 12px;
  margin-top: 4px;
  flex-shrink: 0;
  font-family: "Font Awesome 6 Pro", "Font Awesome 5 Pro", FontAwesome !important;
  font-weight: 900 !important;
}

.dky-process-engage {
  padding: 56px 0 64px;
  background: #fff;
}
.dky-process-engage-card {
  height: 100%;
  background: #F7F9FC;
  border: 1px solid #EAF0FF;
  border-radius: 18px;
  padding: 26px 22px;
  transition: all 0.25s ease;
}
.dky-process-engage-card:hover {
  background: #fff;
  border-color: #C9D7FF;
  box-shadow: 0 14px 32px rgba(15, 98, 254, 0.08);
}
.dky-process-engage-card .eng-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(15, 98, 254, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.dky-process-engage-card .eng-icon i {
  color: #0F62FE;
  font-size: 18px;
  font-family: "Font Awesome 6 Pro", "Font Awesome 5 Pro", FontAwesome !important;
  font-weight: 900 !important;
}
.dky-process-engage-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #050D20;
  margin: 0 0 8px;
}
.dky-process-engage-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #717383;
}

.dky-process-faq-section {
  padding: 56px 0 72px;
  background: #F7F9FC;
}
.dky-process-faq-section .dky-process-section-title.text-start,
.dky-process-faq-section .dky-process-section-lead.text-start {
  text-align: left;
}
.dky-process-faq-section .dky-process-section-lead {
  margin-bottom: 18px;
}

@media (max-width: 767px) {
  .dky-process-step {
    grid-template-columns: 48px 1fr;
    gap: 12px;
  }
  .dky-process-num {
    width: 44px;
    height: 44px;
    font-size: 14px;
    border-radius: 12px;
  }
  .dky-process-step-card {
    padding: 20px 16px;
  }
  .dky-process-step-head {
    flex-direction: column;
    gap: 12px;
  }
  .dky-process-points {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   About page — brand UI redesign
   ========================================================= */
.dky-about-hero {
  padding: 40px 0 48px;
  background: #fff;
}
.dky-about-hero-title {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 700;
  color: #050D20;
  margin: 12px 0 16px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.dky-about-hero-lead {
  font-size: 17px;
  line-height: 1.7;
  color: #717383;
  max-width: 540px;
  margin: 0 0 24px;
}
.dky-about-hero-visual {
  position: relative;
  border-radius: 24px;
  overflow: visible;
}
.dky-about-hero-visual > img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  box-shadow: 0 24px 56px rgba(5, 13, 32, 0.12);
}
.dky-about-hero-chip {
  position: absolute;
  left: 16px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid #EAF0FF;
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 12px 28px rgba(5, 13, 32, 0.1);
  z-index: 2;
}
.dky-about-hero-chip-2 {
  left: auto;
  right: 16px;
  bottom: auto;
  top: 18px;
}
.dky-about-hero-chip .chip-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(15, 98, 254, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dky-about-hero-chip .chip-icon i {
  color: #0F62FE;
  font-size: 16px;
  font-family: "Font Awesome 6 Pro", "Font Awesome 5 Pro", FontAwesome !important;
  font-weight: 900 !important;
}
.dky-about-hero-chip strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #050D20;
  line-height: 1.2;
}
.dky-about-hero-chip span {
  display: block;
  font-size: 12px;
  color: #717383;
  margin-top: 2px;
}

.dky-about-stats {
  padding: 0 0 8px;
  margin-top: -8px;
}
.dky-about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  background: #0b1220;
  border-radius: 20px;
  padding: 28px 20px;
  box-shadow: 0 16px 40px rgba(5, 13, 32, 0.12);
}
.dky-about-stat {
  text-align: center;
  padding: 4px 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.dky-about-stat:last-child { border-right: 0; }
.dky-about-stat strong {
  display: block;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 6px;
}
.dky-about-stat span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
}

.dky-about-who {
  padding: 72px 0;
  background: #F7F9FC;
}
.dky-about-h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 700;
  color: #050D20;
  margin: 12px 0 14px;
  line-height: 1.2;
}
.dky-about-text {
  font-size: 16px;
  line-height: 1.7;
  color: #717383;
  margin: 0 0 20px;
  max-width: 560px;
}
.dky-about-who-media {
  position: relative;
  padding-bottom: 40px;
  padding-right: 40px;
}
.dky-about-who-media .main-img {
  width: 100%;
  border-radius: 20px;
  display: block;
  box-shadow: 0 16px 40px rgba(5, 13, 32, 0.1);
}
.dky-about-who-media .sub-img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
  max-width: 220px;
  border-radius: 16px;
  border: 4px solid #fff;
  box-shadow: 0 12px 28px rgba(5, 13, 32, 0.12);
  object-fit: cover;
  height: 160px;
}
.dky-about-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dky-about-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: #334155;
  margin: 0;
}
.dky-about-checklist li i {
  color: #0F62FE;
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 13px;
  font-family: "Font Awesome 6 Pro", "Font Awesome 5 Pro", FontAwesome !important;
  font-weight: 900 !important;
}

.dky-about-pillars {
  padding: 72px 0;
  background: #fff;
}
.dky-about-pillar-card {
  height: 100%;
  background: #F7F9FC;
  border: 1px solid #EAF0FF;
  border-radius: 20px;
  padding: 28px 24px;
  transition: all 0.25s ease;
}
.dky-about-pillar-card:hover {
  background: #fff;
  border-color: #C9D7FF;
  box-shadow: 0 16px 36px rgba(15, 98, 254, 0.08);
  transform: translateY(-2px);
}
.dky-about-pillar-card .pillar-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(15, 98, 254, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.dky-about-pillar-card .pillar-icon i {
  color: #0F62FE;
  font-size: 20px;
  font-family: "Font Awesome 6 Pro", "Font Awesome 5 Pro", FontAwesome !important;
  font-weight: 900 !important;
}
.dky-about-pillar-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #050D20;
  margin: 0 0 10px;
}
.dky-about-pillar-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: #717383;
}

.dky-about-why {
  padding: 72px 0;
  background: #F7F9FC;
}
.dky-about-why-card {
  height: 100%;
  background: #fff;
  border: 1px solid #EAF0FF;
  border-radius: 18px;
  padding: 24px 20px;
  transition: all 0.25s ease;
}
.dky-about-why-card:hover {
  border-color: #C9D7FF;
  box-shadow: 0 14px 32px rgba(15, 98, 254, 0.08);
}
.dky-about-why-card .why-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(15, 98, 254, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.dky-about-why-card .why-icon i {
  color: #0F62FE;
  font-size: 18px;
  font-family: "Font Awesome 6 Pro", "Font Awesome 5 Pro", FontAwesome !important;
  font-weight: 900 !important;
}
.dky-about-why-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #050D20;
  margin: 0 0 8px;
}
.dky-about-why-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #717383;
}

.dky-about-caps {
  padding: 72px 0;
  background: #fff;
}
.dky-about-caps-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;
}
.dky-about-cap-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #F7F9FC;
  border: 1px solid #EAF0FF;
  border-radius: 14px;
  padding: 16px 16px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.dky-about-cap-item:hover {
  background: #fff;
  border-color: #C9D7FF;
}
.dky-about-cap-item .cap-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(15, 98, 254, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dky-about-cap-item .cap-icon i {
  color: #0F62FE;
  font-size: 14px;
  font-family: "Font Awesome 6 Pro", "Font Awesome 5 Pro", FontAwesome !important;
  font-weight: 900 !important;
}
.dky-about-cap-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #334155;
  font-weight: 500;
}

.dky-about-lists {
  padding: 0 0 72px;
  background: #fff;
}
.dky-about-list-card {
  height: 100%;
  background: #F7F9FC;
  border: 1px solid #EAF0FF;
  border-radius: 20px;
  padding: 28px 24px;
}
.dky-about-list-card .list-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid #EAF0FF;
}
.dky-about-list-card .list-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(15, 98, 254, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dky-about-list-card .list-icon i {
  color: #0F62FE;
  font-size: 18px;
  font-family: "Font Awesome 6 Pro", "Font Awesome 5 Pro", FontAwesome !important;
  font-weight: 900 !important;
}
.dky-about-list-card .list-head h3 {
  font-size: 18px;
  font-weight: 700;
  color: #050D20;
  margin: 0 0 4px;
}
.dky-about-list-card .list-head p {
  margin: 0;
  font-size: 13px;
  color: #717383;
  line-height: 1.45;
}
.dky-about-list-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dky-about-list-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: #334155;
  margin: 0;
}
.dky-about-list-card ul li i {
  color: #0F62FE;
  margin-top: 3px;
  font-size: 12px;
  flex-shrink: 0;
  font-family: "Font Awesome 6 Pro", "Font Awesome 5 Pro", FontAwesome !important;
  font-weight: 900 !important;
}

.dky-about-loc {
  padding: 0 0 72px;
  background: #F7F9FC;
}
.dky-about-loc-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  background: #fff;
  border: 1px solid #EAF0FF;
  border-radius: 20px;
  padding: 22px;
}
.dky-about-loc-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 8px 12px;
}
.dky-about-loc-item .loc-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(15, 98, 254, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dky-about-loc-item .loc-icon i {
  color: #0F62FE;
  font-size: 16px;
  font-family: "Font Awesome 6 Pro", "Font Awesome 5 Pro", FontAwesome !important;
  font-weight: 900 !important;
}
.dky-about-loc-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: #050D20;
  margin: 0 0 4px;
}
.dky-about-loc-item p {
  margin: 0;
  font-size: 14px;
  color: #717383;
  line-height: 1.5;
}
.dky-about-loc-item a {
  color: #0F62FE;
  text-decoration: none;
  font-weight: 600;
}
.dky-about-loc-item a:hover { color: #050D20; }
.dky-about-loc-item .sep {
  margin: 0 6px;
  color: #cbd5e1;
}

.dky-about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

@media (max-width: 991px) {
  .dky-about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dky-about-stat {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 8px;
  }
  .dky-about-stat:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }
  .dky-about-stat:nth-last-child(-n+2) {
    border-bottom: 0;
  }
  .dky-about-caps-grid {
    grid-template-columns: 1fr;
  }
  .dky-about-loc-inner {
    grid-template-columns: 1fr;
  }
  .dky-about-hero-chip-2 {
    display: none;
  }
  .dky-about-who-media {
    padding-right: 24px;
    padding-bottom: 32px;
  }
}

@media (max-width: 575px) {
  .dky-about-stats-grid {
    grid-template-columns: 1fr 1fr;
    padding: 18px 12px;
  }
  .dky-about-hero {
    padding: 28px 0 36px;
  }
}

