/* ===== SECTION BACKGROUND ===== */
.features-section {
  background: linear-gradient(135deg, #1e3cff, #00cfff);
  padding: 90px 20px;
}

/* ===== GRID ===== */
.features-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ===== CARD ===== */
.feature-card {
  background: #ffffff;
  border-radius: 30px;
  padding: 35px 30px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

/* ===== TITLES ===== */
.feature-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #111;
  line-height: 1.4;
}

/* ===== TEXT ===== */
.feature-card p {
  color: #666;
  font-size: 15px;
  line-height: 1.7;
}

/* ===== ICON ===== */
.icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 18px;
}

/* ===== ICON COLORS ===== */
.pink { background: #d94fff; }
.orange { background: #ff8c32; }
.red { background: #ff4d4d; }
.blue { background: #4fc3f7; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}


.video-container {
  position: relative;
  width: 100%;
  height: 100vh; /* شاشة كاملة في PC */
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* 📱 الهاتف */
@media (max-width: 768px) {
  .video-container {
    height: 60vh; /* مناسب للهاتف */
  }
}



.title-center {
  text-align: center;
  padding: 20px 15px 5px; /* فوق | جوانب | تحت */
}

.title-center h2 {
  color: #00cfff;
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 5px; /* نقصنا الفراغ */
}

/* 📱 الهاتف */
@media (max-width: 768px) {
  .title-center h2 {
    font-size: 26px;
    margin-bottom: 0;
  }
}
