/* =========================================================
   TOKENS (kept global — just CSS variables, no visual leakage)
========================================================= */
:root{
  --ink:            #060B18;
  --navy:           #0A1F44;
  --navy-2:         #102A57;
  --blue:           #2E6BFF;
  --cyan:           #4FD1FF;
  --paper:          #F6F8FC;
  --paper-2:        #EDF1F9;
  --white:          #FFFFFF;
  --slate:          #5B6B8C;
  --slate-dark:     #A9B7D6;
  --line:           #E1E7F2;
  --line-dark:      rgba(255,255,255,0.10);
  --radius:         18px;
  --radius-sm:      10px;
  --maxw:           1280px;
  --ease:           cubic-bezier(.22,.9,.28,1);
  --section-gap:    30px;
}

.tech-page .h2 {
    font-size: 2.6rem!important;
    font-weight: 700!important;
    background: linear-gradient(100deg, var(--navy) 0%, var(--blue) 35%, var(--cyan) 50%, var(--blue) 65%, var(--navy) 100%)!important;
    background-size: 200% auto!important;
    -webkit-background-clip: text!important;
    background-clip: text!important;
    -webkit-text-fill-color: transparent!important;
    color: transparent!important;
    animation: shineText 6s linear infinite!important;
}

.tech-page *{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;} /* left global — only affects scroll physics, not visuals */
.tech-page{
  color:var(--navy);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
  overflow-x:clip;;
}
.tech-page img{max-width:100%;display:block;}
.tech-page a{color:inherit;text-decoration:none;}
.tech-page ul{list-style:none;}
.tech-page button{cursor:pointer;border:none;background:none;color:inherit;}
.tech-page section{position:relative;}
.tech-page .wrap{max-width:var(--maxw);margin:0 auto;padding:0 40px;}

.tech-page :focus-visible{outline:2px solid var(--blue);outline-offset:3px;border-radius:4px;}

@media (prefers-reduced-motion: reduce){
  .tech-page *,.tech-page *::before,.tech-page *::after{animation-duration:0.001ms !important;animation-iteration-count:1 !important;transition-duration:0.001ms !important;scroll-behavior:auto !important;}
}

.tech-page h1,.tech-page h2,.tech-page h3{font-weight:800;letter-spacing:-0.01em;line-height:1.08;color:var(--navy);}
.tech-page h2{font-size:clamp(28px,3.4vw,44px);}
.tech-page h3{font-size:20px;font-weight:700;}
.tech-page p{color:var(--slate);line-height:1.65;font-size:16px;}

.tech-page .eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  font-size:12px;letter-spacing:0.16em;text-transform:uppercase;
  color:var(--blue);font-weight:500;margin-bottom:14px;
}
.tech-page .eyebrow::before{content:"";width:7px;height:7px;border-radius:50%;background:var(--cyan);box-shadow:0 0 0 3px rgba(79,209,255,0.18);}
.tech-page .section-head{max-width:680px;margin-bottom:56px;}
.tech-page .section-head.center{margin-inline:auto;text-align:center;}
.tech-page .section-head p{margin-top:14px;font-size:17px; color: #000;}

.tech-page .btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:15px 28px;border-radius:999px;font-weight:700;font-size:15px;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s, border-color .3s;
  white-space:nowrap;
}
.tech-page .btn-primary{background:var(--blue);color:#fff;box-shadow:0 12px 28px -10px rgba(46,107,255,0.55);}
.tech-page .btn-primary:hover{transform:translateY(-2px);box-shadow:0 18px 34px -8px rgba(46,107,255,0.6);}
.tech-page .btn-ghost{background:transparent;color:var(--navy);border:1.5px solid var(--line);}
.tech-page .btn-ghost:hover{border-color:var(--blue);color:var(--blue);}
.tech-page .btn-ghost.on-dark{color:#fff;border-color:var(--line-dark);}
.tech-page .btn-ghost.on-dark:hover{border-color:var(--cyan);color:var(--cyan);}
.tech-page .btn-white{background:#fff;color:var(--navy);box-shadow:0 12px 28px -10px rgba(0,0,0,0.35);}
.tech-page .btn-white:hover{transform:translateY(-2px);}

/* =========================================================
   HERO
========================================================= */
.tech-page .hero{
  background:radial-gradient(120% 90% at 15% 0%, var(--navy-2) 0%, var(--navy) 45%, var(--ink) 100%);
  padding:30px 0;overflow:hidden;position:relative;
}
.tech-page .hero::before{
  content:"";position:absolute;inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size:64px 64px;mask-image:linear-gradient(180deg,rgba(0,0,0,0.6),transparent 70%);
  pointer-events:none;
}
.tech-page .hero .wrap{display:grid;grid-template-columns:1.02fr 0.98fr;gap:40px;align-items:center;position:relative;z-index:2;}
.tech-page .hero-copy h1{color:#fff;font-size:clamp(34px,4.6vw,58px);margin-bottom:22px;}
.tech-page .hero-copy h1 em{font-style:normal;color:var(--cyan);}
.tech-page .hero-copy p{color:var(--slate-dark);font-size:18px;max-width:540px;margin-bottom:34px;}
.tech-page .hero-ctas{display:flex;gap:16px;flex-wrap:wrap;margin-bottom:52px;}
.tech-page .trust-row{display:grid;grid-template-columns:repeat(4,auto);gap:34px;}
.tech-page .trust-item{}
.tech-page .trust-item .num{display:block;font-weight:800;font-size:24px;color:#fff;}
.tech-page .trust-item .lbl{display:block;font-size:11.5px;color:var(--slate-dark);letter-spacing:.03em;margin-top:4px;}

.tech-page .hub{position:relative;height:560px;}
.tech-page .hub-glass{
  position:absolute;inset:6%;border-radius:32px;
  background:linear-gradient(160deg, rgba(255,255,255,0.07), rgba(255,255,255,0.015));
  border:1px solid rgba(255,255,255,0.12);backdrop-filter:blur(6px);
}
.tech-page .hub svg{position:absolute;inset:0;width:100%;height:100%;overflow:visible;}
.tech-page .hub-core{
  position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);
  width:150px;height:150px;border-radius:50%;
  background:radial-gradient(circle at 35% 30%, #3d7bff, #12377c 70%);
  display:flex;align-items:center;justify-content:center;text-align:center;
  box-shadow:0 0 0 1px rgba(255,255,255,0.18), 0 0 70px 10px rgba(46,107,255,0.55);
  animation:pulseCore 4.5s ease-in-out infinite;z-index:3;
}
.tech-page .hub-core span{font-weight:700;font-size:13px;color:#fff;line-height:1.3;padding:0 12px;}
@keyframes pulseCore{0%,100%{box-shadow:0 0 0 1px rgba(255,255,255,0.18), 0 0 70px 10px rgba(46,107,255,0.45);}50%{box-shadow:0 0 0 1px rgba(255,255,255,0.25), 0 0 100px 18px rgba(46,107,255,0.7);}}

.tech-page .hub-node{
  position:absolute;transform:translate(-50%,-50%);
  display:flex;align-items:center;gap:8px;padding:9px 14px;border-radius:999px;
  background:rgba(10,31,68,0.65);border:1px solid rgba(255,255,255,0.14);
  backdrop-filter:blur(8px);font-size:12.5px;font-weight:600;color:#eef3ff;white-space:nowrap;
  animation:floatNode 6s ease-in-out infinite;z-index:4;
}
.tech-page .hub-node .dot{width:7px;height:7px;border-radius:50%;background:var(--cyan);box-shadow:0 0 10px 2px rgba(79,209,255,0.8);flex:none;}
@keyframes floatNode{0%,100%{translate:0 0;}50%{translate:0 -8px;}}

.tech-page .particle{position:absolute;width:3px;height:3px;border-radius:50%;background:var(--cyan);opacity:.6;animation:drift 9s linear infinite;}
@keyframes drift{0%{transform:translateY(0) translateX(0);opacity:0;}10%{opacity:.7;}90%{opacity:.5;}100%{transform:translateY(-90px) translateX(14px);opacity:0;}}

@media (max-width:1080px){
  .tech-page .hero .wrap{grid-template-columns:1fr;}
  .tech-page .hub{height:420px;max-width:520px;margin:0 auto;}
  .tech-page .trust-row{grid-template-columns:repeat(2,auto);row-gap:22px;}
}
@media (max-width:560px){
  .tech-page .hub{height:340px;}
  .tech-page .hub-node{font-size:11px;padding:7px 10px;}
}

/* =========================================================
   SECTION 2 — EXPERTISE CARDS
========================================================= */
.tech-page .expertise{padding:30px 0;background:var(--white);}

.tech-page .expertise .section-head h2{
  background:linear-gradient(100deg, 
    var(--navy) 0%, 
    var(--blue) 35%, 
    var(--cyan) 50%, 
    var(--blue) 65%, 
    var(--navy) 100%);
  background-size:200% auto;
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  color:transparent;
  display:inline-block;
  animation:shineText 6s linear infinite;
}

@keyframes shineText{
  0%{background-position:0% center;}
  100%{background-position:200% center;}
}

@media (prefers-reduced-motion: reduce){
  .tech-page .expertise .section-head h2{animation:none;}
}

.tech-page .expertise-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}

.tech-page .xcard{
  position:relative;border-radius:var(--radius);padding:34px 30px;
  background:linear-gradient(180deg,var(--navy),var(--ink));
  border:1px solid var(--line-dark);overflow:hidden;
  transition:transform .4s var(--ease), box-shadow .4s var(--ease),
             border-color .4s, background .4s var(--ease);
}
.tech-page .xcard::before{
  content:"";position:absolute;top:0;left:0;right:0;height:3px;
  background:linear-gradient(90deg,var(--blue),var(--cyan));
  transform:scaleX(0);transform-origin:left;transition:transform .5s var(--ease);
}
.tech-page .xcard:hover{
  transform:translateY(-8px);
  box-shadow:0 30px 50px -30px rgba(10,31,68,0.28);
  border-color:transparent;
  background:linear-gradient(180deg,var(--paper),var(--white));
}
.tech-page .xcard:hover::before{transform:scaleX(1);}

.tech-page .xcard .xnum{
  font-size:12px;color:var(--slate-dark);letter-spacing:.1em;
  transition:color .4s var(--ease);
}
.tech-page .xcard:hover .xnum{color:var(--slate);}

.tech-page .xicon{
  width:52px;height:52px;border-radius:14px;margin:16px 0 20px;
  background:linear-gradient(145deg,var(--blue),var(--cyan));
  display:flex;align-items:center;justify-content:center;
  transition:transform .4s var(--ease), background .4s var(--ease);
}
.tech-page .xcard:hover .xicon{
  transform:rotate(-8deg) scale(1.06);
  background:linear-gradient(145deg,var(--navy),var(--navy-2));
}
.tech-page .xicon svg{width:24px;height:24px;stroke:#fff;transition:stroke .4s var(--ease);}
.tech-page .xcard:hover .xicon svg{stroke:var(--cyan);}

.tech-page .xcard h3{margin-bottom:10px;color:#fff;transition:color .4s var(--ease);}
.tech-page .xcard:hover h3{color:var(--navy);}

.tech-page .xcard p{font-size:14.5px;margin-bottom:16px;color:var(--slate-dark);transition:color .4s var(--ease);}
.tech-page .xcard:hover p{color:var(--slate);}

.tech-page .xtags{display:flex;flex-wrap:wrap;gap:8px;}
.tech-page .xtags span{
  font-size:12px;font-weight:600;color:#eef3ff;background:rgba(255,255,255,0.08);
  padding:6px 11px;border-radius:8px;border:1px solid var(--line-dark);
  transition:all .4s var(--ease);
}
.tech-page .xcard:hover .xtags span{
  color:var(--navy-2);background:var(--paper-2);border:1px solid var(--line);
}

@media (max-width:980px){.tech-page .expertise-grid{grid-template-columns:repeat(2,1fr);}}
@media (max-width:600px){.tech-page .expertise-grid{grid-template-columns:1fr;}}

/* =========================================================
   SECTION 3 — STACK EXPLORER
========================================================= */
.tech-page .explorer{padding:30px 0;background:var(--paper);}

.tech-page .explorer-shell{
  display:flex;
  flex-direction:column;
  border-radius:24px;overflow:hidden;
  background:var(--ink);
  box-shadow:0 40px 80px -50px rgba(10,31,68,0.3);
  border:1px solid var(--line-dark);
}

.tech-page .explorer-nav{
  background:var(--navy);
  padding:10px;
  display:flex;
  flex-direction:row;
  flex-wrap:nowrap;
  gap:6px;
  overflow-x:auto;
  border-bottom:1px solid var(--line-dark);
  scrollbar-width:thin;
  scrollbar-color:var(--cyan) transparent;
}

.tech-page .explorer-nav::-webkit-scrollbar{height:5px;}
.tech-page .explorer-nav::-webkit-scrollbar-track{background:rgba(255,255,255,0.06);border-radius:10px;}
.tech-page .explorer-nav::-webkit-scrollbar-thumb{
  background:linear-gradient(90deg, var(--blue), var(--cyan), var(--blue));
  background-size:200% auto;
  border-radius:10px;
  animation:scrollShine 3s linear infinite;
}
.tech-page .explorer-nav::-webkit-scrollbar-thumb:hover{
  background:linear-gradient(90deg, var(--cyan), var(--blue), var(--cyan));
  background-size:200% auto;
}

@keyframes scrollShine{
  0%{background-position:0% center;}
  100%{background-position:200% center;}
}

@media (prefers-reduced-motion: reduce){
  .tech-page .explorer-nav::-webkit-scrollbar-thumb{animation:none;}
}
.tech-page .explorer-nav button{
  flex:none;
  text-align:center;
  padding:10px 16px;
  border-radius:999px;
  font-weight:600;font-size:13.5px;
  color:var(--slate-dark);
  background:transparent;
  border:1.5px solid transparent;
  display:flex;align-items:center;gap:6px;
  white-space:nowrap;
  transition:background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.tech-page .explorer-nav button .arrow{opacity:0;transition:opacity .25s,transform .25s;transform:translateX(-4px);}
.tech-page .explorer-nav button:hover{
  color:#fff;
  background:rgba(255,255,255,0.06);
  border-color:var(--line-dark);
}
.tech-page .explorer-nav button.active{
  background:linear-gradient(90deg,var(--blue),var(--cyan));
  color:#fff;
  border-color:transparent;
  box-shadow:0 10px 24px -10px rgba(46,107,255,0.6);
}
.tech-page .explorer-nav button.active .arrow{opacity:1;transform:translateX(0);color:#fff;}

.tech-page .explorer-panel{
  padding:36px 40px;
  background:linear-gradient(180deg, var(--navy-2), var(--ink));
  transition:background .4s var(--ease);
}

/* ---- Panel item: two-column layout (text left, image right) ---- */
.tech-page .panel-item{
  display:none;
  animation:fadeUp .5s var(--ease);
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:44px;
}
.tech-page .panel-item.active{display:grid;}

.tech-page .panel-text{min-width:0;}

.tech-page .panel-eyebrow{
  font-size:12px;color:var(--cyan);letter-spacing:.1em;
  text-transform:uppercase;margin-bottom:8px;display:block;
}
.tech-page .panel-item h3{
  font-size:24px;margin-bottom:12px;
  color:#fff;
}
.tech-page .panel-item p{
  font-size:15.5px;max-width:640px;margin-bottom:0;
  color:var(--slate-dark);
}

.tech-page .panel-used{display:flex;flex-wrap:wrap;gap:10px;margin-top:22px;margin-bottom:0;}
.tech-page .panel-used span{
  font-size:13px;font-weight:600;padding:8px 14px;border-radius:999px;
  background:rgba(255,255,255,0.06);color:#eef3ff;
  border:1px solid var(--line-dark);
  transition:all .3s var(--ease);
}
.tech-page .panel-used span:hover{
  background:rgba(79,209,255,0.15);
  border-color:var(--cyan);
  color:var(--cyan);
  transform:translateY(-3px);
}

.tech-page .panel-chip-row{display:flex;flex-wrap:wrap;gap:12px;margin-top:22px;}
.tech-page .panel-chip{
  font-size:13px;padding:10px 16px;border-radius:10px;
  background:rgba(255,255,255,0.05);
  border:1px solid var(--line-dark);
  color:#fff;font-weight:500;
  transition:all .3s var(--ease);
}
.tech-page .panel-chip:hover{
  background:linear-gradient(90deg,var(--blue),var(--cyan));
  border-color:transparent;
  transform:translateY(-3px);
  box-shadow:0 12px 24px -12px rgba(46,107,255,0.6);
}

/* ---- Panel image ---- */
.tech-page .panel-media{
  position:relative;
  width:100%;
  aspect-ratio:4/3;
  border-radius:16px;
  overflow:hidden;
  border:1px solid var(--line-dark);
  box-shadow:0 30px 60px -30px rgba(0,0,0,0.5);
}
.tech-page .panel-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
  transition:transform .6s var(--ease);
}
.tech-page .panel-item.active .panel-media img{
  animation:panelImgIn .6s var(--ease);
}
.tech-page .panel-media:hover img{transform:scale(1.05);}

@keyframes panelImgIn{
  from{opacity:0;transform:scale(1.06);}
  to{opacity:1;transform:scale(1);}
}

@keyframes fadeUp{
  from{opacity:0;transform:translateY(10px);}
  to{opacity:1;transform:translateY(0);}
}

@media (max-width:900px){
  .tech-page .explorer-nav{padding:8px;}
  .tech-page .explorer-panel{padding:28px 22px;}
  .tech-page .panel-item.active{
    grid-template-columns:1fr;
    gap:24px;
  }
  .tech-page .panel-media{
    order:-1;
    aspect-ratio:16/9;
  }
}
/* =========================================================
   SECTION 4 — INDUSTRIES
========================================================= */
.tech-page .industries{padding:30px 0;background:var(--white);}
.tech-page .ind-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;}

.tech-page .ind-card{
  position:relative;border-radius:16px;overflow:hidden;
  min-height:260px;
  background-size:cover;
  background-position:center;
  transition:transform .4s var(--ease);
}
.tech-page .ind-card:hover{transform:translateY(-6px);}

.tech-page .ind-overlay{
  position:relative;z-index:2;height:100%;
  padding:22px;
  display:flex;flex-direction:column;justify-content:flex-end;
  background:linear-gradient(180deg, rgba(6,11,24,0.15) 0%, rgba(6,11,24,0.85) 100%);
  transition:background .45s var(--ease);
}

.tech-page .ind-card:hover .ind-overlay{
  background:linear-gradient(200deg, rgba(46,107,255,0.92) 0%, rgba(10,31,68,0.95) 100%);
}

.tech-page .ind-overlay h3{
  color:#fff;font-size:18px;font-weight:700;margin-bottom:0;
  transition:margin-bottom .4s var(--ease);
}


.tech-page .ind-desc{
  color:var(--slate-dark);font-size:13px;line-height:1.55;
  max-height:0;opacity:0;overflow:hidden;margin:0;
  transition:max-height .45s var(--ease), opacity .35s var(--ease), margin .45s var(--ease);
}
.tech-page .ind-card:hover .ind-desc{
  max-height:120px;opacity:1;margin-top:10px;color:#e6edff;
}

.tech-page .ind-tech{
  display:flex;flex-wrap:wrap;gap:6px;
  max-height:0;overflow:hidden;opacity:0;
  transition:max-height .45s var(--ease), opacity .35s var(--ease), margin .45s var(--ease);
  margin-top:0;
}
.tech-page .ind-card:hover .ind-tech{max-height:100px;opacity:1;margin-top:14px;}
.tech-page .ind-tech span{
  font-size:11px;font-weight:600;color:#fff;
  background:rgba(255,255,255,0.15);
  border:1px solid rgba(255,255,255,0.25);
  padding:5px 10px;border-radius:999px;
}

.tech-page .ind-cta{
  display:inline-block;
  font-size:13px;font-weight:700;color:#fff;
  line-height:1.4;
  max-width:100%;
  white-space:normal;
  max-height:0;opacity:0;overflow:hidden;
  transition:max-height .45s var(--ease), opacity .35s var(--ease), margin .45s var(--ease);
  margin-top:0;
}
.tech-page .ind-card:hover .ind-cta{max-height:60px;opacity:1;margin-top:16px;}
.tech-page .ind-cta:hover{text-decoration:underline;color:var(--cyan);}

@media (max-width:980px){.tech-page .ind-grid{grid-template-columns:repeat(3,1fr);}}
@media (max-width:700px){.tech-page .ind-grid{grid-template-columns:repeat(2,1fr);}}
@media (max-width:460px){.tech-page .ind-grid{grid-template-columns:1fr;}}

/* =========================================================
   SECTION 5 — TECH STACK TABS
========================================================= */
.tech-page .stack{padding:30px 0;background:var(--paper);}

.tech-page .stack .section-head h2{
  background:linear-gradient(100deg, var(--navy) 0%, var(--blue) 45%, var(--navy-2) 100%);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  color:transparent;
  display:inline-block;
}

.tech-page .stack-tabs{
  display:flex;
  flex-direction:row;
  flex-wrap:nowrap;
  justify-content:center;
  gap:8px;
  overflow-x:auto;
  padding:12px;
  margin-bottom:40px;
  background:var(--navy);
  border-radius:16px;
  scrollbar-width:thin;
  scrollbar-color:var(--cyan) transparent;
}
.tech-page .stack-tabs::-webkit-scrollbar{height:5px;}
.tech-page .stack-tabs::-webkit-scrollbar-track{background:rgba(255,255,255,0.06);border-radius:10px;}
.tech-page .stack-tabs::-webkit-scrollbar-thumb{
  background:linear-gradient(90deg, var(--blue), var(--cyan), var(--blue));
  background-size:200% auto;
  border-radius:10px;
  animation:scrollShine 3s linear infinite;
}

.tech-page .stack-tabs button{
  flex:none;
  padding:11px 20px;border-radius:999px;font-weight:700;font-size:13.5px;
  border:1.5px solid transparent;background:transparent;color:var(--slate-dark);
  white-space:nowrap;
  transition:all .3s var(--ease);
}
.tech-page .stack-tabs button:hover{color:#fff;background:rgba(255,255,255,0.08);}
.tech-page .stack-tabs button.active{
  background:linear-gradient(90deg,var(--blue),var(--cyan));
  color:#fff;border-color:transparent;
  box-shadow:0 10px 24px -10px rgba(46,107,255,0.6);
}

.tech-page .stack-grid{
  display:none;
  flex-wrap:wrap;
  justify-content:center;
  gap:16px;
}
.tech-page .stack-grid.active{display:flex;}

.tech-page .stack-pill{
  background:var(--white);border:1px solid var(--line);border-radius:14px;
  padding:22px 14px;text-align:center;font-weight:700;font-size:13.5px;color:var(--navy);
  display:flex;flex-direction:column;align-items:center;gap:10px;
  transition:transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  flex:0 0 calc(20% - 12.8px);
}
.tech-page .stack-pill:hover{transform:translateY(-5px);border-color:var(--blue);box-shadow:0 20px 34px -24px rgba(10,31,68,0.35);}
.tech-page .stack-pill img{width:70px;height:70px;object-fit:contain;}

@media (max-width:900px){
  .tech-page .stack-pill{flex:0 0 calc(33.333% - 10.7px);}
}
@media (max-width:560px){
  .tech-page .stack-pill{flex:0 0 calc(50% - 8px);}
}
/* =========================================================
   SERVICE EXPLORER (Vertical Tabs — sticky left column)
========================================================= */
.tech-page .svc-explorer,
.tech-page .showcase{padding:30px 0;background:var(--paper);}

.tech-page .svc-shell{
  position:relative;
  display:grid;
  grid-template-columns:340px 1fr;
  align-items:start;
  border-radius:24px;
  background:linear-gradient(180deg, var(--navy-2), var(--ink));
  box-shadow:0 40px 80px -50px rgba(10,31,68,0.3);
  border:1px solid var(--line-dark);
  overflow:visible; /* sticky ko block na kare */
}

.tech-page .svc-tabs{
  position:-webkit-sticky;
  position:sticky;
  top:140px;                        /* apne fixed header/marquee bar ki actual height ke hisaab se adjust karein */
  align-self:start;
  max-height:calc(100vh - 160px);   /* lambi list ho to andar hi scroll ho, page ko force na kare */
  overflow-y:auto;
  background:transparent;
  padding:28px 16px;
  display:flex;
  flex-direction:column;
  gap:6px;
  border-right:1px solid var(--line-dark);
  scrollbar-width:thin;
  scrollbar-color:var(--cyan) transparent;
}
.tech-page .svc-tabs::-webkit-scrollbar{width:5px;}
.tech-page .svc-tabs::-webkit-scrollbar-track{background:rgba(255,255,255,0.06);border-radius:10px;}
.tech-page .svc-tabs::-webkit-scrollbar-thumb{background:var(--cyan);border-radius:10px;}

.tech-page .svc-tabs button{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  text-align:left;
  padding:14px 16px;
  border-radius:12px;
  font-weight:600;font-size:13.5px;
  line-height:1.35;
  color:var(--slate-dark);
  background:transparent;
  border:1.5px solid transparent;
  transition:all .3s var(--ease);
}
.tech-page .svc-tabs button .svc-tab-title{flex:1;}
.tech-page .svc-tabs button .arrow{
  opacity:0;flex:none;
  transition:opacity .25s,transform .25s;
  transform:translateX(-4px);
}
.tech-page .svc-tabs button:hover{
  color:#fff;
  background:rgba(255,255,255,0.06);
  border-color:var(--line-dark);
}
.tech-page .svc-tabs button.active{
  background:linear-gradient(90deg,var(--blue),var(--cyan));
  color:#fff;border-color:transparent;
  box-shadow:0 10px 24px -10px rgba(46,107,255,0.6);
}
.tech-page .svc-tabs button.active .arrow{opacity:1;transform:translateX(0);color:#fff;}

.tech-page .svc-panel{
  padding:36px 40px;
  background:transparent;
  min-width:0;
}

.tech-page .svc-item{display:none;animation:svcFadeUp .5s var(--ease);}
.tech-page .svc-item.active{display:block;}
@keyframes svcFadeUp{from{opacity:0;transform:translateY(10px);}to{opacity:1;transform:translateY(0);}}

.tech-page .svc-media{
  width:100%;
  aspect-ratio:16/7;
  border-radius:16px;
  overflow:hidden;
  border:1px solid var(--line-dark);
  box-shadow:0 30px 60px -30px rgba(0,0,0,0.5);
  margin-bottom:26px;
}
.tech-page .svc-media img{
  width:100%;height:100%;
  object-fit:cover;object-position:center;
  display:block;
  transition:transform .6s var(--ease);
}
.tech-page .svc-item.active .svc-media img{animation:panelImgIn .6s var(--ease);}
.tech-page .svc-media:hover img{transform:scale(1.05);}
@keyframes panelImgIn{from{opacity:0;transform:scale(1.06);}to{opacity:1;transform:scale(1);}}

.tech-page .svc-body h3{
  font-size:26px;margin-bottom:16px;
  background:linear-gradient(90deg, var(--blue) 0%, var(--cyan) 100%);
  -webkit-background-clip:text;background-clip:text;
  -webkit-text-fill-color:transparent;color:transparent;
  display:inline-block;
}
.tech-page .svc-body p{color:var(--slate-dark);font-size:15.5px;line-height:1.7;margin-bottom:16px;}

.tech-page .svc-block{
  background:rgba(255,255,255,0.04);
  border:1px solid var(--line-dark);
  border-radius:14px;
  padding:22px 24px;
  margin-top:16px;
}
.tech-page .svc-block p{margin-bottom:0;font-size:14.5px;}
.tech-page .svc-tag{
  display:inline-block;
  font-size:11px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;
  color:var(--cyan);background:rgba(79,209,255,0.12);
  padding:6px 12px;border-radius:999px;margin-bottom:12px;
}

.tech-page .svc-list{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:10px 20px;
  margin-top:8px;
}
.tech-page .svc-list li{
  position:relative;
  padding-left:18px;
  font-size:14.5px;
  color:var(--slate-dark);
}
.tech-page .svc-list li::before{
  content:"";
  position:absolute;left:0;top:8px;
  width:6px;height:6px;border-radius:50%;
  background:var(--cyan);
}

@media (max-width:1000px){
  .tech-page .svc-shell{grid-template-columns:280px 1fr;}
}

/* ---- Mobile: single-line horizontal scroll tabs, no sticky ---- */
@media (max-width:900px){
  .tech-page .svc-shell{
    display:block;
  }
  .tech-page .svc-tabs{
    position:static;
    top:auto;
    max-height:none;
    flex-direction:row;
    flex-wrap:nowrap;
    overflow-x:auto;
    overflow-y:visible;
    white-space:nowrap;
    border-right:none;
    border-bottom:1px solid var(--line-dark);
    padding:14px 12px;
    scrollbar-width:thin;
    scrollbar-color:var(--cyan) transparent;
  }
  .tech-page .svc-tabs::-webkit-scrollbar{height:5px;}
  .tech-page .svc-tabs::-webkit-scrollbar-track{background:rgba(255,255,255,0.06);border-radius:10px;}
  .tech-page .svc-tabs::-webkit-scrollbar-thumb{
    background:linear-gradient(90deg, var(--blue), var(--cyan), var(--blue));
    background-size:200% auto;
    border-radius:10px;
  }
  .tech-page .svc-tabs button{
    flex:none;
    white-space:nowrap;
  }
  .tech-page .svc-panel{padding:26px 22px;}
  .tech-page .svc-body h3{font-size:22px;}
  .tech-page .svc-list{grid-template-columns:1fr;}
  .tech-page .svc-media{aspect-ratio:16/9;}
}
.why-h2{color: #fff!important;}
/* =========================================================
   SECTION 7 — WHY CHOOSE
========================================================= */
.tech-page .why{
  padding:30px 0;
  background:linear-gradient(180deg, var(--ink), #0b1830 60%, var(--ink));
}

.tech-page .why .section-head h2{color:#fff;}
.tech-page .why .section-head p{color:var(--slate-dark);}

.tech-page .why-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;}

.tech-page .wcard{
  padding:30px 26px;
  border-radius:16px;
  background:rgba(255,255,255,0.03);
  border:1px solid var(--line-dark);
  transition:transform .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease);
}
.tech-page .wcard:hover{
  transform:translateY(-6px);
  background:rgba(255,255,255,0.06);
  border-color:rgba(79,209,255,0.3);
}

.tech-page .wicon{
  width:48px;height:48px;border-radius:12px;
  background:rgba(79,209,255,0.12);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:18px;
  transition:background .4s var(--ease), transform .4s var(--ease);
}
.tech-page .wcard:hover .wicon{
  background:linear-gradient(135deg,var(--blue),var(--cyan));
  transform:scale(1.06);
}
.tech-page .wicon svg{width:22px;height:22px;stroke:var(--cyan);transition:stroke .4s var(--ease);}
.tech-page .wcard:hover .wicon svg{stroke:#fff;}

.tech-page .wcard .wnum{
  color:var(--cyan);font-size:12px;letter-spacing:.1em;
  margin-bottom:12px;display:block;font-weight:600;
}

.tech-page .wcard h3{color:#fff;margin-bottom:10px;font-size:18px;}
.tech-page .wcard p{font-size:14.5px;color:var(--slate-dark);margin:0;}

@media (max-width:980px){.tech-page .why-grid{grid-template-columns:repeat(2,1fr);}}
@media (max-width:600px){.tech-page .why-grid{grid-template-columns:1fr;}}

/* =========================================================
   SECTION 8 — PROCESS TIMELINE
========================================================= */
.tech-page .process{padding:30px 0;background:var(--paper);overflow:hidden;position:relative;}

.tech-page .process::before{
  content:"";position:absolute;top:-40%;left:50%;transform:translateX(-50%);
  width:900px;height:900px;border-radius:50%;
  background:radial-gradient(circle, rgba(46,107,255,0.06), transparent 65%);
  pointer-events:none;
}

.tech-page .timeline{position:relative;display:grid;grid-template-columns:repeat(6,1fr);gap:16px;}

.tech-page .timeline::before{
  content:"";position:absolute;top:27px;left:0;right:0;height:2px;background:var(--line);z-index:0;
}
.tech-page .timeline::after{
  content:"";position:absolute;top:27px;left:0;height:2px;
  background:linear-gradient(90deg,var(--blue),var(--cyan));
  box-shadow:0 0 12px 1px rgba(79,209,255,0.6);
  z-index:1;
  width:0%;transition:width 1.8s var(--ease);
}
.tech-page .timeline.in-view::after{width:100%;}

.tech-page .tstep{
  position:relative;z-index:2;padding-top:64px;
  opacity:0;transform:translateY(16px);
  transition:opacity .6s var(--ease), transform .6s var(--ease);
}
.tech-page .timeline.in-view .tstep{opacity:1;transform:translateY(0);}
.tech-page .timeline.in-view .tstep:nth-child(1){transition-delay:.15s;}
.tech-page .timeline.in-view .tstep:nth-child(2){transition-delay:.45s;}
.tech-page .timeline.in-view .tstep:nth-child(3){transition-delay:.75s;}
.tech-page .timeline.in-view .tstep:nth-child(4){transition-delay:1.05s;}
.tech-page .timeline.in-view .tstep:nth-child(5){transition-delay:1.35s;}
.tech-page .timeline.in-view .tstep:nth-child(6){transition-delay:1.65s;}

.tech-page .tstep .tdot{
  position:absolute;top:12px;left:0;width:30px;height:30px;border-radius:50%;
  background:var(--white);border:2px solid var(--line);
  display:flex;align-items:center;justify-content:center;
  transition:all .4s var(--ease);
}
.tech-page .tstep .tdot svg{width:14px;height:14px;stroke:var(--slate);transition:stroke .4s var(--ease);}
.tech-page .timeline.in-view .tstep .tdot{
  background:linear-gradient(135deg,var(--blue),var(--cyan));
  border-color:transparent;
  box-shadow:0 0 0 4px rgba(79,209,255,0.15);
}
.tech-page .timeline.in-view .tstep .tdot svg{stroke:#fff;}

.tech-page .tdot-pulse{
  position:absolute;inset:0;border-radius:50%;
  border:2px solid var(--cyan);
  opacity:0;
}
.tech-page .timeline.in-view .tstep .tdot-pulse{
  animation:tdotPulse 2.2s var(--ease) infinite;
}
.tech-page .timeline.in-view .tstep:nth-child(1) .tdot-pulse{animation-delay:.3s;}
.tech-page .timeline.in-view .tstep:nth-child(2) .tdot-pulse{animation-delay:.6s;}
.tech-page .timeline.in-view .tstep:nth-child(3) .tdot-pulse{animation-delay:.9s;}
.tech-page .timeline.in-view .tstep:nth-child(4) .tdot-pulse{animation-delay:1.2s;}
.tech-page .timeline.in-view .tstep:nth-child(5) .tdot-pulse{animation-delay:1.5s;}
.tech-page .timeline.in-view .tstep:nth-child(6) .tdot-pulse{animation-delay:1.8s;}

@keyframes tdotPulse{
  0%{opacity:.7;transform:scale(1);}
  80%{opacity:0;transform:scale(1.9);}
  100%{opacity:0;transform:scale(1.9);}
}

.tech-page .tstep h3{
  font-size:15.5px;margin-bottom:8px;
  transition:color .4s var(--ease);
}
.tech-page .timeline.in-view .tstep h3{color:var(--navy);}
.tech-page .tstep p{font-size:13.5px;}

.tech-page .tstep:hover .tdot{transform:scale(1.12);}
.tech-page .tstep:hover h3{color:var(--blue);}

@media (max-width:980px){
  .tech-page .timeline{grid-template-columns:1fr;gap:34px;}
  .tech-page .timeline::before, .tech-page .timeline::after{top:0;bottom:0;left:14px;right:auto;width:2px;height:0;}
  .tech-page .timeline.in-view::after{width:2px;height:100%;transition:height 1.8s var(--ease);}
  .tech-page .tstep{padding-top:0;padding-left:52px;}
  .tech-page .tstep .tdot{top:0;left:0;}
}

@media (prefers-reduced-motion: reduce){
  .tech-page .tdot-pulse{animation:none !important;}
  .tech-page .tstep{transition-delay:0s !important;}
}

/* =========================================================
   SECTION 9 — CASE STUDIES (generic .cases block, unused by current markup but kept scoped)
========================================================= */
.tech-page .cases{padding:120px 0;background:var(--white);}
.tech-page .cases-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;}
.tech-page .ccard{border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;transition:transform .4s var(--ease), box-shadow .4s var(--ease);}
.tech-page .ccard:hover{transform:translateY(-8px);box-shadow:0 34px 60px -34px rgba(10,31,68,0.3);}
.tech-page .ccard .cband{height:6px;background:linear-gradient(90deg,var(--blue),var(--cyan));}
.tech-page .ccard-body{padding:28px 26px;}
.tech-page .ctag{font-size:11.5px;letter-spacing:.08em;text-transform:uppercase;color:var(--blue);font-weight:600;}
.tech-page .ccard h3{margin:10px 0 16px;}
.tech-page .crow{margin-bottom:12px;}
.tech-page .crow b{display:block;font-size:11.5px;letter-spacing:.05em;text-transform:uppercase;color:var(--navy-2);margin-bottom:4px;font-weight:700;}
.tech-page .crow p{font-size:14px;margin:0;}
.tech-page .coutcome{margin-top:18px;padding-top:16px;border-top:1px dashed var(--line);font-weight:700;color:var(--navy);font-size:14.5px;}
@media (max-width:980px){.tech-page .cases-grid{grid-template-columns:1fr;}}

/* =========================================================
   SECTION 10 — FAQ
========================================================= */
.tech-page .faq{padding:30px 0;background:var(--paper);}
.tech-page .faq-list{max-width:800px;margin:0 auto;}
.tech-page .fitem{border-bottom:1px solid var(--line);}
.tech-page .fq-q{
  width:100%;display:flex;align-items:center;justify-content:space-between;
  padding:24px 4px;text-align:left;font-weight:700;font-size:17px;color:var(--navy);
}
.tech-page .fq-q .plus{width:22px;height:22px;flex:none;position:relative;margin-left:20px;}
.tech-page .fq-q .plus::before, .tech-page .fq-q .plus::after{
  content:"";position:absolute;background:var(--navy);top:50%;left:50%;transform:translate(-50%,-50%);
  transition:transform .3s var(--ease), background .3s;
}
.tech-page .fq-q .plus::before{width:14px;height:2px;}
.tech-page .fq-q .plus::after{width:2px;height:14px;}
.tech-page .fitem.open .fq-q .plus::after{transform:translate(-50%,-50%) rotate(90deg);opacity:0;}
.tech-page .fitem.open .fq-q .plus::before{background:var(--blue);}
.tech-page .fq-a{max-height:0;overflow:hidden;transition:max-height .4s var(--ease);}
.tech-page .fq-a p{padding:0 4px 24px;font-size:15px;max-width:680px;}

/* ===== CASE STUDIES SECTION (#CaseStudies) ===== */
.tech-page #CaseStudies {
  background: #07080B;
  padding: 30px 0;
  position: relative;
  overflow: hidden;
  color: #F3F4F6;
}

.tech-page #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;
}

.tech-page #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;
}

.tech-page #CaseStudies .cs-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

.tech-page #CaseStudies .client-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-align: center;
  margin: 0 0 16px 0;
  color: #F3F4F6;
}

.tech-page #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;
}

.tech-page #CaseStudies .cs-viewport {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  overflow: hidden;
}

.tech-page #CaseStudies .casestudies_slider {
  position: relative;
  overflow: hidden;
}

.tech-page #CaseStudies .slider-casestudies {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}

.tech-page #CaseStudies .caseStudiesSliderBox {
  flex: 0 0 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 6px;
}

.tech-page #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;
}

.tech-page #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;
}

.tech-page #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; }
}

.tech-page #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);
}

.tech-page #CaseStudies .case_box:hover::before { opacity: 0; }
.tech-page #CaseStudies .case_box:hover::after { opacity: 1; }

.tech-page #CaseStudies .case_box__image {
  flex: 0 0 420px;
  width: 420px;
  height: 300px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-page #CaseStudies .case_box__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.tech-page #CaseStudies .case_box__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.tech-page #CaseStudies .case_box__content h4 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 14px 0;
  color: #F3F4F6;
}

.tech-page #CaseStudies .case_box__content p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  color: #C7CAD1;
  margin: 0 0 20px 0;
}

.tech-page #CaseStudies .case_box__points {
  list-style: none;
  margin: 0 0 28px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tech-page #CaseStudies .case_box__points li {
  position: relative;
  padding-left: 22px;
  font-size: 13px;
  font-weight: 400;
  color: #8A8F9B;
  line-height: 1.4;
}

.tech-page #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);
}

.tech-page #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;
}

.tech-page #CaseStudies .viewCaseStudies i {
  font-style: normal;
  transition: transform 0.3s ease;
}

.tech-page #CaseStudies .viewCaseStudies::after {
  content: "\2192";
  transition: transform 0.3s ease;
}

.tech-page #CaseStudies .viewCaseStudies i {
  display: none;
}

.tech-page #CaseStudies .viewCaseStudies:hover {
  transform: translateY(-3px);
  background: #22D3EE;
}

.tech-page #CaseStudies .viewCaseStudies:hover::after {
  transform: translateX(4px);
}

.tech-page #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;
}

.tech-page #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;
}

.tech-page #CaseStudies .cs-dot.active {
  width: 26px;
  background: linear-gradient(90deg, #22D3EE, #8B5CF6);
}

.tech-page #CaseStudies .caseStudiesBottomArrows {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
}

.tech-page #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;
}

.tech-page #CaseStudies .caseStudiesBottomArrows button:hover {
  border-color: rgba(56,189,248,0.55);
  background: rgba(56,189,248,0.08);
  transform: translateY(-2px);
}

.tech-page #CaseStudies .caseStudiesBottomArrows i {
  font-style: normal;
}

.tech-page #CaseStudies .caseStudiesBottomArrows .fa-arrow-left::before { content: "\2190"; }
.tech-page #CaseStudies .caseStudiesBottomArrows .fa-arrow-right::before { content: "\2192"; }

@media (max-width: 991px) {
  .tech-page #CaseStudies { padding: 90px 0; }
  .tech-page #CaseStudies .client-title { font-size: 40px; }
  .tech-page #CaseStudies .case_box { flex-direction: column; padding: 32px; gap: 24px; }
  .tech-page #CaseStudies .case_box__image { width: 100%; max-width: 360px; height: 260px; flex: 0 0 260px; }
  .tech-page #CaseStudies .case_box__content { align-items: center; text-align: center; }
  .tech-page #CaseStudies .case_box__content h4 { font-size: 24px; }
  .tech-page #CaseStudies .case_box__points { align-items: flex-start; }
}

@media (max-width: 575px) {
  .tech-page #CaseStudies { padding: 30px 0; }
  .tech-page #CaseStudies .cs-container { padding: 0 20px; }
  .tech-page #CaseStudies .client-title { font-size: 30px; }
  .tech-page #CaseStudies .cs-subtext { font-size: 15px; margin-bottom: 40px; }
  .tech-page #CaseStudies .case_box { padding: 24px; }
  .tech-page #CaseStudies .case_box__image { width: 100%; max-width: 280px; height: 220px; flex: 0 0 220px; }
  .tech-page #CaseStudies .case_box__content h4 { font-size: 21px; }
  .tech-page #CaseStudies .case_box__points li { font-size: 12px; }
  .tech-page #CaseStudies .caseStudiesBottomArrows button { width: 42px; height: 42px; }
}

.tech-page .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;
}

/* =========================================================
   SCROLL REVEAL UTILITY
========================================================= */
.tech-page .reveal, .tech-page .reveal.reveal-armed, .tech-page .reveal.in{opacity:1 !important; transform:none !important;}

@media (max-width:640px){
  .tech-page .wrap{padding:0 22px;}
  .tech-page h2{font-size:28px;}
  .tech-page .expertise, .tech-page .explorer, .tech-page .industries, .tech-page .stack, .tech-page .showcase, .tech-page .why, .tech-page .process, .tech-page .cases, .tech-page .faq, .tech-page .final-cta{padding:80px 0;}
}