/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.8rem); }
h4 { font-size: 1.1rem; }

p {
  margin-bottom: 1rem;
  color: #002244;
  font-size: 1.1rem;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #002244;
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  font-weight: 600;
  font-size: 1.2rem;
}

.orbis-logo {
  height: 32px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 212, 255, 0.3));
}

.logo i {
  font-size: 1.5rem;
  color: #00d4ff;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover {
  color: #00d4ff;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #00d4ff;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #ffffff;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #002244 0%, #004080 50%, #0066cc 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.hero-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.hero-brand-icon {
  width: 120px;
  height: auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.hero-title {
  margin-bottom: 0;
  background: linear-gradient(45deg, #ffffff, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  color: #ffffff;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #00d4ff;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

.hero-visual {
  position: relative;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
  overflow: visible;
  transform: none;
}

.hero-image {
  width: 100%;
  height: auto;
  max-width: 1000px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  margin: 1rem 0;
  padding: 1.5rem;
}

.hero-image-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  position: relative;
  width: 100%;
  max-width: 1000px;
}

.hero-image-caption {
  width: 100%;
  color: #ffffff;
  background: #002244;
  border-radius: 10px;
  padding: 1.5rem;
  margin-top: 0;
}

.hero-image-caption h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}

.hero-image-caption p {
  font-size: 1.2rem;
  line-height: 1.7;
  opacity: 0.95;
  color: #ffffff;
  font-weight: 400;
}

/* Section Header Images */
.section-header-image {
  height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
  overflow: hidden;
}

.section-header-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 34, 68, 0.8) 0%, rgba(0, 64, 128, 0.7) 50%, rgba(0, 102, 204, 0.6) 100%);
  z-index: 1;
}

.header-overlay {
  position: relative;
  z-index: 2;
  background: #002244;
  border-radius: 25px;
  padding: 3.5rem;
  text-align: center;
  color: #ffffff;
  max-width: 800px;
  margin: 0 2rem;
}

/* Remove boxes only for product sections */
.discovery-header .header-overlay,
.catalyst-header .header-overlay,
.pulse-header .header-overlay,
.landscape-header .header-overlay {
  background: transparent;
  backdrop-filter: none;
  border-radius: 0;
  border: none;
  box-shadow: none;
}

.header-logo {
  width: 500px;
  height: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.5));
  transition: transform 0.3s ease;
}

.header-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.6));
}

.header-tagline {
  font-size: 1.6rem;
  color: #ffffff;
  opacity: 1;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  text-align: center;
  letter-spacing: 0.3px;
}

.header-overlay p {
  font-size: 1.4rem;
  color: #ffffff;
  opacity: 1;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
}

/* Specific header images */
.pulse-header {
  background-image: url('pulseheader.jpg');
}

.catalyst-header {
  background-image: url('catalystheader.jpg');
}

.discovery-header {
  background-image: url('discoveryheaders.jpg');
}

.landscape-header {
  background-image: url('landscapeheader.jpg');
}

.why-header {
  background-image: url('missionvision.jpg');
}

/* Feature Sections */
.feature {
  padding: 40px 0;
  position: relative;
}

.feature:nth-child(even) {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.feature .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.feature-alt .container {
  grid-template-columns: 1fr 1fr;
}

.feature-alt .feature-visual {
  order: -1;
}

.feature-header {
  margin-bottom: 1.5rem;
}

.feature-icon {
  width: 120px;
  height: 120px;
  background: #ffffff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Product Icons */
.product-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Custom Product Icon Backgrounds - Removed gradients, using white backgrounds */
.pulse-icon {
  background: #ffffff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.catalyst-icon {
  background: #ffffff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.discovery-icon {
  background: #ffffff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.landscape-icon {
  background: #ffffff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature h2 {
  color: #002244;
  margin-bottom: 0.5rem;
  font-size: 2.2rem;
  font-weight: 700;
}

.feature h3 {
  color: #000000 !important;
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.feature p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: #002244;
}

.feature-content h3 {
  color: #000000 !important;
  font-weight: 700;
  font-size: 1.4rem;
}

.feature-list {
  list-style: none;
  margin-top: 1rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem 0;
  font-size: 1rem;
}

.feature-list i {
  color: #00d4ff;
  margin-top: 0.25rem;
  flex-shrink: 0;
  font-size: 1.1rem;
}

/* Visual Elements */
.feature-visual {
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
  overflow: visible;
  transform: none;
}

/* Services Section */
.services {
  padding: 40px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.services-header-image {
  margin-bottom: 40px;
  text-align: center;
}

.full-width-image {
  width: 100%;
  max-width: 1200px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.services-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.services-intro h2 {
  font-size: 2rem;
  color: #002244;
  font-weight: 600;
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #002244, #004080);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-icon i {
  font-size: 2rem;
  color: #00d4ff;
}

.service-card h3 {
  color: #002244;
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
  font-weight: 600;
}

.service-tagline {
  color: #00d4ff;
  font-size: 1rem;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 1rem;
}

.service-card p {
  color: #002244;
  font-size: 1rem;
  line-height: 1.6;
}

/* Services Approach */
.services-approach {
  background: linear-gradient(135deg, #002244, #004080);
  color: #ffffff;
  padding: 3rem;
  border-radius: 20px;
  margin-top: 2rem;
}

.services-approach p {
  color: #ffffff;
}

.services-approach .data-label {
  color: #ffffff;
}

.services-approach .inuse-caption {
  color: #ffffff;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.approach-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
}

.approach-item h4 {
  color: #00d4ff;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.approach-item p {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.95;
  margin: 0;
}

/* Why Section */
.why-section {
  padding: 40px 0;
  background: linear-gradient(135deg, #002244 0%, #004080 100%);
  color: #ffffff;
  text-align: center;
}

.why-section p {
  color: #ffffff;
}

.why-section .data-label {
  color: #ffffff;
}

.why-section .inuse-caption {
  color: #ffffff;
}

.why-content {
  max-width: 1200px;
  margin: 0 auto;
}

.why-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.why-intro h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #00d4ff;
  margin-bottom: 1.5rem;
}

.why-intro p {
  font-size: 1.3rem;
  line-height: 1.7;
  color: #ffffff;
  opacity: 1;
  max-width: 800px;
  margin: 0 auto;
}

.why-video-container {
  margin: 3rem 0;
  text-align: center;
  max-width: 100vw;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  padding: 0 1rem;
}

.why-video {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  background: #000;
  display: block;
  margin: 0 auto;
  box-sizing: border-box;
  object-fit: contain;
  max-height: 70vh;
}

.video-caption {
  margin-top: 1rem;
  font-size: 1rem;
  color: #ffffff;
  opacity: 0.9;
  font-style: italic;
}

.why-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.why-stat {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.why-stat:hover {
  transform: scale(1.02);
}

.why-stat .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #00d4ff;
  margin-bottom: 0.5rem;
}

.why-stat .stat-label {
  font-size: 1rem;
  opacity: 0.9;
  line-height: 1.5;
}

.why-principles {
  margin-bottom: 4rem;
}

.why-principles h3 {
  font-size: 2rem;
  font-weight: 600;
  color: #00d4ff;
  margin-bottom: 2rem;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.principle-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
}

.principle-item:hover {
  transform: scale(1.02);
}

.principle-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00d4ff, #0066cc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: transform 0.3s ease;
}

.principle-item:hover .principle-icon {
  transform: scale(1.1);
}

.principle-icon i {
  font-size: 1.5rem;
  color: #ffffff;
}

.principle-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.principle-item p {
  font-size: 0.9rem;
  line-height: 1.4;
  color: #ffffff;
  opacity: 1;
  margin: 0;
}

.why-impact {
  background: rgba(255, 255, 255, 0.05);
  padding: 3rem;
  border-radius: 20px;
}

.why-impact h3 {
  font-size: 2rem;
  font-weight: 600;
  color: #00d4ff;
  margin-bottom: 2rem;
}

.impact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.impact-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  text-align: left;
  color: #ffffff;
}

.impact-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.highlight-item i {
  color: #00d4ff;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.highlight-item span {
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
}

/* Footer */
footer {
  background: #002244;
  color: #ffffff;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
  color: #00d4ff;
}

.footer-section p {
  color: #ffffff;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.footer-section a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #00d4ff;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.social-links a:hover {
  background: #00d4ff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  
  .hero-brand {
    align-items: center;
  }
  
  .hero-brand-icon {
    width: 100px;
  }
  
  .hero-image {
    max-width: 600px;
  }
  
  .hero-image-container {
    max-width: 600px;
  }
  
  .hero-image-caption h3 {
    font-size: 1.3rem;
  }
  
  .hero-image-caption p {
    font-size: 1rem;
  }
  
  .hero-image-caption {
    padding: 1rem;
  }
  
  .section-header-image {
    height: 250px;
  }
  
  .header-overlay {
    padding: 1.5rem;
    margin: 0 0.5rem;
  }
  
  .header-logo {
    width: 300px;
  }
  
  .header-overlay p {
    font-size: 1rem;
  }
  
  .header-tagline {
    font-size: 1rem;
  }
  
  .feature .container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .feature-alt .feature-visual {
    order: 0;
  }
  
  .feature h2 {
    font-size: 1.8rem;
  }
  
  .feature h3 {
    font-size: 1.2rem;
  }
  
  .feature p {
    font-size: 1rem;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
  }
  
  .why-features {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .nav-container {
    padding: 0 1rem;
  }
  
  .feature-icon {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 480px) {
  .why-features {
    grid-template-columns: 1fr;
  }
  
  .why-intro h2 {
    font-size: 1.6rem;
  }
  
  .why-intro p {
    font-size: 1rem;
  }
  
  .why-video {
    max-width: calc(100vw - 2rem);
    border-radius: 10px;
    width: 100%;
    max-height: 60vh;
  }
  
  .why-video-container {
    padding: 0 0.5rem;
  }
  
  .video-caption {
    font-size: 0.9rem;
  }
  
  .why-stats {
    grid-template-columns: 1fr;
  }
  
  .principles-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .principle-item {
    padding: 1rem;
  }
  
  .principle-icon {
    width: 45px;
    height: 45px;
  }
  
  .principle-icon i {
    font-size: 1.1rem;
  }
  
  .principle-item h4 {
    font-size: 0.9rem;
  }
  
  .principle-item p {
    font-size: 0.75rem;
  }
  
  .impact-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .why-impact {
    padding: 2rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .services-intro h2 {
    font-size: 1.4rem;
  }
  
  .approach-grid {
    grid-template-columns: 1fr;
  }
  
  .services-approach {
    padding: 2rem;
  }
  
  .hero {
    padding: 100px 0 60px;
  }
  
  .hero-container {
    gap: 1.5rem;
  }
  
  .feature {
    padding: 60px 0;
  }
  
  .feature-icon {
    width: 80px;
    height: 80px;
  }
  
  .hero-brand-icon {
    width: 80px;
  }
  
  .hero-image {
    max-width: 300px;
  }
  
  .hero-image-container {
    max-width: 300px;
  }
  
  .section-header-image {
    height: 150px;
  }
  
  .header-logo {
    width: 200px;
  }
  
  .header-overlay p {
    font-size: 1rem;
  }
  
  /* Mobile Data Visualizations */
  .data-visualization {
    padding: 1rem;
  }
  
  .chart-container h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }
  
  .feature-data {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  .data-point {
    padding: 0.5rem;
  }
  
  .data-number {
    font-size: 1.1rem;
  }
  
  .data-label {
    font-size: 0.75rem;
  }
  
  .use-case {
    padding: 1rem;
  }
  
  .use-case h4 {
    font-size: 1rem;
  }
  
  .use-case p {
    font-size: 0.9rem;
  }
  
  .metric-item, .volume-item, .decision-item {
    padding: 0.4rem 0;
  }
  
  .metric-label, .volume-label, .decision-label {
    font-size: 0.75rem;
  }
  
  .metric-value, .volume-value, .decision-value {
    font-size: 0.8rem;
  }
  
  .performance-bar span {
    font-size: 0.75rem;
  }
  
  .product-in-use {
    margin-top: 0.75rem;
  }
  
  .inuse-image {
    border-radius: 6px;
  }
  
  .inuse-caption {
    font-size: 0.75rem;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* Account for fixed navbar */
}

/* Loading Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature,
.service-card,
.why-feature {
  animation: fadeInUp 0.6s ease-out;
}

/* Hover Effects */
.nav-links a,
.service-card,
.why-feature {
  transition: all 0.3s ease;
}

/* Focus States */
a:focus,
button:focus {
  outline: 2px solid #00d4ff;
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .navbar,
  .hero-visual,
  .feature-visual,
  .section-header-image {
    display: none;
  }
  
  .hero {
    background: #ffffff !important;
    color: #000000 !important;
  }
} 

/* Data Visualizations */
.data-visualization {
  background: linear-gradient(135deg, #002244, #004080);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.data-visualization p {
  color: #ffffff;
}

.data-visualization .data-label {
  color: #ffffff;
}

.data-visualization .inuse-caption {
  color: #ffffff;
}

.chart-container h4 {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Performance Bars */
.performance-bar {
  margin-bottom: 1rem;
  position: relative;
}

.bar-fill {
  height: 8px;
  background: linear-gradient(90deg, #00d4ff, #0066cc);
  border-radius: 4px;
  margin-bottom: 0.5rem;
  transition: width 0.8s ease;
}

.performance-bar span {
  font-size: 0.9rem;
  color: #ffffff;
  font-weight: 500;
}

/* Metric Items */
.metric-item, .volume-item, .decision-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.metric-item:last-child, .volume-item:last-child, .decision-item:last-child {
  border-bottom: none;
}

.metric-label, .volume-label, .decision-label {
  font-size: 0.9rem;
  color: #ffffff;
  font-weight: 500;
}

.metric-value, .volume-value, .decision-value {
  font-size: 1rem;
  color: #00d4ff;
  font-weight: 600;
}

/* Feature Data Points */
.feature-data {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.data-point {
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.data-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #00d4ff;
  margin-bottom: 0.5rem;
}

.data-label {
  font-size: 0.85rem;
  color: #002244;
  font-weight: 500;
  line-height: 1.4;
}

/* Use Cases */
.use-case {
  background: linear-gradient(135deg, #002244, #004080);
  color: #ffffff;
  padding: 1.5rem;
  border-radius: 15px;
  margin-top: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.use-case p {
  color: #ffffff;
}

.use-case .data-label {
  color: #ffffff;
}

.use-case .inuse-caption {
  color: #ffffff;
}

.use-case h4 {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.use-case p {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.95;
  margin: 0;
} 

/* Product In-Use Images */
.product-in-use {
  margin-top: 1.5rem;
  text-align: center;
}

.inuse-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  margin-bottom: 0.75rem;
  transition: transform 0.3s ease;
}

.inuse-image:hover {
  transform: scale(1.02);
}

.inuse-caption {
  font-size: 0.9rem;
  color: #002244;
  font-weight: 500;
  margin: 0;
  font-style: italic;
} 

/* Product Emphasis Layout */
.product-emphasis {
  position: relative;
  margin-bottom: 2rem;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  height: 500px;
  background: #f0f0f0;
}

.emphasis-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-emphasis:hover .emphasis-image {
  transform: scale(1.02);
}

.emphasis-overlay {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  z-index: 2;
  background: rgba(0, 34, 68, 0.95);
  color: #ffffff;
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.emphasis-overlay h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  letter-spacing: 0.5px;
}

.emphasis-overlay p {
  font-size: 1rem;
  opacity: 1;
  margin: 0;
  line-height: 1.5;
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
  font-weight: 500;
} 

@media (max-width: 768px) {
  .inuse-caption {
    font-size: 0.75rem;
  }
  
  .product-emphasis {
    margin-bottom: 1rem;
    min-height: 400px;
  }
  
  .emphasis-overlay {
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    padding: 1rem;
    background: rgba(0, 34, 68, 0.98);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  }
  
  .emphasis-overlay h3 {
    font-size: 1.1rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    color: #ffffff !important;
  }
  
  .emphasis-overlay p {
    font-size: 0.85rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
    font-weight: 500;
  }
} 

 