
  /* carousel css */
  .slide-track {
      transition: transform 0.6s ease-in-out;
      will-change: transform;
  }

  .slide {
      height: 350px;
  }

  /* Arrows */
  .carousel-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      padding: 0.75rem;
      background-color: rgba(0, 0, 0, 0.4);
      color: white;
      border-radius: 9999px;
      cursor: pointer;
      opacity: 0.8;
      transition: all 0.3s ease;
  }

  .carousel-arrow:hover {
      opacity: 1;
      background-color: rgba(0, 0, 0, 0.6);
      transform: translateY(-50%) scale(1.1);
  }

  /* Responsive Adjustments */
  @media (max-width: 768px) {
      .slide {
          height: 200px;
      }
      .carousel-arrow {
          display: none;
      }
      .slide h2 {
          font-size: 1.5rem;
      }
  }


/* client carousel css */
.section-title {
  color: #0d2645;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  text-align: center;
  padding: 20px;
  background-color: #f8f9fa;
}

.logo-carousel-wrapper {
  position: relative;
}

.logo-carousel {
  display: flex;
  gap: 10px;
  transition: transform 0.5s ease;
}

.logo-box {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 80px;
  padding: 10px;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

.logo-box:hover {
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.stacked-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .logo-box {
    width: 100px;
    height: 60px;
    padding: 5px;
  }

  .logo-img {
    max-width: 80%;
    max-height: 80%;
  }

  .section-title {
    font-size: 16px;
    padding: 5px;
  }
}



/* product card css */
.text-primary-blue {
  color: #363f93;
}

.text-accent-blue {
  color: #1a73e8;
}

.card-border {
  border: 1px solid rgba(26, 115, 232, 0.1);
}

/* Hover Image Effect */
.group:hover .main-img {
  opacity: 0;
}

.group:hover .hover-img {
  opacity: 1;
}

/* Card hover shadow */
.card-hover:hover {
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}








/* footer css */
.footer {
  background: black;
  color: #f8f9fa;
  padding: 60px 20px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: white;
}

.footer-subtitle {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffffff;
}

.footer-text {
  font-size: 14px;
  line-height: 1.6;
  color: #d1d1d1;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  color: #d1d1d1;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #00c853;
}

.footer-social {
  margin-top: 15px;
}

.social-icon {
  display: inline-block;
  width: 36px;
  height: 36px;
  background: white;
  color: black;
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  margin-right: 8px;
  transition: all 0.3s;
}

.social-icon:hover {
  transform: scale(1.1);
}

.footer-column i {
  color: #00c853;
  margin-right: 8px;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 15px;
  margin-top: 30px;
  font-size: 13px;
  color: #aaa;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .footer { text-align: center; }
  .footer-social { justify-content: center; }
}




