/* ============================================
   CSS Variables
   ============================================ */
:root {
  --blue-lightest: #4cc4ff;
  --blue-light: #21b7ff;
  --blue: #00aaff;
  --blue-primary: #009bef;
  --blue-dark: #0788da;
  --blue-darker: #0677c6;
  --blue-darkest: #0a57a4;

  --green-lightest: #00e4b5;
  --green-light: #00d7a4;
  --green-medium: #00cb94;
  --green-primary: #00bc85;
  --green-dark: #00aa73;
  --green-darker: #009864;
  --green-darkest: #007a44;

  --black: #171a20;
  --dark-gray: #393c41;
  --mid-gray: #5c5e62;
  --light-gray: #f4f4f4;
  --white: #ffffff;

  --cgRed: rgb(216, 63, 33);
  --accent: #FFCC00;

  --font: 'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* ============================================
   Base Styles
   ============================================
*/

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background-color: var(--white);
  color: var(--black);
  line-height: 1.5;
  font-weight: 300;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  position: relative;
}

/* body::before disabled — no background-image set, fixed layer hurts scroll perf
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.04;
  z-index: -1;
} */

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  letter-spacing: -0.5px;
}

h1 { font-size: 40px; }
h2 { font-size: 32px; margin-bottom: 40px; }
h3 { font-size: 24px; }

p {
  font-size: 16px;
  font-weight: 300;
  color: var(--dark-gray);
}

.card-text {
  text-align: left;
}

.neon-text-gold {
  color: var(--blue-dark);
  font-weight: 600;
}

/* ============================================
   Section Titles
   ============================================ */
section h2 {
  font-size: 40px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 50px;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  border-radius: 2px;
}

/* ============================================
   Navbar
   ============================================ */
.navbar {
  background-color: transparent;
  transition: all 0.3s ease;
  padding: 0px 0;
  z-index: 1000;
  color: var(--white);
}

.navbar.scrolled {
  background-color: var(--white);
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
  color: var(--black);
}

.navbar-brand {
  font-weight: 600;
  font-size: 3em;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  color: var(--white);
}

.navbar.scrolled .navbar-brand {
  color: var(--black);
  font-size: 24px;
}

.navbar-logo {
  height: 2.5em;
}

.navbar-triangle {
  display: inline-block;
  transition: transform 0.3s ease;
  transform: rotate(0deg);
}

.navbar.scrolled .navbar-triangle {
  transform: rotate(180deg);
}

.navbar-nav {
  margin-left: auto;
}

.navbar-dark .navbar-nav .nav-link {
  color: var(--white);
  font-weight: 400;
  font-size: 15px;
  padding: 5px 15px;
  margin-right: 10px;
  border-radius: 5px;
  transition: all 0.3s ease;
  position: relative;
  background-color: var(--blue-dark);
}

.navbar-dark .navbar-nav .nav-link.active {
  background-color: var(--blue-darkest);
  color: var(--white);
  font-weight: 500;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.nav-link:hover {
  color: var(--white);
  font-weight: 500;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

li#cgproLink a.nav-link.active,
.navbar-nav .nav-link[href="#cgpro"].active {
  background-color: var(--cgRed) !important;
  color: var(--white) !important;
  font-weight: 500;
}

li#cgproLink:hover a.nav-link {
  color: var(--white) !important;
  background-color: var(--cgRed) !important;
  font-weight: 500;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.sidebar-nav a[href="#cgpro"].active {
  background-color: var(--cgRed) !important;
  color: var(--white) !important;
  font-weight: 500;
}

/* ============================================
   Sidebar (mobile nav)
   ============================================ */
@media (max-width: 993px) {
  .navbar-collapse {
    display: none !important;
  }

  .navbar-brand {
    font-size: 6vw;
  }

  .sidebar-toggle {
    display: block !important;
    border: none;
    background: transparent;
    color: var(--white);
    font-size: 24px;
  }

  .navbar.scrolled .sidebar-toggle {
    color: var(--black);
  }

  .sidebar {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1100;
    transition: all 0.3s ease;
    padding-top: 70px;
    padding-left: 20px;
    padding-right: 20px;
    overflow-y: auto;
  }

  .sidebar.active {
    right: 0;
  }

  .sidebar-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
  }

  .sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .sidebar-nav li {
    margin-bottom: 20px;
  }

  .sidebar-nav a {
    color: var(--white);
    font-size: 18px;
    text-decoration: none;
    display: block;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
  }

  .sidebar-nav a:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }

  .sidebar-nav a.active {
    background-color: var(--blue-dark);
    color: var(--white);
  }

  .sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    display: none;
  }

  .sidebar-overlay.active {
    display: block;
  }

  .sidebar-nav a[href="#cgpro"]:hover {
    color: rgb(243, 243, 243) !important;
    background-color: var(--cgRed) !important;
    font-weight: 500;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
  }
}

@media (min-width: 992px) {
  .sidebar, .sidebar-toggle, .sidebar-overlay {
    display: none !important;
  }
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, #080e18 0%, #0d1a2d 30%, #0f2136 60%, #091420 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background:
    radial-gradient(ellipse at 25% 30%, rgba(0, 155, 239, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 75% 60%, rgba(0, 188, 133, 0.08) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 80%, rgba(0, 155, 239, 0.06) 0%, transparent 40%);
  z-index: 0;
}

#gisCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(0, 155, 239, 0.05) 0%, transparent 35%),
    radial-gradient(ellipse at 85% 80%, rgba(0, 188, 133, 0.04) 0%, transparent 40%);
  opacity: 1;
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  padding: 3rem 1rem;
}

.hero-row {
  min-height: 80vh;
}

.hero-content-col {
  padding: 2rem 1rem;
}

.hero-content {
  max-width: 540px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  animation: fadeInUp 0.8s ease forwards;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--blue-light);
  margin-bottom: 1.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
}

.typed-text {
  display: inline-block;
}

.cursor {
  display: inline-block;
  width: 3px;
  background-color: var(--blue-light);
  margin-left: 2px;
  animation: blink 0.7s infinite;
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  font-weight: 400;
  animation: fadeInUp 0.8s 0.3s ease forwards;
  opacity: 0;
  animation-fill-mode: forwards;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s 0.5s ease forwards;
  opacity: 0;
  animation-fill-mode: forwards;
}

.hero-btn {
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background-color: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 170, 255, 0.3);
  transition: all 0.3s ease;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 170, 255, 0.4);
  background-color: var(--blue-dark);
  color: var(--white);
}

.hero-btn-outline {
  background-color: transparent;
  border: 2px solid var(--blue-light);
  color: var(--blue-light);
  box-shadow: none;
}

.hero-btn-outline:hover {
  background-color: var(--blue-light);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 170, 255, 0.2);
}

/* Hero Visual / Blueprint */
.hero-visual-col {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: floatAnimation 6s ease-in-out infinite;
}

/* Testimonial Card */
.hero-testimonial-card {
  border: 1px solid rgba(0, 170, 255, 0.15);
  border-radius: 16px;
  padding: 32px 28px 24px;
  background-color: rgba(0, 0, 0, 0.4);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  animation: fadeInUp 0.8s 0.4s ease forwards;
  opacity: 0;
  animation-fill-mode: forwards;
}

.hero-quote-icon {
  color: var(--blue-light);
  font-size: 1.4rem;
  opacity: 0.5;
  margin-bottom: 16px;
}

.hero-quotes-container {
  position: relative;
  overflow: hidden;
  transition: height 0.5s ease;
}

.hero-quote {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  visibility: hidden;
}

.hero-quote.active {
  opacity: 1;
  visibility: visible;
}

.hero-quote-text {
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 20px;
  font-weight: 300;
}

.quote-short {
  display: none;
}

.hero-quote-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-quote-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--blue-light);
}

.hero-quote-role {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
}

.hero-quote-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.hero-quote-arrow {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.6);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.7rem;
  transition: all 0.3s ease;
}

.hero-quote-arrow:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--blue-light);
}

.hero-quote-dots {
  display: flex;
  gap: 8px;
}

.hero-quote-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-quote-dot.active {
  background: var(--blue-light);
  box-shadow: 0 0 8px rgba(33, 183, 255, 0.4);
}

/* Trust Stats Bar */
.hero-trust-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  
  border: 1px solid rgba(0, 170, 255, 0.1);
  border-radius: 12px;
  padding: 16px 8px;
  background-color: rgba(0, 0, 0, 0.4);
  animation: fadeInUp 0.8s 0.6s ease forwards;
  opacity: 0;
  animation-fill-mode: forwards;
}

.hero-trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  text-align: center;
}

.hero-trust-stat i {
  font-size: 1rem;
  color: var(--blue-light);
  opacity: 0.6;
  margin-bottom: 2px;
}

.hero-trust-value {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.hero-trust-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.hero-trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.hero-blueprint {
  position: relative;
  border: 2px solid rgba(0, 170, 255, 0.3);
  border-radius: 2px;
  background-color: rgba(20, 30, 48, 0.8);
  padding: 5px;
  box-shadow:
    0 0 0 5px rgba(20, 30, 48, 0.5),
    0 20px 40px rgba(0, 0, 0, 0.4);
  transition: box-shadow 0.3s ease;
}

.hero-blueprint:hover {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  z-index: 2;
  animation: fadeIn 1s 0.5s ease forwards;
  opacity: 0;
  animation-fill-mode: forwards;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: bounceAnimation 2s infinite;
}

.hero-scroll-indicator a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.3s ease;
  text-decoration: none;
}

.hero-scroll-indicator a:hover {
  background-color: var(--blue);
}

.hero-scroll-indicator i {
  font-size: 1rem;
}

/* ============================================
   Services Section
   ============================================ */
.services-section {
  padding: 100px 0 80px;
}

.services-section h2 {
  margin-bottom: 12px;
}

.services-subtitle {
  font-size: 1.05rem;
  color: var(--mid-gray);
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 40px 32px 36px;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-primary), var(--blue-darker));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 155, 239, 0.12);
  border-color: rgba(0, 155, 239, 0.15);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(0, 155, 239, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.35s ease;
}

.service-icon-wrap i {
  font-size: 1.3rem;
  color: var(--blue-primary);
  transition: transform 0.35s ease;
}

.service-card:hover .service-icon-wrap {
  background: var(--blue-primary);
}

.service-card:hover .service-icon-wrap i {
  color: #fff;
  transform: scale(1.1);
}

.service-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}

.service-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--dark-gray);
  margin-bottom: 24px;
  flex: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue-primary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: gap 0.3s ease;
}

.service-card:hover .service-link {
  gap: 12px;
}

.service-link i {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.service-card:hover .service-link i {
  transform: translateX(3px);
}

@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    gap: 20px;
  }
}

@media (max-width: 768px) {

  .services-section {
    padding: 70px 0 60px;
  }

  .service-card {
    padding: 28px 24px;
  }
}

/* ============================================
   Success Stories Section
   ============================================ */

.success-stories-section {
  width: 100%;
  padding: 90px 0 80px;
  background: linear-gradient(175deg, #f0f7fc 0%, #e8f4fb 50%, #f4f9fd 100%);
  position: relative;
  overflow: hidden;
}

.success-stories-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(0, 155, 239, 0.06) 0%, transparent 70%);
  pointer-events: none;
}


.success-stories-section h2 {
  color: var(--black);
}

.success-stories-section h2::after {
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
}

.success-subtitle {
  color: var(--mid-gray);
  font-size: 1.1rem;
  max-width: 520px;
  margin: -16px auto 52px;
}

.story-card {
  background: var(--white);
  border-radius: 16px;
  padding: 0;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.5s ease;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.story-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 155, 239, 0.2);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.08),
    0 0 40px rgba(0, 155, 239, 0.06);
}

.story-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 28px 20px;
  background: linear-gradient(135deg, rgba(0, 155, 239, 0.06), rgba(0, 155, 239, 0.02));
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.story-pin-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-darker) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(216, 63, 33, 0.3);
}

.story-pin-wrap i {
  font-size: 1.2rem;
  color: #fff;
}

.story-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
  color: var(--black);
}

.story-tag {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--blue-primary);
  margin-top: 2px;
}

.story-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
}

.stat-item {
  text-align: center;
  padding: 22px 12px 18px;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: background 0.3s ease;
  position: relative;
}

.stat-item:nth-child(2n) {
  border-right: none;
}

.stat-item:nth-child(n+3) {
  border-bottom: none;
}

.stat-item:hover {
  background: rgba(0, 155, 239, 0.04);
}

.stat-icon {
  margin-bottom: 8px;
}

.stat-icon i {
  font-size: 1.1rem;
  color: var(--blue);
  opacity: 0.6;
}

.stat-value {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.stat-label {
  display: block;
  font-size: 0.72rem;
  color: var(--mid-gray);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 4px;
}

.stat-bar {
  width: 100%;
  height: 4px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 2px;
  margin-top: 10px;
  overflow: hidden;
}

.stat-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--green-primary));
  border-radius: 2px;
  transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.story-desc {
  color: var(--mid-gray);
  font-size: 0.88rem;
  line-height: 1.65;
  margin: 0;
  padding: 20px 28px 28px;
}

@media (max-width: 768px) {
  .success-stories-section {
    padding: 70px 0 60px;
  }

  .stat-value {
    font-size: 1.5rem;
  }

  .story-header {
    padding: 22px 20px 16px;
  }

  .story-desc {
    padding: 16px 20px 22px;
  }
}

/* ============================================
   Video Showcase
   ============================================ */
.video-showcase-section {
  padding: 80px 0;
  background: 
    linear-gradient(45deg, var(--blue-lightest) 0%, rgba(76, 196, 255, 0.3) 25%, var(--blue-lightest) 50%, rgba(33, 183, 255, 0.2) 75%, var(--blue-lightest) 100%);
  position: relative;
  overflow: hidden;
}

.video-showcase-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(76, 196, 255, 0.4) 0%, transparent 30%),
    radial-gradient(circle at 85% 85%, rgba(33, 183, 255, 0.3) 0%, transparent 35%),
    radial-gradient(circle at 50% 50%, rgba(0, 170, 255, 0.15) 0%, transparent 40%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 10px,
      rgba(76, 196, 255, 0.05) 10px,
      rgba(76, 196, 255, 0.05) 20px
    );
  animation: shimmer 8s linear infinite;
  pointer-events: none;
}

@keyframes shimmer {
  0% { transform: translateX(0) translateY(0); }
  100% { transform: translateX(20px) translateY(20px); }
}

.video-showcase-container {
  max-width: 70%;
  margin: 0 auto;
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  background-color: #e8f0f7;
}

.video-preview {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.video-preview-iframe {
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: calc(100% + 120px);
  border: none;
  pointer-events: none;
}

.video-preview-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  transition: background-color 0.3s ease;
}

.video-preview:hover .video-preview-overlay {
  background-color: rgba(0, 0, 0, 0.25);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  background: rgba(0, 170, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 3;
  box-shadow: 0 8px 30px rgba(0, 170, 255, 0.4);
}

.video-play-btn i {
  color: #ffffff;
  font-size: 2rem;
  margin-left: 5px;
}

.video-preview:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow: 0 12px 40px rgba(0, 170, 255, 0.55);
}

.video-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 32px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  z-index: 2;
}

.video-caption-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--blue-light);
  margin-bottom: 4px;
}

.video-caption-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .video-showcase-section {
    padding: 50px 0;
  }

  .video-showcase-container {
    max-width: 95%;
    padding: 0;
  }

  .video-play-btn {
    width: 64px;
    height: 64px;
  }

  .video-play-btn i {
    font-size: 1.4rem;
    margin-left: 3px;
  }

  .video-caption-title {
    font-size: 1.1rem;
  }

  .video-caption {
    padding: 16px 20px;
  }
}

/* ============================================
   CG Pro Section — Card Grid Design
   ============================================ */
.cgpro-section {
  padding: 90px 0 80px;
  background: #f7f8fa;
}

.cgpro-subtitle {
  color: var(--mid-gray);
  font-size: 1.05rem;
  max-width: 580px;
  margin: -12px auto 52px;
}

/* Card Grid */
.cgpro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.cgpro-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  transform-origin: center center;
}

/* When hovering anywhere in the grid, shrink all cards */
.cgpro-grid:hover .cgpro-card {
  transform: scale(0.92);
  opacity: 0.6;
  filter: brightness(0.92);
}

/* Then grow the hovered card */
.cgpro-grid:hover .cgpro-card:hover {
  transform: scale(1.05);
  opacity: 1;
  filter: brightness(1);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

/* Card image area */
.cgpro-card-img {
  position: relative;
  overflow: hidden;
  background: #eef1f5;
  cursor: pointer;
}

/* GIF zoom modal */
.gif-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gif-modal.active {
  opacity: 1;
  visibility: visible;
}

.gif-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.gif-modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.gif-modal.active .gif-modal-content {
  transform: scale(1);
}

.gif-modal-content img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
  display: block;
}

.gif-modal-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: #333;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
  z-index: 1;
}

.gif-modal-close:hover {
  transform: scale(1.1);
}

.cgpro-card-img img {
  width: 100%;
  display: block;
}

/* Hover-to-play indicator */
.cgpro-card-img .gif-indicator {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 12px;
  border-radius: 6px;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.cgpro-card-img .gif-indicator i {
  font-size: 0.65rem;
  color: var(--blue-light);
}

.cgpro-card:hover .cgpro-card-img .gif-indicator {
  opacity: 0;
}

/* Shimmer overlay to draw attention */
.cgpro-card-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.12) 50%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 1;
  left: -100%;
  transition: none;
}

.cgpro-card-img.shimmer-active::after {
  animation: gifShimmer 1.8s ease-in-out forwards;
}

.cgpro-card:hover .cgpro-card-img::after {
  opacity: 0;
}

@keyframes gifShimmer {
  0%   { left: -100%; }
  100% { left: 150%; }
}


/* Card body */
.cgpro-card-body {
  padding: 28px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cgpro-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-darker) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.cgpro-card-icon i {
  font-size: 1.1rem;
  color: #fff;
}

.cgpro-card-body h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}

.cgpro-card-body p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--mid-gray);
  margin-bottom: 18px;
  flex: 1;
}

.cgpro-checks {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 16px;
}

.cgpro-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.88rem;
  color: var(--dark-gray);
}

.cgpro-checks li i {
  color: var(--blue);
  font-size: 0.7rem;
  width: 20px;
  height: 20px;
  background: rgba(0, 170, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .cgpro-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
    gap: 24px;
  }
}

@media (max-width: 576px) {
  .cgpro-section {
    padding: 70px 0 60px;
  }

  .cgpro-card-body {
    padding: 22px 20px 20px;
  }
}

/* Summary Box */
.cg-summary-box {
  background-color: var(--white);
  padding: 50px;
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.summary-icon {
  font-size: 2.5rem;
  color: var(--blue);
  margin-right: 20px;
}

.summary-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0;
}

.summary-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--dark-gray);
  margin: 20px 0;
}

.feature-item {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: rgb(226, 245, 255);
}

.feature-item:hover {
  background-color: rgba(0, 170, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-item i {
  font-size: 2.2rem;
  color: var(--blue);
  margin-bottom: 12px;
}

.feature-item span {
  font-weight: 500;
  font-size: 1rem;
}

/* ============================================
   Roadmap Section
   ============================================ */
.roadmap-section, .success-stories-section {
  position: relative;
  padding: 100px 0 80px;
  background: var(--white);
  overflow: hidden;
  height: 100%;
}

.roadmap-section::before, .success-stories-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 60px,
      rgba(0, 155, 239, 0.03) 60px,
      rgba(0, 155, 239, 0.03) 61px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 60px,
      rgba(0, 155, 239, 0.03) 60px,
      rgba(0, 155, 239, 0.03) 61px
    );
  pointer-events: none;
}

.roadmap-section h2, .success-stories-section h2 {
  color: var(--black);
}

.roadmap-section h2::after, .success-stories-section h2::after {
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
}

.roadmap-subtitle, .success-stories-subtitle {
  color: var(--mid-gray);
  font-size: 1.1rem;
  max-width: 560px;
  margin: -20px auto 60px;
}

.road-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 10px 0 40px;
}

.road-strip {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 100%;
  background: #2a2d33;
  border-left: 3px solid rgba(255, 255, 255, 0.12);
  border-right: 3px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  z-index: 0;
}

.road-dashes-vertical {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: calc(100% - 20px);
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 204, 0, 0.7) 0px,
    rgba(255, 204, 0, 0.7) 18px,
    transparent 18px,
    transparent 40px
  );
}

.road-milestone {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.road-milestone.visible {
  opacity: 1;
  transform: translateY(0);
}

.milestone-left {
  flex-direction: row;
  padding-right: calc(50% + 48px);
  justify-content: flex-end;
}

.milestone-right {
  flex-direction: row;
  padding-left: calc(50% + 48px);
  justify-content: flex-start;
}

.milestone-marker {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-darker) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow:
    0 0 0 6px var(--white),
    0 0 0 8px rgba(0, 155, 239, 0.25),
    0 4px 20px rgba(0, 155, 239, 0.2);
  transition: all 0.4s ease;
}

.road-milestone:hover .milestone-marker {
  transform: translateX(-50%) scale(1.15);
  box-shadow:
    0 0 0 6px var(--white),
    0 0 0 8px rgba(0, 155, 239, 0.4),
    0 6px 30px rgba(0, 155, 239, 0.3);
}

.milestone-marker span {
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}

.milestone-card {
  background: var(--white);
  border: 2px solid rgba(0, 155, 239, 0.2);
  border-radius: 6px;
  padding: 18px 20px;
  max-width: 320px;
  transition: all 0.4s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.road-milestone:hover .milestone-card {
  background: #f0f9ff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 155, 239, 0.35);
}

.milestone-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 155, 239, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.milestone-icon-wrap i {
  font-size: 1rem;
  color: var(--blue-primary);
}

.milestone-card h3 {
  color: var(--black);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.milestone-card p {
  color: var(--mid-gray);
  font-size: 0.85rem;
  line-height: 1.55;
  margin: 0;
}

/* Milestone expand button */
.milestone-expand-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 6px 14px;
  background: rgba(0, 155, 239, 0.08);
  color: var(--blue-primary);
  border: 1px solid rgba(0, 155, 239, 0.2);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.milestone-expand-btn:hover {
  background: rgba(0, 155, 239, 0.15);
  border-color: rgba(0, 155, 239, 0.4);
  transform: translateY(-1px);
}

.milestone-expand-btn i {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.milestone-expand-btn:hover i {
  transform: rotate(90deg);
}

/* Milestone detail modal */
.milestone-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.milestone-modal.active {
  opacity: 1;
  visibility: visible;
}

.milestone-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.milestone-modal-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  max-width: 720px;
  width: 90vw;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.35s ease, max-width 0.35s ease;
  display: flex;
}

.milestone-modal-card.has-preview {
  max-width: 1300px;
}

.milestone-modal.active .milestone-modal-card {
  transform: scale(1) translateY(0);
}

.milestone-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.06);
  color: #555;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 1;
}

.milestone-modal-close:hover {
  background: rgba(0, 0, 0, 0.12);
  transform: scale(1.1);
}

.milestone-modal-body {
  padding: 40px;
  flex: 1 1 auto;
  min-width: 0;
  overflow-y: auto;
}

.has-preview .milestone-modal-body {
  flex: 0 1 420px;
}

.mm-preview {
  display: none;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  background: #f5f7fa;
  border-left: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0;
  flex-shrink: 0;
  border-radius: 0 16px 16px 0;
}

.mm-preview.active {
  display: flex;
  flex: 1 1 60%;
  padding: 24px;
}

.mm-preview img {
  max-width: 100%;
  max-height: 70vh;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  display: block;
  opacity: 0;
  transition: opacity 0.3s ease 0.15s;
}

.mm-preview.active img {
  opacity: 1;
}

.mm-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
  z-index: 2;
}

.mm-nav:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.mm-nav-prev { left: 12px; }
.mm-nav-next { right: 12px; }

.mm-counter {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 12px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.mm-preview {
  position: relative;
}

.milestone-modal-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.milestone-modal-header .mm-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-darker) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.milestone-modal-header .mm-icon i {
  font-size: 1.2rem;
  color: #fff;
}

.milestone-modal-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--black);
  margin: 0;
}

.milestone-modal-header .mm-step {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blue-primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.mm-description {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--dark-gray);
  margin-bottom: 24px;
}

.mm-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.mm-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  background: rgba(0, 155, 239, 0.04);
  border-radius: 8px;
  border: 1px solid rgba(0, 155, 239, 0.08);
}

.mm-feature i {
  color: var(--blue-primary);
  font-size: 0.8rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.mm-feature span {
  font-size: 0.85rem;
  color: var(--dark-gray);
  line-height: 1.45;
}

.mm-gallery-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--mid-gray);
  margin-bottom: 12px;
}

.mm-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  grid-auto-rows: 90px;
  gap: 10px;
  max-height: 300px;
  overflow-y: auto;
  padding-right: 4px;
}

.mm-gallery::-webkit-scrollbar {
  width: 5px;
}

.mm-gallery::-webkit-scrollbar-track {
  background: transparent;
}

.mm-gallery::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}

.mm-gallery::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.25);
}

.mm-gallery-img {
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid rgba(0, 0, 0, 0.08);
  position: relative;
}

.mm-gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.mm-gallery-img:hover img {
  transform: scale(1.05);
}


.milestone-sign-group {
  display: flex;
  align-items: center;
}

.milestone-left .milestone-sign-group {
  flex-direction: row;
}

.milestone-right .milestone-sign-group {
  flex-direction: row;
}

.sign-post {
  width: 24px;
  height: 6px;
  background: #c0cdd8;
  border-radius: 3px;
  flex-shrink: 0;
}

.finish-line {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-top: 10px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.finish-line.visible {
  opacity: 1;
  transform: translateY(0);
}

.finish-line::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 24px;
  background: repeating-linear-gradient(
    90deg,
    var(--black) 0px,
    var(--black) 8px,
    var(--white) 8px,
    var(--white) 16px
  );
  mask-image: repeating-linear-gradient(
    0deg,
    #000 0px,
    #000 8px,
    transparent 8px,
    transparent 16px
  );
  -webkit-mask-image: repeating-linear-gradient(
    0deg,
    #000 0px,
    #000 8px,
    transparent 8px,
    transparent 16px
  );
  border-radius: 3px;
  opacity: 0.15;
}

.finish-flag {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-darker) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 5px var(--white),
    0 0 0 7px rgba(0, 155, 239, 0.25),
    0 6px 24px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.finish-flag i {
  font-size: 1.5rem;
  color: var(--white);
}

@media (max-width: 768px) {
  .roadmap-section {
    padding: 70px 0 60px;
  }

  .road-strip {
    left: 28px;
    transform: none;
    width: 44px;
  }

  .road-milestone {
    flex-direction: row !important;
    padding-left: 100px !important;
    padding-right: 0 !important;
    justify-content: flex-start !important;
  }

  .milestone-marker {
    left: 50px;
    transform: translateX(-50%);
  }

  .road-milestone:hover .milestone-marker {
    transform: translateX(-50%) scale(1.15);
  }

  .milestone-card {
    max-width: 100%;
  }

  .milestone-sign-group {
    flex-direction: row !important;
  }

  .sign-post {
    display: none;
  }

  .milestone-modal-card {
    flex-direction: column;
    max-width: 95vw;
    max-height: 95vh;
    overflow-y: auto;
  }

  .milestone-modal-card.has-preview {
    max-width: 95vw;
  }

  .milestone-modal-body {
    flex: 0 0 auto;
    padding: 20px 16px;
    overflow-y: visible;
    max-height: none;
  }

  .milestone-modal-header {
    gap: 12px;
    margin-bottom: 12px;
  }

  .milestone-modal-header .mm-icon {
    width: 40px;
    height: 40px;
  }

  .milestone-modal-header .mm-icon i {
    font-size: 1rem;
  }

  .milestone-modal-header h3 {
    font-size: 1.15rem;
  }

  .mm-description {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .mm-features {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 16px;
  }

  .mm-feature {
    padding: 8px 10px;
  }

  .mm-feature span {
    font-size: 0.8rem;
  }

  .mm-gallery {
    grid-template-columns: repeat(3, 1fr);
    max-height: none;
    gap: 8px;
  }

  .mm-gallery-label {
    margin-bottom: 8px;
  }

  .mm-preview {
    border-left: none;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 0 0 16px 16px;
    width: 100% !important;
  }

  .mm-preview.active {
    flex: 0 0 auto;
    padding: 12px;
  }

  .mm-preview img {
    max-height: 40vh;
    width: 100%;
    object-fit: contain;
  }

  .mm-nav {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
  }

  .mm-nav-prev { left: 8px; }
  .mm-nav-next { right: 8px; }

  .milestone-modal-close {
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
  }
}

/* ============================================
   Lightbox
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 12, 18, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-video-wrap {
  width: 90vw;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  transform: scale(0.92);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: #000;
}

.lightbox.active .lightbox-video-wrap {
  transform: scale(1);
}

.lightbox-video-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Blueprint Image Containers */
.blueprint-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(0, 170, 255, 0.3);
  background: rgba(15, 23, 34);
  border-radius: 4px 4px 0 0;
}

.blueprint-title {
  font-family: 'Barlow', monospace;
  color: var(--blue-light);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
}

.blueprint-details {
  font-family: 'Barlow', monospace;
  color: var(--blue-light);
  font-size: 0.75rem;
  opacity: 0.8;
}

.blueprint-content {
  position: relative;
  border: 1px solid rgb(0, 170, 255);
  padding: 5px;
  background-color: rgb(15, 23, 34);
}

.blueprint-image {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid rgb(0, 170, 255);
}


.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10000;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

/* ============================================
   Before / After Section
   ============================================ */
.before-after-section {
  padding: 90px 0 80px;
  background: linear-gradient(175deg, #f0f7fc 0%, #e8f4fb 50%, #f4f9fd 100%);
}

.ba-subtitle {
  color: var(--mid-gray);
  font-size: 1.05rem;
  max-width: 560px;
  margin: -12px auto 52px;
}

.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1700px;
  margin: 0 auto;
}

.ba-side {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.ba-img-card {
  position: relative;
  overflow: hidden;
}

.ba-img-card img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.ba-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.ba-badge-poor {
  background: rgba(220, 53, 69, 0.15);
  color: #c0392b;
}

.ba-badge-good {
  background: rgba(39, 174, 96, 0.15);
  color: #1e8449;
}

.ba-caption {
  padding: 24px 24px 28px;
}

.ba-caption h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}

.ba-caption p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--mid-gray);
  margin: 0;
}

@media (max-width: 768px) {
  .before-after-section {
    padding: 70px 0 60px;
  }

  .ba-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 440px;
  }

  .ba-caption {
    padding: 18px 18px 22px;
  }
}

/* ============================================
   Contact Section
   ============================================ */
#contact .card {
  border: none;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.contact-info {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.contact-info i {
  font-size: 20px;
  width: 40px;
  height: 40px;
  background-color: rgba(0, 170, 255, 0.1);
  color: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.contact-info:hover i {
  background-color: var(--blue);
  color: var(--white);
  transform: scale(1.1);
}

.contact-info p {
  margin: 0;
  font-size: 16px;
}

.form-control,
.form-select {
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  box-shadow: 0 0 0 3px rgba(0, 170, 255, 0.1);
  border-color: var(--blue);
}

button[type="submit"] {
  background-color: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 30px;
  padding: 12px 25px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

button[type="submit"]:hover {
  background-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 170, 255, 0.3);
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background-color: var(--black);
  color: var(--white);
  padding: 60px 0 30px;
  text-align: center;
  margin-top: 10vh;
}

.footer h4 {
  color: var(--white);
  font-weight: 500;
  margin-bottom: 20px;
}

.footer p {
  color: var(--mid-gray);
  font-size: 14px;
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@keyframes floatAnimation {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes bounceAnimation {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
  40% { transform: translateY(-12px) translateX(-50%); }
  60% { transform: translateY(-5px) translateX(-50%); }
}

.animate {
  opacity: 0;
  transform: translateY(30px);
}

.animate.show {
  animation: fadeInUp 0.8s ease forwards;
}

/* ============================================
   Responsive — Tablet (≤992px)
   ============================================ */
@media (max-width: 992px) {
  .hero {
    padding-top: 10vh;
    height: auto;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-btn {
    width: 100%;
  }

  .quote-full {
    display: none;
  }

  .quote-short {
    display: inline;
  }

  .hero-visual {
    margin-top: 3rem;
  }

  .hero-row {
    min-height: auto;
  }

  .hero-content-col {
    text-align: center;
  }

  .hero-content {
    margin: 0 auto;
  }

  .hero-subtitle {
    justify-content: center;
    text-align: center;
  }

  section h2 {
    font-size: 28px;
  }

  #cgpro {
    padding: 80px 0;
  }

  .feature-title {
    font-size: 1.8rem;
  }

  .feature-description {
    font-size: 1rem;
  }

  .cg-feature-row {
    margin-bottom: 60px;
  }

  .cg-feature-content {
    padding: 20px;
  }

  .cg-image-blueprint {
    padding: 8px;
  }

  .blueprint-title {
    font-size: 0.8rem;
  }

  .blueprint-details {
    font-size: 0.7rem;
  }

  .overlay-text {
    font-size: 1.2rem;
  }
}

/* ============================================
   Responsive — Mobile (≤768px)
   ============================================ */
@media (max-width: 768px) {
  .hero {
    height: 150vh;
  }
  section {
    padding: 50px 0;
  }

  .service-card, .cgpro-card {
    margin-bottom: 20px;
  }

  .cgpro-card {
    height: auto;
  }

  #cgpro {
    padding: 60px 0;
  }

  .cg-image-blueprint {
    margin-bottom: 20px;
  }

  .blueprint-header {
    padding: 6px 10px;
  }

  .overlay-text {
    font-size: 1.1rem;
  }

  .image-overlay {
    padding: 10px 15px;
  }

  .feature-item {
    margin-bottom: 20px;
  }

  .summary-title {
    font-size: 1.5rem;
  }

  .summary-text {
    font-size: 1rem;
  }

  .cg-feature-content {
    text-align: center;
  }

  .feature-title {
    justify-content: center;
  }

  .navbar-dark .navbar-nav .nav-link {
    padding: 10px 0;
  }
}

/* ============================================
   Touch devices — disable hover transforms
   ============================================ */
@media (hover: none) {
  .service-card:hover {
    transform: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  }

  .service-card:hover::before {
    opacity: 0;
  }

  .service-card:hover .service-icon-wrap {
    background: rgba(0, 155, 239, 0.08);
  }

  .service-card:hover .service-icon-wrap i {
    color: var(--blue-primary);
    transform: none;
  }

  .cgpro-grid:hover .cgpro-card {
    transform: none;
    opacity: 1;
    filter: none;
  }

  .cgpro-grid:hover .cgpro-card:hover {
    transform: none;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  }

  .cgpro-card:hover .cgpro-card-img .gif-indicator {
    opacity: 1;
  }

  .cgpro-card:hover .cgpro-card-img::after {
    opacity: 0;
  }

  .cgpro-card-img .gif-indicator {
    display: none;
  }


  .milestone-expand-btn:hover {
    transform: none;
  }

  .milestone-expand-btn:hover i {
    transform: none;
  }

  .road-milestone:hover .milestone-marker {
    transform: translateX(-50%);
  }

  .mm-gallery-img:hover img {
    transform: none;
  }

  .success-stat:hover {
    transform: none;
  }
}

/* ============================================
   Responsive — Small Mobile (≤480px)
   ============================================ */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.6rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .cg-summary-box {
    padding: 25px;
  }
}

#canvas {
  display: block;
  margin: 0 auto;
  max-width: 70%;
  height: auto;
}

/* ============================================
   Hero Tech Variations — Background Styles
   ============================================ */

/* Option 1: Animated Grid/Map Overlay */
.hero-tech-grid {
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.grid-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(0, 155, 239, 0.2), transparent);
  opacity: 0;
  animation: gridPulse 4s ease-in-out infinite;
}

.grid-line-h {
  height: 1px;
  left: 0;
  right: 0;
}

.grid-line-v {
  width: 1px;
  top: 0;
  bottom: 0;
}

.grid-line-1 { top: 25%; animation-delay: 0s; }
.grid-line-2 { top: 50%; animation-delay: 1s; }
.grid-line-3 { top: 75%; animation-delay: 2s; }
.grid-line-4 { left: 20%; animation-delay: 0.5s; }
.grid-line-5 { left: 50%; animation-delay: 1.5s; }
.grid-line-6 { left: 80%; animation-delay: 2.5s; }

@keyframes gridPulse {
  0%, 100% { opacity: 0; }
  50% { opacity: 0.3; }
}

.coord-marker {
  position: absolute;
  font-family: 'Courier New', monospace;
  font-size: 0.65rem;
  color: rgba(0, 155, 239, 0.4);
  letter-spacing: 1px;
}

.marker-1 { top: 20%; left: 15%; }
.marker-2 { top: 60%; right: 20%; }
.marker-3 { bottom: 25%; left: 40%; font-weight: 700; color: rgba(0, 188, 133, 0.5); }

.pulse-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-primary);
}

.pulse-dot::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(0, 155, 239, 0.3);
  animation: pulseRing 2s ease-out infinite;
}

.dot-1 { top: 30%; left: 30%; animation-delay: 0s; }
.dot-2 { top: 55%; right: 35%; animation-delay: 0.7s; }
.dot-3 { bottom: 35%; left: 60%; animation-delay: 1.4s; }

@keyframes pulseRing {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(3); opacity: 0; }
}

/* Option 2: Data Points & Network Connections */
.hero-tech-nodes {
  overflow: hidden;
}

.hero-nodes-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.network-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.network-line {
  stroke: url(#lineGrad);
  stroke-width: 1;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: drawLine 3s ease-out infinite;
}

.network-line:nth-child(2) { animation-delay: 0.2s; }
.network-line:nth-child(3) { animation-delay: 0.4s; }
.network-line:nth-child(4) { animation-delay: 0.6s; }
.network-line:nth-child(5) { animation-delay: 0.8s; }
.network-line:nth-child(6) { animation-delay: 1s; }
.network-line:nth-child(7) { animation-delay: 1.2s; }
.network-line:nth-child(8) { animation-delay: 1.4s; }

@keyframes drawLine {
  0% { stroke-dashoffset: 200; opacity: 0; }
  50% { opacity: 1; }
  100% { stroke-dashoffset: 0; opacity: 0.3; }
}

.network-node {
  fill: var(--blue-primary);
  opacity: 0.6;
  animation: nodePulse 2s ease-in-out infinite;
}

.network-node:nth-child(9) { animation-delay: 0s; }
.network-node:nth-child(10) { animation-delay: 0.3s; }
.network-node:nth-child(11) { animation-delay: 0.6s; }
.network-node:nth-child(12) { animation-delay: 0.9s; }
.network-node:nth-child(13) { animation-delay: 1.2s; }
.network-node:nth-child(14) { animation-delay: 1.5s; }
.network-node:nth-child(15) { animation-delay: 1.8s; }

@keyframes nodePulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.2); }
}

.data-packet {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--green-primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green-primary);
  opacity: 0;
}

.packet-1 {
  top: 25%;
  left: 12%;
  animation: dataFlow1 4s linear infinite;
}

.packet-2 {
  top: 42%;
  left: 38%;
  animation: dataFlow2 5s linear infinite;
}

.packet-3 {
  top: 70%;
  left: 44%;
  animation: dataFlow3 3.5s linear infinite;
}

@keyframes dataFlow1 {
  0% { transform: translate(0, 0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translate(200px, 100px); opacity: 0; }
}

@keyframes dataFlow2 {
  0% { transform: translate(0, 0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translate(150px, -80px); opacity: 0; }
}

@keyframes dataFlow3 {
  0% { transform: translate(0, 0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translate(180px, 60px); opacity: 0; }
}

/* Option 3: Terminal/Code Aesthetic */
.hero-tech-terminal {
  overflow: hidden;
}

.hero-terminal-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.terminal-window {
  position: absolute;
  top: 15%;
  right: 10%;
  width: 320px;
  background: rgba(10, 15, 25, 0.95);
  border: 1px solid rgba(0, 155, 239, 0.2);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: terminalFloat 8s ease-in-out infinite;
}

.terminal-header {
  background: rgba(0, 0, 0, 0.3);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.terminal-btn {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.terminal-btn-red { background: #ff5f56; }
.terminal-btn-yellow { background: #ffbd2e; }
.terminal-btn-green { background: #27ca40; }

.terminal-title {
  margin-left: auto;
  margin-right: auto;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  font-family: 'Courier New', monospace;
}

.terminal-body {
  padding: 16px;
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  line-height: 1.6;
}

.terminal-line {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 4px;
}

.terminal-prompt {
  color: var(--green-primary);
  margin-right: 4px;
}

.terminal-cmd {
  color: var(--blue-light);
  font-weight: 600;
}

.terminal-arg {
  color: rgba(255, 255, 255, 0.5);
}

.terminal-output {
  color: rgba(255, 255, 255, 0.4);
}

.terminal-success {
  color: var(--green-primary);
}

.terminal-highlight {
  color: var(--blue-light);
  font-weight: 700;
}

.terminal-cursor {
  animation: blink 1s infinite;
  color: var(--blue-light);
}

@keyframes terminalFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
}

.floating-code-block {
  position: absolute;
  font-family: 'Courier New', monospace;
  font-size: 0.65rem;
  background: rgba(10, 15, 25, 0.8);
  border: 1px solid rgba(0, 155, 239, 0.15);
  border-radius: 6px;
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.code-block-1 {
  bottom: 20%;
  left: 8%;
  animation: codeFloat1 10s ease-in-out infinite;
}

@keyframes codeFloat1 {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-20px) translateX(10px); }
}

.code-keyword { color: #c586c0; }
.code-field { color: #9cdcfe; }
.code-table { color: #4ec9b0; }
.code-string { color: #ce9178; }

.floating-coord {
  position: absolute;
  font-family: 'Courier New', monospace;
  font-size: 0.6rem;
  color: rgba(0, 155, 239, 0.3);
  letter-spacing: 1px;
  animation: coordFade 6s ease-in-out infinite;
}

.coord-float-1 { top: 70%; right: 15%; animation-delay: 0s; }
.coord-float-2 { top: 30%; left: 20%; animation-delay: 2s; }
.coord-float-3 { bottom: 40%; right: 40%; animation-delay: 4s; }

@keyframes coordFade {
  0%, 100% { opacity: 0.1; }
  50% { opacity: 0.4; }
}
