/* Global Typography */
body {
  font-family: "Poppins", sans-serif;
  color: #212529;
  background-color: #fff;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6,
.hero-title, .nav-btn {
  font-family: "Lexend", sans-serif;
  font-weight: 700;
}

.section-text {
  color: #6c757d;
}

.text-highlight {
  color: #01335a;
}

/* Hero */
.hero {
  background-color: #01335a;
  color: white;
  padding: 4rem 0 6rem;
  text-align: center;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.nav-btn {
  transition: all 0.3s ease-in-out;
}

.nav-btn:hover {
  background-color: #ede9fe;
  color: #01335a;
}

/* Section padding */
.section-padding {
  padding: 4rem 0;
}

/* Learn more link */
.learn-more {
  color: #01335a;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.learn-more:hover {
  color: #3b0ca8;
}

/* Icons */
.icon {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

/* Images */
img.img-fluid {
  max-height: 320px;
  object-fit: contain;
}

/* CTA Banner */
.cta-banner {
  background-color: #01335a;
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.cta-banner h2 {
  line-height: 1.2;
}

@media (min-width: 992px) {
  .cta-banner {
    text-align: left;
  }
}

/* Product Card */
.product-card {
  height: 200px;
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 1rem;
  box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.1);  
  cursor: pointer !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.6rem 1.2rem rgba(0, 0, 0, 0.15);
  
  cursor: pointer !important;
}

/* Footer */
.footer {
  background-color: #01335a;
  color: white;
  padding: 4rem 0;
}

.footer h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 0.6rem;
}

.footer ul li a {
  text-decoration: none;
  color: #cbd5e1;
  transition: color 0.3s ease;
}

.footer ul li a:hover {
  color: #fff;
}

/* Workflow Video */
.workflow-video {
  width: 100%;
  max-width: 500px;   /* keeps video neat */
  border-radius: 1rem;
  box-shadow: 0 0.6rem 1.2rem rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.workflow-video:hover {
  transform: scale(1.02);
}

/* Better spacing for small screens */
@media (max-width: 768px) {
  .workflow-video {
    max-width: 100%;
  }
}




/* Product Item */
.product-item {
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 1rem;
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.6rem 1.2rem rgba(0, 0, 0, 0.1);
}

.product-item img {
  max-height: 120px;
  object-fit: contain;
  margin: 0 auto;
}

.cta-box {
  background: #e9f5ef; /* soft green background like in screenshot */
  text-align: center;
}




/* Testimonials */
.testimonial {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}



/* Scroll Workflow */
.scroll-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

.sticky-right-content {
  position: sticky;
  top: 2rem;
  height: calc(100vh - 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.transition-opacity {
  transition: opacity 0.5s ease;
}

.opacity-0 {
  opacity: 0 !important;
}
.opacity-100 {
  opacity: 1 !important;
}

/* Mobile fix */
@media (max-width: 991px) {
  .sticky-right-content {
    position: static;
    height: auto;
    margin-bottom: 2rem;
  }
  .scroll-section {
    min-height: 50vh;
  }
}
