/*
Theme Name: Avada Child
Description: Child theme for Avada theme
Author: ThemeFusion
Author URI: https://theme-fusion.com
Template: Avada
Version: 1.0.0
Text Domain:  Avada
*/

/* Container */
.vidifeatures {
  animation: fadeIn 1s ease-out forwards;
}

/* Her özellik kutusu */
.vidifeature {
  background-color: #ffffff;
  border-radius: 16px;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.6s ease-out forwards;
  animation-delay: var(--delay, 0s);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover efekti */
.vidifeature:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Başlık */
.vidifeature h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

/* Açıklama paragraflar */
.vidifeature p {
  margin: 0.5rem 0;
  color: #444;
  line-height: 1.5;
}

/* Animasyonlar */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive düzenleme */
@media (min-width: 768px) {
  .vidifeatures {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .vidifeature {
    flex: 0 0 48%;
  }
}


/* Faq liste  düzenleme baslangic */
.vidi-faq-list {
  max-width: 800px;
  margin: auto;
  font-family: 'Arial', sans-serif;
}

.vidi-faq-list h2 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.vidi-faq-list ul {
  list-style-type: none;
  padding: 0;
}

.vidi-faq-list li {
  margin-bottom: 20px;
  padding-left: 20px;
  position: relative;
}

.vidi-faq-list li::before {
  content: "❓";
  position: absolute;
  left: 0;
  top: 2px;
  color: #555;
}


/* Faq liste  düzenleme sonu */