/* ===== ORBIT COLORS ONLY (no layout/structure) ===== */

:root {
  /* Orbit exact primary from your inspect */
  --primary: #ec321e !important;
  --primary-light: #a8cf95 !important;
  --primary-dark: #6fa85a !important;

  /* Orbit page background gradient you found */
  --orbit-bg: linear-gradient(
    to right top,
    #0a1b32,
    #344660,
    #617692,
    #90abc7,
    #c3e2fe
  );
}

/* Global page background */
html,
body {
  background: var(--orbit-bg) !important;
}

/* Navbar white + dark text */
.navbar,
.navbar.scrolled {
  background: #fff !important;
  border-bottom: 1px solid rgba(17, 24, 39, 0.12) !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
}

.nav-link {
  color: #111827 !important;
}
.nav-link:hover,
.nav-link.active {
  color: var(--primary) !important;
}

.nav-toggle .bar {
  background: #111827 !important;
}

/* Mobile menu also white */
@media (max-width: 768px) {
  .nav-menu {
    background: #fff !important;
  }
  .nav-link {
    border-bottom: 1px solid rgba(17, 24, 39, 0.08) !important;
  }
}

/* Buttons green */
.nav-cta-btn,
.btn-primary,
.btn-main,
button,
.btn,
a.btn {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #fff !important;
}
.nav-cta-btn:hover,
.btn-primary:hover,
.btn-main:hover,
button:hover,
.btn:hover,
a.btn:hover {
  filter: brightness(0.92);
}

/* Footer dark (keep your logo unchanged) */
.footer {
  background: #050505 !important;
}
.footer a:hover {
  color: var(--primary) !important;
}

/* Headline highlight green */
.highlight,
.section-title .highlight,
.page-title .highlight {
  color: var(--primary) !important;
}

/* ===== FORCE ORBIT BACKGROUND (blue gradient) ===== */
:root {
  --orbit-bg: linear-gradient(
    to right top,
    #0a1b32,
    #344660,
    #617692,
    #90abc7,
    #c3e2fe
  );
}

/* Apply gradient to the whole page */
html,
body {
  background: var(--orbit-bg) !important;
}

/* Your style.css sets BODY background with multiple radial layers.
   This kills those layers completely. */
body {
  background: var(--orbit-bg) !important;
  background-image: var(--orbit-bg) !important;
}

/* ===== REMOVE DARK SECTION BACKGROUNDS (colors only) ===== */
/* Most of your sections use class="section" */
.section {
  background: transparent !important;
}

/* Some sections use their own background classes */
.testimonials,
.stats-section,
.gallery-preview,
.why-choose,
.applications,
.specifications,
.industries,
.contact-page,
.faq-section,
.cta-section,
.gallery-page {
  background: transparent !important;
}

/* Keep cards dark-navy like Orbit (so content stays readable) */
.service-card,
.advantage-card,
.team-card,
.category-card,
.stat-card,
.cert-card,
.mv-card,
.info-card,
.application-card,
.contact-form,
.testimonial-card {
  background: rgba(8, 28, 51, 0.92) !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
}
/* ===== FORCE REMOVE LOGO BOX (NAVBAR) ===== */
nav.navbar .nav-logo,
nav.navbar .nav-logo * {
  background: transparent !important;
  box-shadow: none !important;
  filter: none !important;
}

/* remove any pseudo-element layers */
nav.navbar .nav-logo::before,
nav.navbar .nav-logo::after,
nav.navbar .logo-icon::before,
nav.navbar .logo-icon::after {
  content: none !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* set a comfortable logo size (adjust if needed) */
nav.navbar .nav-logo .logo-icon {
  width: 68px !important;
  height: 68px !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

/* remove zoom/scale */
nav.navbar .nav-logo .logo-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  transform: none !important;
}

/* =========================================
   Client Satisfaction (Orbit-like middle dark section)
========================================= */
.client-satisfaction {
  background: #000 !important;
  color: #fff !important;
}

.client-satisfaction .cs-header {
  text-align: center;
  margin-bottom: 36px;
}

.client-satisfaction .cs-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.15;
  margin: 0 0 12px;
  font-weight: 800;
}

.client-satisfaction .cs-accent {
  color: #e6004c; /* Orbit-like pink/red accent */
}

.client-satisfaction .cs-subtitle {
  max-width: 820px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.client-satisfaction .cs-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 28px;
  align-items: center;
}

.client-satisfaction .cs-media {
  display: flex;
  justify-content: center;
}

.client-satisfaction .cs-media img {
  width: 100%;
  max-width: 520px;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

.client-satisfaction .cs-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
}

.client-satisfaction .cs-check {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(144, 188, 121, 0.35); /* Orbit primary green border */
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.client-satisfaction .cs-check .tick {
  color: #90bc79; /* Orbit primary green */
  font-size: 18px;
  font-weight: 800;
}

.client-satisfaction .cs-text h4 {
  margin: 0 0 6px;
  color: #e6004c; /* Orbit-like heading accent */
  font-family: var(--font-heading);
  font-weight: 700;
}

.client-satisfaction .cs-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .client-satisfaction .cs-grid {
    grid-template-columns: 1fr;
  }
  .client-satisfaction .cs-media img {
    max-width: 680px;
  }
  .client-satisfaction .cs-header {
    margin-bottom: 22px;
  }
}

/* =========================================
   PROCESS SECTION - Black background block
   (colors only, no structure change)
========================================= */
#process.process,
section.process#process {
  background: #000 !important;
  color: #fff !important;
}

/* Keep text readable */
#process .section-title,
#process .section-subtitle,
#process h3,
#process p {
  color: #fff !important;
}

#process .section-subtitle {
  color: rgba(255, 255, 255, 0.8) !important;
}

/* Timeline colors (Orbit green accent) */
#process .timeline-track {
  background: rgba(255, 255, 255, 0.18) !important;
}

#process .timeline-progress {
  background: var(--primary) !important; /* Orbit green */
}

#process .step-marker {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 2px solid rgba(144, 188, 121, 0.45) !important; /* Orbit green tone */
}

#process .step-marker span {
  color: var(--primary) !important;
}

/* Optional: make step cards slightly separated */
#process .process-step {
  border-bottom-color: rgba(255, 255, 255, 0.1) !important;
}
/* ===== PROCESS TIMELINE: keep line behind circles ===== */
#process .process-timeline {
  position: relative; /* enables z-index layering */
}

/* line track + progress behind */
#process .timeline-track,
#process #timelineProgress,
#process .timeline-progress {
  position: absolute; /* or keep if already absolute */
  z-index: 0 !important;
}

/* make progress Orbit green (not red) */
#process #timelineProgress,
#process .timeline-progress {
  background: var(--primary) !important;
}

/* steps above line */
#process .process-step {
  position: relative;
  z-index: 1 !important;
}

/* circles above everything + cover line behind */
#process .step-marker {
  position: relative;
  z-index: 2 !important;
  background: #000 !important; /* black section bg to hide line behind circle */
}

/* ======================================================
   SERVICES PAGE: Alternate section backgrounds (Blue/Black)
   No structure change
====================================================== */

/* Default service sections = Blue (use site theme gradient behind) */
section.service-detail {
  background: transparent !important; /* shows the blue theme background */
}

/* Make selected services BLACK (2nd, 4th, 6th) */
#ced-coating,
#industrial-coating,
#quality-testing {
  background: #000 !important;
}

/* Text colors inside BLACK service blocks */
#ced-coating,
#industrial-coating,
#quality-testing {
  --text-primary: #fff !important;
  --text-secondary: rgba(255, 255, 255, 0.88) !important;
  --text-muted: rgba(255, 255, 255, 0.7) !important;
  color: var(--text-primary) !important;
}

#ced-coating p,
#ced-coating span,
#ced-coating li,
#industrial-coating p,
#industrial-coating span,
#industrial-coating li,
#quality-testing p,
#quality-testing span,
#quality-testing li {
  color: var(--text-secondary) !important;
}

/* Optional: keep headings crisp on black */
#ced-coating h2,
#ced-coating h3,
#industrial-coating h2,
#industrial-coating h3,
#quality-testing h2,
#quality-testing h3 {
  color: #fff !important;
}
