/* ===============================
   Global Theme & Typography Setup
   (colors & font adapted from first CSS)
   =============================== */

:root {
  --color-body: #fffbeb;
  --color-text: #132a37;
  --color-text-2: #a6b6bf;
  --color-primary: #1f2937;
  --color-secondary: #0d9488;
  --color-tertiary: #af906e;
  /* derived RGB for rgba usage */
  --color-primary-rgb: 31, 41, 55;
  --color-secondary-rgb: 13, 148, 136;
  --color-body-rgb: 255, 251, 235;
}

/******************** Global body style ********************/
* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.6;
  color: var(--color-text);
  /* keep background gradient form but use color from palette */
  background: linear-gradient(135deg, rgba(var(--color-body-rgb),1), rgba(var(--color-body-rgb),1));
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* =========================
   Headings / Typography
   ========================= */
.section-heading {
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  margin-bottom: 1.25rem;
  font-weight: 700;
  text-align: center;
  color: var(--color-secondary);
}

/* =========================
   Back button
   ========================= */
.back-btn {
  position: fixed;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;

  /* Glassmorphism */
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 25px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  z-index: 1000;

  transition: all 0.2s ease-in-out;
}

.back-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  color: var(--color-secondary);
}

.back-btn i {
  font-size: 18px;
}

/* =========================
   Sidebar Navigation
   ========================= */
.side-nav {
  position: fixed;
  top: 52%;
  left: 1rem;
  transform: translateY(-50%);
  z-index: 1100;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 25px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  padding: 1.4rem 0.9rem;
}

.side-nav nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.nav-item {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: var(--color-primary);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: transform .25s ease, color .25s ease;
  cursor: pointer;
}

.nav-item:hover {
  transform: scale(1.15);
  color: var(--color-secondary);
}

.nav-item::after {
  content: attr(data-label);
  position: absolute;
  left: 60px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-10px);
  background: linear-gradient(90deg, var(--color-secondary));
  color: var(--color-body);
  font-weight: 600;
  font-size: .9rem;
  padding: .35rem .8rem;
  border-radius: 999px;
  transition: all .28s ease;
  pointer-events: none;
}

.nav-item:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* Hide the side nav on smaller screens to avoid overlapping content */
@media (max-width: 900px) {
  .side-nav {
    display: none;
  }
}



/* =========================
   HERO
   ========================= */
.hero {
  padding: 4.5rem 1.25rem;
  background: linear-gradient(180deg, rgba(var(--color-body-rgb),1) 0%, rgba(255,255,255,0.96) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 2.5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1000px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

.hero-panel { 
  padding: 2rem;

  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.eyebrow {
  display: inline-block;
  font-size: .9rem;
  color: var(--color-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: .6rem;
}

.hero-panel h1 {
  margin: 0 0 1rem 0;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  line-height: 1.2;
  font-weight: 800;
}

.lead {
  color: var(--color-text);
  margin-bottom: 1.25rem;
  font-size: clamp(.95rem, 2vw, 1.05rem);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  text-decoration: none;
  padding: .75rem 1.25rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: .95rem;
  transition: transform .25s;
}

.btn-primary {
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  color: var(--color-body);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(31, 41, 55, 0.1); /* derived from --color-primary */
  color: var(--color-text);
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-3px);
}

.mini-stats {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.mini-stats li {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: .8rem 1.1rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.mini-stats strong {
  display: block;
  color: var(--color-secondary);
  font-size: 1.2rem;
  font-weight: 700;
}

/* visual card */
.hero-visual .visual-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--color-body);
  box-shadow: 0 26px 80px rgba(2, 6, 23, 0.12);
  transition: transform .3s ease;
}

.hero-visual .visual-card:hover {
  transform: translateY(-6px) scale(1.02);
}

.visual-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

.device-strip {
  display: flex;
  gap: .6rem;
  padding: .7rem;
  background: rgba(255, 255, 255, 0.85);
}

.device-strip img {
  width: 56px;
  height: 38px;
  object-fit: cover;
  border-radius: 8px;
}

.badge {
  position: absolute;
  right: 14px;
  top: 14px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  color: var(--color-body);
  padding: .35rem .7rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .78rem;
}

/* ===== GALLERY MODAL ===== */
.gallery-modal {
  display: none;
  position: fixed;
  z-index: 999;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
}

.gallery-content {
  position: relative;
  max-width: 900px;
  margin: 60px auto;

  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(14px);
  

  border-radius: 18px;
  padding: 30px 30px 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  animation: slideUp 0.3s ease;
}

/* Close button */
.close-gallery {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 32px;
  color: var(--color-primary);
  cursor: pointer;
  transition: color 0.3s ease;
}
.close-gallery:hover {
  color: #fff;
}

/* Main large image */
.gallery-main {
  text-align: center;
  margin-bottom: 18px;
  position: relative;
}
.gallery-main img {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
  border-radius: 12px;
  transition: opacity 0.4s ease;
}

/* Thumbnails */
.gallery-thumbnails {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.gallery-thumbnails img {
  width: 100px;
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  border: 3px solid transparent;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.gallery-thumbnails img:hover {
  transform: scale(1.05);
}
.gallery-thumbnails img.active {
  border-color: var(--color-secondary);
}

/* Navigation Arrows */
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 42px;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.4);
  padding: 8px 14px;
  border-radius: 50%;
  cursor: pointer;
  user-select: none;
  transition: background 0.3s, transform 0.2s;
}
.nav-arrow:hover {
  transform: translateY(-50%) scale(1.1);
}
.nav-arrow.prev {
  left: -60px;
}
.nav-arrow.next {
  right: -60px;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Responsive */
@media (max-width: 700px) {
  .gallery-content {
    width: 90%;
    padding: 20px;
  }
  .gallery-thumbnails img {
    width: 80px;
    height: 55px;
  }
  .nav-arrow {
    display: none; /* hide arrows on small screens */
  }
}

/******************** Challenges Section ********************/
.challenges {
  padding: 5rem 2rem;
  display: flex;
  justify-content: center;
  margin: 3rem auto;
}

.challenges-container {
  max-width: 950px;
  width: 100%;
  background: var(--color-primary);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 24px;
  padding: 2rem;
}

.section-head {
  text-align: center;
  margin-bottom: 2rem;

}

.section-sub {
  margin: 0.75rem auto 0;
  color: rgba(var(--color-body-rgb), 0.9);
  max-width: 680px;
  font-size: 1.1rem;
  line-height: 1.5;
}

.challenge-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: var(--color-body);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.challenge-item:hover {
  transform: translateY(-4px);
}

.challenge-illustration {
  flex: 0 0 65px;
  display: flex;
  justify-content: center;
}

.icon-frame {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--color-body);
}

.challenge-text h3 {
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
  font-weight: 700;
}

.challenge-text p {
  margin: 0;
  font-size: 1rem;
  color: var(--color-text);
}

@media (max-width: 768px) {
  .challenge-item {
    flex-direction: column;
    text-align: center;
  }

  .challenge-illustration {
    margin-bottom: 0.8rem;
  }
}

/****************** SOLUTION SECTION *******************/
/* container (glass) */
.solution-section {
  margin: 2.25rem auto;
  max-width: 1200px;
  padding: 3rem 1.25rem;
  position: relative;
  /* glass background */
  background: linear-gradient(180deg, var(--color-primary), var(--color-primary));
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  overflow: visible;
}

.solution-sub {
  margin: 0.75rem auto 0;
  color: rgba(var(--color-body-rgb), 0.9);
  max-width: 680px;
  font-size: 1.1rem;
  line-height: 1.5;
}

/* timeline grid: 3 columns, 3 rows (top / line / bottom) */
.solution-timeline {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto 56px auto;
  gap: 1.5rem 2rem;
  align-items: center;
  position: relative;
  padding: 1.5rem 1rem 2rem;
}

/* horizontal center line */
.timeline-line {
  grid-column: 1 / -1;
  grid-row: 2;
  height: 4px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.95), transparent);
  border-radius: 2px;
  opacity: 0.95;
  z-index: 1;
}

/* timeline badges (markers) sit on the line, centered in their column) */
.timeline-badge {
  grid-row: 2;
  justify-self: center;
  align-self: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-body);
  font-weight: 800;
  font-size: 1.25rem;
  z-index: 3;
  transition: all 0.3s ease;
}

.timeline-badge:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.3);
}

/* place badges into the three columns */
.badge-1 {
  grid-column: 1;
}

.badge-2 {
  grid-column: 2;
}

.badge-3 {
  grid-column: 3;
}

/* solution items (cards) */
.solution-item {
  z-index: 2;
  display: flex;
  justify-content: center;
}

/* place items in grid cells for the zig-zag: 
        - step-1: top-left (column 1, row 1)
        - step-2: bottom-center (column 2, row 3)
        - step-3: top-right (column 3, row 1)
        */
.step-1 {
  grid-column: 1;
  grid-row: 1;
  justify-self: center;
}

.step-2 {
  grid-column: 2;
  grid-row: 3;
  justify-self: center;
}

.step-3 {
  grid-column: 3;
  grid-row: 1;
  justify-self: center;
}

/* card style (gradient card) */
.timeline-card {
  max-width: 360px;
  width: 100%;
  padding: 1.75rem 1.5rem;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  color: var(--color-body);
  position: relative;
  transition: all 0.3s ease;
}

/* card text */
.timeline-card h3 {
  margin: 0 0 0.75rem 0;
  font-size: 1.25rem;
  line-height: 1.3;
}

.timeline-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.6;
}

/* slight hover for card */
.timeline-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* Responsive styles */
@media (max-width: 992px) {
  .solution-timeline {
    gap: 1.5rem 1rem;
  }

  .timeline-card {
    padding: 1.5rem 1.25rem;
  }

  .timeline-card h3 {
    font-size: 1.15rem;
  }

  .timeline-card p {
    font-size: 0.95rem;
  }
}

/* Tablet and mobile styles */
@media (max-width: 768px) {
  .solution-section {
    padding: 2.5rem 1.5rem;
    margin: 1.5rem auto;
  }

  .solution-head {
    margin-bottom: 2rem;
  }

  .solution-timeline {
    display: flex;
    flex-direction: column;
    padding: 0;
    gap: 0;
  }

  .timeline-line {
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.95), transparent);
    grid-column: unset;
    grid-row: unset;
  }

  .solution-item {
    width: 100%;
    margin-bottom: 2.5rem;
    padding-left: 80px;
    justify-content: flex-start;
  }

  .timeline-card {
    max-width: 100%;
    width: calc(100% - 30px);
  }

  .timeline-badge {
    position: absolute;
    left: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    border: 2px solid rgba(255,255,255,0.9);
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-body);
    font-weight: 800;
    font-size: 1.25rem;
    z-index: 3;
  }

  .badge-1 {
    top: 0;
    left: 30px;
  }

  .badge-2 {
    top: calc(37% - 30px);
    left: 30px;
  }

  .badge-3 {
    top: calc(75% - 60px);
    left: 30px;
  }
}

@media (max-width: 576px) {
  .solution-section {
    padding: 2rem 1.25rem;
    border-radius: 16px;
  }

  .solution-item {
    padding-left: 70px;
  }

  .timeline-badge {
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
  }

  .badge-1,
  .badge-2,
  .badge-3 {
    left: 25px;
  }

  .timeline-line {
    left: 25px;
  }

  .timeline-card {
    padding: 1.35rem 1.15rem;
  }

  .timeline-card h3 {
    font-size: 1.1rem;
  }

  .timeline-card p {
    font-size: 0.9rem;
  }
}

/**************************** Results Section ***************/
.results-section {
  padding: 5rem 2rem;
  text-align: center;
  max-width: 950px;
  margin: 3rem auto;
  background: var(--color-primary);
  backdrop-filter: blur(16px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.results-head p {
  margin: 0.75rem auto 2rem;
  color: rgba(var(--color-body-rgb), 0.9);
  max-width: 680px;
  font-size: 1.1rem;
  line-height: 1.5;
}

.results-box {
  background: var(--color-body);
  border-radius: 20px;
  padding: 3rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.results-circles {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.circle-card {
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


/* Circle Styles */
.circle {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto;
}

.circle svg {
  width: 160px;
  height: 160px;
  transform: rotate(-90deg);
}

.circle svg circle {
  fill: none;
  stroke-width: 14;
  stroke-linecap: round;
}

.circle svg circle:first-child {
  stroke: rgba(229, 231, 235, 1); /* neutral track */
}

.circle svg circle:last-child {
  stroke: url(#grad1);
  stroke-dasharray: 440;
  stroke-dashoffset: 440;
  transition: stroke-dashoffset 2s ease;
}

.circle-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text);
}

.circle-card p {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
}

/* =========================

   Tech Orbit Section

   ========================= */

.tech-orbit-section {
  width: 100%;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 1rem;
}

.container {
  width: 90%;
  max-width: 1000px;
  background: rgba(30, 30, 47, 0.96);
  border-radius: 24px;
  padding: 1rem 1.25rem;
  position: relative;
  overflow: visible;
}

/* heading inside container */
.section-heading-2 {
  text-align: center;
  margin-bottom: 0.8rem;
}

/* orbit container: occupies an area that holds rings */
.orbit-container {
  position: relative;
  width: 100%;
  height: 520px;
  /* desktop area */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* sun (center) */
.sun {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90px;
  height: 90px;
  background: #ffcc00;
  color: #1e1e2f;
  font-weight: 800;
  font-size: 0.85rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px rgba(255, 204, 0, 0.7);
  z-index: 6;
}

/* orbit rings centered */
.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.30);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* sizes (desktop) */
.orbit-1 {
  width: 240px;
  height: 240px;
}

.orbit-2 {
  width: 380px;
  height: 380px;
}

.orbit-3 {
  width: 520px;
  height: 520px;
}

/* tech circles - stacked image + label */
.tech-circle {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  border: 1.5px solid var(--color-secondary); 
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px;
  transition: transform .22s ease, background .22s ease, border .22s ease;
  animation: float 3.5s ease-in-out infinite;
  z-index: 5;
}

.tech-circle img {
  width: 22px;
  height: 22px;
  margin-bottom: 3px;
  display: block;
}

.tech-circle span {
  font-size: 10px;
  line-height: 1;
}

/* floating only Y translation so manual positions remain intact */
@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0);
  }
}

/* hover effect - note: while hovered the translateY is temporarily overridden */
.tech-circle:hover {
  transform: scale(1.18);
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.7);
}

/* independent delays so floats look natural */
.orbit-1 .tech-circle:nth-child(1) { animation-delay: 0s; }

.orbit-1 .tech-circle:nth-child(2) { animation-delay: 0.5s; }

.orbit-1 .tech-circle:nth-child(3) { animation-delay: 1s; }



.orbit-2 .tech-circle:nth-child(1) { animation-delay: 0.8s; }

.orbit-2 .tech-circle:nth-child(2) { animation-delay: 1.6s; }

.orbit-2 .tech-circle:nth-child(3) { animation-delay: 2.2s; }



.orbit-3 .tech-circle:nth-child(1) { animation-delay: 0.3s; }

.orbit-3 .tech-circle:nth-child(2) { animation-delay: 1.1s; }

.orbit-3 .tech-circle:nth-child(3) { animation-delay: 2s; }

.orbit-3 .tech-circle:nth-child(4) { animation-delay: 2.3s; }

/* === KEEP YOUR MANUAL POSITIONS EXACTLY AS PROVIDED BY YOU === */
.orbit-1 .tech-circle:nth-child(1) { top: -8%; left: 40%;}

.orbit-1 .tech-circle:nth-child(2) { top: 70%; right: 0; }

.orbit-1 .tech-circle:nth-child(3) { bottom: 3%; left: 8%; }



.orbit-2 .tech-circle:nth-child(1) { top: 38%; left: -5%; }

.orbit-2 .tech-circle:nth-child(2) { top: 35%; right: -3%; }

.orbit-2 .tech-circle:nth-child(3) { bottom: -6%; left: 45%; }



.orbit-3 .tech-circle:nth-child(1) { top: 2%; left: 20%; }

.orbit-3 .tech-circle:nth-child(2) { top: 70%; right: 0; }

.orbit-3 .tech-circle:nth-child(3) { bottom: 10%; left: 10%;}

.orbit-3 .tech-circle:nth-child(4) { top: 10%; left: 80%; }

/* smaller screens adjustments */
@media (max-width: 900px) {
  .orbit-container {
    height: 420px;
  }

  .orbit-1 { width: 200px; height: 200px;}

  .orbit-2 { width: 320px; height: 320px;}

  .orbit-3 { width: 440px; height: 440px;}

  .tech-circle {
    width: 54px;
    height: 54px;
    font-size: 9px;
  }

  .tech-circle img {
    width: 18px;
    height: 18px;
  }

  .sun {
    width: 76px;
    height: 76px;
    font-size: 11px;
  }
}

@media (max-width: 600px) {
  .container {
    padding: .75rem;
    width: 95%;
  }

  .orbit-container {
    height: 360px;
  }

  .orbit-1 { width: 160px; height: 160px; }

  .orbit-2 { width: 260px; height: 260px; }

  .orbit-3 { width: 360px; height: 360px; }

  .tech-circle {
    width: 48px;
    height: 48px;
    font-size: 8px;
  }

  .tech-circle img {
    width: 16px;
    height: 16px;
    margin-bottom: 2px;
  }

  .sun {
    width: 66px;
    height: 66px;
    font-size: 10px;
  }

  .section-heading-2 {
    font-size: 1.2rem;
  }
}

/* Footer */
.footer {
  background: linear-gradient(180deg,var(--color-primary),var(--color-primary));
  color: var(--color-body);
  padding: 5rem 2rem 2rem;
  margin-top: 5rem;

  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 3rem;
  padding-top: 1.5rem;
  text-align: center;
}

.footer p {
  font-size: 0.9rem;
  color: var(--color-text-2);
}
