/* =========================================================
   NAVBAR WRAPPER
   IMPORTANT:
   DO NOT TRANSFORM #navbar
   ========================================================= */

#navbar {
  position: static;
  width: 0;
  height: 0;
  padding: 0;
  margin: 0;
  z-index: 10000;
}

.nav-action-btn {
  text-decoration: none;
}

/* =========================================================
   MAIN NAVBAR
   ========================================================= */

.deegenex-navbar {
  position: fixed;
  top: 12px;
  left: 20px;
  right: 20px;
  width: auto;
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10000;
  transform: translateY(0);
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  border: 1px solid rgba(255, 255, 255, 0);
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.4s ease,
    backdrop-filter 0.4s ease,
    -webkit-backdrop-filter 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
  will-change: transform;
}

/* =========================================================
   HIDE NAVBAR WHEN SCROLLING DOWN
   ========================================================= */

#navbar.nav-hidden .deegenex-navbar {
  transform: translateY(-140%);
}

/* =========================================================
   GLASS NAVBAR WHEN PAGE IS SCROLLED
   ========================================================= */

#navbar.nav-scrolled .deegenex-navbar {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.3);
}

/* =========================================================
   LEFT
   ========================================================= */

.nav-left {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.nav-burger {
  position: relative;
  width: 42px;
  height: 42px;
  min-width: 42px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.nav-burger .bar {
  display: block;
  width: 16px;
  height: 2px;
  background: #0b1f38;
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    width 0.3s ease,
    background 0.3s ease;
}

.nav-burger:hover {
  transform: scale(1.08);
  background: #f5faff;
  box-shadow:
    0 4px 14px rgba(0, 110, 255, 0.18),
    0 0 0 3px rgba(0, 110, 255, 0.08);
}

.nav-burger:hover .bar {
  background: #1677ff;
}

.nav-burger:hover .bar:nth-child(1) {
  transform: translateX(2px);
}

.nav-burger:hover .bar:nth-child(2) {
  width: 20px;
}

.nav-burger:hover .bar:nth-child(3) {
  transform: translateX(-2px);
}

.nav-brand {
  color: #0051ff;
  font-size: 1.8rem;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.nav-brand span {
  color: #01003d;
}

/* =========================================================
   CENTER
   ========================================================= */

.nav-center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-width: 0;
}

.nav-pill-container {
  padding: 10px 38px;
  background: rgb(255, 255, 255);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 50px;
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  position: relative;
  color: #0a2540;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  background: #1000c0;
  border-radius: 10px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.nav-links a:hover {
  color: #1000c0;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

/* =========================================================
   RIGHT
   ========================================================= */

.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

@property --neon-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.nav-action-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50px;
  background: #111417;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  isolation: isolate;
  overflow: visible;
  --neon-angle: 0deg;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.nav-action-btn::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50px;
  padding: 2px;
  background: conic-gradient(
    from var(--neon-angle),
    transparent 0deg,
    transparent 325deg,
    #006eff 338deg,
    #00eaff 348deg,
    #006eff 355deg,
    transparent 360deg
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  transition: opacity 0.25s ease;
}

.nav-action-btn::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50px;
  padding: 3px;
  background: conic-gradient(
    from var(--neon-angle),
    transparent 0deg,
    transparent 325deg,
    rgba(0, 110, 255, 0.15) 338deg,
    rgba(0, 234, 255, 0.8) 348deg,
    rgba(0, 110, 255, 0.15) 355deg,
    transparent 360deg
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  filter: blur(5px);
  opacity: 0;
  pointer-events: none;
  z-index: -2;
  transition: opacity 0.25s ease;
}

.nav-action-btn:hover {
  --neon-angle: 360deg;
  transform: translateY(-1px);
  box-shadow:
    0 0 8px rgba(0, 180, 255, 0.15),
    0 0 18px rgba(0, 180, 255, 0.08);
}

.nav-action-btn:hover::before {
  opacity: 1;
  animation: neonBorder 2.2s linear infinite;
}

.nav-action-btn:hover::after {
  opacity: 0.55;
  animation: neonBorder 2.2s linear infinite;
}

@keyframes neonBorder {
  from {
    --neon-angle: 0deg;
  }

  to {
    --neon-angle: 360deg;
  }
}

.nav-action-btn .action-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  transition:
    color 0.25s ease,
    filter 0.25s ease;
}

.nav-action-btn .action-text {
  position: relative;
  z-index: 2;
}

.nav-action-btn:hover .action-icon {
  color: #00eaff;
  filter: drop-shadow(0 0 4px rgba(0, 234, 255, 0.9));
}

/* =========================================================
   SIDEBAR OVERLAY
   ========================================================= */

.sidebar-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100dvh;
  background: rgba(8, 18, 35, 0.52);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 9998;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* =========================================================
   SIDEBAR
   ========================================================= */

.mobile-sidebar {
  position: fixed;
  top: 52%;
  left: 50%;
  width: 980px;
  max-width: 94vw;
  height: 620px;
  max-height: 88vh;
  margin: 0;
  padding: 0;
  background: #eaf0f8;
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.4);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.94);
  transition:
    transform 0.3s ease,
    opacity 0.25s ease,
    visibility 0.25s ease;
  z-index: 9999;
  overflow: hidden;
}

.mobile-sidebar.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

/* =========================================================
   MODAL INNER
   ========================================================= */

.modal-inner-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

/* =========================================================
   LEFT COLUMN
   ========================================================= */

.modal-left-column {
  width: 290px;
  min-width: 290px;
  height: 100%;
  padding: 24px 20px;
  background: #eaf0f8;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.panel-header {
  margin-bottom: 16px;
  flex-shrink: 0;
}

.circle-close-btn {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #1e293b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.07);
  transition: transform 0.2s ease;
}

.circle-close-btn:hover {
  transform: scale(1.06);
}

/* =========================================================
   MENU
   ========================================================= */

.infosys-menu-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-height: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-nav-item {
  position: relative;
  border-radius: 8px;
  flex-shrink: 0;
}

.menu-nav-item a.menu-link,
.menu-nav-item button.slide-trigger {
  width: 100%;
  display: block;
  padding: 10px 16px;
  border: 0;
  background: transparent;
  color: #273b54;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 500;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  border-radius: 8px;
}

.menu-nav-item .card-bar {
  display: none;
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 22px;
  border-radius: 0 4px 4px 0;
  background: #2a6df5;
  transform: translateY(-50%);
}

.menu-nav-item.active {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.menu-nav-item.active .card-bar {
  display: block;
}

.menu-nav-item.active a,
.menu-nav-item.active button {
  color: #0b1f38;
  font-weight: 600;
}

.menu-divider {
  height: 1px;
  min-height: 1px;
  margin: 8px 0;
  background: #d8e3f0;
  flex-shrink: 0;
}

/* =========================================================
   SOCIAL
   ========================================================= */

.infosys-socials {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
  padding-top: 16px;
  flex-shrink: 0;
}

.infosys-socials a {
  color: #3b516e;
  transition:
    transform 0.2s ease,
    color 0.2s ease;
}

.infosys-socials a:hover {
  color: #1a62d6;
  transform: translateY(-2px);
}

.infosys-socials svg {
  width: 18px;
  height: 18px;
}

/* =========================================================
   RIGHT COLUMN
   ========================================================= */

.modal-right-column {
  flex: 1 1 auto;
  width: 0;
  height: 100%;
  min-width: 0;
  min-height: 0;
  padding: 26px;
  background: #f7faff;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.modal-right-column::-webkit-scrollbar {
  width: 6px;
}

.modal-right-column::-webkit-scrollbar-track {
  background: transparent;
}

.modal-right-column::-webkit-scrollbar-thumb {
  background: rgba(80, 100, 120, 0.35);
  border-radius: 20px;
}

/* =========================================================
   DETAIL BOXES
   ========================================================= */

.subpage-detail-box {
  display: none !important;
  width: 100%;
}

.subpage-detail-box.active {
  display: block !important;
  animation: fadeIn 0.2s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.subpage-header-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.subpage-header-row p{text-indent: 1rem; font-size: .8rem; color: #556982;
  font-size: 0.8rem;}
.services-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid #0b267c;
  border-radius: 50px;
  color: #0b267c;
  background: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.services-pill:hover {
  background: #0b267c;
  color: #fff;
  transform: translateY(-2px);
}

.services-pill i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.services-pill:hover i {
  transform: translateX(3px);
}
.detail-title {
  margin: 0;
  color: #0b1f38;
  font-size: 1.4rem;
  font-weight: 700;
}
.detail-title a{text-decoration: none; color: rgb(0, 0, 84);}

/* =========================================================
   HOME
   ========================================================= */

.home-content-card {
  display: grid;
  grid-template-columns: 45% 55%;
  width: 100%;
  min-height: 380px;
  overflow: hidden;
  border: 1px solid #e1ebf7;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 35, 60, 0.06);
}

.home-image {
  width: 100%;
  height: 100%;
  min-height: 380px;
  overflow: hidden;
}

.home-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
}

.home-label {
  display: inline-block;
  margin-bottom: 14px;
  color: #1769e8;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.2px;
}

.home-content h4 {
  margin: 0 0 14px;
  color: #0b1f38;
  font-size: 1.8rem;
  line-height: 1.15;
  font-weight: 700;
}

.home-content p {
  margin: 0 0 24px;
  color: #556982;
  font-size: 0.95rem;
  line-height: 1.6;
}

.home-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 10px 20px;
  border-radius: 50px;
  background: #111417;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.home-cta:hover {
  transform: translateY(-2px);
  background: #1769e8;
}

.home-info-card {
  width: 100%;
  margin-top: 16px;
  padding: 28px 30px;
  border: 1px solid #e1ebf7;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(15, 35, 60, 0.05);
}

.home-info-content {
  width: 100%;
}

.home-info-content h4 {
  margin: 0 0 10px;
  color: #0b1f38;
  font-size: 1.45rem;
  line-height: 1.25;
  font-weight: 700;
}

.home-info-content > p {
  max-width: 760px;
  margin: 0 0 22px;
  color: #556982;
  font-size: 0.9rem;
  line-height: 1.55;
}

.home-keypoints {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.home-keypoint {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 14px;
  border-radius: 12px;
  background: #f7faff;
  border: 1px solid #e8eff8;
}

.keypoint-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ebf3ff;
  color: #1769e8;
  font-size: 0.85rem;
  font-weight: 700;
}

.home-keypoint h5 {
  margin: 0 0 3px;
  color: #0f243d;
  font-size: 0.88rem;
  font-weight: 700;
}

.home-keypoint p {
  margin: 0;
  color: #61748b;
  font-size: 0.76rem;
  line-height: 1.4;
}

/* =========================================================
   ABOUT
   ========================================================= */

.about-content-card {
  display: grid;
  grid-template-columns: 42% 58%;
  width: 100%;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid #dfe8f3;
  border-radius: 22px;
  background: #fff;
  box-sizing: border-box;
}

.about-image-section {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: #eaf3ff;
}

.about-image-section img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  object-fit: cover;
}

.about-image-overlay {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 14px;
  background: rgba(10, 31, 56, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
}

.about-image-overlay span {
  display: block;
  margin-bottom: 5px;
  color: #63a2ff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.about-image-overlay strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.25;
  font-weight: 700;
}

.about-info-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 32px;
  box-sizing: border-box;
}

.about-label {
  display: inline-block;
  margin-bottom: 10px;
  color: #176ff2;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.about-info-section h4 {
  margin: 0 0 14px;
  color: #0b1f38;
  font-size: 1.65rem;
  line-height: 1.12;
  font-weight: 750;
}

.about-info-section > p {
  max-width: 520px;
  margin: 0;
  color: #536b87;
  font-size: 0.86rem;
  line-height: 1.55;
}

.about-keypoints {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.about-keypoint {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  min-height: 72px;
  box-sizing: border-box;
  border: 1px solid #e1ebf7;
  border-radius: 12px;
  background: #f8fbff;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.about-keypoint:hover {
  transform: translateY(-2px);
  border-color: #bcd7ff;
  box-shadow: 0 7px 18px rgba(22, 111, 242, 0.08);
}

.about-key-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  min-width: 27px;
  height: 27px;
  border-radius: 8px;
  background: #e9f2ff;
  color: #176ff2;
  font-size: 0.62rem;
  font-weight: 700;
}

.about-keypoint h5 {
  margin: 1px 0 3px;
  color: #102842;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.2;
}

.about-keypoint p {
  margin: 0;
  color: #60758e;
  font-size: 0.68rem;
  line-height: 1.35;
}

.about-info-card {
  width: 100%;
  margin-top: 16px;
  padding: 24px 28px;
  border: 1px solid #e1ebf7;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(15, 35, 60, 0.05);
}

.about-info-card h4 {
  margin: 0 0 8px;
  color: #0b1f38;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 15px;
}

.about-info-card p {
  max-width: 850px;
  margin: 0;
  color: #556982;
  font-size: 0.85rem;
  line-height: 1.55;
}

/* =========================================================
   PREMIUM PRODUCT SHOWCASE
   ========================================================= */

.product-showcase-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.product-showcase-card {
  position: relative;
  display: block;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  border: 1px solid rgba(205, 222, 242, 0.9);
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0%, rgba(30, 111, 242, 0.045), transparent 35%),
    linear-gradient(135deg, #ffffff 0%, #fbfdff 100%);
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  box-shadow:
    0 4px 18px rgba(24, 66, 108, 0.035),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.product-showcase-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #1c73f2,
    #5fa5ff,
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-showcase-card:hover {
  transform: translateY(-3px);
  border-color: rgba(91, 157, 235, 0.55);
  box-shadow:
    0 16px 35px rgba(22, 70, 118, 0.1),
    0 3px 8px rgba(22, 70, 118, 0.04);
}

.product-showcase-card:hover::before {
  opacity: 1;
}

.product-showcase-top {
  display: flex;
  align-items: center;
  gap: 17px;
}

.product-logo-box {
  position: relative;
  width: 76px;
  height: 76px;
  min-width: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dce9f8;
  border-radius: 18px;
  background: linear-gradient(145deg, #f8fbff, #edf5ff);
  overflow: hidden;
  box-shadow:
    0 5px 14px rgba(36, 92, 145, 0.06),
    inset 0 1px 1px rgba(255, 255, 255, 0.9);
}

.product-logo-box::after {
  content: "";
  position: absolute;
  width: 38px;
  height: 38px;
  top: -20px;
  right: -20px;
  border-radius: 50%;
  background: rgba(39, 125, 255, 0.1);
}

.product-logo-box img {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  object-fit: contain;
  display: block;
}

.product-heading {
  flex: 1;
  min-width: 0;
}

.product-category {
  display: inline-flex;
  align-items: center;
  margin-bottom: 5px;
  color: #2477ed;
  font-size: 0.57rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 1.25px;
}

.product-category::before {
  content: "";
  width: 5px;
  height: 5px;
  margin-right: 6px;
  border-radius: 50%;
  background: #2477ed;
  box-shadow: 0 0 7px rgba(36, 119, 237, 0.45);
}

.product-heading h4 {
  margin: 0 0 5px;
  color: #0b213b;
  font-size: 1.3rem;
  line-height: 1.15;
  font-weight: 750;
  letter-spacing: -0.3px;
}

.product-heading p {
  max-width: 720px;
  margin: 0;
  color: #60758e;
  font-size: 0.76rem;
  line-height: 1.48;
}

.product-showcase-bottom {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr auto;
  align-items: center;
  gap: 20px;
  margin-top: 17px;
  padding-top: 15px;
  border-top: 1px solid #e8eef6;
}

.product-feature-block {
  min-width: 0;
}

.product-block-label {
  display: block;
  margin-bottom: 8px;
  color: #91a0b1;
  font-size: 0.55rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 1.15px;
}

.product-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
}

.product-feature-list span {
  position: relative;
  color: #344e6a;
  font-size: 0.65rem;
  line-height: 1.3;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.product-feature-list span::first-letter {
  color: #1671f2;
}

.product-showcase-card:hover .product-feature-list span {
  color: #213f5d;
}

.product-use-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.product-use-list span {
  display: inline-flex;
  align-items: center;
  min-height: 23px;
  padding: 4px 8px;
  border: 1px solid #e1ebf7;
  border-radius: 7px;
  background: #f7faff;
  color: #526b85;
  font-size: 0.59rem;
  line-height: 1.2;
  box-sizing: border-box;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.product-showcase-card:hover .product-use-list span {
  background: #f1f7ff;
  border-color: #d4e5f8;
  color: #315777;
}

.product-arrow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  min-width: 38px;
  border: 1px solid #dbe7f4;
  border-radius: 50%;
  background: #0c2948;
  color: #ffffff;
  font-size: 1.05rem;
  line-height: 1;
  box-shadow: 0 5px 12px rgba(11, 42, 73, 0.12);
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.product-showcase-card:hover .product-arrow {
  transform: translateX(4px);
  background: #176ff2;
  border-color: #176ff2;
  box-shadow: 0 7px 17px rgba(23, 111, 242, 0.25);
}

/* =========================================================
   WORKS
   ========================================================= */

.works-showcase-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}
.work-visual {
  position: relative;
  overflow: hidden;
}

.work-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.work-visual-marketing img {
  transition: transform 0.5s ease;
}

.work-showcase-card:hover .work-visual-marketing img {
  transform: scale(1.04);
}
.work-showcase-card {
  position: relative;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  min-height: 155px;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  border: 1px solid #dce8f5;
  border-radius: 18px;
  background: #ffffff;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(24, 67, 108, 0.035);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.work-showcase-card:hover {
  transform: translateY(-3px);
  border-color: #bfd8f5;
  box-shadow:
    0 14px 30px rgba(24, 67, 108, 0.09),
    0 3px 8px rgba(24, 67, 108, 0.04);
}

.work-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 155px;
  overflow: hidden;
  background: linear-gradient(145deg, #edf5ff 0%, #e6f0fc 100%);
}

.work-visual::before {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  top: -65px;
  right: -50px;
  border-radius: 50%;
  background: rgba(37, 116, 239, 0.08);
}

.work-visual::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  bottom: -55px;
  left: -45px;
  border-radius: 50%;
  background: rgba(37, 116, 239, 0.06);
}

.work-visual-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.work-visual-label {
  margin-bottom: 9px;
  color: #4384d9;
  font-size: 0.48rem;
  font-weight: 800;
  letter-spacing: 1.2px;
}

.work-visual-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border: 1px solid rgba(50, 121, 224, 0.18);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 7px 20px rgba(40, 96, 160, 0.08);
}

.work-visual-icon svg {
  width: 25px;
  height: 25px;
  color: #1d70ed;
}

.work-visual-caption {
  margin-top: 8px;
  color: #69809a;
  font-size: 0.56rem;
  font-weight: 600;
}

.browser-window {
  position: relative;
  z-index: 2;
  width: 128px;
  height: 91px;
  overflow: hidden;
  border: 1px solid #d4e3f4;
  border-radius: 9px;
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(30, 76, 126, 0.11);
  transform: perspective(600px) rotateY(-5deg);
  transition: transform 0.3s ease;
}

.work-showcase-card:hover .browser-window {
  transform: perspective(600px) rotateY(0deg) translateY(-2px);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 18px;
  padding: 0 7px;
  border-bottom: 1px solid #e7eef7;
  background: #f8fbff;
}

.browser-bar span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #b8c9dc;
}

.browser-content {
  padding: 10px;
}

.browser-line {
  width: 75%;
  height: 5px;
  margin-bottom: 5px;
  border-radius: 4px;
  background: #dce9f7;
}

.browser-line.large {
  width: 88%;
  height: 7px;
  background: #9dc2ee;
}

.browser-line.short {
  width: 50%;
}

.browser-boxes {
  display: flex;
  gap: 5px;
  margin-top: 9px;
}

.browser-boxes span {
  flex: 1;
  height: 27px;
  border-radius: 5px;
  background: #edf4fc;
  border: 1px solid #e0ebf7;
}

.marketing-chart {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  gap: 7px;
  width: 110px;
  height: 75px;
  padding: 10px;
  box-sizing: border-box;
  border-bottom: 1px solid #cbddef;
  border-left: 1px solid #cbddef;
}

.chart-bar {
  width: 15px;
  border-radius: 4px 4px 1px 1px;
  background: linear-gradient(to top, #8db9ec, #2778ec);
}

.bar-one {
  height: 28%;
}

.bar-two {
  height: 48%;
}

.bar-three {
  height: 66%;
}

.bar-four {
  height: 88%;
}

.chart-line {
  position: absolute;
  left: 18px;
  bottom: 40px;
  width: 74px;
  height: 32px;
  border-top: 2px solid #1d70ed;
  border-radius: 50%;
  transform: rotate(-16deg);
}

.marketing-label {
  position: absolute;
  right: 13px;
  top: 15px;
  color: #4182d6;
  font-size: 0.47rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.work-showcase-content {
  min-width: 0;
  padding: 17px 18px 15px;
}

.work-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.work-category {
  color: #347fe3;
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 1.05px;
}

.work-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  min-width: 27px;
  border: 1px solid #dce8f5;
  border-radius: 50%;
  color: #246fd5;
  font-size: 0.85rem;
  background: #f7faff;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.work-showcase-card:hover .work-arrow {
  color: #ffffff;
  background: #176ff2;
  border-color: #176ff2;
  transform: translate(2px, -2px);
}

.work-showcase-content h4 {
  margin: 2px 0 10px;
  color: #0d2947;
  font-size: 1.02rem;
  line-height: 1.2;
  font-weight: 750;
}

.work-showcase-content > p {
  max-width: 680px;
  margin: 0;
  color: #60758d;
  font-size: 0.66rem;
  line-height: 1.45;
}

.work-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 11px;
  margin-top: 9px;
  margin-bottom: 5px;
}

.work-highlights span {
  color: #48627d;
  font-size: 0.55rem;
  font-weight: 600;
  white-space: nowrap;
}

.work-highlights span::first-letter {
  color: #1d73ed;
}

.work-view-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  color: #176ff2;
  font-size: 0.59rem;
  font-weight: 700;
}

.work-view-link span {
  transition: transform 0.2s ease;
}

.work-showcase-card:hover .work-view-link span {
  transform: translateX(4px);
}

/* =========================================================
   CARDS
   ========================================================= */

.detail-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
}

.subpage-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border: 1px solid #e1ebf7;
  border-radius: 14px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  min-height: 88px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
  height: auto;
  
}

.subpage-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  border-color: #c7dcf7;
}

.card-icon-img {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 10px;
  background: #ebf3ff;
  color: #1a62d6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-icon-img svg {
  width: 18px;
  height: 18px;
}

.card-info {
  flex: 1;
  min-width: 0;
}

.card-info h4 {
  margin: 0 0 4px;
  color: #0f243d;
  font-size: 0.92rem;
  font-weight: 600;
}

.card-info p {
  margin: 0;
  color: #556982;
  font-size: 0.8rem;
  line-height: 1.35;
}
.bts {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  margin-top: 1rem;
  padding: 8px 18px;

  color: #000;
  background: #fff;

  font-size: .9rem;
  font-weight: 500;
  text-decoration: none;

  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 50px;

  transition: all 0.3s ease;
  cursor: pointer;
}
.header-buttons {
  position: relative;
  width: 100%;
  min-height: 45px;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* Left arrow */
.header-buttons .mobile-back-btn {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* Center title */
.header-buttons .detail-title {
  margin: 0;
  text-align: center;
}

/* Right close button */
.header-buttons .sidebar-close {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.bts:hover {
  color: #fff;
  background: #071d68;
  border-color: #071d68;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(7, 29, 104, 0.2);
}
.hero-preview-card {
  grid-column: span 2;
  padding: 22px;
}

.hero-preview-card h4 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.hero-preview-card p {
  font-size: 0.92rem;
  line-height: 1.5;
}

.service-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  width: 100%;
}

.service-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 14px;
  gap: 12px;
  border: 1px solid #e1ebf7;
  border-radius: 16px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  box-sizing: border-box;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: #b9d5ff;
  box-shadow: 0 10px 25px rgba(20, 70, 130, 0.12);
}

.service-image {
  width: 88%;
  height: 250px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
  background: #edf4ff;
}

.service-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.04);
}

.service-card .card-info {
  width: 100%;
  padding: 0 4px 2px;
  box-sizing: border-box;
}

.service-card .card-info h4 {
  margin: 0 0 6px;
  color: #0f243d;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.25;
}

.service-card .card-info p {
  margin: 0;
  color: #556982;
  font-size: 0.8rem;
  line-height: 1.45;
  text-indent: 1rem;
}

/* =========================================================
   MOBILE BUTTONS
   ========================================================= */

.desktop-hide,
.mobile-back-btn {
  display: none !important;
}

/* =========================================================
   FOCUS
   ========================================================= */

.nav-burger:focus-visible,
.nav-action-btn:focus-visible,
.circle-close-btn:focus-visible,
.menu-link:focus-visible,
.slide-trigger:focus-visible,
.subpage-card:focus-visible,
.nav-links a:focus-visible,
.infosys-socials a:focus-visible {
  outline: 2px solid #2a6df5;
  outline-offset: 2px;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {
  .product-showcase-bottom {
    grid-template-columns: 1fr 1fr;
  }

  .product-arrow {
    display: none;
  }

  .work-showcase-card {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .work-visual {
    min-height: 145px;
  }

  .work-showcase-content {
    padding: 15px;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {
  #navbar {
    position: static;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    z-index: 10000;
  }

  .deegenex-navbar {
    position: fixed;
    top: 8px;
    left: 8px;
    right: 8px;
    width: auto;
    max-width: none;
    margin: 0;
    padding: 8px 10px;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-center {
    display: none;
  }

  .action-text {
    display: none;
  }

  .nav-left {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
  }

  .nav-brand {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    font-size: 1.25rem;
    white-space: nowrap;
  }

  .nav-burger {
    width: 42px;
    height: 42px;
    min-width: 42px;
  }

  .nav-action-btn {
    width: 42px;
    height: 42px;
    min-width: 42px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  /* MOBILE OVERLAY */

  .sidebar-overlay {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    z-index: 10001;
  }

  /* MOBILE DRAWER */

  .mobile-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    max-width: 100vw;
    height: 100dvh;
    max-height: 100dvh;
    margin: 0;
    padding: 0;
    border-radius: 0;
    overflow: hidden;
    z-index: 10002;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(0.92);
    transform-origin: center center;
    transition:
      transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.3s ease,
      visibility 0.3s ease;
  }

  .mobile-sidebar.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: scale(1);
  }

  /* DRAWER CONTENT */

  .modal-inner-wrapper {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  /* LEFT MENU */

  .modal-left-column {
    position: relative;
    width: 100%;
    min-width: 100%;
    height: 100%;
    padding: 50px 20px 24px;
    background: #eaf0f8;
    border-right: 0;
    display: flex;
    flex-direction: column;
    transform: scale(1);
    opacity: 1;
    transition:
      transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.3s ease;
  }

  .modal-left-column.zoom-out {
    transform: scale(0.88);
    opacity: 0;
    pointer-events: none;
  }

  /* CLOSE BUTTON */

  .panel-header {
    margin-bottom: 20px;
  }

  .circle-close-btn {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background: #fff;
    color: #172b45;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  }

  /* LEFT MENU ITEMS */

  .infosys-menu-list {
    gap: 6px;
  }

  .menu-nav-item {
    width: 100%;
  }

  .menu-nav-item a.menu-link,
  .menu-nav-item button.slide-trigger {
    width: 100%;
    padding: 13px 16px;
    font-size: 1.05rem;
  }

  /* SOCIAL ICONS */

  .infosys-socials {
    margin-top: auto;
    padding-top: 20px;
  }

  /* RIGHT CONTENT PANEL */

  .modal-right-column {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 48px 20px 30px;
    background: #f7faff;
    overflow-y: auto;
    overflow-x: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%) scale(0.88);
    transform-origin: center center;
    transition:
      transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.3s ease;
    z-index: 20;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .modal-right-column::-webkit-scrollbar {
    display: none;
  }

  .modal-right-column.mobile-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0) scale(1);
  }

  /* SUBPAGE HEADER */

  .subpage-header-row {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    margin-bottom: 20px;
  }

  .subpage-header-row .detail-title {
    flex: 1;
    margin: 0;
    font-size: 1.45rem;
    line-height: 1.2;
  }

  .mobile-back-btn {
    display: inline-flex !important;
    flex-shrink: 0;
  }

  /* DETAIL CARDS */

  .detail-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    width: 100%;
  }

  .subpage-card {
    width: 100%;
    min-width: 0;
    min-height: 82px;
    padding: 14px;
    border-radius: 14px;
  }

  .card-icon-img {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }

  .card-info {
    min-width: 0;
  }

  .card-info h4 {
    font-size: 0.92rem;
    line-height: 1.25;
  }

  .card-info p {
    font-size: 0.78rem;
    line-height: 1.35;
  }

  /* HIDE DESKTOP ELEMENTS */

  .desktop-hide {
    display: inline-flex !important;
  }

  /* ACTIVE PANEL */

  .subpage-detail-box {
    width: 100%;
  }

  .subpage-detail-box.active {
    display: block !important;
  }

  /* REDUCE HERO CARD SPAN */

  .hero-preview-card {
    grid-column: span 1;
  }

  /* PRODUCT MOBILE */

  .product-showcase-card {
    padding: 16px;
    border-radius: 17px;
  }

  .product-showcase-top {
    align-items: flex-start;
    gap: 13px;
  }

  .product-logo-box {
    width: 62px;
    height: 62px;
    min-width: 62px;
    border-radius: 15px;
  }

  .product-logo-box img {
    width: 47px;
    height: 47px;
  }

  .product-category {
    font-size: 0.52rem;
    letter-spacing: 1px;
  }

  .product-heading h4 {
    font-size: 1.05rem;
  }

  .product-heading p {
    font-size: 0.69rem;
    line-height: 1.4;
  }

  .product-showcase-bottom {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 14px;
    padding-top: 13px;
  }

  .product-feature-list {
    gap: 5px 10px;
  }

  .product-feature-list span {
    font-size: 0.62rem;
  }

  .product-use-list span {
    font-size: 0.58rem;
  }

  /* WORKS MOBILE */

  .works-showcase-list {
    gap: 12px;
  }

  .work-showcase-card {
    grid-template-columns: 1fr;
    min-height: 0;
    border-radius: 16px;
  }

  .work-visual {
    min-height: 105px;
  }

  .work-visual-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .work-visual-icon svg {
    width: 21px;
    height: 21px;
  }

  .browser-window {
    width: 110px;
    height: 75px;
  }

  .marketing-chart {
    width: 95px;
    height: 65px;
  }

  .work-showcase-content {
    padding: 14px;
  }

  .work-showcase-content h4 {
    font-size: 0.95rem;
  }

  .work-showcase-content > p {
    font-size: 0.63rem;
  }

  .work-highlights span {
    font-size: 0.54rem;
  }
}

@media (max-width: 768px) {
  .modal-left-column {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }

  .infosys-menu-list {
    flex: 0 0 auto !important;
    height: auto !important;
    min-height: 0 !important;
    margin-bottom: 0 !important;
  }

  .infosys-socials {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 16px !important;
    margin-top: 16px !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    position: static !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    flex: 0 0 auto !important;
    height: auto !important;
    min-height: 0 !important;
  }

  .infosys-socials a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .infosys-socials svg {
    width: 25px !important;
    height: 25px !important;
  }
}







