/* -------------------------------- 

Primary style - QuantumStream Investor Pitch Deck

-------------------------------- */
*, *::after, *::before {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.8rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #e7eefc;
  background-color: #0b1020;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: #8fc4ff;
  text-decoration: none;
}

/* -------------------------------- 

Slideshow 

-------------------------------- */
.cd-slideshow-wrapper {
  overflow: hidden;
}
@media only screen and (min-width: 1100px) {
  .cd-slideshow-wrapper {
    height: 100vh;
  }
}

.cd-slideshow {
  position: relative;
}
.cd-slideshow::before {
  /* never visible - this is used in jQuery to check the current MQ */
  content: 'mobile';
  display: none;
}
.cd-slideshow .sub-slides {
  width: 100%;
  /* Force Hardware acceleration */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
}
.cd-slideshow .sub-slides::after {
  clear: both;
  content: "";
  display: table;
}
.cd-slideshow > li, .cd-slideshow .sub-slides > li {
  position: relative;
  z-index: 1;
  height: 100vh;
  width: 100vw;
}
.cd-slideshow > li::after, .cd-slideshow .sub-slides > li::after {
  clear: both;
  content: "";
  display: table;
}
.cd-slideshow .sub-slides > li {
  float: left;
}
.cd-slideshow .slider-dots {
  /* 
  	dots visible on mobile when a slide has sub-slides
  	you won't see this element in the html - created using jQuery
  */
  position: absolute;
  z-index: 3;
  bottom: 20px;
  left: 0;
  width: 100vw;
  text-align: center;
}
.cd-slideshow .slider-dots li {
  display: inline-block;
  height: 10px;
  width: 10px;
  margin-right: 5px;
  border-radius: 50%;
  border: 1px solid #ffffff;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.cd-slideshow .slider-dots li.active {
  background-color: #ffffff;
}
.cd-slideshow .slider-dots li:last-of-type {
  margin-right: 0;
}
.cd-slideshow.remove-transitions {
  /* 
  	remove transition on transforms 
  	used to switch form a slide to another from the main navigation
  */
  -webkit-transition: -webkit-transform 0s;
  -moz-transition: -moz-transform 0s;
  transition: transform 0s;
}
.cd-slideshow.remove-transitions .sub-slides {
  -webkit-transition: -webkit-transform 0s;
  -moz-transition: -moz-transform 0s;
  transition: transform 0s;
}
@media only screen and (min-width: 1100px) {
  .cd-slideshow {
    /* Force Hardware acceleration */
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition: -webkit-transform 0.6s;
    -moz-transition: -moz-transform 0.6s;
    transition: transform 0.6s;
  }
  .cd-slideshow::before {
    /* never visible - this is used in jQuery to check the current MQ */
    content: 'desktop';
  }
  .cd-slideshow .sub-slides {
    -webkit-transition-duration: 0.6s;
    -moz-transition-duration: 0.6s;
    transition-duration: 0.6s;
  }
  .cd-slideshow > li, .cd-slideshow .sub-slides > li {
    height: auto;
    width: auto;
  }
  .cd-slideshow .slider-dots {
    opacity: 0;
    visibility: hidden;
  }
}

/* -------------------------------- 

Slide Content

-------------------------------- */
.cd-slider-content {
  position: relative;
  height: 100vh;
  width: 100vw;
  float: left;
  display: table;
}
.cd-slider-content .content-wrapper {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  background-color: #0d1424;
  padding: 2.5rem;
}
.cd-slideshow > li:nth-of-type(1) .cd-slider-content .content-wrapper {
  background: radial-gradient(ellipse at center, #0d1628 0%, #080c18 50%, #040608 100%);
}

/* -------------------------------- 
   Hero Slide (Slide 1) Styles
-------------------------------- */
.hero-slide {
  position: relative;
  overflow: hidden;
}

/* Grid Background */
.hero-grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(122, 183, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122, 183, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: grid-pulse 8s ease-in-out infinite;
}

@keyframes grid-pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* Circuit SVG Background */
.hero-circuit {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
  z-index: 1;
}

/* Circuit Line Animations */
.circuit-line {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: draw-line 4s ease-out forwards;
}

.line-1 { animation-delay: 0.2s; }
.line-2 { animation-delay: 0.4s; }
.line-3 { animation-delay: 0.6s; }
.line-4 { animation-delay: 0.8s; }
.line-5 { animation-delay: 1.0s; }
.line-6 { animation-delay: 1.2s; }
.line-7 { animation-delay: 1.4s; }
.line-8 { animation-delay: 1.6s; }

@keyframes draw-line {
  to { stroke-dashoffset: 0; }
}

/* Node Animations */
.node-group {
  opacity: 0;
  animation: fade-in 0.6s ease-out forwards;
}

.node-1 { animation-delay: 1.8s; }
.node-2 { animation-delay: 2.0s; }
.node-3 { animation-delay: 2.2s; }
.node-4 { animation-delay: 2.4s; }
.node-5 { animation-delay: 2.6s; }
.node-6 { animation-delay: 2.8s; }

@keyframes fade-in {
  to { opacity: 1; }
}

/* Hub Pulse */
.node-pulse {
  fill: none;
  stroke: #7ab7ff;
  stroke-width: 2;
  opacity: 0;
  animation: pulse-ring 3s ease-out infinite;
  animation-delay: 3s;
}

@keyframes pulse-ring {
  0% {
    transform-origin: center;
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* Data Flow Lines */
.data-flow {
  stroke-dasharray: 4 8;
  animation: flow 2s linear infinite;
}

@keyframes flow {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -24; }
}

/* Data Particles */
.particle {
  opacity: 0;
}

.p1 {
  animation: particle-move-1 4s ease-in-out infinite;
  animation-delay: 3s;
}
.p2 {
  animation: particle-move-2 4s ease-in-out infinite;
  animation-delay: 3.5s;
}
.p3 {
  animation: particle-move-3 4s ease-in-out infinite;
  animation-delay: 4s;
}
.p4 {
  animation: particle-move-4 4s ease-in-out infinite;
  animation-delay: 4.5s;
}

@keyframes particle-move-1 {
  0% { opacity: 0; transform: translate(250px, 200px); }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { opacity: 0; transform: translate(600px, 400px); }
}

@keyframes particle-move-2 {
  0% { opacity: 0; transform: translate(950px, 200px); }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { opacity: 0; transform: translate(600px, 400px); }
}

@keyframes particle-move-3 {
  0% { opacity: 0; transform: translate(150px, 450px); }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { opacity: 0; transform: translate(600px, 400px); }
}

@keyframes particle-move-4 {
  0% { opacity: 0; transform: translate(350px, 600px); }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { opacity: 0; transform: translate(600px, 400px); }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: 2rem;
}

.hero-logo {
  margin-bottom: 1.5rem;
  animation: logo-appear 1s ease-out 0.3s both;
}

.hero-logo img {
  width: 100px;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(122, 183, 255, 0.4));
}

@keyframes logo-appear {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 5rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.02em;
  text-shadow: 0 0 60px rgba(122, 183, 255, 0.5);
  animation: title-appear 1s ease-out 0.5s both;
}

@keyframes title-appear {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  background: linear-gradient(135deg, #7ab7ff 0%, #6ef0b8 50%, #4ed4e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 1.5rem 0;
  letter-spacing: 0.02em;
  animation: tagline-appear 1s ease-out 0.7s both;
}

@keyframes tagline-appear {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-descriptor {
  font-size: 1.4rem;
  color: rgba(200, 214, 240, 0.7);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0 0 3rem 0;
  animation: descriptor-appear 1s ease-out 0.9s both;
}

@keyframes descriptor-appear {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.hero-contact {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 2.5rem;
  background: rgba(122, 183, 255, 0.08);
  border: 1px solid rgba(122, 183, 255, 0.25);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  animation: contact-appear 1s ease-out 1.1s both;
}

@keyframes contact-appear {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-website,
.hero-email {
  font-size: 1.5rem;
  font-weight: 600;
  color: #8fc4ff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-website:hover,
.hero-email:hover {
  color: #6ef0b8;
  text-shadow: 0 0 20px rgba(110, 240, 184, 0.5);
}

.hero-divider {
  color: rgba(143, 196, 255, 0.3);
  font-weight: 300;
}

/* Responsive Adjustments */
@media only screen and (max-width: 768px) {
  .hero-title {
    font-size: 3.2rem;
  }
  
  .hero-tagline {
    font-size: 1.6rem;
  }
  
  .hero-descriptor {
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-align: center;
    padding: 0 1rem;
  }
  
  .hero-contact {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
  }
  
  .hero-divider {
    display: none;
  }
  
  .hero-website,
  .hero-email {
    font-size: 1.3rem;
  }
  
  .hero-logo img {
    width: 80px;
  }
  
  .hero-circuit {
    opacity: 0.4;
  }
}

@media only screen and (min-width: 1400px) {
  .hero-title {
    font-size: 6.5rem;
  }
  
  .hero-tagline {
    font-size: 3rem;
  }
  
  .hero-descriptor {
    font-size: 1.6rem;
  }
  
  .hero-logo img {
    width: 120px;
  }
}

/* Slide backgrounds */
.cd-slideshow > li:nth-of-type(2) .cd-slider-content .content-wrapper {
  background: #0d1424;
}
.cd-slideshow > li:nth-of-type(3) .cd-slider-content .content-wrapper {
  background: #0d1424;
}
.cd-slideshow > li:nth-of-type(4) .cd-slider-content .content-wrapper {
  background: #0d1424;
}
.cd-slideshow > li:nth-of-type(5) .cd-slider-content .content-wrapper {
  background: #0d1424;
}
.cd-slideshow > li:nth-of-type(6) .cd-slider-content .content-wrapper {
  background: #0d1424;
}
.cd-slideshow > li:nth-of-type(7) .cd-slider-content .content-wrapper {
  background: #0d1424;
}
.cd-slideshow > li:nth-of-type(8) .cd-slider-content .content-wrapper {
  background: #0d1424;
}
.cd-slideshow > li:nth-of-type(9) .cd-slider-content .content-wrapper {
  background: #0d1424;
}
.cd-slideshow > li:nth-of-type(10) .cd-slider-content .content-wrapper {
  background: #0d1424;
}
.cd-slideshow > li:nth-of-type(11) .cd-slider-content .content-wrapper {
  background: #0d1424;
}
.cd-slideshow > li:nth-of-type(12) .cd-slider-content .content-wrapper {
  background: #0d1424;
}

/* Slide Numbers */
.slide-number {
  position: absolute;
  bottom: 1.5rem;
  right: 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(143, 196, 255, 0.6);
  font-family: "Inter", sans-serif;
  z-index: 10;
  pointer-events: none;
}

.cd-slider-content h2 {
  font-size: 3.4rem;
  color: #e7eefc;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.cd-slider-content h3 {
  font-size: 2.2rem;
  color: #8fc4ff;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.cd-slider-content p {
  margin: 1em 0;
  color: #c8d6f0;
  line-height: 1.7;
}
.cd-slider-content ul {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.cd-slider-content ul li {
  margin: 1rem 0;
  padding-left: 2rem;
  position: relative;
  color: #c8d6f0;
  line-height: 1.7;
}
.cd-slider-content ul li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #8fc4ff;
  font-weight: bold;
  font-size: 1.5rem;
}
.cd-slider-content .metric {
  display: inline-block;
  margin: 0.5rem 1rem;
  padding: 0.5rem 1rem;
  background: rgba(122, 183, 255, 0.15);
  border: 1px solid rgba(122, 183, 255, 0.4);
  border-radius: 8px;
  color: #8fc4ff;
  font-weight: 600;
}
.cd-slider-content .highlight {
  color: #6ef0b8;
  font-weight: 600;
}
.cd-slider-content .logo-container {
  margin-bottom: 2rem;
}
.cd-slider-content .logo-container img {
  max-width: 200px;
  height: auto;
}

/* Icons and Visual Elements */
.slide-icon {
  display: inline-block;
  width: 48px;
  height: 48px;
  margin-right: 1rem;
  vertical-align: middle;
  fill: #8fc4ff;
}

.icon-row {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  max-width: 120px;
}

.icon-item svg {
  width: 56px;
  height: 56px;
  fill: #8fc4ff;
}

.icon-item span {
  font-size: 1.2rem;
  color: #c8d6f0;
  text-align: center;
}

/* Charts and Graphs */
.chart-container {
  margin: 2rem auto;
  max-width: 700px;
}

.bar-chart {
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  height: 200px;
  padding: 1.5rem;
  background: rgba(15, 23, 42, 0.7);
  border-radius: 8px;
  gap: 1.5rem;
}

.bar {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.bar-fill {
  width: 100%;
  background: linear-gradient(180deg, #7ab7ff 0%, #3ec9d6 100%);
  border-radius: 4px 4px 0 0;
  position: relative;
  transition: height 0.5s ease;
}

.bar-fill.bad {
  background: linear-gradient(180deg, #ff7a7a 0%, #d25555 100%);
}

.bar-fill.good {
  background: linear-gradient(180deg, #5ee6a8 0%, #4ac98a 100%);
}

.bar-label {
  font-size: 1.2rem;
  color: #c8d6f0;
  text-align: center;
}

.bar-value {
  font-size: 1.4rem;
  color: #e7eefc;
  font-weight: 600;
  margin-top: 0.5rem;
}

/* Comparison Matrix */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem auto;
  max-width: 800px;
}

.comparison-item {
  padding: 2rem;
  background: rgba(15, 23, 42, 0.7);
  border-radius: 8px;
  border-left: 4px solid #7ab7ff;
}

.comparison-item.competitor {
  border-left-color: #ff7a7a;
}

.comparison-item h4 {
  color: #8fc4ff;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.comparison-item ul {
  margin: 0;
  padding-left: 1.5rem;
}

.comparison-item ul li {
  font-size: 1.4rem;
  margin: 0.5rem 0;
}

/* Pipeline Visualization */
.pipeline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 2rem auto;
  max-width: 900px;
  position: relative;
}

.pipeline-step {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 1.5rem;
}

.pipeline-step::after {
  content: '→';
  position: absolute;
  right: -1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: #7ab7ff;
  z-index: 1;
}

.pipeline-step:last-child::after {
  content: '';
}

.pipeline-number {
  display: inline-block;
  width: 48px;
  height: 48px;
  line-height: 48px;
  background: linear-gradient(135deg, #8fc4ff 0%, #4ed4e0 100%);
  border-radius: 50%;
  color: #0a0e1a;
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.pipeline-title {
  font-size: 1.4rem;
  color: #e7eefc;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.pipeline-desc {
  font-size: 1.1rem;
  color: #c8d6f0;
  line-height: 1.6;
}

/* Metrics Grid */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 2rem auto;
  max-width: 900px;
}

.metric-card {
  padding: 2rem;
  background: rgba(15, 23, 42, 0.7);
  border-radius: 8px;
  text-align: center;
  border: 1px solid rgba(122, 183, 255, 0.3);
}

.metric-value {
  font-size: 3rem;
  color: #5ee6a8;
  font-weight: 700;
  line-height: 1.2;
}

.metric-label {
  font-size: 1.2rem;
  color: #c8d6f0;
  margin-top: 0.5rem;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 2rem auto;
  padding-left: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #8fc4ff 0%, #4ed4e0 100%);
}

.timeline-item {
  position: relative;
  padding: 1rem 0 1rem 2rem;
  margin-bottom: 1.5rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -3.5rem;
  top: 1.5rem;
  width: 12px;
  height: 12px;
  background: #8fc4ff;
  border-radius: 50%;
  border: 2px solid #0b1020;
}

.timeline-item h4 {
  color: #8fc4ff;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.timeline-item p {
  font-size: 1.3rem;
  color: #c8d6f0;
  margin: 0;
  line-height: 1.7;
}

/* Venn Diagram */
.venn-container {
  position: relative;
  width: 400px;
  height: 300px;
  margin: 2rem auto;
}

.venn-circle {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  opacity: 0.3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 600;
}

.venn-circle.edge {
  background: #7ab7ff;
  left: 0;
  top: 50px;
}

.venn-circle.rca {
  background: #5ee6a8;
  left: 100px;
  top: 0;
}

.venn-circle.enterprise {
  background: #3ec9d6;
  left: 200px;
  top: 50px;
}

.venn-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(8, 12, 24, 0.98);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  border: 2px solid #7ab7ff;
  color: #5ee6a8;
  font-weight: 700;
  text-align: center;
  z-index: 10;
}

/* Team Slide */
.founders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem auto;
  max-width: 900px;
}

.founder-card {
  background: rgba(15, 23, 42, 0.7);
  border-radius: 8px;
  padding: 2.5rem;
  text-align: center;
  border: 1px solid rgba(122, 183, 255, 0.3);
}

.founder-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 3px solid #7ab7ff;
}

.founder-name {
  font-size: 2rem;
  color: #e7eefc;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.founder-title {
  font-size: 1.4rem;
  color: #8fc4ff;
  margin-bottom: 1rem;
}

.founder-bio {
  text-align: left;
  font-size: 1.3rem;
  color: #c8d6f0;
  line-height: 1.7;
}

.founder-bio li {
  margin: 0.75rem 0;
  padding-left: 1.5rem;
}

.founder-bio li:before {
  left: 0;
  font-size: 1.2rem;
}
@media only screen and (min-width: 1100px) {
  .cd-slider-content {
    height: 84vh;
    width: 90vw;
    margin: 2vh 5vw;
    border-radius: 10px;
    cursor: pointer;
  }
  .visible .sub-visible .cd-slider-content, .visible > .cd-slider-content {
    /* visible slide */
    cursor: auto;
  }
  .cd-slideshow > li:first-of-type .cd-slider-content {
    margin-top: 8vh;
  }
  .sub-slides > li:first-of-type .cd-slider-content {
    margin-left: 5vw;
  }
  .sub-slides > li .cd-slider-content {
    margin-left: 1.25vw;
    margin-right: 1.25vw;
  }
  .cd-slider-content .content-wrapper {
    height: 100%;
    /* hide the slide content if the slide is not selected/visible */
    opacity: 0;
    box-shadow: 0 6px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-radius: inherit;
    -webkit-transition: opacity 0.6s;
    -moz-transition: opacity 0.6s;
    transition: opacity 0.6s;
  }
  .cd-slider-content::after {
    /* this is used to change the slide background color when the slide is out of focus */
    content: '';
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: inherit;
    background-color: #0b1020;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(122, 183, 255, 0.1);
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.6s, visibility 0.6s;
    -moz-transition: opacity 0.6s, visibility 0.6s;
    transition: opacity 0.6s, visibility 0.6s;
  }
  .visible .cd-slider-content .content-wrapper {
    opacity: 1;
  }
  .visible .cd-slider-content::after {
    opacity: 0;
    visibility: hidden;
  }
  .cd-slider-content h2 {
    font-size: 4.4rem;
    font-weight: 600;
  }
  .cd-slider-content h3 {
    font-size: 2.6rem;
  }
  .cd-slider-content p {
    font-size: 2rem;
  }
  .cd-slider-content ul li {
    font-size: 2rem;
  }
}

/* -------------------------------- 

Slideshow Navigation

-------------------------------- */
.cd-slideshow-nav {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
}
.cd-slideshow-nav .cd-nav-items {
  position: fixed;
  z-index: 1;
  height: 100vh;
  width: 30%;
  min-width: 300px;
  max-width: 450px;
  overflow: hidden;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, #0b1020 0%, #111a2e 100%);
  border-right: 2px solid rgba(122, 183, 255, 0.3);
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.5);
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
}
.cd-slideshow-nav .cd-nav-items > ol {
  height: 100%;
  overflow: auto;
  padding: 80px 25px 80px 35px;
}
.cd-slideshow-nav ol ol {
  padding-left: 1em;
}
.cd-slideshow-nav li {
  margin-bottom: 0.4rem;
}
.cd-slideshow-nav a {
  color: #e7eefc;
  display: inline-block;
  padding: 0.6em 1em 0.6em 0.8em;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  width: 100%;
}
.cd-slideshow-nav a:before {
  /* Remove list bullets */
  display: none;
}
.cd-slideshow-nav.nav-open .cd-nav-items {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.cd-slideshow-nav.nav-open .cd-nav-items > ol {
  -webkit-overflow-scrolling: touch;
}

/* Custom scrollbar for navigation menu */
.cd-slideshow-nav .cd-nav-items > ol::-webkit-scrollbar {
  width: 8px;
}

.cd-slideshow-nav .cd-nav-items > ol::-webkit-scrollbar-track {
  background: transparent;
}

.cd-slideshow-nav .cd-nav-items > ol::-webkit-scrollbar-thumb {
  background: rgba(122, 183, 255, 0.2);
  border-radius: 4px;
}

.cd-slideshow-nav .cd-nav-items > ol::-webkit-scrollbar-thumb:hover {
  background: rgba(122, 183, 255, 0.4);
}

/* Firefox scrollbar */
.cd-slideshow-nav .cd-nav-items > ol {
  scrollbar-width: thin;
  scrollbar-color: rgba(122, 183, 255, 0.2) transparent;
}

/* Overlay backdrop when menu is open */
.cd-slideshow-nav.nav-open::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
  opacity: 1;
  transition: opacity 0.3s;
}
.cd-slideshow-nav a:hover {
  background: rgba(122, 183, 255, 0.15);
  color: #7ab7ff;
  transform: translateX(3px);
}

/* Color-coded neon borders for each slide */
.cd-slideshow-nav li:nth-child(1) a { border-left-color: #7ab7ff; }
.cd-slideshow-nav li:nth-child(1) a:hover { background: rgba(122, 183, 255, 0.2); box-shadow: 0 0 15px rgba(122, 183, 255, 0.3); }

.cd-slideshow-nav li:nth-child(2) a { border-left-color: #ff6b6b; }
.cd-slideshow-nav li:nth-child(2) a:hover { background: rgba(255, 107, 107, 0.2); box-shadow: 0 0 15px rgba(255, 107, 107, 0.3); color: #ff6b6b; }

.cd-slideshow-nav li:nth-child(3) a { border-left-color: #5ee6a8; }
.cd-slideshow-nav li:nth-child(3) a:hover { background: rgba(94, 230, 168, 0.2); box-shadow: 0 0 15px rgba(94, 230, 168, 0.3); color: #5ee6a8; }

.cd-slideshow-nav li:nth-child(4) a { border-left-color: #3ec9d6; }
.cd-slideshow-nav li:nth-child(4) a:hover { background: rgba(62, 201, 214, 0.2); box-shadow: 0 0 15px rgba(62, 201, 214, 0.3); color: #3ec9d6; }

.cd-slideshow-nav li:nth-child(5) a { border-left-color: #ffb84d; }
.cd-slideshow-nav li:nth-child(5) a:hover { background: rgba(255, 184, 77, 0.2); box-shadow: 0 0 15px rgba(255, 184, 77, 0.3); color: #ffb84d; }

.cd-slideshow-nav li:nth-child(6) a { border-left-color: #ba8fff; }
.cd-slideshow-nav li:nth-child(6) a:hover { background: rgba(186, 143, 255, 0.2); box-shadow: 0 0 15px rgba(186, 143, 255, 0.3); color: #ba8fff; }

.cd-slideshow-nav li:nth-child(7) a { border-left-color: #ff6bff; }
.cd-slideshow-nav li:nth-child(7) a:hover { background: rgba(255, 107, 255, 0.2); box-shadow: 0 0 15px rgba(255, 107, 255, 0.3); color: #ff6bff; }

.cd-slideshow-nav li:nth-child(8) a { border-left-color: #4ecdc4; }
.cd-slideshow-nav li:nth-child(8) a:hover { background: rgba(78, 205, 196, 0.2); box-shadow: 0 0 15px rgba(78, 205, 196, 0.3); color: #4ecdc4; }

.cd-slideshow-nav li:nth-child(9) a { border-left-color: #ff9ff3; }
.cd-slideshow-nav li:nth-child(9) a:hover { background: rgba(255, 159, 243, 0.2); box-shadow: 0 0 15px rgba(255, 159, 243, 0.3); color: #ff9ff3; }

.cd-slideshow-nav li:nth-child(10) a { border-left-color: #54a0ff; }
.cd-slideshow-nav li:nth-child(10) a:hover { background: rgba(84, 160, 255, 0.2); box-shadow: 0 0 15px rgba(84, 160, 255, 0.3); color: #54a0ff; }

.cd-slideshow-nav li:nth-child(11) a { border-left-color: #feca57; }
.cd-slideshow-nav li:nth-child(11) a:hover { background: rgba(254, 202, 87, 0.2); box-shadow: 0 0 15px rgba(254, 202, 87, 0.3); color: #feca57; }

.cd-slideshow-nav li:nth-child(12) a { border-left-color: #48dbfb; }
.cd-slideshow-nav li:nth-child(12) a:hover { background: rgba(72, 219, 251, 0.2); box-shadow: 0 0 15px rgba(72, 219, 251, 0.3); color: #48dbfb; }

.cd-slideshow-nav li:nth-child(13) a { 
  border-left-color: #5ee6a8; 
  font-style: italic;
  opacity: 0.85;
}
.cd-slideshow-nav li:nth-child(13) a:hover { background: rgba(94, 230, 168, 0.15); box-shadow: 0 0 15px rgba(94, 230, 168, 0.25); color: #5ee6a8; }

/* Mobile specific */
@media only screen and (max-width: 600px) {
  .cd-slideshow-nav .cd-nav-items {
    width: 80%;
    min-width: 280px;
    max-width: 350px;
  }
}

@media only screen and (min-width: 1100px) {
  .cd-slideshow-nav .cd-nav-items > ol {
    padding: 10vh 4vw;
  }
  .cd-slideshow-nav ol ol {
    padding-left: 3em;
  }
  .cd-slideshow-nav a {
    font-size: 2.2rem;
    padding: 0.75em 1.5em 0.75em 1em;
  }
}

.cd-nav-trigger {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 20px;
  height: 40px;
  width: 40px;
  cursor: pointer;
  border-radius: 50%;
  border: none;
  outline: none;
  background-color: rgba(0, 0, 0, 0.8);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  /* replace text with image */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  color: transparent;
}
.cd-nav-trigger span, .cd-nav-trigger span::after, .cd-nav-trigger span::before {
  /* used to create the menu icon */
  position: absolute;
  height: 2px;
  width: 18px;
  background-color: #ffffff;
}
.cd-nav-trigger span {
  /* menu icon middle line */
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.cd-nav-trigger span::after, .cd-nav-trigger span::before {
  content: '';
  left: 0;
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
}
.cd-nav-trigger span::before {
  /* menu icon middle top line */
  -webkit-transform: translateY(-6px);
  -moz-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  -o-transform: translateY(-6px);
  transform: translateY(-6px);
}
.cd-nav-trigger span::after {
  /* menu icon middle bottom line */
  -webkit-transform: translateY(6px);
  -moz-transform: translateY(6px);
  -ms-transform: translateY(6px);
  -o-transform: translateY(6px);
  transform: translateY(6px);
}
.nav-open .cd-nav-trigger span {
  background-color: transparent;
}
.nav-open .cd-nav-trigger span::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.nav-open .cd-nav-trigger span::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media only screen and (min-width: 1100px) {
  .cd-nav-trigger {
    height: 48px;
    width: 48px;
    left: calc(2.5vw - 24px);
    top: calc(4vh - 24px);
  }
}

/* -------------------------------- 

no-js

-------------------------------- */
.no-js .cd-slideshow-wrapper {
  overflow: visible;
  height: auto;
}

.no-js .cd-slideshow > li,
.no-js .cd-slideshow .sub-slides > li {
  height: auto;
  width: 100vw;
  margin: 0;
}

.no-js .cd-slider-content {
  margin: 0;
  height: 100vh;
  width: 100%;
  border-radius: 0;
}

.no-js .cd-slideshow > li:first-of-type .cd-slider-content,
.no-js .sub-slides > li:first-of-type .cd-slider-content,
.no-js .sub-slides > li .cd-slider-content {
  margin: 0;
}

.no-js .cd-slider-content .content-wrapper {
  opacity: 1;
  box-shadow: none;
}

.no-js .cd-slider-content::after {
  opacity: 0;
  visibility: hidden;
}

.no-js .cd-nav-trigger {
  display: none;
}

.no-js .cd-slideshow-nav {
  position: static;
}

.no-js #icon-keyboard {
  display: none;
}

.no-js .cd-slideshow-nav .cd-nav-items {
  position: static;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

.no-js .cd-slideshow-nav .cd-nav-items {
  height: auto;
}

.no-js .sub-nav {
  display: none;
}

/* -------------------------------- 

System Architecture Diagram Styles

-------------------------------- */
.system-arch-tooltip {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* -------------------------------- 

Responsive Defensibility Slide (Slide 10)

-------------------------------- */
#slide-11 .content-wrapper {
  overflow-y: auto;
  overflow-x: hidden;
  padding: 2rem 2.5rem;
}

#slide-11 h2 {
  font-size: 3.2rem;
  margin-bottom: 0.75rem;
}

#slide-11 > .content-wrapper > p {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: #c8d6f0;
}

/* Defensibility grid - responsive 2x2 */
#slide-11 .defensibility-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

#slide-11 .defensibility-card {
  padding: 1.5rem !important;
}

#slide-11 .defensibility-card .card-title {
  font-size: 1.8rem !important;
  font-weight: 700 !important;
}

#slide-11 .defensibility-card .card-subtitle {
  font-size: 1.3rem !important;
  font-weight: 500 !important;
}

#slide-11 .defensibility-card ul li {
  font-size: 1.3rem !important;
  line-height: 1.7 !important;
  margin-bottom: 0.5rem !important;
}

#slide-11 .defensibility-card .agent-item {
  font-size: 1.3rem !important;
  padding: 0.6rem 0.8rem !important;
  margin-bottom: 0.6rem !important;
}

#slide-11 .defensibility-summary {
  padding: 1.5rem 2rem !important;
  margin-top: 0.5rem;
}

#slide-11 .defensibility-summary .summary-title {
  font-size: 1.8rem !important;
  font-weight: 700 !important;
}

#slide-11 .defensibility-summary p {
  font-size: 1.4rem !important;
  line-height: 1.6 !important;
}

/* Tablet sizes */
@media only screen and (min-width: 768px) {
  #slide-11 .content-wrapper {
    padding: 2rem 3rem;
  }
  
  #slide-11 .defensibility-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  #slide-11 h2 {
    font-size: 3.4rem;
  }
  
  #slide-11 .defensibility-card .card-title {
    font-size: 1.9rem !important;
  }
  
  #slide-11 .defensibility-card .card-subtitle {
    font-size: 1.35rem !important;
  }
  
  #slide-11 .defensibility-card ul li {
    font-size: 1.35rem !important;
  }
  
  #slide-11 .defensibility-card .agent-item {
    font-size: 1.35rem !important;
  }
}

/* Desktop sizes */
@media only screen and (min-width: 1100px) {
  #slide-11 .content-wrapper {
    padding: 2.5rem 4rem;
    overflow-y: auto;
  }
  
  #slide-11 h2 {
    font-size: 3.6rem;
  }
  
  #slide-11 > .content-wrapper > p {
    font-size: 1.8rem;
  }
  
  #slide-11 .defensibility-grid {
    gap: 1.75rem;
  }
  
  #slide-11 .defensibility-card {
    padding: 1.75rem !important;
  }
  
  #slide-11 .defensibility-card .card-title {
    font-size: 2rem !important;
  }
  
  #slide-11 .defensibility-card .card-subtitle {
    font-size: 1.4rem !important;
  }
  
  #slide-11 .defensibility-card ul li {
    font-size: 1.4rem !important;
  }
  
  #slide-11 .defensibility-card .agent-item {
    font-size: 1.4rem !important;
    padding: 0.7rem 1rem !important;
  }
  
  #slide-11 .defensibility-summary {
    padding: 1.75rem 2.5rem !important;
  }
  
  #slide-11 .defensibility-summary .summary-title {
    font-size: 2rem !important;
  }
  
  #slide-11 .defensibility-summary p {
    font-size: 1.5rem !important;
  }
}

/* Large desktop */
@media only screen and (min-width: 1400px) {
  #slide-11 h2 {
    font-size: 4rem;
  }
  
  #slide-11 .defensibility-card .card-title {
    font-size: 2.2rem !important;
  }
  
  #slide-11 .defensibility-card .card-subtitle {
    font-size: 1.5rem !important;
  }
  
  #slide-11 .defensibility-card ul li,
  #slide-11 .defensibility-card .agent-item {
    font-size: 1.5rem !important;
  }
  
  #slide-11 .defensibility-summary .summary-title {
    font-size: 2.2rem !important;
  }
  
  #slide-11 .defensibility-summary p {
    font-size: 1.6rem !important;
  }
}

/* -------------------------------- 

Platform Demo Slide (Slide 14)

-------------------------------- */
.live-demo-slide {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: radial-gradient(ellipse at center, #0d1628 0%, #080c18 60%, #050810 100%);
  transition: all 0.4s ease;
}

.live-demo-slide:hover {
  background: radial-gradient(ellipse at center, #0f1a30 0%, #0a1020 60%, #060912 100%);
}

/* Wireframe Background SVG */
.wireframe-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 1;
  animation: wireframe-float 20s ease-in-out infinite;
}

@keyframes wireframe-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.01); }
}

.live-demo-slide:hover .wireframe-bg {
  opacity: 0.85;
  animation-duration: 10s;
}

/* Demo Content */
.live-demo-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: 2rem;
  text-align: center;
}

/* Demo Icon */
.demo-icon {
  margin-bottom: 1.5rem;
  animation: demo-icon-pulse 3s ease-in-out infinite;
}

.demo-icon svg {
  width: 80px;
  height: 80px;
  stroke: #7ab7ff;
  filter: drop-shadow(0 0 25px rgba(122, 183, 255, 0.4));
}

@keyframes demo-icon-pulse {
  0%, 100% { 
    transform: scale(1);
    filter: drop-shadow(0 0 25px rgba(122, 183, 255, 0.4));
  }
  50% { 
    transform: scale(1.05);
    filter: drop-shadow(0 0 40px rgba(122, 183, 255, 0.6));
  }
}

.live-demo-slide:hover .demo-icon svg {
  stroke: #6ef0b8;
  filter: drop-shadow(0 0 35px rgba(110, 240, 184, 0.5));
}

/* Demo Title */
.demo-title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 4.5rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.03em;
  text-shadow: 0 0 50px rgba(122, 183, 255, 0.4);
  animation: title-glow 4s ease-in-out infinite;
}

@keyframes title-glow {
  0%, 100% { text-shadow: 0 0 50px rgba(122, 183, 255, 0.4); }
  50% { text-shadow: 0 0 70px rgba(122, 183, 255, 0.6), 0 0 100px rgba(110, 240, 184, 0.3); }
}

/* Demo Subtitle */
.demo-subtitle {
  font-size: 1.8rem;
  font-weight: 400;
  color: rgba(200, 214, 240, 0.7);
  margin: 0 0 2.5rem 0;
  letter-spacing: 0.02em;
}

/* Demo CTA Button */
.demo-cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 2.5rem;
  background: linear-gradient(135deg, rgba(122, 183, 255, 0.15), rgba(110, 240, 184, 0.1));
  border: 2px solid rgba(122, 183, 255, 0.4);
  border-radius: 50px;
  transition: all 0.4s ease;
  animation: cta-glow 3s ease-in-out infinite;
}

@keyframes cta-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(122, 183, 255, 0.2); }
  50% { box-shadow: 0 0 40px rgba(122, 183, 255, 0.4), 0 0 60px rgba(110, 240, 184, 0.2); }
}

.live-demo-slide:hover .demo-cta {
  background: linear-gradient(135deg, rgba(110, 240, 184, 0.2), rgba(122, 183, 255, 0.15));
  border-color: rgba(110, 240, 184, 0.6);
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(110, 240, 184, 0.3);
}

.demo-cta-text {
  font-size: 1.6rem;
  font-weight: 600;
  color: #8fc4ff;
  transition: color 0.3s ease;
}

.live-demo-slide:hover .demo-cta-text {
  color: #6ef0b8;
}

.demo-cta-icon {
  width: 24px;
  height: 24px;
  stroke: #8fc4ff;
  transition: all 0.3s ease;
}

.live-demo-slide:hover .demo-cta-icon {
  stroke: #6ef0b8;
  transform: translate(3px, -3px);
}

/* Demo Hint */
.demo-hint {
  margin-top: 2rem;
  font-size: 1.2rem;
  color: rgba(143, 196, 255, 0.5);
  font-weight: 400;
  letter-spacing: 0.05em;
}

/* Responsive Adjustments for Platform Demo */
@media only screen and (max-width: 768px) {
  .demo-icon svg {
    width: 60px;
    height: 60px;
  }
  
  .demo-title {
    font-size: 2.8rem;
  }
  
  .demo-subtitle {
    font-size: 1.2rem;
  }
  
  .demo-cta {
    padding: 1rem 2rem;
  }
  
  .demo-cta-text {
    font-size: 1.2rem;
  }
  
  .demo-hint {
    font-size: 1rem;
  }
}

/* -------------------------------- 

Responsive Slide 16 (FleetOps & Device360)

-------------------------------- */
#slide-16 .content-wrapper {
  overflow-y: auto;
  overflow-x: hidden;
  padding: 1rem 1.5rem;
}

#slide-16 h2 {
  font-size: 2.4rem;
  margin-bottom: 0.25rem;
}

#slide-16 > .content-wrapper > p {
  font-size: 1rem !important;
  margin-bottom: 0.75rem !important;
}

#slide-16 .feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

#slide-16 .feature-card {
  padding: 1.25rem !important;
}

#slide-16 .feature-card h3 {
  font-size: 1.4rem !important;
  margin-bottom: 0.75rem !important;
}

#slide-16 .feature-card h3 svg {
  width: 22px !important;
  height: 22px !important;
}

#slide-16 .feature-card img {
  max-height: 200px;
  object-fit: contain;
}

#slide-16 .feature-card p {
  font-size: 1rem !important;
  margin-bottom: 0.5rem !important;
}

#slide-16 .feature-card ul {
  margin: 0 !important;
  padding-left: 1rem !important;
}

#slide-16 .feature-card ul li {
  font-size: 0.95rem !important;
  margin-bottom: 0.35rem !important;
  line-height: 1.5 !important;
}

/* Tablet and up */
@media only screen and (min-width: 768px) {
  #slide-16 .content-wrapper {
    padding: 1.25rem 2rem;
  }
  
  #slide-16 .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  #slide-16 h2 {
    font-size: 2.8rem;
    margin-bottom: 0.35rem;
  }
  
  #slide-16 > .content-wrapper > p {
    margin-bottom: 1rem !important;
  }
  
  #slide-16 .feature-card h3 {
    font-size: 1.5rem !important;
  }
  
  #slide-16 .feature-card img {
    max-height: 240px;
  }
}

/* Desktop */
@media only screen and (min-width: 1100px) {
  #slide-16 .content-wrapper {
    padding: 1.5rem 2rem;
  }
  
  #slide-16 h2 {
    font-size: 3.2rem;
    margin-bottom: 0.4rem;
  }
  
  #slide-16 > .content-wrapper > p {
    font-size: 1.1rem !important;
    margin-bottom: 1rem !important;
  }
  
  #slide-16 .feature-grid {
    gap: 1.75rem;
  }
  
  #slide-16 .feature-card {
    padding: 1.5rem !important;
  }
  
  #slide-16 .feature-card h3 {
    font-size: 1.6rem !important;
  }
  
  #slide-16 .feature-card h3 svg {
    width: 24px !important;
    height: 24px !important;
  }
  
  #slide-16 .feature-card img {
    max-height: 280px;
  }
  
  #slide-16 .feature-card p {
    font-size: 1.05rem !important;
  }
  
  #slide-16 .feature-card ul li {
    font-size: 1rem !important;
  }
}

/* Large desktop */
@media only screen and (min-width: 1400px) {
  #slide-16 .content-wrapper {
    padding: 1.75rem 2.5rem;
  }
  
  #slide-16 h2 {
    font-size: 3.6rem;
    margin-bottom: 0.5rem;
  }
  
  #slide-16 > .content-wrapper > p {
    margin-bottom: 1.25rem !important;
  }
  
  #slide-16 .feature-card h3 {
    font-size: 1.75rem !important;
  }
  
  #slide-16 .feature-card h3 svg {
    width: 26px !important;
    height: 26px !important;
  }
  
  #slide-16 .feature-card img {
    max-height: 320px;
  }
  
  #slide-16 .feature-card p {
    font-size: 1.1rem !important;
  }
  
  #slide-16 .feature-card ul li {
    font-size: 1.05rem !important;
  }
}

/* -------------------------------- 

Responsive Slides 17, 18, 19 (Same as Slide 16)

-------------------------------- */
#slide-17 .content-wrapper,
#slide-18 .content-wrapper,
#slide-19 .content-wrapper {
  overflow-y: auto;
  overflow-x: hidden;
  padding: 1rem 1.5rem;
}

#slide-17 h2,
#slide-18 h2,
#slide-19 h2 {
  font-size: 2.4rem;
  margin-bottom: 0.25rem;
}

#slide-17 > .content-wrapper > p,
#slide-18 > .content-wrapper > p,
#slide-19 > .content-wrapper > p {
  font-size: 1rem !important;
  margin-bottom: 0.75rem !important;
}

#slide-17 .feature-grid,
#slide-18 .feature-grid,
#slide-19 .feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

#slide-17 .feature-card,
#slide-18 .feature-card,
#slide-19 .feature-card {
  padding: 1.25rem !important;
}

#slide-17 .feature-card h3,
#slide-18 .feature-card h3,
#slide-19 .feature-card h3 {
  font-size: 1.4rem !important;
  margin-bottom: 0.75rem !important;
}

#slide-17 .feature-card h3 svg,
#slide-18 .feature-card h3 svg,
#slide-19 .feature-card h3 svg {
  width: 22px !important;
  height: 22px !important;
}

#slide-17 .feature-card img,
#slide-18 .feature-card img,
#slide-19 .feature-card img {
  max-height: 200px;
  object-fit: contain;
}

#slide-17 .feature-card p,
#slide-18 .feature-card p,
#slide-19 .feature-card p {
  font-size: 1rem !important;
  margin-bottom: 0.5rem !important;
}

#slide-17 .feature-card ul,
#slide-18 .feature-card ul,
#slide-19 .feature-card ul {
  margin: 0 !important;
  padding-left: 1rem !important;
}

#slide-17 .feature-card ul li,
#slide-18 .feature-card ul li,
#slide-19 .feature-card ul li {
  font-size: 0.95rem !important;
  margin-bottom: 0.35rem !important;
  line-height: 1.5 !important;
}

/* Tablet and up */
@media only screen and (min-width: 768px) {
  #slide-17 .content-wrapper,
  #slide-18 .content-wrapper,
  #slide-19 .content-wrapper {
    padding: 1.25rem 2rem;
  }
  
  #slide-17 .feature-grid,
  #slide-18 .feature-grid,
  #slide-19 .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  #slide-17 h2,
  #slide-18 h2,
  #slide-19 h2 {
    font-size: 2.8rem;
    margin-bottom: 0.35rem;
  }
  
  #slide-17 > .content-wrapper > p,
  #slide-18 > .content-wrapper > p,
  #slide-19 > .content-wrapper > p {
    margin-bottom: 1rem !important;
  }
  
  #slide-17 .feature-card h3,
  #slide-18 .feature-card h3,
  #slide-19 .feature-card h3 {
    font-size: 1.5rem !important;
  }
  
  #slide-17 .feature-card img,
  #slide-18 .feature-card img,
  #slide-19 .feature-card img {
    max-height: 240px;
  }
}

/* Desktop */
@media only screen and (min-width: 1100px) {
  #slide-17 .content-wrapper,
  #slide-18 .content-wrapper,
  #slide-19 .content-wrapper {
    padding: 1.5rem 2rem;
  }
  
  #slide-17 h2,
  #slide-18 h2,
  #slide-19 h2 {
    font-size: 3.2rem;
    margin-bottom: 0.4rem;
  }
  
  #slide-17 > .content-wrapper > p,
  #slide-18 > .content-wrapper > p,
  #slide-19 > .content-wrapper > p {
    font-size: 1.1rem !important;
    margin-bottom: 1rem !important;
  }
  
  #slide-17 .feature-grid,
  #slide-18 .feature-grid,
  #slide-19 .feature-grid {
    gap: 1.75rem;
  }
  
  #slide-17 .feature-card,
  #slide-18 .feature-card,
  #slide-19 .feature-card {
    padding: 1.5rem !important;
  }
  
  #slide-17 .feature-card h3,
  #slide-18 .feature-card h3,
  #slide-19 .feature-card h3 {
    font-size: 1.6rem !important;
  }
  
  #slide-17 .feature-card h3 svg,
  #slide-18 .feature-card h3 svg,
  #slide-19 .feature-card h3 svg {
    width: 24px !important;
    height: 24px !important;
  }
  
  #slide-17 .feature-card img,
  #slide-18 .feature-card img,
  #slide-19 .feature-card img {
    max-height: 280px;
  }
  
  #slide-17 .feature-card p,
  #slide-18 .feature-card p,
  #slide-19 .feature-card p {
    font-size: 1.05rem !important;
  }
  
  #slide-17 .feature-card ul li,
  #slide-18 .feature-card ul li,
  #slide-19 .feature-card ul li {
    font-size: 1rem !important;
  }
}

/* Large desktop */
@media only screen and (min-width: 1400px) {
  #slide-17 .content-wrapper,
  #slide-18 .content-wrapper,
  #slide-19 .content-wrapper {
    padding: 1.75rem 2.5rem;
  }
  
  #slide-17 h2,
  #slide-18 h2,
  #slide-19 h2 {
    font-size: 3.6rem;
    margin-bottom: 0.5rem;
  }
  
  #slide-17 > .content-wrapper > p,
  #slide-18 > .content-wrapper > p,
  #slide-19 > .content-wrapper > p {
    margin-bottom: 1.25rem !important;
  }
  
  #slide-17 .feature-card h3,
  #slide-18 .feature-card h3,
  #slide-19 .feature-card h3 {
    font-size: 1.75rem !important;
  }
  
  #slide-17 .feature-card h3 svg,
  #slide-18 .feature-card h3 svg,
  #slide-19 .feature-card h3 svg {
    width: 26px !important;
    height: 26px !important;
  }
  
  #slide-17 .feature-card img,
  #slide-18 .feature-card img,
  #slide-19 .feature-card img {
    max-height: 320px;
  }
  
  #slide-17 .feature-card p,
  #slide-18 .feature-card p,
  #slide-19 .feature-card p {
    font-size: 1.1rem !important;
  }
  
  #slide-17 .feature-card ul li,
  #slide-18 .feature-card ul li,
  #slide-19 .feature-card ul li {
    font-size: 1.05rem !important;
  }
}
