/* <!--==========[ Logo Section Start ]===========--> */
.form-row.custom-flow-ctc .form-group.half {
    width: 50%;
}

.form-row.custom-flow-ctc .form-group.half select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    border-radius: 8px;
    border: 1px solid #DDD !important;
    background-color: #F8F9FA !important;

    width: 100%;
    padding: 18px 48px 18px 18px; /* extra right space for arrow */
    font-size: 15px;
    transition: 0.4s;
    cursor: pointer;

    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23666' stroke-width='2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 12px;
}
.form-row.custom-flow-ctc .form-group.half label span.required {
    color: red;
}
section.ai-logo-slider.section-space-t-b {
  background: #faf7f3;
}

section.ai-logo-slider .marquee {
  display: flex;
  overflow: hidden;
  gap: 40px;
  user-select: none;
  width: 100%;
  margin-bottom: 40px;
}

section.ai-logo-slider .marquee_group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 40px;
  min-width: 100%;
  animation: scroll-left 40s linear infinite;
}

section.ai-logo-slider .marquee-reverse .marquee_group {
  animation: scroll-right 40s linear infinite;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes scroll-right {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

section.ai-logo-slider .ai-logo {
  width: 270px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 12px 0 rgb(244 141 6 / 0.1);
  border: 1px solid #f2941247;
}

section.ai-logo-slider .ai-logo img {
  width: 45%;
  height: auto;
  transition: 0.3s ease;
}

/* <!--==========[ Card  Section Start ]===========--> */

section.card-ai-used-flow .section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 30px;
}

/* Card */

section.card-ai-used-flow .card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid #ff7b0059;
}

section.card-ai-used-flow .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* Card Icon */

section.card-ai-used-flow .card-icon {
  text-align: center;
  margin-bottom: 15px;
}

section.card-ai-used-flow .card-icon i {
  font-size: 2rem;
  color: #ff7b00;
  background: rgba(255, 123, 0, 0.1);
  padding: 15px;
  border-radius: 50%;
}

section.card-ai-used-flow .card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #222;
  text-align: center;
}

section.card-ai-used-flow .card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

section.card-ai-used-flow .card ul li {
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #555;
  display: flex;
  align-items: start;
  gap: 10px;
}

section.card-ai-used-flow .card ul li i {
  color: #ff7b00;
  font-size: 1rem;
  margin-top: 3px;
}

section.card-ai-used-flow .card ul li {
  margin-bottom: 10px;
  color: #555;
}

/* <!--==========[ Video Card Section Css]===========--> */

section.ai-video-demo-automation .video-section {
  background: #faf7f3;
}

section.ai-video-demo-automation .video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 cards per row on desktop */
  gap: 35px;
}

section.ai-video-demo-automation .video-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  padding-bottom: 15px;
  border: 1px solid #ff950066;
}

section.ai-video-demo-automation .video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

section.ai-video-demo-automation .video-thumb {
  position: relative;
  display: block;
  overflow: hidden;
}

section.ai-video-demo-automation .video-thumb img {
  width: 100%;
  height: 260px;
  display: block;
  transition: transform 0.4s ease;
  object-fit: cover;
}

section.ai-video-demo-automation .video-thumb:hover img {
  transform: scale(1.05);
}

section.ai-video-demo-automation .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: pulse 1.5s infinite;
}

section.ai-video-demo-automation .play-btn::before {
  content: "";
  border-left: 15px solid #1c2e72;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

section.ai-video-demo-automation .video-card h3 {
  font-size: 1.1rem;
  margin: 15px 10px 5px;
  color: black;
}

section.ai-video-demo-automation .video-card p {
  font-size: 0.9rem;
  color: #7e7e7e;
}

/* <!--==========[ Responcived Css ]===========--> */

@media (max-width: 768px) {
  section.ai-logo-slider .ai-logo {
    width: 180px;
    height: 100px;
  }
  section.ai-video-demo-automation .video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }
}
@media (max-width: 574px) {
  section.ai-logo-slider .marquee {
    margin-bottom: 20px;
  }
  section.ai-logo-slider .ai-logo {
    width: 130px;
    height: 70px;
  }
  section.ai-logo-slider .ai-logo img {
    width: 53%;
    height: auto;
    transition: 0.3s ease;
  }
  section.ai-video-demo-automation .video-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 35px;
  }
}
