.ozellikler-main {
  color: #333;
  background-color: #ffffff;
}


/* FEATURE CARDS */
.feature-cards-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.feature-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  border: 1px solid #e2e8f0;
  background-size: cover;
  background-position: center;
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.feature-card-first:hover { background-image: url("/websites-images/feature1.jpg"); }
.feature-card-second:hover { background-image: url("/websites-images/feature2.webp"); }
.feature-card-third:hover { background-image: url("/websites-images/feature3.webp"); }
.feature-card-fourth:hover { background-image: url("/websites-images/feature4.webp"); }
.feature-card-fifth:hover { background-image: url("/websites-images/feature5.webp"); }
.feature-card-sixth:hover { background-image: url("/websites-images/feature6.jpg"); }

.feature-card:hover h3,
.feature-card:hover p,
.feature-card:hover .feature-icon {
  color: #fff;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 1);
}

.feature-icon {
  font-size: 3rem;
  color: #4299e1;
  margin-bottom: 20px;
  transition: color 0.3s ease;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
}
.feature-card h3 {
  font-family: "Unbounded", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 15px;
  color: #2d3748;
  transition: color 0.3s ease;
}
.feature-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #718096;
  transition: color 0.3s ease;
}

/* PROMO VIDEO SECTION */
.promo-video-section {
  padding: 80px 40px;
  text-align: center;
  background-color: #f7fafc;
}

.promo-video-section h2 {
  font-family: "Unbounded", sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 60px;
}

/* Cihazlar grid yapıda yan yana */
.promo-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-center;
  gap: 100px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

/* Ortak cihaz stili */
.device {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 📱 Phone */
.phone-device {
  width: 180px;
  position: relative;
}
.phone-device .phone-image {
  width: 96%;
  border-radius: 12px;
  position: absolute;
  top: 2%;
  left: 2%;
  z-index: 1;
}
.phone-device .phone-frame {
  width: 100%;
  position: relative;
  z-index: 2;
}

/* 💻 Laptop */
.laptop-device {
  width: 500px;
  position: relative;
}
.laptop-device .video-wrapper {
  position: absolute;
  top: 11%;
  left: 5% ;
  width: 90%;
  height: 78%;
  border-radius: 12px;
  overflow: hidden;
  z-index: 1;
}
.laptop-device .laptop-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.laptop-device img {
  width: 120%;
  position: relative;
  z-index: 2;
  pointer-events: none;
}

/* 🥽 Meta Quest */
.meta-device {
  width: 240px;
  position: relative; 
}
.meta-device .meta-image {
  width: 120%;
  object-fit: contain;
}

/* Responsive: Alt alta gelsin */
@media (max-width: 768px) {
  .promo-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .hero {
    margin-top: 70px; /* Navbar yüksekliği kadar boşluk */
  }
  .phone-device {
    display: none;
  }
  .meta-device {
    display: none;
  }
}

/* CTA Section */
.cta-section {
  background-color: #2d3748;
  color: #fff;
  text-align: center;
  padding: 80px 40px;
}
.cta-section h2 {
  font-family: "Unbounded", sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #a0aec0;
}
