/*!*********************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./node_modules/sass-loader/dist/cjs.js!./assets/pages/home/style.scss ***!
  \*********************************************************************************************************************************************************************************************/
@charset "UTF-8";
.section-header {
  position: relative;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-weight: 800;
  color: var(--primary-color);
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-header h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70px;
  height: 4px;
  background: var(--gradient);
  border-radius: 2px;
}

/* مقدمة */
.hero-section {
  min-height: 100vh;
  background: var(--body-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.3) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: moveGrid 20s ease-in-out infinite alternate;
}

@keyframes moveGrid {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(25px, 25px) scale(2);
  }
  100% {
    transform: translate(50px, 50px) scale(1);
  }
}
.hero-section .container {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.3rem;
  opacity: 0.9;
  margin-bottom: 2.5rem;
}

.btn-primary {
  background: var(--secondary-color);
  color: var(--white-color);
  border: none;
  padding: 14px 32px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  opacity: 0.8;
}

/* قسم "من يقود هذا؟" */
.guide-section {
  padding: 50px 0;
}

.guide-img {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 8px solid var(--body-bg-tertiary);
  box-shadow: var(--box-shadow);
  margin-bottom: 2rem;
}

.quote-box {
  background: var(--body-bg-tertiary);
  border-right: 5px solid var(--secondary-color);
  border-radius: var(--border-radius);
  padding: 25px;
  margin-top: 2rem;
  box-shadow: var(--box-shadow);
}

/* قسم "الواقع والمشكلة" */
.problem-section {
  padding: 50px 0;
}

.comparison-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 3rem;
}

.problem-card,
.solution-card {
  flex: 1;
  min-width: 300px;
  padding: 40px 30px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
}

.problem-card:hover,
.solution-card:hover {
  transform: translateY(-10px);
}

.problem-card {
  background: var(--body-bg-tertiary);
  border-top: 5px solid var(--danger-color);
}

.solution-card {
  background: var(--body-bg-tertiary);
  border-top: 5px solid var(--success-color);
}

.problem-icon,
.solution-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.problem-icon {
  color: var(--danger-color);
}

.solution-icon {
  color: var(--success-color);
}

/* قسم الفكرة */
.idea-section {
  padding: 50px 0;
}

/* المبادئ الأساسية */
.principles-section {
  padding: 50px 0;
}

.principle-card {
  background: var(--body-bg-tertiary);
  border-radius: var(--border-radius);
  padding: 30px;
  height: 100%;
  box-shadow: var(--box-shadow);
  border-top: 5px solid var(--secondary-color);
  transition: all 0.3s ease;
}

.principle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.principle-icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

/* خطط ورؤى */
.plans-section {
  padding: 50px 0;
}

.plan-card {
  background: var(--body-bg-tertiary);
  border-radius: var(--border-radius);
  padding: 35px 25px;
  height: 100%;
  box-shadow: var(--box-shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.plan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.plan-card:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 5px;
}

.plan-card:nth-child(1):before {
  background-color: var(--secondary-color);
}

.plan-card:nth-child(2):before {
  background-color: var(--success-color);
}

.plan-card:nth-child(3):before {
  background-color: #9b59b6;
}

.plan-card:nth-child(4):before {
  background-color: var(--warning-color);
}

.plan-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.warning-note {
  background: var(--primary-gradient);
  border-right: 5px solid var(--warning-color);
  border-radius: var(--border-radius);
  padding: 25px;
  margin-top: 3rem;
  box-shadow: var(--box-shadow);
}

/* أنواع المشاريع */
.projects-section {
  padding: 50px 0;
}

.project-type-card {
  background: var(--gradient);
  border-radius: var(--border-radius);
  padding: 30px;
  text-align: center;
  height: 100%;
  box-shadow: var(--box-shadow);
  transition: all 0.3s ease;
  border-bottom: 5px solid transparent;
}

.project-type-card:hover {
  transform: translateY(-10px);
}

.project-type-card:nth-child(1) {
  border-color: var(--secondary-color);
}

.project-type-card:nth-child(2) {
  border-color: var(--accent-color);
}

.project-type-card:nth-child(3) {
  border-color: var(--success-color);
}

.project-type-card:nth-child(4) {
  border-color: var(--warning-color);
}

.project-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

/* لمن يصلح هذا؟ */
.audience-section {
  padding: 50px 0;
}

.audience-list {
  list-style: none;
  padding: 0;
}

.audience-list li {
  padding: 15px 0;
  border-bottom: 1px solid #eaeaea;
  position: relative;
  padding-right: 40px;
}

.audience-list li:before {
  content: "✓";
  position: absolute;
  right: 0;
  top: 15px;
  background: var(--dark-color);
  color: var(--white-color);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* الأسئلة الشائعة */
.faq-section {
  padding: 50px 0;
}

.accordion-button {
  font-weight: 600;
  padding: 20px;
  background-color: var(--accent-color);
}

.accordion-button:not(.collapsed) {
  background-color: #e9f7fe;
  color: var(--secondary-color);
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
}

/* تابع الرحلة */
.journey-section {
  padding: 50px 0;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 2rem;
}

.social-link {
  display: flex;
  color: var(--white-color);
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--dark-color);
  border-radius: 50%;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  opacity: 0.8;
  transform: translateY(-5px);
}

/* التجاوب */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-content p {
    font-size: 1.1rem;
  }
  .section-header h2 {
    font-size: 1.8rem;
  }
  .guide-img {
    width: 220px;
    height: 220px;
  }
}

/*# sourceMappingURL=home.1.0.1.bundle.css.map*/