/* ================= PRODUCT OVERVIEW ================= */
.product-overview-section {
  padding: 100px 0;
  background: #ffffff;
}

/* Heading */
.product-overview-heading h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #084298;
}

.overview-subtitle {
  max-width: 760px;
  margin: 0 auto;
  font-size: 15.8px;
  line-height: 1.7;
  color: #555;
}

/* Highlight */
.product-highlight {
  height: 100%;
  padding: 35px 30px;
  text-align: center;
  border-radius: 18px;
  background: #f6fbfa;
  transition: 0.3s ease;
}

.product-highlight:hover {
  transform: translateY(-6px);
}

/* Icon */
.product-highlight i {
  font-size: 36px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #0B5ED7, #2BB673);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Text */
.product-highlight h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #084298;
}

.product-highlight p {
  font-size: 14.8px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* Mobile */
@media (max-width: 768px) {
  .product-overview-section {
    padding: 70px 0;
  }

  .product-overview-heading h2 {
    font-size: 28px;
  }
}

/* ================= CORE PRODUCTS DARK ================= */
.core-products-dark {
  padding: 120px 0;
  background: linear-gradient(135deg, #031633, #052c65);
  color: #ffffff;
}

.core-products-dark h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
}

.core-products-dark .section-subtitle {
  max-width: 720px;
  margin: 0 auto;
  font-size: 15.5px;
  color: #dbe7ff;
}

/* Product Card */
.product-card-dark {
  height: 100%;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  overflow: hidden;
  padding-bottom: 22px;
  transition: 0.3s ease;
}

.product-card-dark:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.1);
}

/* Image */
.product-card-dark img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* Title */
.product-card-dark h5 {
  font-size: 18px;
  font-weight: 600;
  margin: 18px 18px 12px;
}

/* List */
.product-card-dark ul {
  padding-left: 34px;
  margin: 0;
}

.product-card-dark ul li {
  font-size: 14.6px;
  line-height: 1.7;
  color: #dbe7ff;
  margin-bottom: 6px;
}

/* Mobile */
@media (max-width: 768px) {
  .core-products-dark {
    padding: 70px 0;
  }

  .core-products-dark h2 {
    font-size: 28px;
  }

  .product-card-dark img {
    height: 160px;
  }
}

/* ================= APPLICATIONS MAP ================= */
.applications-map-section {
  padding: 110px 0;
  background: #ffffff;
}

.applications-map-section h2 {
  font-size: 38px;
  font-weight: 700;
  color: #084298;
}

/* Visual */
.applications-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.applications-visual img {
  max-width: 100%;
  border-radius: 18px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* Pulse dot */
.pulse-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  background: #2BB673;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(43,182,115,0.6); }
  70% { box-shadow: 0 0 0 18px rgba(43,182,115,0); }
  100% { box-shadow: 0 0 0 0 rgba(43,182,115,0); }
}

/* Right side points */
.applications-points {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding-left: 30px;
}

.app-point {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 17px;
  font-weight: 600;
  color: #084298;
}

.app-point i {
  font-size: 22px;
  color: #2BB673;
}

/* Mobile */
@media (max-width: 768px) {
  .applications-map-section {
    padding: 70px 0;
  }

  .applications-map-section h2 {
    font-size: 28px;
  }

  .applications-points {
    padding-left: 0;
  }
}

/* ================= PRODUCT FAQ (LIGHT + HOVER) ================= */
.product-faq-section {
  padding: 100px 0;
  background: #f6fbfa; /* light theme background */
}

.product-faq-section h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #084298;
}

.section-subtitle {
  max-width: 720px;
  margin: 0 auto;
  font-size: 15.5px;
  color: #555;
text-align:center;
}

/* Wrapper */
.faq-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  overflow: hidden;
}

/* FAQ Item */
.faq-item {
  border-bottom: 1px solid #e6edf3;
  transition: background 0.3s ease;
}

/* Hover effect */
.faq-item:hover {
  background: #f0f8f6;
}

/* Question */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 24px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: #084298;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

/* Icon */
.faq-question i {
  font-size: 14px;
  transition: transform 0.3s ease, color 0.3s ease;
  color: #2BB673;
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 14.8px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* Active */
.faq-item.active {
  background: #eefaf6;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
  color: #0B5ED7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 🔥 50% - 50% */
  gap: 30px;
}

/* Mobile */
@media (max-width: 768px) {
  .product-faq-section {
    padding: 70px 0;
  }

  .product-faq-section h2 {
    font-size: 28px;
  }

  .faq-question {
    font-size: 15px;
    padding: 18px 18px;
  }

  .faq-answer p {
    padding: 0 18px 18px;
  }
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}
/* ================= RG SHOWCASE ================= */
.rg-showcase-section {
  padding: 120px 0;
  background: #ffffff;
}

.rg-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Item */
.rg-showcase-item {
  border-radius: 22px;
  background: #f6fbfa;
  overflow: hidden;
}

/* Image */
.rg-img-wrap {
  position: relative;
}

.rg-img-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* Badge */
.rg-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: linear-gradient(135deg, #0B5ED7, #2BB673);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

/* Info */
.rg-info {
  padding: 24px 26px 30px;
}

.rg-short {
  font-size: 15px;
  color: #555;
  margin-bottom: 18px;
}

/* Spec table style */
.rg-spec-table {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rg-spec-table div {
  display: flex;
  justify-content: space-between;
  font-size: 14.4px;
  padding-bottom: 6px;
  border-bottom: 1px dashed #dce7ef;
}

.rg-spec-table div span:first-child {
  font-weight: 600;
  color: #084298;
}

.rg-spec-table div span:last-child {
  color: #333;
}

/* Mobile */
@media (max-width: 992px) {
  .rg-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .rg-showcase-grid {
    grid-template-columns: 1fr;
  }

  .rg-showcase-section {
    padding: 70px 0;
  }
}

.testimonial-section {
  background: #f7fbff;
  padding: 80px 0;
  overflow: hidden;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
	display: flex;
  justify-content: center; 
}

.testimonial-track {
  display: flex;
  gap: 25px;
  animation: scrollTestimonials 25s linear infinite;
}

.testimonial-card {
  min-width: 420px;
  max-width: 420px;
  background: #ffffff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.testimonial-card p {
  font-size: 14.5px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 15px;
}

.testimonial-card h6 {
  margin: 0;
  font-weight: 600;
  color: #084298;
}

.testimonial-card span {
  font-size: 13px;
  color: #666;
}

/* Auto scroll animation */
/*@keyframes scrollTestimonials {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}*/

/* Mobile */
@media (max-width: 768px) {

  .testimonial-section {
    overflow: visible;
  }

  .testimonial-slider {
    overflow: visible;   /* 🔥 scroll band */
  }

  .testimonial-track {
    display: block;      /* 🔥 vertical layout */
    animation: none;     /* ❌ auto scroll band */
  }

  .testimonial-card {
    max-width: 100%;
    min-width: 100%;
    margin-bottom: 20px; /* spacing between cards */
  }
}

.tech-process-section {
  padding: 80px 0;
  background: #f8fbff;
}

.tech-step-card {
  background: #ffffff;
  padding: 28px 22px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  height: 100%;
  transition: 0.3s ease;
}

.tech-step-card:hover {
  transform: translateY(-6px);
}

.step-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0b5ed7, #2bb673);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.tech-step-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.tech-step-card p {
  font-size: 14.5px;
  color: #555;
}

.tech-benefits {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.07);
}

.tech-benefit-list {
  list-style: none;
  padding-left: 0;
}

.tech-benefit-list li {
  margin-bottom: 12px;
  font-size: 15px;
  color: #333;
}

.tech-note {
  font-size: 14px;
  color: #666;
  font-style: italic;
}
