body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0b1220;
  color: white;
}

/* HERO */
.tech-hero {
  min-height: 100vh;
  background: linear-gradient(120deg, #0f4c81, #1b1f3b);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  animation: fadeIn 1s ease;
}

.tech-hero h1 {
  font-size: 42px;
}

.tech-hero p {
  max-width: 700px;
  opacity: 0.9;
}

.hero-btns {
  margin-top: 25px;
}

.btn {
  background: #ff7a18;
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  margin: 5px;
  display: inline-block;
}

.btn.outline {
  background: transparent;
  border: 2px solid #ff7a18;
}

/* SERVICES */
.tech-services {
  padding: 60px 20px;
  background: #f4f6fb;
  color: #111;
  text-align: center;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 20px;
  max-width: 1100px;
  margin: auto;
}

.tech-card {
  background: white;
  border-radius: 14px;
  padding: 25px;
  transition: transform .3s;
}

.tech-card:hover {
  transform: translateY(-8px);
}

/* LEGAL */
.tech-legal {
  padding: 60px 20px;
  background: #0f4c81;
  text-align: center;
}

.legal-box {
  max-width: 500px;
  margin: auto;
  background: rgba(255,255,255,0.1);
  padding: 25px;
  border-radius: 14px;
}

/* CTA */
.tech-cta {
  padding: 60px 20px;
  background: #111;
  text-align: center;
}

/* ANIMATION */
@keyframes fadeIn {
  from {opacity:0; transform: translateY(20px);}
  to {opacity:1; transform: translateY(0);}
}

/* MOBILE */
@media(max-width:768px){
  .tech-hero h1{font-size:30px;}
}

/* PROCESS FLOW */

.tech-process {
  background: #ffffff;
  padding: 70px 20px;
  text-align: center;
  color: #111;
}

.tech-process h2 {
  color: #0f4c81;
}

.process-sub {
  max-width: 700px;
  margin: 10px auto 40px;
  color: #555;
}

.process-track {
  overflow-x: auto;
  max-width: 1100px;
  margin: auto;
  padding-bottom: 20px;
}

.process-steps {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  width: fit-content;
  margin: 0 auto;
}

.process-progress {
  position: absolute;
  left: 0;
  top: 30px;
  height: 4px;
  overflow: hidden;
}

.process-line {
  height: 4px;
  background: linear-gradient(90deg, #ff7a18, #0f4c81);
}

.process-step {
  min-width: 180px;
  text-align: center;
  position: relative;
  padding: 0 10px;
  animation: fadeUp 1s ease forwards;
}

.process-step span {
  display: inline-block;
  background: #ff7a18;
  color: white;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  font-weight: bold;
  margin-bottom: 10px;
  z-index: 2;
  position: relative;
}

.process-step h4 {
  color: #0f4c81;
  margin: 5px 0;
}

.platform-note {
  margin-top: 30px;
  font-weight: bold;
  color: #0f4c81;
}

/* Mobile scroll */
@media(max-width:768px){
  .process-track{
    justify-content: flex-start;
  }
}