/* Styles specific to the V-Speak page */
/* Inherits many styles from global styles.css */

/* Product Detail Section */
.product-detail-section .card-logo {
  display: block;
  max-width: 200px;
  height: 70px; /* Consistent with updated size */
  object-fit: contain;
  margin-right: 15px; /* Add spacing between elements */
}

.product-detail-section .card-logo:last-child {
  margin-right: 0; /* Remove margin from the last logo */
}

.card-logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px; /* Increased spacing below the logo container */
}

.product-detail-section h1 {
  margin-bottom: 15px;
  text-align: center;
  font-size: 1.8rem; /* Consistent with other headings */
}

.product-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.product-detail-section .hero-section .hero-content h2,
.product-detail-section .hero-section .hero-content p {
  text-align: left;
}

.trust-certifications {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9em;
}

.trust-certifications p strong {
  font-weight: 600;
}

/* V-Speak Call Flow Demo Section */
.call-flow-navigation-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0px;
  margin-bottom: 10px;
  width: 100%;
}

.call-flow-navigation-header h5#call-scenario-title {
  margin: 0;
  font-size: 1.2em;
  color: var(--text-color-dark);
}

.nav-button {
  background-color: transparent;
  color: var(--primary-accent-color);
  border: none;
  padding: 8px 12px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5em;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.nav-button:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
}

.content-separator {
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(0, 255, 187, 0.5), transparent);
  margin: 20px 0;
  border: none;
}

.animated-call-flow-container {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: 450px;
}

.call-flow-script {
  flex-grow: 1;
  overflow-y: auto;
  padding: 10px;
  font-family: 'IBM Plex Sans', sans-serif;
  line-height: 1.7;
  font-size: 0.95em;
  color: #e0e0e0;
}

.call-flow-script .script-line {
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.call-flow-script .script-line.visible {
  opacity: 1;
  transform: translateY(0);
}

.call-flow-script .speaker {
  font-weight: bold;
  margin-right: 8px;
}

.call-flow-script .speaker.caller {
  color: #87CEFA;
}

.call-flow-script .speaker.vspeak {
  color: #90EE90;
}

.call-flow-script .action {
  font-style: italic;
  color: #aaa;
  display: block;
  margin-left: 20px;
  font-size: 0.9em;
}

.scenario-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  margin-top: auto;
}

.scenario-indicator .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.scenario-indicator .dot.active {
  background-color: #ffffff;
  transform: scale(1.2);
}

.chat-info {
  text-align: center;
  font-style: italic;
  font-size: 0.8em;
  color: #bbb;
  padding-top: 10px;
  margin-top: 0;
}

/* Info Card below demo */
.product-section .info-card {
  margin-top: 40px;
}

/* Measurable Impact Section */
.measurable-impact-section {
  margin-top: 50px;
}

.impact-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.impact-cards .info-card {
  flex: 1 1 calc(33% - 20px);
  padding: 20px;
  margin-top: 20px;
}

/* Industries Empowered Section */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.feature-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.feature-icon img {
  max-height: 100%;
  max-width: 100%;
}

/* Integration Highlight Box */
.integration-highlight-box {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 25px;
  margin: 30px 0;
  width: 100%;
  box-sizing: border-box;
}

.integration-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
  width: 100%;
}

.step strong {
  display: block;
  margin-bottom: 8px;
  color: var(--primary-accent-color);
}

.roi-guarantee-text {
  margin-top: 30px;
  text-align: center;
  font-size: 0.9em;
}
