/* style.css */

/* استيراد خط Cairo من Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Cairo', Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
  background: #f7f7f7;
}

/* Header Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

header.scrolled {
  background: rgba(19, 94, 141, 0.95);
}


header.scrolled .menu-toggle span {
  background-color: white;
}
header.scrolled .logo-text {
  color: white;
}
header.scrolled  nav a {
  color: white;
}
@media (max-width:960px) {
  header.scrolled  nav a {
  color: #135E8D;
}
}
nav {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-small {
  width: 80px
}

.logo-text {
  font-size: 1.8rem;
  font-weight: bold;
  color: #135E8D;
  transition: all 0.3s ease;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: #135E8D;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #00DB96, #00A38E);
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

.nav-download-btn {
  padding: 12px 30px;
  background: linear-gradient(135deg, #00DB96, #00A38E);
  color: white !important;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.nav-download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 219, 150, 0.4);
}

.nav-download-btn::after {
  display: none;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 30px;
  height: 3px;
  background: #135E8D;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0F3C5F, #135E8D, #00A38E);
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px 5%;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.08), transparent 60%),
              radial-gradient(circle at bottom left, rgba(0,219,150,0.12), transparent 60%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-text {
  color: white;
}

.hero-logo {
  width: 120px;
  margin-bottom: 25px;
  filter: drop-shadow(0 10px 25px rgba(0,0,0,0.4));
}

.hero-text h1 {
  font-size: 3.8rem;
  line-height: 1.3;
  margin-bottom: 25px;
}

.hero-text h1 span {
  background: linear-gradient(90deg, #00DB96, #E0C302);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text p {
  font-size: 1.4rem;
  line-height: 2;
  opacity: 0.95;
  max-width: 600px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-btn {
  padding: 18px 45px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  transition: 0.4s ease;
  position: relative;
}

.hero-btn.primary {
  background: linear-gradient(135deg, #00DB96, #00A38E);
  color: white;
  box-shadow: 0 15px 40px rgba(0,219,150,0.4);
}

.hero-btn.primary:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0,219,150,0.6);
}

.hero-btn.outline {
  border: 2px solid rgba(255,255,255,0.7);
  color: white;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
}

.hero-btn.outline:hover {
  background: white;
  color: #135E8D;
  transform: translateY(-6px);
}
   .promo-code {
            animation: fadeInUp 1.6s ease;
        }

        .promo-box {
            display: inline-block;
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(15px);
            padding: 15px 30px;
            border-radius: 20px;
            border: 3px dashed #E0C302;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .promo-box::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(224,195,2,0.4), transparent);
            animation: shine 3s infinite;
        }

        @keyframes shine {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
.hero-badges {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.badge {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 12px 22px;
  border-radius: 30px;
  font-size: 1rem;
  border: 1px solid rgba(255,255,255,0.2);
}

.hero-video-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  border-radius: 30px;
  padding: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.2);
  transition: 0.5s ease;
}

.hero-video-card:hover {
  transform: translateY(-10px) scale(1.02);
}

.video-frame {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.video-frame video {
  width: 100%;
  height: auto;
  display: block;
}

.video-caption {
  text-align: center;
  color: white;
  padding: 20px 10px 5px;
}

.video-caption h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.video-caption p {
  opacity: 0.9;
  font-size: 1.1rem;
}

/* Responsive Hero */
@media (max-width: 1000px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-text p {
    margin: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-badges {
    justify-content: center;
  }
}

/* Section Styles */
section {
  padding: 120px 20px;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.section-title {
  font-size: 3.2rem;
  color: #135E8D;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 5px;
  background: linear-gradient(90deg, #135E8D, #00DB96);
  border-radius: 3px;
}

.section-description {
  font-size: 1.3rem;
  color: #6D6D6D;
  line-height: 2;
  margin-top: 30px;
}

/* Reviews Section */
.reviews-section {
  background: linear-gradient(135deg, #135E8D 0%, #1a4d6d 50%, #004D99 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.reviews-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,165.3C384,171,480,149,576,133.3C672,117,768,107,864,122.7C960,139,1056,181,1152,186.7C1248,192,1344,160,1392,144L1440,128L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>') no-repeat top;
  background-size: cover;
}

.reviews-section .section-title {
  color: white;
}

.reviews-section .section-title::after {
  background: linear-gradient(90deg, white, #00DB96);
}

.reviews-section .section-description {
  color: rgba(255, 255, 255, 0.9);
}

.reviews-container {
  display: flex;
  overflow-x: auto;
  gap: 40px;
  padding: 30px 20px;
  max-width: 1400px;
  margin: 0 auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.reviews-container::-webkit-scrollbar {
  height: 10px;
}

.reviews-container::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
}

.reviews-container::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.3);
  border-radius: 10px;
}

.reviews-container::-webkit-scrollbar-thumb:hover {
  background: rgba(255,255,255,0.5);
}

.review-card {
  min-width: 380px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(15px);
  border-radius: 25px;
  padding: 35px;
  border: 2px solid rgba(255,255,255,0.2);
  transition: all 0.4s ease;
  scroll-snap-align: center;
}

.review-card:hover {
  transform: translateY(-15px);
  background: rgba(255,255,255,0.2);
  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
  border-color: rgba(255,255,255,0.4);
}

.student-info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.student-avatar {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #00DB96, #00A38E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(0, 219, 150, 0.4);
}

.student-details h4 {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.student-details p {
  opacity: 0.8;
  font-size: 0.95rem;
}

.stars {
  color: #E0C302;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.review-text {
  line-height: 1.9;
  opacity: 0.95;
  font-size: 1.1rem;
}
/* ============== Pricing Section ============== */
.pricing-section {
  padding: 6rem 2rem;
  background: #f9fafb;
  text-align: center;
}

.pricing-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  width: 100%;
  max-width: 320px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.plan-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #e0e0e0;
  color: #333;
  font-size: 0.85rem;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-weight: 600;
}

.popular .plan-badge {
  background: #ff6b35;
  color: white;
}

.plan-header {
  margin-bottom: 1.5rem;
}

.plan-icon {
  font-size: 2.2rem;
  color: #4a6cf7;
  margin-bottom: 1rem;
}

.plan-price {
  margin: 1.5rem 0;
  position: relative;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
}

.currency {
  font-size: 1.2rem;
  color: #718096;
}

.period {
  display: block;
  font-size: 0.9rem;
  color: #a0aec0;
  margin-top: 0.3rem;
}

.original-price {
  text-decoration: line-through;
  color: #e53e3e;
  font-size: 0.9rem;
  margin-top: 0.4rem;
  display: block;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  text-align: right;
}

.plan-features li {
  margin: 0.8rem 0;
  font-size: 1rem;
  color: #4a5568;
}

.plan-btn {
  background: #edf2f7;
  color: #2d3748;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 100%;
}

.plan-btn:hover {
  background: #e2e8f0;
}

.plan-btn.primary {
  background: #4a6cf7;
  color: white;
}

.plan-btn.primary:hover {
  background: #3a5ae0;
}

/* Fade-in Animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* About Section */
.about-section {
  background: white;
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text {
  line-height: 2.2;
  color: #363C44;
  font-size: 1.2rem;
}

.about-text p {
  margin-bottom: 25px;
  padding-right: 20px;
  border-right: 4px solid #135E8D;
}

.about-image {
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, #135E8D 0%, #269EFF 50%, #00DB96 100%);
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  color: white;
  box-shadow: 0 25px 60px rgba(19,94,141,0.3);
  position: relative;
  overflow: hidden;
}

.about-image::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: -50px;
  left: -50px;
  animation: float 6s ease-in-out infinite;
}

.about-image::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  bottom: -30px;
  right: -30px;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, #f7f7f7 0%, #ebebeb 100%);
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 60px;
  border-radius: 40px;
  box-shadow: 0 25px 70px rgba(0,0,0,0.12);
}

.form-group {
  margin-bottom: 30px;
}

.form-group label {
  display: block;
  color: #135E8D;
  font-weight: bold;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 18px;
  border: 2px solid #D6D6D6;
  border-radius: 15px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #135E8D;
  box-shadow: 0 0 0 4px rgba(19,94,141,0.1);
  transform: translateY(-2px);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.submit-btn {
  width: 100%;
  padding: 20px;
  background: linear-gradient(135deg, #135E8D, #269EFF);
  color: white;
  border: none;
  border-radius: 15px;
  font-size: 1.3rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(19,94,141,0.3);
}

.submit-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(19,94,141,0.4);
}

/* Creative Section */
.creative-section {
  background: linear-gradient(135deg, #00DB96 0%, #00b896 50%, #00A38E 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.creative-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: -200px;
  right: -200px;
}

.creative-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  bottom: -150px;
  left: -150px;
}

.creative-section .section-title {
  color: white;
}

.creative-section .section-title::after {
  background: white;
}

.creative-section .section-description {
  color: rgba(255, 255, 255, 0.95);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.feature-card {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(15px);
  padding: 45px;
  border-radius: 30px;
  border: 2px solid rgba(255,255,255,0.3);
  transition: all 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-20px) scale(1.05);
  background: rgba(255,255,255,0.3);
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
  border-color: rgba(255,255,255,0.5);
}

.feature-icon {
  font-size: 5rem;
  margin-bottom: 25px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.feature-card h3 {
  font-size: 1.7rem;
  margin-bottom: 20px;
}

.feature-card p {
  line-height: 1.9;
  opacity: 0.95;
  font-size: 1.1rem;
}

/* Vision Section */
.vision-section {
  background: white;
  text-align: center;
}

.vision-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.vision-text {
  font-size: 1.6rem;
  line-height: 2.4;
  color: #363C44;
  margin-bottom: 50px;
  padding: 50px;
  background: linear-gradient(135deg, #f7f7f7 0%, #e9eef3 100%);
  border-radius: 40px;
  border-right: 6px solid #135E8D;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}
@media (max-width:650px) {
  .vision-text {
    padding: 30px;
    font-size: 1.2rem;
  }
  
}
.vision-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 80px;
}

.stat-card {
  padding: 45px;
  background: linear-gradient(135deg, #135E8D 0%, #269EFF 100%);
  color: white;
  border-radius: 30px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
  transition: all 0.6s ease;
}

.stat-card:hover::before {
  top: -100%;
  right: -100%;
}

.stat-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 25px 50px rgba(19,94,141,0.4);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.stat-label {
  font-size: 1.3rem;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #191919 0%, #2E2E2E 100%);
  color: white;
  text-align: center;
  padding: 50px 20px;
}

footer p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 968px) {
  nav ul {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  nav ul.active {
    transform: translateX(0);
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 40px;
  }

  .video-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* Scroll Animations */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
   @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }
            @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
          @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }
          @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }