/* إعدادات العامة */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: white;
    background: #1c262f;
}
html {
  scroll-behavior: smooth;
}
.packages {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.packages.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-image {
    width: 100%;
    height: 100vh;
    max-height: 500px;
    position: relative;
    overflow: hidden;
    /*filter: brightness(0.5);*/
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6); /* تراكب مظلل */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.hero-content {
  text-align: center;
  color: white;
  max-width: 800px;
  filter: drop-shadow(2px 4px 6px black);
}

.hero-content h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.hero-button {
  color: white;
  padding: 14px 28px;
  font-size: 18px;
  border-radius: 6px;
  text-decoration: none;
  background-color: #30404e;
  transition: background 0.3s;
}

.hero-button:hover {
  background-color: #30404eba;
}

/* ✅ Responsive adjustments */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-button {
    font-size: 16px;
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 22px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .hero-button {
    font-size: 14px;
    padding: 8px 16px;
  }
}

  /* إعدادات الصورة والخلفية */
  .hero-image-custom {
    position: relative;
    width: 100%;
    height: 100vh; /* عرض كامل الشاشة */
    margin-bottom: -100px;
    background-image: url('/images/PC-SPORTS-F1.webp');
    background-size: cover; /* لتغطية الصورة بشكل كامل */
    background-position: center center; /* لضمان أن الصورة في المنتصف */
    display: flex;
    justify-content: left;
    align-items: center;
  }
  .hero-section-custom {
    color: white;
    max-width: 800px;
  }

  .hero-section-custom h1 {
    font-size: 3em;
    margin-bottom: 15px;
    font-weight: bold;
  }

  .hero-section-custom p {
    font-size: 1.2em;
    margin-bottom: 20px;
  }
  .overlay-custom {
    margin-left: 15px;
  }

  .hero-button-custom {
    color: white;
    padding: 15px 25px;
    text-decoration: none;
    border-radius: 5px;
    background-color: #30404e;    
    transition: background-color 0.3s;
  }

  .hero-button-custom:hover {
    background-color: #30404eba;
  }

  /* استعلامات الوسائط للأجهزة المحمولة */
  @media (max-width: 768px) {
    .hero-section-custom {
      max-width: 90%; /* يسمح بمساحة أكبر على الهواتف */
      padding: 15px;
    }

    .hero-section-custom h1 {
      font-size: 2em; /* تصغير حجم العنوان على الأجهزة الصغيرة */
    }

    .hero-section-custom p {
      font-size: 1em; /* تصغير حجم النصوص على الأجهزة الصغيرة */
    }

    .hero-button-custom {
      padding: 12px 20px; /* تقليص حجم الأزرار على الهواتف */
      font-size: 1em;
    }
  }

  /* استعلامات الوسائط للأجهزة الصغيرة جداً مثل الهواتف */
  @media (max-width: 480px) {
    .hero-section-custom {
      padding: 10px;
    }

    .hero-section-custom h1 {
      font-size: 1.5em;
    }

    .hero-section-custom p {
      font-size: 0.9em;
    }

    .hero-button-custom {
      font-size: 0.9em;
      padding: 10px 18px;
    }
  }

.feature-image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 10px;
}

.feature-image img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}
/* تعديل تنسيق النص والصورة في جميع الأجهزة */
.movies-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 30px;
}

.movies-section img {
  width: 100%;
  height: 400px;
  display: block;
  object-fit: cover;
  filter: brightness(0.5);
}

.movies-overlay {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  color: white;
  max-width: 600px;
  z-index: 2;
  padding: 20px;
}

.movies-overlay h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.movies-overlay p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.pricing-button {
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  background-color: #30404e;
  transition: background 0.3s ease;
}

.pricing-button:hover {
  background-color: #30404eba;
}

/* تنسيق خاص للأجهزة الصغيرة */
@media (max-width: 768px) {
  .movies-overlay {
    top: 30%;
    left: 5%;
    transform: translateY(0);
    max-width: 90%;
  }

  .movies-overlay h2 {
    font-size: 1.5rem;
  }

  .movies-overlay p {
    font-size: 0.9rem;
  }

  .pricing-button {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

.slider-section {
  overflow: hidden;
  width: 100%;
  padding: 0;
}

.slider-track {
  display: flex;
  width: calc(298px * 7); /* لأن الصور ستُكرر لاحقاً إذا أردت تكرارها */
  animation: scrollSlider 25s linear infinite;
}

.slider-track img {
  width1: 210px;
  height: 300px;
  margin-right: 10px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.slider-track img:hover {
  transform: scale(1.05);
}

@keyframes scrollSlider {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .slider-track img {
    width: 220px;
    height: 330px;
  }
}

@media (max-width: 768px) {
  .slider-track img {
    width: 160px;
    height: 240px;
  }
}

@media (max-width: 480px) {
  .slider-track img {
    width: 130px;
    height: 200px;
  }
}
/* إيقاف التحريك عند الماوس */
.slider-section:hover .slider-track {
  animation-play-state: paused;
}
.packages-intro {
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
  padding: 0 20px;
}

.packages-intro h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #00f5ff;
}

.packages-intro p {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}
.after-packages-heading {
  text-align: center;
  margin-top: 40px;
  padding: 0 20px;
}

.after-packages-heading h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #00f5ff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.after-packages-image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0;
  padding: 0 20px;
}

.after-packages-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}
.channels-container {
  margin: 50px 0;
  text-align: center;
  padding: 0 20px;
}

.channels-header h2 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 10px;
}

.channels-header p {
  color: #ccc;
  font-size: 1.2rem;
}

.channels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.channel {
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  border: 1px solid #1566df;
  background-color: #1566df42;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.channel img {
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
}

.channel h3 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 10px;
}

.channel p {
  color: #bbb;
  font-size: 1rem;
}

/* Responsive for smaller screens */
@media screen and (max-width: 768px) {
  .channels {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 480px) {
  .channels {
    grid-template-columns: 1fr;
  }
}
.icon-container i {
  font-size: 24px; /* تغيير الحجم */
  color: #4caf50; /* تغيير اللون */
}

.icon-container p {
  font-size: 18px;
  margin-top: 10px;
}

.channel2-costum {
    margin: 1px;
    padding: 15px;
    text-align: center;
    border-radius: 10px;
    background-color: #0c6aa9;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
    

h1 {
    font-size: 2.5rem;
    margin: 0;
}

p {
    font-size: 1.2rem;
    margin-top: 10px;
}

.packages {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 20px;
}

/* تنسيق كل باقة */
.package {
    background: linear-gradient(145deg, #1a0033, #0b81c5);
    border-radius: 10px;
  /*  width: 250px; */
    margin: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.package:hover {
    background-color: rgba(0, 184, 255, 1); /* تغيير اللون عند التحويم */
    transform: translateY(-5px);
}

.package h2 {
    padding-bottom: 5px;
    border-bottom: 3px solid #00c2fd;
}

.package p {
    font-size: 1rem;
    margin-bottom: 15px;
    justify-self: left;
}

.package a {
    display: inline-block;
    background-color: #45006D;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.package a:hover {
    background-color: #61009e; /* تغيير اللون عند التحويم */
}

.package.popular {
  border: 2px solid #00ffff;
  position: relative;
  transform: scale(1.05);
  z-index: 2;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
  background: linear-gradient(145deg, #1a0033, #0b81c5);
}
.package.popular::before {
  content: "★ BEST VALUE";
  position: absolute;
  top: -10px;
  right: -10px;
  background: #00ffff;
  color: #140024;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 5px;
}
.btn-popular {
  font-weight: bold;
}
.btn-popular:hover {
  background-color: #00d2d2;
  color: #000;
}
.rating {
  font-size: 18px;
  color: #ffc107;
  /* margin: 10px 0; */
  margin-bottom: 2px;
  border-bottom: 2px solid #fff;
}

.rating span {
  display: block;
  font-size: 12px;
  color: #fff;
  margin-top: 4px;
  margin-bottom: 2px;
}

.stats-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 60px 20px;

  text-align: center;
}

.page-banner {
  position: relative;
  min-height: 300px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.page-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
  z-index: 1;
}

.page-banner h1 {
  position: relative;
  z-index: 2;
  font-size: 36px;
  font-weight: bold;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}

    .sections-wrapper {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin-bottom: 20px;
      align-items: flex-start; /* هذا مهم */
    }
    .section {
      flex: 1 1 calc(33.333% - 20px);
      border-radius: 8px;
      overflow: hidden;
      background: #f8f8f8;
    }
    .section h3 {
      margin: 0;
      padding: 15px;
      background: #fff;
      color: black;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .section-content {
      padding: 15px;
      display: none;
      border-top: 1px solid #ddd;
    }
    .toggle-icon {
      transition: transform 0.3s;
    }
    .section.open .toggle-icon {
      transform: rotate(180deg);
    }
    @media (max-width: 768px) {
  .sections-wrapper {
  }

  .section {
    flex: 1 1 100%;
  }
}


footer p {
    font-size: 0.9rem;
    margin: 0;
}
.buttons-below {
    max-width: 600px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap; /* ضروري للسماح بالتفاف الأزرار */
}

.buttons-below a {
    font-size: 18px;
    color: #fff;
    background-color: #3498db;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    flex: 1;
    text-align: center;
}
.buttons-below a:hover {
            background-color: #2980b9;
        }
/* 🌐 على الشاشات الصغيرة: ضع كل زر في صف */
@media (max-width: 600px) {
    .buttons-below a {
        width: 100%;
    }
}


/* --- أزرار المشاركة في المقال --- */
.share-buttons {
    margin-top: 25px;
    margin-bottom: 25px;
    border-top: 1px solid #eee;
    padding-top: 20px;
    text-align: center; /* لمحاذاة الأزرار في المنتصف إذا كانت كتلية */
}

.share-buttons p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 15px;
}

.share-btn {
    display: inline-flex; /* لجعل النص والأيقونة في سطر واحد ومحاذاة مركزية */
    align-items: center; /* لمحاذاة الأيقونة والنص عمودياً */
    padding: 10px 18px;
    margin: 5px;
    border-radius: 5px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 0.95em;
    transition: background-color 0.3s ease;
}

.share-btn img {
    margin-right: 8px; /* مسافة بين الأيقونة والنص */
}

/* ألوان خلفية محددة لكل زر */
.share-btn.facebook {
    background-color: #3b5998;
}

.share-btn.twitter {
    background-color: #1da1f2;
}

.share-btn.linkedin {
    background-color: #0077b5;
}

.share-btn.whatsapp {
    background-color: #25d366;
}

/* تأثير التمرير (hover) */
.share-btn.facebook:hover {
    background-color: #2d4373;
}

.share-btn.twitter:hover {
    background-color: #0c85d0;
}

.share-btn.linkedin:hover {
    background-color: #005a87;
}

.share-btn.whatsapp:hover {
    background-color: #1ebe54;
}

/* تنسيقات الأجهزة الصغيرة */
@media (max-width: 600px) {
    .share-btn {
        display: block; /* جعل الأزرار تأخذ عرضًا كاملاً على الشاشات الصغيرة */
        margin: 10px auto; /* توسيط الأزرار المكدسة */
    }
}



section.hami-support-area.bg-White {
    position: relative;
    z-index: 1;
}

.row {
    margin-right: 0;
    margin-left: 0;
}

.col-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

.hami-support-area .support-text {
    padding: 60px 0;
    text-align: center;
}

.hami-support-area .support-text h2 {
    font-size: 32px;
    padding-top: 30px;
    margin-bottom: 0;
    color: #ffffff;
}

.hami-support-area .support-pattern {
    position: absolute;
    width: 100%;
    height: calc(100% + 50px);
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -2;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

