


.hero-content h1 {
  font-size: 2.25rem;
  line-height: 1.3;
  color: #ffffff;
}

.hero-text {
  font-size: 1rem;
  color: #dddddd;
  line-height: 1.6;
}

.btn-explore,
.btn-community {
  padding: 0.7rem 1.4rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-explore {
  background-color: #28a745;
  color: white;
}

.btn-explore:hover {
  background-color: #218838;
}

.btn-community {
  background-color: transparent;
  color: #28a745;
  border: 2px solid #28a745;
}

.btn-community:hover {
  background-color: #28a745;
  color: white;
}

.animation-placeholder {
  text-align: center;
  border: 2px dashed #ccc;
  max-width: 400px;
}








.capability-card {
  display: block;
  background: #ffffff;
  border-radius: 2px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.capability-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

.capability-card .card-img-top {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.capability-card .card-body {
  padding: 1rem;
  position: relative;
}

.capability-card .card-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 0.5rem;
}

.capability-card .card-text {
  font-size: 0.95rem;
  color: #444;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, max-height 0.3s ease;
}

.capability-card:hover .card-text {
  opacity: 1;
  max-height: 100px;
}



.from-lab-to-market {
  background-color: #f8f9fb;
}

.section-title {
  font-size: 2rem;
  font-weight: 600;
  color: #222;
}



.carousel-wrapper {
  position: relative;
}

.scrolling-wrapper {
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  display: flex;
  padding: 0 2.5rem;
}

.product-card {
  width: 280px;
  scroll-snap-align: start;
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #333;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: background 0.3s;
}

.carousel-btn:hover {
  background-color: #f0f0f0;
}

.carousel-btn.prev {
  left: 0;
}

.carousel-btn.next {
  right: 0;
}

.learn-more {
  font-weight: 500;
  font-size: 0.95rem;
  color: #0077ff;
  text-decoration: none;
  display: inline-block;
  margin-top: 0.5rem;
}

.learn-more.disabled {
  color: #888;
  pointer-events: none;
}












.learn-box ul {
  list-style: none;
  padding: 0;
  font-size: 1rem;
  color: #333;
}

.learn-box ul li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.5rem;
}

.learn-box ul li::before {
  content: "➤";
  position: absolute;
  left: 0;
  top: 0;
  color: #0077ff;
  font-size: 1rem;
}

.video-tile,
.guide-tile {
  background-color: #fff;
  padding: 1.2rem;
  border: 1px solid #e0e0e0;
  text-align: center;
  border-radius: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.video-tile:hover,
.guide-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-color: #0077ff;
}










.cta-section {

  border-top: 1px solid #e0e0e0;
}

.insights-list {
  list-style: disc;
  padding-left: 1.5rem;
  font-size: 1rem;
  color: #fff;
}

.insights-list li {
  margin-bottom: 0.75rem;
}

.subscribe-form input[type="email"] {
  padding: 0.6rem 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 0.95rem;
  width: 100%;
  max-width: 240px;
}

.subscribe-form input[type="email"]:focus {
  border-color: #0077ff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 119, 255, 0.15);
}

.btn-subscribe {
  background-color: #0077ff;
  color: #fff;
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-subscribe:hover {
  background-color: #005ee0;
  box-shadow: 0 6px 18px rgba(0, 119, 255, 0.25);
  transform: translateY(-2px);
}


