html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}
/* ================= HERO SECTION ================= */

.hero-video-section {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    position: relative;
    color: white;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.08), transparent 40%);
}

.video-preview-container {
    position: relative;
    display: inline-block;
}

.hero-preview-image {
    transition: 0.4s ease;
    max-height: 520px;
    object-fit: cover;
}

.video-preview-container:hover .hero-preview-image {
    transform: scale(1.02);
}

/* زر التشغيل */

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    color: white;
    font-size: 42px;
    transition: 0.3s ease;
}

    .play-btn:hover {
        transform: translate(-50%, -50%) scale(1.1);
        background: #ffc107;
        color: #000;
    }

/* المودال */

.modal-content iframe {
    border: none;
}