/* ==========================================================================
   SISGAIN — ERP page styles
   Palette (used directly, no :root):
     Black      #0B0E14
     Deep Navy  #0A1128
     Primary Blue #2954E5
     Blue Glow  #4C7CFF
     White      #FFFFFF
     Off-white  #F5F8FF
     Slate text #4A5568
   No global selectors (body/html/:root/*) per project rules — every rule
   below is scoped under a unique section class.
   ========================================================================== */

/* ----------------------------- Shared buttons ---------------------------- */
.sg-btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  border: 2px solid transparent;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .2px;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, color .25s ease, border-color .25s ease;
  margin: 6px 8px 6px 0;
}
.sg-btn:focus { outline: 3px solid #4C7CFF; outline-offset: 2px; }
.sg-btn--primary {
  background: linear-gradient(135deg, #2954E5, #1a3aa8);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(41,84,229,.35);
}
.sg-btn--primary:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(41,84,229,.45); }
.sg-btn--primary-inverse {
  background: #ffffff;
  color: #0A1128;
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
.sg-btn--primary-inverse:hover { transform: translateY(-3px); background: #eef2ff; }
.sg-btn--ghost {
  background: transparent;
  color: #0A1128;
  border-color: #0A1128;
}
.sg-btn--ghost:hover { background: #0A1128; color: #ffffff; transform: translateY(-3px); }
.sg-btn--ghost-light {
  background: rgba(255,255,255,.06);
  color: #ffffff;
  border-color: rgba(255,255,255,.55);
  backdrop-filter: blur(6px);
}
.sg-btn--ghost-light:hover { background: #ffffff; color: #0A1128; transform: translateY(-3px); }

/* Scroll reveal utility (JS toggles .sg-inview) */
[data-sg-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
[data-sg-reveal].sg-inview { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  [data-sg-reveal] { transition: none; opacity: 1; transform: none; }
  .sg-btn, .sg-btn--primary:hover, .sg-btn--ghost:hover { transition: none; transform: none; }
}

/* =============================== HERO ==================================== */
.sg-hero {
  position: relative;
  padding-bottom: 30px;
  overflow: hidden;
  background: #0A1128;
  color: #ffffff;
}
.sg-hero .container { padding-top: 40px; padding-bottom: 30px; position: relative; z-index: 1; }

/* ---- Decorative background: soft drifting glow blobs + faint grid, no photo --- */
.sg-hero__aurora { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.sg-hero__auroraglow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .5;
}
.sg-hero__auroraglow--a {
  width: 520px; height: 520px;
  top: -160px; left: -120px;
  background: radial-gradient(circle, rgba(41,84,229,.55), transparent 70%);
  animation: sgAuroraDriftA 16s ease-in-out infinite;
}
.sg-hero__auroraglow--b {
  width: 460px; height: 460px;
  bottom: -180px; right: -100px;
  background: radial-gradient(circle, rgba(76,124,255,.4), transparent 70%);
  animation: sgAuroraDriftB 20s ease-in-out infinite;
}
.sg-hero__gridlines {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(90deg, rgba(255,255,255,.05) 0 1px, transparent 1px 64px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.05) 0 1px, transparent 1px 64px);
  -webkit-mask-image: radial-gradient(circle at 50% 40%, rgba(0,0,0,.7), transparent 75%);
  mask-image: radial-gradient(circle at 50% 40%, rgba(0,0,0,.7), transparent 75%);
}
@keyframes sgAuroraDriftA {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, 30px) scale(1.08); }
}
@keyframes sgAuroraDriftB {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, -25px) scale(1.1); }
}

.sg-hero__title {
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  background: linear-gradient(100deg, #ffffff 40%, #a9c1ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sg-hero__subtitle {
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
  color: #ffffff;
  max-width: 620px;
  margin-bottom: 16px;
}
.sg-hero__subtitle strong { font-weight: 800; }
.sg-hero__desc { font-size: 16px; line-height: 1.75; color: #cfd9f5; max-width: 600px; margin-bottom: 26px; }
.sg-hero__cta { margin-bottom: 26px; }
.sg-hero__badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.sg-hero__badge {
  font-size: 12px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.25);
  color: #dfe7ff;
  animation: sgFloat 4.5s ease-in-out infinite;
}
.sg-hero__badge:nth-child(2) { animation-delay: .4s; }
.sg-hero__badge:nth-child(3) { animation-delay: .8s; }
.sg-hero__badge:nth-child(4) { animation-delay: 1.2s; }

.sg-hero__statsrow { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.sg-hero__statitem { display: flex; flex-direction: column; }
.sg-hero__stat-num { font-size: 30px; font-weight: 800; color: #ffffff; line-height: 1.1; }
.sg-hero__stat-label { font-size: 12.5px; color: #b9c6ef; letter-spacing: .3px; }
.sg-hero__statdivider { color: #4C64A0; font-size: 22px; line-height: 1; }

@keyframes sgFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@media (max-width: 575px) {
  .sg-hero__statdivider { display: none; }
  .sg-hero__statsrow { gap: 20px 28px; }
}

/* --------------------- HERO — animated network / hub visual --------------- */
.sg-hero__network {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1 / 1;
  margin: 30px auto 0;
}
.sg-hero__netlines { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.sg-hero__netline {
  fill: none;
  stroke: rgba(140,170,255,.28);
  stroke-width: .5;
  stroke-dasharray: 2.4 2.2;
}
.sg-hero__netpacket { filter: drop-shadow(0 0 3px rgba(140,170,255,.9)); }

.sg-hero__nethub {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(96px, 22%, 128px);
  height: clamp(96px, 22%, 128px);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: linear-gradient(135deg, rgba(41,84,229,.85), rgba(76,124,255,.6));
  border: 1px solid rgba(255,255,255,.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 0 40px rgba(41,84,229,.55), inset 0 0 20px rgba(255,255,255,.1);
  color: #ffffff;
  z-index: 2;
}
.sg-hero__nethub-icon { display: flex; }
.sg-hero__nethub-label { font-size: 12px; font-weight: 800; letter-spacing: .3px; }
.sg-hero__nethub-ring {
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px solid rgba(140,170,255,.5);
  animation: sgPing 3s cubic-bezier(0,.6,.4,1) infinite;
}
.sg-hero__nethub-ring--delay { animation-delay: 1.5s; }
@keyframes sgPing {
  0% { transform: scale(.9); opacity: .8; }
  100% { transform: scale(1.5); opacity: 0; }
}

.sg-hero__netnode {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: clamp(72px, 17%, 96px);
  padding: 12px 6px;
  border-radius: 16px;
  text-align: center;
  color: #eaf0ff;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px rgba(0,0,0,.28);
  animation: sgNodeFloat 5s ease-in-out infinite;
  transition: transform .3s ease, background-color .3s ease, border-color .3s ease, box-shadow .3s ease;
  z-index: 1;
}
.sg-hero__netnode:hover {
  background: rgba(76,124,255,.25);
  border-color: rgba(140,170,255,.6);
  box-shadow: 0 14px 30px rgba(41,84,229,.4);
  transform: translate(-50%, -50%) scale(1.12);
}
.sg-hero__netnode-icon { color: #9fb8ff; transition: color .3s ease; }
.sg-hero__netnode:hover .sg-hero__netnode-icon { color: #ffffff; }
.sg-hero__netnode-label { font-size: clamp(10px, 1vw, 11.5px); font-weight: 700; line-height: 1.25; }

.sg-hero__netnode:nth-of-type(1) { animation-delay: 0s; }
.sg-hero__netnode:nth-of-type(2) { animation-delay: .6s; }
.sg-hero__netnode:nth-of-type(3) { animation-delay: 1.2s; }
.sg-hero__netnode:nth-of-type(4) { animation-delay: 1.8s; }
.sg-hero__netnode:nth-of-type(5) { animation-delay: 2.4s; }
.sg-hero__netnode:nth-of-type(6) { animation-delay: 3.0s; }
.sg-hero__netnode:nth-of-type(7) { animation-delay: 3.6s; }
.sg-hero__netnode:nth-of-type(8) { animation-delay: 4.2s; }

@keyframes sgNodeFloat {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -6px; }
}

@media (max-width: 991px) {
  .sg-hero__network { max-width: 400px; }
}
@media (max-width: 575px) {
  .sg-hero__network { max-width: 320px; margin-top: 40px; }
  .sg-hero__netnode { padding: 8px 4px; border-radius: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  .sg-hero__auroraglow, .sg-hero__nethub-ring, .sg-hero__netnode { animation: none; }
  .sg-hero__netnode:hover { transform: translate(-50%, -50%); }
}

/* =============================== WHY ==================================== */
.sg-why {  background: #ffffff; padding: 30px 0; }
.sg-why__title { font-size: clamp(26px, 3vw, 36px); font-weight: 800; color: #0A1128; margin-bottom: 22px; }
.sg-why__lead { font-size: 16px; line-height: 1.75; color: #4A5568; margin-bottom: 16px; }
.sg-why__image-wrap { border-radius: 16px; overflow: hidden; margin-top: 20px; box-shadow: 0 20px 40px rgba(10,17,40,.15); }
.sg-why__image { width: 100%; height: auto; display: block; transition: transform .6s ease; }
.sg-why__image-wrap:hover .sg-why__image { transform: scale(1.05); }

.sg-why__list { list-style: none; margin: 0 0 20px; padding: 0; }
.sg-why__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 12px;
  margin-bottom: 10px;
  background: #F5F8FF;
  border-left: 3px solid #2954E5;
  font-size: 15px;
  line-height: 1.6;
  color: #384258;
  transition: transform .25s ease, box-shadow .25s ease;
}
.sg-why__item:hover { transform: translateX(6px); box-shadow: 0 10px 22px rgba(41,84,229,.12); }
.sg-why__icon { color: #2954E5; flex: none; margin-top: 2px; transition: transform .3s ease; }
.sg-why__item:hover .sg-why__icon { transform: rotate(8deg) scale(1.1); }
.sg-why__closing { font-size: 16px; line-height: 1.75; color: #0A1128; font-weight: 600; }

@media (max-width: 991px) {
  .sg-why .col-lg-6:first-child { margin-bottom: 30px; }
}

/* ============================ PROBLEMS TABLE ============================= */
.sg-problems {  background: #F5F8FF; }
.sg-problems .container { padding-top: 30px; padding-bottom: 20px; }
.sg-problems__title { font-size: clamp(26px, 3vw, 36px); font-weight: 800; color: #0A1128; margin-bottom: 26px; text-align: center; }
.sg-problems__tablewrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(10,17,40,.1);
  background: #ffffff;
}
.sg-problems__table { width: 100%; border-collapse: collapse; }
.sg-problems__table thead th {
  background: linear-gradient(135deg, #0A1128, #17234f);
  color: #ffffff;
  text-align: left;
  padding: 16px 20px;
  font-size: 14px;
  letter-spacing: .3px;
}
.sg-problems__table tbody td { padding: 16px 20px; font-size: 15px; color: #384258; border-bottom: 1px solid #eef1f9; }
.sg-problems__table tbody td:first-child { font-weight: 700; color: #0A1128; }
.sg-problems__table tbody tr:hover { background: #f3f6ff; }
.sg-problems__table tbody tr:last-child td { border-bottom: none; }
.sg-problems__ctawrap { text-align: center; margin-top: 30px; }

@media (max-width: 767px) {
  .sg-problems__table thead { display: none; }
  .sg-problems__table, .sg-problems__table tbody, .sg-problems__table tr, .sg-problems__table td { display: block; width: 100%; }
  .sg-problems__table tr { border-bottom: 8px solid #F5F8FF; }
  .sg-problems__table td { padding: 10px 18px; border-bottom: none; }
  .sg-problems__table td::before { content: attr(data-label) ": "; font-weight: 700; color: #2954E5; display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .4px; margin-bottom: 3px; }
}

/* ================================ SERVICES ================================ */
.sg-services {  background: #ffffff; }
.sg-services .container { padding-top: 30px; padding-bottom: 20px; }
.sg-services__title { font-size: clamp(26px, 3vw, 36px); font-weight: 800; color: #0A1128; text-align: center; margin-bottom: 34px; }
.sg-services__grid { margin: 0 -12px; }
.sg-services__col { padding: 0 12px; margin-bottom: 24px; }
.sg-services__card {
  position: relative;
  height: 100%;
  background: #ffffff;
  border: 1px solid #e9edf7;
  border-radius: 16px;
  padding: 26px 22px 22px;
  box-shadow: 0 10px 26px rgba(10,17,40,.06);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  overflow: hidden;
}
.sg-services__card:hover { transform: translateY(-8px); box-shadow: 0 24px 46px rgba(41,84,229,.18); border-color: #cddcff; }
.sg-services__media { border-radius: 12px; overflow: hidden; margin-bottom: 16px; }
.sg-services__img { width: 100%; height: 160px; object-fit: cover; display: block; transition: transform .5s ease; }
.sg-services__card:hover .sg-services__img { transform: scale(1.08); }
.sg-services__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; border-radius: 14px;
  background: linear-gradient(135deg, #2954E5, #4C7CFF);
  color: #ffffff; margin-bottom: 14px;
  transition: transform .35s ease;
}
.sg-services__card:hover .sg-services__icon { transform: rotate(-8deg) scale(1.08); }
.sg-services__num { position: absolute; top: 18px; right: 20px; font-size: 13px; font-weight: 800; color: #b9c6ef; letter-spacing: 1px; }
.sg-services__card--compact .sg-services__num { color: #cdd8f6; }
.sg-services__name { font-size: 19px; font-weight: 800; color: #0A1128; margin-bottom: 10px; }
.sg-services__text { font-size: 14.5px; line-height: 1.7; color: #5B6472; margin: 0; }
.sg-services__ctawrap { text-align: center; margin-top: 14px; }

/* ================================ MODULES ================================= */
.sg-modules {  background: #F5F8FF; }
.sg-modules .container { padding-top: 30px; padding-bottom: 20px; max-width: 900px; }
.sg-modules__title { font-size: clamp(26px, 3vw, 36px); font-weight: 800; color: #0A1128; text-align: center; margin-bottom: 12px; }
.sg-modules__lead { text-align: center; font-size: 15.5px; color: #4A5568; max-width: 720px; margin: 0 auto 30px; line-height: 1.7; }
.sg-modules__item {
  background: #ffffff;
  border-radius: 12px;
  margin-bottom: 12px;
  box-shadow: 0 6px 18px rgba(10,17,40,.06);
  border: 1px solid #e9edf7;
  overflow: hidden;
}
.sg-modules__head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  background: transparent;
  border: none;
  text-align: left;
  padding: 18px 20px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  color: #0A1128;
}
.sg-modules__headicon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 10px; flex: none;
  background: #eef2ff; color: #2954E5;
}
.sg-modules__headname { flex: 1; }
.sg-modules__chevron { color: #2954E5; transition: transform .3s ease; flex: none; }
.sg-modules__head[aria-expanded="true"] .sg-modules__chevron { transform: rotate(180deg); }
.sg-modules__body { padding: 0 20px 20px 70px; }
.sg-modules__body p { font-size: 14.5px; line-height: 1.7; color: #4A5568; margin-bottom: 8px; }
.sg-modules__usecase { color: #0A1128; }
.sg-modules__usecase strong { color: #2954E5; }
.sg-modules__ctawrap { text-align: center; margin-top: 26px; }

@media (max-width: 575px) {
  .sg-modules__body { padding-left: 20px; }
}

/* =============================== INDUSTRIES =============================== */
.sg-industries {  background: #ffffff; }
.sg-industries .container { padding-top: 30px; padding-bottom: 20px; }
.sg-industries__title { font-size: clamp(26px, 3vw, 36px); font-weight: 800; color: #0A1128; text-align: center; margin-bottom: 34px; }
.sg-industries__grid { margin: 0 -12px; }
.sg-industries__col { padding: 0 12px; margin-bottom: 24px; }
.sg-industries__card {
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e9edf7;
  box-shadow: 0 10px 26px rgba(10,17,40,.06);
  transition: transform .35s ease, box-shadow .35s ease;
}
.sg-industries__card:hover { transform: translateY(-8px) rotate(-.3deg); box-shadow: 0 26px 48px rgba(41,84,229,.2); }
.sg-industries__img { width: 100%; height: 190px; object-fit: cover; display: block; transition: transform .6s ease; }
.sg-industries__card:hover .sg-industries__img { transform: scale(1.07); }
.sg-industries__body { padding: 20px 22px 24px; }
.sg-industries__name { font-size: 19px; font-weight: 800; color: #0A1128; margin-bottom: 10px; }
.sg-industries__text { font-size: 14px; line-height: 1.7; color: #5B6472; margin: 0; }
.sg-industries__ctawrap { text-align: center; margin-top: 14px; }

/* ================================= AI ==================================== */
.sg-ai {  background: linear-gradient(180deg, #0A1128 0%, #101b3d 100%); color: #ffffff; }
.sg-ai .container { padding-top: 30px; padding-bottom: 20px; }
.sg-ai__title { font-size: clamp(26px, 3vw, 36px); font-weight: 800; margin-bottom: 18px; color: #ffffff; }
.sg-ai__lead { font-size: 15.5px; line-height: 1.75; color: #c3cdef; margin-bottom: 22px; }
.sg-ai__imagewrap { position: relative; border-radius: 16px; overflow: hidden; box-shadow: 0 24px 50px rgba(0,0,0,.4); }
.sg-ai__image { width: 100%; height: auto; display: block; }
.sg-ai__badge {
  position: absolute; bottom: 16px; left: 16px;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(10,17,40,.75); border: 1px solid rgba(255,255,255,.25);
  color: #ffffff; font-size: 12.5px; font-weight: 700;
  padding: 8px 14px; border-radius: 999px; backdrop-filter: blur(6px);
  animation: sgGlow 2.8s ease-in-out infinite;
}
@keyframes sgGlow {
  0%, 100% { box-shadow: 0 0 0 rgba(76,124,255,0); }
  50% { box-shadow: 0 0 16px rgba(76,124,255,.55); }
}
.sg-ai__grid { margin: 0 -10px; }
.sg-ai__col { padding: 0 10px; margin-bottom: 20px; }
.sg-ai__card {
  height: 100%;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  padding: 20px;
  transition: transform .3s ease, background-color .3s ease, border-color .3s ease;
}
.sg-ai__card:hover { transform: translateY(-6px); background: rgba(255,255,255,.09); border-color: rgba(76,124,255,.5); }
.sg-ai__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(76,124,255,.18); color: #8fb1ff; margin-bottom: 12px;
  transition: transform .3s ease;
}
.sg-ai__card:hover .sg-ai__icon { transform: scale(1.12) rotate(6deg); }
.sg-ai__name { font-size: 16px; font-weight: 700; color: #ffffff; margin-bottom: 8px; }
.sg-ai__text { font-size: 13.5px; line-height: 1.65; color: #b6c2e8; margin: 0; }
.sg-ai__ctawrap { text-align: center; margin-top: 30px; }

/* ============================== INTEGRATIONS =============================== */
.sg-integrations {  background: #F5F8FF; }
.sg-integrations .container { padding-top: 30px; padding-bottom: 20px; }
.sg-integrations__title { font-size: clamp(26px, 3vw, 36px); font-weight: 800; color: #0A1128; text-align: center; margin-bottom: 12px; }
.sg-integrations__lead { text-align: center; font-size: 15.5px; color: #4A5568; max-width: 640px; margin: 0 auto 30px; }
.sg-integrations__grid { margin: 0 -10px; }
.sg-integrations__col { padding: 0 10px; margin-bottom: 20px; }
.sg-integrations__card {
  height: 100%;
  background: #ffffff;
  border: 1px solid #e9edf7;
  border-radius: 14px;
  padding: 22px;
  text-align: center;
  box-shadow: 0 8px 22px rgba(10,17,40,.06);
  transition: transform .3s ease, box-shadow .3s ease;
  border-image: linear-gradient(135deg, #2954E5, #4C7CFF) 1;
}
.sg-integrations__card:hover { transform: translateY(-6px); box-shadow: 0 20px 38px rgba(41,84,229,.16); }
.sg-integrations__name { font-size: 16px; font-weight: 800; color: #0A1128; margin-bottom: 8px; }
.sg-integrations__text { font-size: 14px; color: #5B6472; margin: 0; }
.sg-integrations__note { text-align: center; font-size: 14.5px; color: #384258; font-style: italic; margin-top: 6px; }
.sg-integrations__ctawrap { text-align: center; margin-top: 22px; }

/* =============================== COMPLIANCE ================================ */
.sg-compliance {  background: #ffffff; }
.sg-compliance .container { padding-top: 30px; padding-bottom: 20px; }
.sg-compliance__title { font-size: clamp(26px, 3vw, 36px); font-weight: 800; color: #0A1128; margin-bottom: 18px; }
.sg-compliance__lead { font-size: 15.5px; line-height: 1.75; color: #4A5568; margin-bottom: 20px; }
.sg-compliance__imagewrap { border-radius: 16px; overflow: hidden; box-shadow: 0 20px 42px rgba(10,17,40,.14); }
.sg-compliance__image { width: 100%; height: auto; display: block; transition: transform .6s ease; }
.sg-compliance__imagewrap:hover .sg-compliance__image { transform: scale(1.05); }
.sg-compliance__list { list-style: none; margin: 0; padding: 0; }
.sg-compliance__item {
  position: relative;
  padding: 14px 16px 14px 40px;
  font-size: 15px; line-height: 1.65; color: #384258;
  border-bottom: 1px solid #eef1f9;
}
.sg-compliance__item:last-child { border-bottom: none; }
.sg-compliance__item::before {
  content: "";
  position: absolute; left: 8px; top: 20px;
  width: 12px; height: 12px; border-radius: 50%;
  background: linear-gradient(135deg, #2954E5, #4C7CFF);
  box-shadow: 0 0 0 4px rgba(41,84,229,.15);
}
.sg-compliance__item strong { color: #0A1128; }
.sg-compliance__ctawrap { text-align: center; margin-top: 26px; }

/* ================================ PROCESS =================================== */
.sg-process {  background: #F5F8FF; }
.sg-process .container { padding-top: 30px; padding-bottom: 20px; max-width: 880px; }
.sg-process__title { font-size: clamp(26px, 3vw, 36px); font-weight: 800; color: #0A1128; text-align: center; margin-bottom: 34px; }
.sg-process__timeline { position: relative; padding-left: 46px; }
.sg-process__timeline::before {
  content: ""; position: absolute; left: 17px; top: 6px; bottom: 6px; width: 2px;
  background: linear-gradient(180deg, #2954E5, #4C7CFF);
}
.sg-process__step { position: relative; margin-bottom: 26px; }
.sg-process__step:last-child { margin-bottom: 0; }
.sg-process__marker {
  position: absolute; left: -46px; top: 0;
  width: 36px; height: 36px; border-radius: 50%;
  background: #ffffff; border: 2px solid #2954E5; color: #2954E5;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px;
  box-shadow: 0 6px 16px rgba(41,84,229,.2);
  transition: transform .3s ease, background-color .3s ease, color .3s ease;
}
.sg-process__step:hover .sg-process__marker { background: #2954E5; color: #ffffff; transform: scale(1.12); }
.sg-process__content {
  background: #ffffff; border: 1px solid #e9edf7; border-radius: 12px;
  padding: 16px 20px; box-shadow: 0 8px 20px rgba(10,17,40,.05);
  transition: transform .3s ease, box-shadow .3s ease;
}
.sg-process__step:hover .sg-process__content { transform: translateX(6px); box-shadow: 0 14px 28px rgba(41,84,229,.12); }
.sg-process__name { font-size: 17px; font-weight: 800; color: #0A1128; margin-bottom: 6px; }
.sg-process__text { font-size: 14.5px; line-height: 1.65; color: #5B6472; margin: 0; }
.sg-process__note { text-align: center; font-size: 14px; color: #384258; font-style: italic; margin-top: 28px; }

/* ================================ STACK ==================================== */
.sg-stack {  background: #ffffff; }
.sg-stack .container { padding-top: 30px; padding-bottom: 20px; max-width: 880px; }
.sg-stack__title { font-size: clamp(26px, 3vw, 36px); font-weight: 800; color: #0A1128; text-align: center; margin-bottom: 12px; }
.sg-stack__lead { text-align: center; font-size: 15.5px; color: #4A5568; max-width: 680px; margin: 0 auto 26px; }
.sg-stack__tablewrap { border-radius: 16px; overflow: hidden; box-shadow: 0 20px 45px rgba(10,17,40,.08); border: 1px solid #e9edf7; }
.sg-stack__table { width: 100%; border-collapse: collapse; }
.sg-stack__table thead th { background: #0A1128; color: #ffffff; text-align: left; padding: 14px 20px; font-size: 13.5px; }
.sg-stack__table tbody td { padding: 14px 20px; font-size: 14.5px; color: #384258; border-bottom: 1px solid #eef1f9; }
.sg-stack__table tbody td:first-child { font-weight: 800; color: #2954E5; width: 160px; }
.sg-stack__table tbody tr:nth-child(even) { background: #F5F8FF; }
.sg-stack__table tbody tr:last-child td { border-bottom: none; }

@media (max-width: 575px) {
  .sg-stack__table thead { display: none; }
  .sg-stack__table, .sg-stack__table tbody, .sg-stack__table tr, .sg-stack__table td { display: block; width: 100%; }
  .sg-stack__table tr { border-bottom: 8px solid #ffffff; }
  .sg-stack__table td::before { content: attr(data-label) ": "; font-weight: 700; color: #2954E5; display: block; font-size: 11px; text-transform: uppercase; }
}

/* ================================ WHY US ==================================== */
.sg-whyus {  background: #F5F8FF; }
.sg-whyus .container { padding-top: 30px; padding-bottom: 20px; }
.sg-whyus__title { font-size: clamp(24px, 3vw, 34px); font-weight: 800; color: #0A1128; margin-bottom: 22px; }
.sg-whyus__imagewrap { border-radius: 16px; overflow: hidden; box-shadow: 0 20px 42px rgba(10,17,40,.14); }
.sg-whyus__image { width: 100%; height: auto; display: block; transition: transform .6s ease; }
.sg-whyus__imagewrap:hover .sg-whyus__image { transform: scale(1.05); }
.sg-whyus__grid { margin: 0 -8px; }
.sg-whyus__col { padding: 0 8px; margin-bottom: 16px; }
.sg-whyus__card {
  height: 100%; background: #ffffff; border: 1px solid #e9edf7; border-radius: 14px;
  padding: 18px; box-shadow: 0 8px 20px rgba(10,17,40,.05);
  transition: transform .3s ease, box-shadow .3s ease;
}
.sg-whyus__card:hover { transform: translateY(-6px); box-shadow: 0 18px 32px rgba(41,84,229,.15); }
.sg-whyus__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 10px;
  background: linear-gradient(135deg, #2954E5, #4C7CFF); color: #ffffff; margin-bottom: 12px;
  transition: transform .3s ease;
}
.sg-whyus__card:hover .sg-whyus__icon { transform: rotate(-8deg) scale(1.1); }
.sg-whyus__name { font-size: 15.5px; font-weight: 800; color: #0A1128; margin-bottom: 6px; }
.sg-whyus__text { font-size: 13.5px; line-height: 1.6; color: #5B6472; margin: 0; }
.sg-whyus__ctawrap { text-align: center; margin-top: 24px; }

/* =============================== DURATION =================================== */
.sg-duration {  background: #ffffff; }
.sg-duration .container { padding-top: 30px; padding-bottom: 20px; max-width: 780px; }
.sg-duration__title { font-size: clamp(24px, 3vw, 34px); font-weight: 800; color: #0A1128; text-align: center; margin-bottom: 12px; }
.sg-duration__lead { text-align: center; font-size: 15px; color: #4A5568; margin-bottom: 26px; }
.sg-duration__tablewrap { border-radius: 16px; overflow: hidden; box-shadow: 0 20px 42px rgba(10,17,40,.08); border: 1px solid #e9edf7; }
.sg-duration__table { width: 100%; border-collapse: collapse; }
.sg-duration__table thead th { background: linear-gradient(135deg, #2954E5, #1a3aa8); color: #ffffff; text-align: left; padding: 14px 20px; font-size: 13.5px; }
.sg-duration__table tbody td { padding: 14px 20px; font-size: 14.5px; color: #384258; border-bottom: 1px solid #eef1f9; }
.sg-duration__table tbody td:last-child { font-weight: 800; color: #2954E5; }
.sg-duration__table tbody tr:last-child td { border-bottom: none; }

@media (max-width: 575px) {
  .sg-duration__table thead { display: none; }
  .sg-duration__table, .sg-duration__table tbody, .sg-duration__table tr, .sg-duration__table td { display: block; width: 100%; }
  .sg-duration__table tr { border-bottom: 8px solid #F5F8FF; }
  .sg-duration__table td::before { content: attr(data-label) ": "; font-weight: 700; color: #2954E5; display: block; font-size: 11px; text-transform: uppercase; }
}

/* ================================ COMPARE ==================================== */
.sg-compare {  background: #F5F8FF; }
.sg-compare .container { padding-top: 30px; padding-bottom: 20px; }
.sg-compare__title { font-size: clamp(24px, 3vw, 34px); font-weight: 800; color: #0A1128; text-align: center; margin-bottom: 12px; }
.sg-compare__lead { text-align: center; font-size: 15px; color: #4A5568; max-width: 760px; margin: 0 auto 26px; }
.sg-compare__tablewrap { overflow-x: auto; border-radius: 16px; box-shadow: 0 20px 42px rgba(10,17,40,.08); background: #ffffff; }
.sg-compare__table { width: 100%; border-collapse: collapse; min-width: 640px; }
.sg-compare__table thead th { background: #0A1128; color: #ffffff; text-align: left; padding: 14px 18px; font-size: 13.5px; white-space: nowrap; }
.sg-compare__table thead th.sg-compare__highlight { background: linear-gradient(135deg, #2954E5, #4C7CFF); }
.sg-compare__table tbody td { padding: 14px 18px; font-size: 14px; color: #384258; border-bottom: 1px solid #eef1f9; white-space: nowrap; }
.sg-compare__table tbody td:first-child { font-weight: 700; color: #0A1128; }
.sg-compare__table tbody tr:last-child td { border-bottom: none; }
.sg-compare__table td.sg-compare__highlight { background: #eef2ff; font-weight: 800; color: #2954E5; }
.sg-compare__ctawrap { text-align: center; margin-top: 26px; }

/* ===== SCOPED TO #CaseStudies SECTION ONLY ===== */
  #CaseStudies {
    background: #07080B;
    padding: 30px 0;
    position: relative;
    overflow: hidden;
    color: #F3F4F6;
  }

  #CaseStudies::before {
    content: "";
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 600px;
    background: radial-gradient(circle, rgba(34,211,238,0.10) 0%, rgba(139,92,246,0.06) 45%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
  }

  #CaseStudies::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
  }

  #CaseStudies .cs-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
  }

  #CaseStudies .client-title {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-align: center;
    margin: 0 0 16px 0;
    color: #F3F4F6;
  }



  #CaseStudies .cs-subtext {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 64px auto;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.55;
    color: #8A8F9B;
  }

  /* ===== VIEWPORT (shows exactly one card) ===== */
  #CaseStudies .cs-viewport {
    position: relative;
    max-width: 1140px;
    margin: 0 auto;
    overflow: hidden;
  }

  #CaseStudies .casestudies_slider {
    position: relative;
    overflow: hidden;
  }

  #CaseStudies .slider-casestudies {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
    will-change: transform;
  }

  #CaseStudies .caseStudiesSliderBox {
    flex: 0 0 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 6px;
  }

  /* ===== CARD ===== */
  #CaseStudies .case_box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 36px;
    background: #0F1219;
    border-radius: 24px;
    overflow: hidden;
    padding: 40px;
    transition: transform 0.35s ease, background 0.35s ease;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    z-index: 0;
  }

  /* static border */
  #CaseStudies .case_box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: rgba(255,255,255,0.07);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 1;
  }

  /* animated gradient border on hover */
  #CaseStudies .case_box::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1.5px;
    background: conic-gradient(from var(--angle, 0deg), #22D3EE, #8B5CF6, #5EE6E0, #22D3EE);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.35s ease;
    animation: cs-rotate 3s linear infinite;
    z-index: 2;
  }

  @property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
  }

  @keyframes cs-rotate {
    to { --angle: 360deg; }
  }

  #CaseStudies .case_box:hover {
    transform: translateY(-6px);
    background: rgba(15, 18, 25, 0.92);
    box-shadow: 0 24px 60px -20px rgba(56,189,248,0.25), 0 0 40px rgba(56,189,248,0.08);
  }

  #CaseStudies .case_box:hover::before { opacity: 0; }
  #CaseStudies .case_box:hover::after { opacity: 1; }

  #CaseStudies .case_box__image {
    flex: 0 0 420px;
    width: 420px;
    height: 300px;
    position: relative;
    overflow: hidden;
    /* background: #0C0E14; */
    /* border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.07); */
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #CaseStudies .case_box__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
  }

  #CaseStudies .case_box__content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
  }

  #CaseStudies .case_box__content h4 {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin: 0 0 14px 0;
    color: #F3F4F6;
  }

  #CaseStudies .case_box__content p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: #C7CAD1;
    margin: 0 0 20px 0;
  }

  #CaseStudies .case_box__points {
    list-style: none;
    margin: 0 0 28px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  #CaseStudies .case_box__points li {
    position: relative;
    padding-left: 22px;
    font-size: 13px;
    font-weight: 400;
    color: #8A8F9B;
    line-height: 1.4;
  }

  #CaseStudies .case_box__points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22D3EE, #8B5CF6);
  }

  #CaseStudies .viewCaseStudies {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 14px 22px;
    border-radius: 999px;
    background: #F3F4F6;
    color: #07080B;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.3s ease, background 0.3s ease, gap 0.3s ease;
  }

  #CaseStudies .viewCaseStudies i {
    font-style: normal;
    transition: transform 0.3s ease;
  }

  #CaseStudies .viewCaseStudies::after {
    content: "\2192";
    transition: transform 0.3s ease;
  }

  #CaseStudies .viewCaseStudies i {
    display: none; /* font-awesome glyph not loaded, use unicode arrow above */
  }

  #CaseStudies .viewCaseStudies:hover {
    transform: translateY(-3px);
    background: #22D3EE;
  }

  #CaseStudies .viewCaseStudies:hover::after {
    transform: translateX(4px);
  }

  /* ===== DOTS / PROGRESS ===== */
  #CaseStudies .cs-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
    flex-wrap: wrap;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  #CaseStudies .cs-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    border: none;
    cursor: pointer;
    transition: width 0.35s ease, background 0.35s ease;
    padding: 0;
  }

  #CaseStudies .cs-dot.active {
    width: 26px;
    background: linear-gradient(90deg, #22D3EE, #8B5CF6);
  }

  /* ===== ARROWS ===== */
  #CaseStudies .caseStudiesBottomArrows {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 36px;
  }

  #CaseStudies .caseStudiesBottomArrows button {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    color: #F3F4F6;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
  }

  #CaseStudies .caseStudiesBottomArrows button:hover {
    border-color: rgba(56,189,248,0.55);
    background: rgba(56,189,248,0.08);
    transform: translateY(-2px);
  }

  #CaseStudies .caseStudiesBottomArrows i {
    font-style: normal;
  }

  #CaseStudies .caseStudiesBottomArrows .fa-arrow-left::before { content: "\2190"; }
  #CaseStudies .caseStudiesBottomArrows .fa-arrow-right::before { content: "\2192"; }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 991px) {
    #CaseStudies { padding: 90px 0; }
    #CaseStudies .client-title { font-size: 40px; }
    #CaseStudies .case_box { flex-direction: column; padding: 32px; gap: 24px; }
    #CaseStudies .case_box__image { width: 100%; max-width: 360px; height: 260px; flex: 0 0 260px; }
    #CaseStudies .case_box__content { align-items: center; text-align: center; }
    #CaseStudies .case_box__content h4 { font-size: 24px; }
    #CaseStudies .case_box__points { align-items: flex-start; }
  }

  @media (max-width: 575px) {
    #CaseStudies { padding: 30px 0; }
    #CaseStudies .cs-container { padding: 0 20px; }
    #CaseStudies .client-title { font-size: 30px; }
    #CaseStudies .cs-subtext { font-size: 15px; margin-bottom: 40px; }
    #CaseStudies .case_box { padding: 24px; }
    #CaseStudies .case_box__image { width: 100%; max-width: 280px; height: 220px; flex: 0 0 220px; }
    #CaseStudies .case_box__content h4 { font-size: 21px; }
    #CaseStudies .case_box__points li { font-size: 12px; }
    #CaseStudies .caseStudiesBottomArrows button { width: 42px; height: 42px; }
  }
.tr-gradient-text{
    background: linear-gradient(90deg, #22D3EE, #8B5CF6, #FFFFFF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
   display:inline-block;
    padding-bottom:6px;
    line-height:inherit;
}

/* =================================== FAQ ======================================= */
.sg-faq {  background: #F5F8FF; }
.sg-faq .container { padding-top: 30px; padding-bottom: 20px; max-width: 860px; }
.sg-faq__title { font-size: clamp(24px, 3vw, 34px); font-weight: 800; color: #0A1128; text-align: center; margin-bottom: 30px; }
.sg-faq__item { background: #ffffff; border: 1px solid #e9edf7; border-radius: 12px; margin-bottom: 12px; overflow: hidden; box-shadow: 0 6px 16px rgba(10,17,40,.05); }
.sg-faq__q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 14px;
  background: transparent; border: none; text-align: left; cursor: pointer;
  padding: 16px 20px; font-size: 15px; font-weight: 700; color: #0A1128;
}
.sg-faq__plus { color: #2954E5; flex: none; transition: transform .3s ease; }
.sg-faq__q[aria-expanded="true"] .sg-faq__plus { transform: rotate(45deg); }
.sg-faq__a { padding: 0 20px 18px; }
.sg-faq__a p { font-size: 14.5px; line-height: 1.7; color: #4A5568; margin: 0; }

/* ================================ FINAL CTA ==================================== */
.sg-finalcta { position: relative; overflow: hidden; background: #0A1128; color: #ffffff; text-align: center; }
.sg-finalcta .container { padding-top: 50px; padding-bottom: 40px; position: relative; z-index: 1; }
.sg-finalcta__bg { position: absolute; inset: 0; z-index: 0; }
.sg-finalcta__bgimg { width: 100%; height: 100%; object-fit: cover; opacity: .22; }
.sg-finalcta__overlay { position: absolute; inset: 0; background: linear-gradient(135deg, #0A1128 20%, rgba(41,84,229,.55) 100%); }
.sg-finalcta__title { font-size: clamp(26px, 3.6vw, 40px); font-weight: 800; margin: 0 auto 18px; max-width: 760px; color: #ffffff; }
.sg-finalcta__text { font-size: 15.5px; line-height: 1.7; color: #cfd9f5; max-width: 640px; margin: 0 auto 26px; }
.sg-finalcta__buttons { margin-bottom: 20px; }
.sg-finalcta__brand { font-size: 13px; letter-spacing: .4px; color: #93a3d9; margin-top: 10px; }

.collapse { display: none; overflow: hidden; max-height: 0; transition: max-height .35s ease; }
.collapse.show { display: block; }

/* ====================== SERVICES — SLIDER (added) ========================= */
.sg-services__slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}
.sg-services__viewport {
  flex: 1;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.sg-services__viewport::-webkit-scrollbar { display: none; }
.sg-services__viewport.sg-is-dragging { cursor: grabbing; scroll-behavior: auto; }
.sg-services__track {
  display: flex;
  gap: 24px;
  padding: 6px 4px 16px;
}
.sg-services__slide {
  flex: 0 0 calc((100% - 48px) / 3);
  max-width: calc((100% - 48px) / 3);
}
.sg-services__slide .sg-services__card { height: 100%; }
.sg-services__arrow {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid #dbe3fb;
  background: #ffffff;
  color: #2954E5;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(10,17,40,.08);
  transition: transform .25s ease, background-color .25s ease, color .25s ease, box-shadow .25s ease;
}
.sg-services__arrow:hover { background: #2954E5; color: #ffffff; transform: scale(1.08); box-shadow: 0 12px 26px rgba(41,84,229,.28); }
.sg-services__arrow:disabled { opacity: .35; cursor: default; pointer-events: none; }
.sg-services__dots { display: flex; justify-content: center; gap: 8px; margin-top: 6px; }
.sg-services__dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: #d7dff5; border: none; padding: 0; cursor: pointer;
  transition: background-color .25s ease, transform .25s ease;
}
.sg-services__dot.is-active { background: #2954E5; transform: scale(1.25); }

@media (max-width: 991px) {
  .sg-services__slide { flex: 0 0 calc((100% - 24px) / 2); max-width: calc((100% - 24px) / 2); }
}
@media (max-width: 575px) {
  .sg-services__slide { flex: 0 0 88%; max-width: 88%; }
  .sg-services__arrow { width: 38px; height: 38px; }

  .sg-services__media { margin-bottom: 12px; }
  .sg-services__img { height: 130px; }
  .sg-services__card { padding: 20px 18px 16px; }

  .sg-services__text {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .sg-services__text.sg-is-expanded {
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
  }
  .sg-services__readmore {
    display: inline-block;
    margin-top: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #2954E5;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
  }
}
@media (min-width: 576px) {
  .sg-services__readmore { display: none; } /* button sirf mobile pe dikhega */
}

/* ===================== INDUSTRIES — TABS (added, replaces grid) ============ */
.sg-industries__tabbar {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 4px 16px;
  margin-bottom: 24px;
  scrollbar-width: thin;
  cursor: grab;
}
.sg-industries__tabbar.sg-is-dragging { cursor: grabbing; }
.sg-industries__tab {
  flex: none;
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid #dbe3fb;
  background: #ffffff;
  color: #384258;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.sg-industries__tab:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(41,84,229,.14); }
.sg-industries__tab.is-active {
  background: linear-gradient(135deg, #2954E5, #4C7CFF);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(41,84,229,.3);
}
.sg-industries__panel { display: none; }
.sg-industries__panel.is-active { display: block; animation: sgFadeIn .5s ease; }
@keyframes sgFadeIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
.sg-industries__panelimgwrap { border-radius: 16px; overflow: hidden; box-shadow: 0 20px 42px rgba(10,17,40,.14); margin-bottom: 20px; }
.sg-industries__panelimg { width: 100%; height: auto; display: block; transition: transform .6s ease; border-radius: 16px;}
.sg-industries__panelimgwrap:hover .sg-industries__panelimg { transform: scale(1.05); }
.sg-industries__panelname { font-size: 24px; font-weight: 800; color: #0A1128; margin-bottom: 14px; }
.sg-industries__paneltext { font-size: 15px; line-height: 1.75; color: #5B6472; margin-bottom: 18px; }
.sg-industries__link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14.5px; font-weight: 700; color: #2954E5;
  border-bottom: 2px solid transparent;
  transition: border-color .25s ease, gap .25s ease, color .25s ease;
}
.sg-industries__link:hover { border-color: #2954E5; color: #1a3aa8; gap: 12px; text-decoration: none; }

@media (max-width: 991px) {
  .sg-industries__panelimgwrap { margin-bottom: 24px; }
}

/* ===================== TECH STACK — logo chips (added) ===================== */
.sg-stack__chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: #F5F8FF; border: 1px solid #e3e9fa; border-radius: 999px;
  padding: 6px 14px 6px 6px; margin: 4px 6px 4px 0; font-size: 13.5px; font-weight: 600; color: #384258;
}
.sg-stack__chip--text { padding-left: 14px; }
.sg-stack__logo { width: 28px; height: 28px; border-radius: 8px; flex: none; }

/* ================= AI SECTION — equal-height scrollable right column ======= */
.sg-ai__scrollwrap { position: relative; }
.sg-ai__scrollcol {
  /* Height is synced to the left image via JS (data-sg-ai-scroll) only at
     desktop widths; below 992px this resets to natural flow so the layout
     stays fully responsive and nothing gets clipped on mobile/tablet. */
  overflow: visible;
}
@media (min-width: 992px) {
  .sg-ai__scrollcol {
    overflow-y: auto;
    padding-right: 12px;
  }
  .sg-ai__scrollcol::-webkit-scrollbar { width: 6px; }
  .sg-ai__scrollcol::-webkit-scrollbar-track { background: transparent; }
  .sg-ai__scrollcol::-webkit-scrollbar-thumb { background: rgba(140,164,255,.45); border-radius: 999px; }
  .sg-ai__scrollcol::-webkit-scrollbar-thumb:hover { background: rgba(140,164,255,.7); }
  .sg-ai__scrollhint {
    position: absolute;
    left: 0; right: 12px; bottom: 0;
    height: 46px;
    background: linear-gradient(180deg, rgba(10,17,40,0), #0e1a3d 92%);
    pointer-events: none;
    border-radius: 0 0 12px 12px;
  }
}