/* service.css */

/* Video Demo Section */
.video-demo-section {
  padding: 60px 0;
  background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}

/* Video Showcase */
.video-showcase {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #667eea, #764ba2);
  padding: 6px;
  transition: transform 0.3s ease;
}

.video-showcase:hover {
  transform: scale(1.02);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.video-inner {
  position: relative;
  padding-bottom: 56.25%;
  background: #000;
  border-radius: 24px;
  overflow: hidden;
}

.video-inner video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.8),
    rgba(118, 75, 162, 0.8)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease;
}

.video-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.play-btn {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
  position: relative;
}

.play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border: 3px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0;
  }
}

.play-btn:hover {
  transform: scale(1.15);
  background: white;
}

.play-btn i {
  font-size: 2.5rem;
  color: #667eea;
  margin-left: 8px;
}

.video-info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.info-card {
  background: white;
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

.info-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  background: #32668e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: white;
  transform: rotate(5deg);
  transition: transform 0.3s ease;
}

.info-card:hover .info-icon {
  transform: rotate(0deg) scale(1.1);
}

.info-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.info-card p {
  line-height: 1.6;
  margin: 0;
}

/* Features Section */
.features-section {
  padding: 0px 0;
  background: white;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-item {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 30px;
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 2px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-item:hover::before {
  transform: scaleX(1);
}

.feature-icon-box {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
  color: white;
}

.feature-item h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-item p {
  line-height: 1.7;
  margin: 0;
}



/* Testimonials Section */
.testimonials-section {
  padding: 60px 0;
  background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
  position: relative;
}

.testimonials-slider {
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.slider-container {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  flex: 0 0 100%;
  background: white;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  margin: 0 10px;
}

.testimonial-card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 15px;
  object-fit: cover;
}

.testimonial-card p {
  font-style: italic;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.6;
}

.testimonial-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-color);
}

.testimonial-card span {
  font-size: 0.9rem;
  color: #999;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.slider-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-btn:hover {
  background: var(--accent-color);
  transform: scale(1.1);
}

/* Case Studies Section */
.case-studies-section {
  padding: 60px 0;
  background: white;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.case-study-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.case-study-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.case-study-content {
  padding: 25px;
  background: white;
}

.case-study-card h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.case-study-card p {
  line-height: 1.6;
  margin-bottom: 15px;
}

.case-study-card a {
  color: var(--primary-color);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.case-study-card a:hover {
  color: var(--accent-color);
}

.case-study-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

/* FAQ Section */
.faq-section {
  padding: 60px 0;
  background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.faq-container {
  max-width: 700px;
  margin: 0 auto;
  margin-top: 40px;
}

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.faq-question {
  padding: 15px 25px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  color: #666;
  line-height: 1.6;
  transition: all 0.3s ease;
}

.faq-answer.active {
  max-height: 180px;
  padding: 15px 25px;
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-question.active i {
  transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 768px) {
  .stat-number {
    font-size: 1.8rem;
  }

  .play-btn {
    width: 60px;
    height: 60px;
  }

  .play-btn i {
    font-size: 1.5rem;
  }

  .hero-btn {
    display: block;
    margin: 8px auto;
    max-width: 220px;
  }

  .testimonial-card {
    margin: 0 8px;
  }

  .pricing-card .price {
    font-size: 1.8rem;
  }

  .case-study-card img {
    height: 130px;
  }
}