// تم إنشاء ملف style.css لتنسيق صفحة index.html بشكل احترافي
// الخط المستخدم: Poppins من Google Fonts

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  color: #222;
  scroll-behavior: smooth;
}

.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  top: 40%;
  transform: translateY(-50%);
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.btn {
  background: #ffc300;
  color: #000;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.why-section {
  padding: 4rem 2rem;
  text-align: center;
  background: #f5f5f5;
}

.why-image {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.why-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.why-content p {
  max-width: 800px;
  margin: 0 auto 2rem auto;
  color: #555;
}

.why-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.icon-box {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  width: 200px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.icon-box span {
  font-size: 2rem;
}

.quick-links {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 3rem 1rem;
  background: #fff;
  gap: 2rem;
}

.card {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  overflow: hidden;
  max-width: 300px;
  text-align: center;
  position: relative;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 1rem;
}

.read-more {
  display: inline-block;
  margin-top: 0.5rem;
  color: #0077b6;
  font-weight: bold;
  text-decoration: none;
}

.gallery-section {
  padding: 3rem 1rem;
  background: #f0f8ff;
  text-align: center;
}

.carousel {
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: auto;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-track img {
  width: 100%;
  flex-shrink: 0;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 1;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.owner-section {
  text-align: center;
  padding: 3rem 1rem;
}

.owner-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

footer {
  background: #222;
  color: #fff;
  padding: 2rem;
  text-align: center;
  font-size: 0.9rem;
}


