:root {
  --primary-color: #1B3A5C;
  --primary-color-light: #5c82ae;
}

.tools {
  margin-top: 10px;
  margin-left: 100px;
  margin-right: 100px;
}

.tools h1 {
  text-align: center;
}

.tools h1 {
  text-align: center;
  font-size: 50px;
}

.image-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  padding: 40px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.image-container img {
  width: 120px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 10px;
}



@media screen and (max-width: 576px) {
  .image-container img {
    max-width: 55px;
    /* Decrease image size on screens 576px and larger */
  }
}

@media screen and (max-width: 768px) {
  .image-container {
    padding: 40px;
  }

  .tools {
    margin-top: 10px;
    margin-left: 10px;
    margin-right: 10px;
  }

  .tools h1 {
    font-size: 30px;
  }
}

@media screen and (max-width: 1200px) {}

.about-imageContent {
  position: relative;
  max-width: 450px;
  height: 300px;
  border: 6px solid var(--section-bg);
}






.logo-slider {
  overflow: hidden;
  padding: 50px 0 0 0;
  white-space: nowrap;
  position: relative;
  padding: 15px;
  max-width: 1110px;
  /* Control the width of the logo slider container */
  margin: 0 auto;
  /* Center the container */
}

.logos-slide {
  display: inline-block;
  animation: 45s slide infinite linear;

}

.logos-slide img {
  width: 120px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 10px;
  margin: 0px 15px;


}

.logos-slide span img {
  width: 189px;
  height: auto;



}

@media screen and (max-width:720px) {
  .logos-slide img {
    width: 100px;
    height: auto;



  }

  .logo-slider {
    padding: 10px;
  }

  .logos-slide span img {
    width: 130px;
    height: auto;



  }


}

@media screen and (max-width:450px) {
  .logos-slide img {
    width: 63px;
    height: auto;



  }

  .logo-slider {
    padding: 10px;
  }

  .logos-slide span img {
    width: 87px;
    height: auto;



  }


}


@keyframes slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

@media screen and (max-width: 768px) {
  .industry-demo-section .section-title {
    margin-top: 5rem;
  }
}

/* Product Banner (copied from blog.css) */
.product-banner {
  padding-top: 50px;
  padding-bottom: 40px;
  /* background: linear-gradient(rgba(247, 247, 247, 0.733), rgba(255, 255, 255, 0.795)), url('../images/bgimg.PNG'); */
  text-align: center;
  /* border-bottom: 1px solid var(--border-color, #e5e5e5); */
}

.product-banner .section-title {
  font-size: 4.5rem;
  color: var(--text-color, #333);
  margin: 0;
}

@media (max-width: 768px) {
  .product-banner {
    padding-top: 50px;
    padding-bottom: 40px;
  }
}

/* ============================================
   WHY CHOOSE US SECTION 
   ============================================ */
.choose-us-section {
  background-color: var(--bg-secondary);
  padding-top: var(--space-8);
  padding-bottom: var(--space-12);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.feature-card {
  background: var(--bg-primary);
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  transition: transform var(--tran-0-3), box-shadow var(--tran-0-3);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-200);
}

.feature-icon {
  width: 6rem;
  height: 6rem;
  background-color: var(--primary-50);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  color: black;
  font-size: 3rem;
}

.feature-title {
  text-align: center;
  font-size: 18px;
  font-weight: var(--font-bold);
  margin-bottom: var(--space-4);
  color: var(--text-color);
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  position: relative;
  padding-left: var(--space-4);
  margin-bottom: var(--space-2);
  font-size: var(--small-font);
  color: var(--text-color-secondary);
  line-height: var(--line-normal);
}

.feature-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* Responsive Grid */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   HOW IT WORKS SECTION 
   ============================================ */
.how-it-works-section {
  background-color: var(--bg-primary);
  padding: var(--space-6) 0;
}

.process-flow {
  display: flex;
  align-items: flex-start;
  /* Changed from center to allow better text flow */
  justify-content: space-between;
  margin-top: var(--space-10);
  position: relative;
  gap: var(--space-4);
}

/* Dotted connection line */
.process-flow::before {
  content: '';
  position: absolute;
  top: 5.6rem;
  /* Aligns with center of 8rem icon + 1.6rem padding */
  left: 10%;
  right: 10%;
  height: 2px;
  border-top: 3px dotted var(--primary-200);
  z-index: 0;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: var(--space-4);
  position: relative;
  z-index: 2;
  /* Ensure content sits above line if needed, but here we want line through arrows */
}

.step-icon {
  width: 14rem;
  height: 14rem;
  background-color: var(--white-color);
  border: 2px solid var(--primary-100);
  border-radius: 50%;
  margin: 0 auto var(--space-6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: black;
  position: relative;
  z-index: 1;
  /* box-shadow: var(--shadow-md); Removed to let line potentially be cleaner or keep it */
  box-shadow: var(--shadow-md);
  transition: all var(--tran-0-3);
}

.process-step:hover .step-icon {
  border-color: black;
  transform: scale(1.05);
}

.step-number {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: var(--primary-color);
  color: white;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: bold;
  border: 2px solid white;
}

.step-content h3 {
  font-size: var(--h3-font);
  font-weight: var(--font-bold);
  margin-bottom: var(--space-3);
  color: var(--text-color);
}

.step-content p {
  font-size: var(--normal-font);
  color: var(--text-color-secondary);
  line-height: var(--line-relaxed);
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-200);
  font-size: 4rem;
  margin-top: 3.6rem;
  /* Aligns visually with the 5.6rem line (approx) */
  position: relative;
  z-index: 1;
  background-color: var(--bg-primary);
  /* Optional: masks line behind arrow itself if desired, or transparent to see through */
}

/* Responsive Process Flow */
@media (max-width: 768px) {
  .process-flow {
    flex-direction: column;
    align-items: center;
    gap: var(--space-8);
  }

  .process-flow::before {
    /* Change to vertical line on mobile */
    width: 2px;
    height: auto;
    top: 5rem;
    bottom: 5rem;
    left: 50%;
    right: auto;
    border-top: none;
    border-left: 3px dotted var(--primary-200);
    transform: translateX(-50%);
  }

  .step-connector {
    transform: rotate(90deg);
    margin: 0;
    margin-top: -2rem;
    /* Pull up to sit between steps */
    margin-bottom: -2rem;
    z-index: 2;
    background: var(--bg-primary);
    padding: 1rem 0;
  }

  .process-step {
    width: 100%;
    max-width: 400px;
  }
}

/* ============================================
   INTEGRATION ECOSYSTEM SECTION 
   ============================================ */
.ecosystem-section {
  background-color: var(--bg-secondary);
  padding: var(--space-12) 0;
  border-bottom: 1px solid var(--border-color);
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  margin-top: var(--space-10);
}

.ecosystem-category {
  background: var(--white-color);
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: box-shadow var(--tran-0-3);
}

.ecosystem-category:hover {
  box-shadow: var(--shadow-lg);
}

.ecosystem-category-title {
  font-size: var(--h3-font);
  font-weight: var(--font-bold);
  margin-bottom: var(--space-6);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  border-bottom: 2px solid var(--primary-50);
  padding-bottom: var(--space-4);
}

.category-title i {
  font-size: 2.8rem;
  color: var(--accent-teal);
}

.ecosystem-list {
  list-style: none;
  padding: 0;
}

.ecosystem-list li {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-3) 0;
  font-size: var(--normal-font);
  color: var(--text-color);
  font-weight: var(--font-medium);
}

.ecosystem-list li i {
  font-size: 2.2rem;
  color: var(--primary-400);
  width: 3rem;
  text-align: center;
}

/* Responsive Integrations */
@media (max-width: 900px) {
  .ecosystem-grid {
    grid-template-columns: 1fr;
  }

  .ecosystem-category {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }
}