* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ***HERO***** */

.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.shape {
  position: absolute;
  opacity: 0.35;
}


.shape.square {
  width: 22px;
  height: 22px;
  border: 1px solid var(--gold);
   animation: drift-rotate 26s linear infinite;
}

.shape.square.s1 {
  top: 22%;
  left: 18%;
}

.shape.square.s2 {
  bottom: 28%;
  right: 24%;
}


.shape.line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  transform: rotate(-35deg);
  top: 55%;
  left: 12%;
  opacity: 0.25;
}


.shape.dots {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow:
    14px 0 var(--gold),
    28px 0 var(--gold);
  bottom: 20%;
  left: 50%;
  opacity: 0.3;

  animation: float-y 18s ease-in-out infinite;
}


.shape.circle {
  width: 28px;
  height: 28px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  top: 35%;
  right: 18%;
  opacity: 0.25;

  animation: float-y 18s ease-in-out infinite;
}


.shape.triangle {
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-bottom: 24px solid var(--gold);

  top: 65%;
  left: 22%;
  opacity: 0.22;

  animation: drift-rotate 26s linear infinite;
}




@keyframes float-y {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-24px);
  }
}


@keyframes drift-rotate {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(18px, -22px) rotate(90deg);
  }
  100% {
    transform: translate(0, 0) rotate(180deg);
  }
}

.services-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center; 
  background: #020202;
  overflow: hidden;
  padding: 0 40px;
}


.hero-bg-shape {
  position: absolute;
  width: 900px;
  height: 900px;
  right: -300px;
  top: -200px;
  background: radial-gradient(
    circle,
    rgba(198,162,74,0.12),
    transparent 65%
  );
  z-index: 0;
}

.services-hero-inner {
  max-width: 900px;
  position: relative;
  z-index: 1;
}


.hero-label {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 20px;
}


.services-hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(3rem, 5vw, 4.2rem);
  color: var(--rich-gold);
  line-height: 1.15;
  margin-bottom: 30px;
}


.services-hero p {
  font-size: 1.15rem;
  color: #bdbdbd;
  max-width: 700px;
  line-height: 1.7;
}


.services-hero-inner::before {
  content: '';
  position: absolute;
  left: -40px;
  top: 10px;
  width: 4px;
  height: 160px;
  background: linear-gradient(
    180deg,
    var(--gold),
    transparent
  );
}


@media (max-width: 768px) {
  .hero-bg-shape {
    width: 600px;
    height: 600px;
    right: -200px;
    top: -150px;
  }
} 


/* *************SERVICE SECTION ONE */
.service-section {
    padding: 100px 20px;
    
}

.service-container {
    max-width: 1200px;
    margin: auto;
}

.service-intro {
    max-width: 700px;
    margin-bottom: 60px;
}

.service-eyebrow {
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #888;
}

.service-intro h2 {
    font-size: 36px;
    margin: 10px 0 20px;
    color: #c6a24a;
    letter-spacing: 1px;
     font-family: 'Orbitron', sans-serif;
}

.service-intro p {
    font-size: 17px;
    line-height: 1.7;
    color: #ffff;
    letter-spacing: 1.2px;
}

.capability-section {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.capability-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px 10px;
    border-bottom: 1px solid #ececec;
    transition: all .3s ease;
}

.capability-item:hover {
    transform: translateX(6px);
}

.capability-marker {
    width: 4px;
    height: 60px;
    background: linear-gradient(180deg,#b0742b,#231e0d);
    border-radius: 3px;
}

.capability-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #c6a24a;
    letter-spacing: 1px;
}

.capability-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
    max-width: 750px;
}

.service-approach {
  margin-top: 3rem;
}

.service-approach h3 {
    font-size: 28px;
    margin-bottom: 40px;
   font-family: 'Orbitron', sans-serif;
   letter-spacing: 1px;
   color: #c6a24a;
}

.approach-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 30px;
}

.approach-step {
    padding: 20px;
    background: #020202;;
    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(81, 57, 16, 0.25);
}

.step-number {
    font-size: 28px;
    font-weight: bold;
    color: #e0c36d;
    display: block;
    margin-bottom: 10px;
}

.approach-step h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.approach-step p {
    font-size: 15px;
    color: #e0c36d;
    letter-spacing: 1.2px;
}

/* **********SERVICE SECTION TWO */
.services-expanded {
  padding: 140px 40px;
  background: #020202;
}

.services-expanded h2 {
  font-size: 2.6rem;
  margin-bottom: 100px;
  color: #111;
}

.service-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 100px;
  margin-bottom: 160px;
}

.service-feature.reverse {
  grid-template-columns: 1fr 1fr;
}

.service-feature.reverse .feature-media {
  order: 2;
}

.feature-media {
  position: relative;
  height: 360px;
  border-radius: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Color variants (like Slack blobs) */
.feature-media.blue {
  background: #37c3f0;
}

.feature-media.green {
  background: #2fb47c;
}

.feature-media.yellow {
  background: #f0b429;
}

.feature-media.purple {
  background: #5b2d6f;
}


/* Text */
.feature-text h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--rich-gold);
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 1.5px;
}

.feature-text p {
  font-size: 1.05rem;
  color: #444;
  max-width: 520px;
  margin-bottom: 24px;
}

.feature-text ul {
  padding-left: 18px;
}

.feature-text li {
  margin-bottom: 10px;
}

.feature-media.geo {
  position: relative;
  height: 260px;
  border-radius: 200px;
  overflow: hidden;
  background: #0b0b0b;
}

/* soft depth layer */
.geo-layer {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      120deg,
      rgba(198,162,74,0.12),
      rgba(0,0,0,0.65)
    );
  animation: gold-sheen 22s linear infinite;
}

.feature-media.geo::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(198,162,74,0.7),
    transparent
  );
  top: 50%;
  left: -120px;
  animation: gold-trace 18s ease-in-out infinite;
  opacity: 0.6;
}

@media (prefers-reduced-motion: reduce) {
  .geo-shape,
  .geo-layer,
  .feature-media.geo::before {
    animation: none;
  }
}

@keyframes gold-trace {
  0% {
    left: -120px;
    opacity: 0;
  }
  30% {
    opacity: 0.6;
  }
  60% {
    left: 100%;
    opacity: 0;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

.geo-layer {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      120deg,
      rgba(198,162,74,0.12),
      rgba(0,0,0,0.65)
    );
  animation: gold-sheen 22s linear infinite;
}

/* main shape */
.geo-shape {
  position: absolute;
  width: 160px;
  height: 140px;
  border: 2px solid rgba(198,162,74,0.6);
  opacity: 0.9;
}

.geo-arch .geo-shape {
  top: 100px;
  left: 100px;
  transform: rotate(8deg);
}

.geo-arch::after {
  content: '';
  position: absolute;
  width: 140px;
  height: 110px;
  border: 2px solid rgba(198,162,74,0.35);
  top: 120px;
  left: 140px;
}

.geo-platform .geo-shape {
  width: 240px;
  height: 140px;
  top: 110px;
  left: 80px;
}

.geo-platform::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(198,162,74,0.25) 50%,
      transparent 50%
    );
}

.geo-cloud .geo-shape {
  border-radius: 50%;
  top: 80px;
  left: 120px;
}

.geo-cloud::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid rgba(198,162,74,0.35);
  bottom: 80px;
  right: 120px;
}

.geo-api .geo-shape {
  width: 260px;
  height: 16px;
  top: 150px;
  left: 60px;
}

.geo-api::after {
  content: '';
  position: absolute;
  width: 260px;
  height: 16px;
  top: 190px;
  left: 90px;
  background: rgba(198,162,74,0.35);
}


.geo-ai .geo-shape {
  border-radius: 50%;
  width: 140px;
  height: 140px;
  top: 110px;
  left: 140px;
}

.geo-ai::after {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px dashed rgba(198,162,74,0.4);
  top: 70px;
  left: 100px;
}

.geo-devops .geo-shape {
  width: 200px;
  height: 12px;
  top: 120px;
  left: 80px;
}

.geo-devops::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 12px;
  top: 160px;
  left: 120px;
  background: rgba(198,162,74,0.35);
}

.geo-appsec .geo-shape {
  width: 140px;
  height: 140px;
  top: 110px;
  left: 180px;
  transform: rotate(45deg);
}

.geo-appsec::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 180px;
  border: 2px solid rgba(198,162,74,0.35);
  top: 65px;
  left: 120px;
}

.feature-media.geo {
  will-change: transform;
}


.geo-shape {
  animation: geo-drift 28s ease-in-out infinite;
}

/* Offset timing per service so nothing syncs */
.geo-platform .geo-shape { animation-duration: 32s; }
.geo-cloud .geo-shape { animation-duration: 36s; }
.geo-api .geo-shape { animation-duration: 30s; }
.geo-ai .geo-shape { animation-duration: 40s; }
.geo-devops .geo-shape { animation-duration: 26s; }

@keyframes geo-drift {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(18px, -14px) rotate(3deg);
  }
}

/* Mobile */
@media (max-width: 900px) {
  .service-feature,
  .service-feature.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-media {
    order: 1 !important;
  }
}

@media (max-width: 900px) {

  .services-expanded {
    padding: 100px 20px;
  }

  .service-feature {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 100px;
  }

  /* Always show geometry first, text second */
  .service-feature .feature-media {
    order: 1 !important;
  }

  .service-feature .feature-text {
    order: 2 !important;
  }

  .feature-text h3 {
    font-size: 1.6rem;
  }

  .feature-text p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .feature-text ul {
    margin-top: 16px;
  }
}

@media (max-width: 900px) {

  .feature-media.geo {
    height: 260px;            /* was 360px */
    border-radius: 140px;    /* tighter but still soft */
  }

  .geo-shape {
    width: 120px;
    height: 120px;
  }

  /* Variant-specific tweaks */
  .geo-platform .geo-shape {
    width: 180px;
    height: 100px;
  }

  .geo-api .geo-shape,
  .geo-devops .geo-shape {
    width: 160px;
    height: 10px;
  }
}

@media (max-width: 900px) {

  .geo-shape {
    animation-duration: 45s !important;
  }

  .geo-layer {
    animation-duration: 50s !important;
  }

  .feature-media.geo::before {
    animation-duration: 30s !important;
  }
}

@media (max-width: 900px) {

  .feature-text ul li {
    padding-left: 4px;
  }

  .feature-text ul li::marker {
    color: rgba(198,162,74,0.7);
  }
}

.feature-media.geo {
  contain: layout paint;
}





