/* Service Pages Custom Styles */

/* Service heading styles */
.service-heading {
  margin-bottom: 2rem;
  font-weight: 700;
}

/* Service pricing card styles */
.pricing-item {
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-item:hover {
  transform: translateY(-5px);
}

.price-tag {
  font-weight: 700;
  font-size: 1.5rem;
  color: #3a44e1;
}

/* Service card typography */
.cardService h3 {
  margin-bottom: 1rem;
}

/* Fix any border radius issues */
.border-radius-16 {
  border-radius: 16px;
  overflow: hidden;
}

/* Process section styles */
.process-icon {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.process-icon img {
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
}

.process-number {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #151515;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

/* Card Process Styles */
.card-process {
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

/* Tech Icon Styles */
.tech-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.icon-24 {
  width: 24px;
  height: 24px;
  color: #fff;
}

.icon-32 {
  width: 32px;
  height: 32px;
  color: #fff;
}

/* Gradient Background Colors */
.bg-9 {
  background: linear-gradient(90deg, #5e2ced 0%, #844ffe 100%);
}

.bg-10 {
  background: linear-gradient(90deg, #00bbaa 0%, #00c9b8 100%);
}

.bg-11 {
  background: linear-gradient(90deg, #ff4d54 0%, #ff6165 100%);
}

.bg-12 {
  background: linear-gradient(90deg, #ffa532 0%, #ffb144 100%);
}

/* Hover effects for elements */
.hover-up {
  transition: all 0.3s ease;
}

.hover-up:hover {
  transform: translateY(-5px);
}

.hover-up-2:hover {
  transform: translateY(-2px);
  transition: all 0.2s ease;
}

.hover-up-3 {
  transition: all 0.3s ease;
}

.hover-up-3:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* FAQ styling */
.faq-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: none;
}

/* Box image project styling */
.box-images-project {
  position: relative;
  margin: 0 auto;
  max-width: 500px;
}

.box-images-project .img-1 {
  max-width: 80%;
  z-index: 2;
  position: relative;
}

.box-images-project .img-2 {
  position: absolute;
  max-width: 60%;
  right: -50px;
  bottom: -50px;
  z-index: 1;
}

/* List styling */
.list-checked li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}

.list-checked li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #6c5ce7;
}

/* Shadow styles */
.shadow-sm {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.shadow-lg {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Dark mode footer overrides */
.footer.is-mode {
  background-color: var(--background-dark);
  color: var(--color-dark);
}

.footer.is-mode h5,
.footer.is-mode span,
.footer.is-mode a {
  color: var(--color-dark);
}

/* Fix for testimonial cards */
.avatar-testimonial {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.card-quote {
  color: #3a44e1;
  opacity: 0.5;
}

.star-rating {
  color: #ffc107;
  font-size: 18px;
}

/* Fix for dark mode across all service pages */
.dark-mode .color-900 {
  color: var(--color-dark);
}

.dark-mode .color-0 {
  color: var(--white-color);
}

@media (max-width: 768px) {
  .process-icon {
    width: 60px;
    height: 60px;
  }
  
  .process-number {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }
  
  .box-images-project .img-2 {
    right: -20px;
    bottom: -20px;
  }
} 