:root {
  --primary-black: #0a0a0a;
  --secondary-black: #1a1a1a;
  --dark-gray: #2a2a2a;
  --primary-purple: #9333ea;
  --secondary-purple: #a855f7;
  --light-purple: #c084fc;
  --accent-purple: #e9d5ff;
  --text-light: #f3f4f6;
  --text-gray: #9ca3af;
}
/*الخطوط */

@import url("https://fonts.googleapis.com/css2?family=Parastoo:wght@400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cascadia+Code:ital,wght@0,200..700;1,200..700&family=Cascadia+Mono:ital,wght@0,200..700;1,200..700&family=Harmattan:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cascadia+Code:ital,wght@0,200..700;1,200..700&family=Cascadia+Mono:ital,wght@0,200..700;1,200..700&display=swap");
@font-face {
  font-family: "khebrat";
  src: url(fonts/18.ttf);
}

@font-face {
  font-family: "tufuli";
  src: url(fonts/TufuliArabicDEMO-Bold.ttf);
}

@font-face {
  font-family: "fun";
  src: require ("./fonts/FunPlayArabic_DEMO-Bold.otf") format("opentype");
}

.logo-name {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  /* justify-content: center; */
}

.ga-logo{
    height: 70px;
    /* width: 90px; */
}

.text-of-logo, .text-of-logo2 {
    display: flex;
    justify-content: center;
    align-items: center;
}

h2 {
  font-size: 30px;
  font-weight: bolder;
  color: white;
}
/* إعداد عام */

* {
  user-select: none;
}

body {
  font-family: "Tahoma", sans-serif;
  margin: 0;
  padding: 0;
  background: var(--primary-black);
  color: #333;
  line-height: 1.6;
}

a {
  text-decoration: none;
}
/*اضافات مبادية //////*/

.header-section {
  text-align: center;
  margin-bottom: 30px;
  max-width: 800px;
  flex-shrink: 0;
}

.main-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  color: #ffffff;
  background: linear-gradient(to right, #4facfe, #00f2fe);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sub-heading {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #e0f7ff;
  max-width: 600px;
  margin: 0 auto;
}

.cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 25px;
  width: 100%;
  align-content: center;
}

.flip-card {
  background: transparent;
  perspective: 1000px;
  width: 20%;
  height: 100px;
  border-radius: 20px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  border-radius: 20px;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.flip-card-front {
  background: linear-gradient(135deg, #1a2980, #26d0ce);
  color: white;
}

.flip-card-back {
  background: linear-gradient(135deg, #2c3e50, #3498db);
  color: white;
  transform: rotateY(180deg);
  overflow: hidden;
}

.card-icon {
  font-size: 3.2rem;
  margin-bottom: 15px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: #ffffff;
}

.card-description {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #e6f7ff;
  text-align: center;
}

.back-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #ffffff;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 8px;
  width: 100%;
}

.features-list {
  list-style-type: none;
  width: 100%;
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.features-list li {
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  font-size: 0.85rem;
}

.features-list li:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(-5px);
}

.features-list li i {
  margin-left: 8px;
  color: #4facfe;
  font-size: 0.9rem;
}

.footer-section {
  margin-top: 20px;
  text-align: center;
  padding: 15px;
  color: #a8e6ff;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  max-width: 800px;
  flex-shrink: 0;
}
/* تحسينات للشاشات الصغيرة */

@media (max-width: 1100px) {
  .cards-container {
    overflow-y: auto;
    padding: 10px;
    align-content: flex-start;
  }
  .flip-card {
    width: 300px;
    height: 260px;
  }
}

@media (max-width: 768px) {
  .main-title {
    font-size: 2rem;
  }
  .sub-heading {
    font-size: 1rem;
  }
  .flip-card {
    width: 280px;
    height: 250px;
  }
  .card-icon {
    font-size: 2.8rem;
  }
  .card-title {
    font-size: 1.3rem;
  }
  .promo {
    height: auto;
    padding-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .flip-card {
    width: 100%;
    max-width: 320px;
    height: 240px;
  }
  .cards-container {
    gap: 20px;
  }
  .promo {
    height: auto;
    padding-bottom: 20px;
  }
}
/* ====== Toast container ====== */
/*اضافات الناف بار */

.blue {
  border: none;
  -webkit-text-fill-color: var(--accent-purple);
  border-radius: 20px;
  background-color: var(--secondary-purple);
  color: white;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
  padding: 8px;
  text-align: center;
}

.classes-btn {
  background-color: #3a86ff;
  color: white;
  border-radius: 20px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
  padding: 8px;
  text-align: center;
}

.classes-btn:hover {
  background-color: #2667cc;
}

.blue:hover {
  background-color: #2667cc;
}
/*-------------------*/

.atp {
  display: flex;
  margin-right: 15px;
}

.studyou {
  font-size: 20px;
}

.text {
  margin-left: 5px;
  font-size: 20px;
  color: var(--secondary-purple);
  font-weight: bolder;
}

.text2 {
  font-size: 20px;
  font-size: 20px;
  color: #6c757d;
}

.error {
  display: flex;
  justify-content: center;
  z-index: 100;
}

.promo-link-sign {
  font-family: "Tahoma", "Arial", sans-serif;
  font-size: 16px;
  padding: 10px 22px;
  background-color: whitesmoke;
  /* white fill to stand out */
  color: #0078d7;
  /* blue text for harmony */
  border: 2px solid #0078d7;
  /* blue border for definition */
  border-radius: 15px;
  /* rounded corners */
  cursor: pointer;
  transition: all 0.3s ease;
  direction: rtl;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  /* depth */
}

.promo-link-sign:hover {
  background-color: #76adda;
  /* invert to blue fill */
  color: #ffffff;
  /* white text */
  border-color: #005a9e;
  /* darker border */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.45);
  /* stronger shadow */
}

#site-toasts {
  position: fixed;
  top: 18px;
  z-index: 9999;
  width: calc(100% - 40px);
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  padding: 0 20px;
  direction: rtl;
}
/* ====== Toast base ====== */

.toast {
  width: 150px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(2, 6, 23, 0.45);
  color: #fff;
  font-weight: 600;
  font-family: "Cairo", "Tajawal", sans-serif;
  opacity: 0;
  transform: translateY(-10px) scale(0.98);
  transition: transform 300ms ease, opacity 280ms ease;
  position: fixed;
  top: 10px;
  z-index: 100;
}
/* أيقونة */

.toast .toast-icon {
  max-width: 40px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  padding: 6px;
  flex-shrink: 0;
  z-index: 100;
}

.toast svg {
  color: #fff;
  z-index: 100;
}
/* النص */

.toast .toast-text {
  flex: 1 1 auto;
  font-size: 1rem;
  text-align: center;
  z-index: 100;
}
/* ====== أنواع ====== */

.toast-success {
  background: linear-gradient(
    90deg,
    rgba(16, 185, 129, 0.95),
    rgba(5, 150, 105, 0.95)
  );
  border: 1px solid rgba(16, 185, 129, 0.25);
  z-index: 100;
}

.toast-error {
  background: linear-gradient(
    90deg,
    rgba(239, 68, 68, 0.95),
    rgba(220, 38, 38, 0.95)
  );
  border: 1px solid rgba(239, 68, 68, 0.25);
  z-index: 100;
}
/* حالة الظهور */

.toast.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  z-index: 100;
}

.buy-btn {
  height: 40px;
  width: 110px;
  font-family: "Courier New", Courier, monospace;
  border: none;
  border-radius: 5px;
  background-color: #0db276;
}

.buy-btn:hover {
  background-color: #058f5c;
  cursor: pointer;
}

.buy-btn:active {
  background-color: #596a64;
}

.backdro {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 10;
}

.popup-message {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 30px 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  z-index: 20;
  width: 300px;
}

.popup-message h2 {
  margin-top: 0;
  color: #333;
}

.buttons {
  margin-top: 25px;
  display: flex;
  justify-content: space-around;
}

.buttons button {
  padding: 10px 25px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.confirm-btn {
  background-color: #28a745;
  color: white;
}

.confirm-btn:hover {
  background-color: #218838;
}

.cancel-btn {
  background-color: #dc3545;
  color: white;
}

.cancel-btn:hover {
  background-color: #c82333;
}

.hidden {
  display: none !important;
}

.upload-btn {
  height: 40px;
  width: 40px;
  position: fixed;
  bottom: 20px;
  left: 20px;
  border: 2px solid black;
  border-radius: 50%;
  text-align: center;
}
/* الهيدر */

/* .promo {
} */

.card-des {
  font-size: 20px;
}

.num {
  font-size: 30px;
  margin: 0;
}

.navbar {
  width: 90%;
  min-height: 75px;
  background: #fff;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  border-bottom: 1px solid #ddd;
  flex-wrap: wrap;
  margin-top: 10px;
  border-radius: 20px;
  margin-right: 5%;
  position: fixed;
}

.logo {
  font-size: 20px;
  font-weight: bold;
  color: #0a8d5e;
}

.list-icon {
  display: none;
}

span {
  font-size: 14px;
  color: #888;
}

.navbar a {
  margin: 0 5px;
  text-decoration: none;
  color: #555;
}

.nav a {
  display: block;
}

.nav {
  margin: 0 5px;
  text-decoration: none;
  color: #555;
  font-size: 14px;
  margin-left: 20px;
}

.btn {
  background: #0a8d5e;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}
/* القسم الرئيسي */

.promo {
  display: flex;
  justify-content: center;
  flex-direction: row;
  background-color: var(--primary-purple);
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  height: auto;
  padding-bottom: 20px;
}

.intro {
  font-weight: bolder;
  text-shadow: #596a64 5px;
  font-family: "Cascadia Mono", Courier, monospace;
  font-size: 40px;
  color: #1a2980;
}

.promo-img-container {
  align-items: center;
  justify-content: center;
}

.promo-img {
  height: 500px;
  margin-bottom: 20px;
}

.promo-text-container {
  max-width: 500px;
  flex: 1;
  margin-top: 30px;
  vertical-align: baseline;
}

.hero {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
  direction: rtl;
  gap: 30px;
  margin-top: 50px;
}

.hero h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.hero {
  font-size: 16px;
  color: #ffffff;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.stats div h2 {
  color: #05da8c;
  margin: 0;
}
/* المسارات */

.courses {
  text-align: center;
  padding: 50px 20px;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 75px;
  flex-wrap: wrap;
}
/* الكروت */

.card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  width: 350px;
  text-align: right;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: relative;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}

.card .tags {
  margin: 15px 0;
}

.card .tags span {
  background: #eee;
  padding: 5px 10px;
  border-radius: 8px;
  margin: 3px;
  display: inline-block;
  font-size: 13px;
}

.price-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.salary {
  font-weight: bold;
  color: #0a8d5e;
  display: inline;
}

.later {
  border: 1px solid #e0a800;
  background-color: #fff8e1;
  color: #8a6d3b;
  font-weight: 600;
  font-style: italic;
  padding: 0.75em 1.25em;
  border-radius: 6px;
  text-align: center;
  font-size: 0.95rem;
  box-shadow: inset 0 0 0.5em rgba(0, 0, 0, 0.05);
}
/* ألوان خاصة */

.purple {
  border-top: 6px solid #6a5acd;
}

.green {
  border-top: 6px solid #0a8d5e;
}

.card-img {
  width: 100%;
  height: 150px;
}

.contact-section {
  padding: 4rem 0;
  /* py-16 */
  background-color: #fff;
  /* bg-white */
}

.contact-container {
  max-width: 1280px;
  /* max-w-7xl */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
/* ==================
   العنوان
   ================== */

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  /* mb-12 */
}

.section-title {
  font-size: 1.875rem;
  /* text-3xl */
  font-weight: 700;
  /* font-bold */
  color: #111827;
  /* text-gray-900 */
  margin-bottom: 1rem;
  /* mb-4 */
}

.title-underline {
  width: 5rem;
  /* w-20 */
  height: 0.25rem;
  /* h-1 */
  background-color: #6a5acd;
  /* bg-indigo-600 */
  margin-left: auto;
  margin-right: auto;
}
/* ==================
   محتوى القسم
   ================== */

.contact-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  /* gap-12 */
}

@media (min-width: 768px) {
  .contact-content-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
/* ==================
   معلومات التواصل
   ================== */

.contact-info-container {
  padding: 1.5rem;
}

.contact-subtitle {
  font-size: 1.25rem;
  /* text-xl */
  font-weight: 600;
  /* font-semibold */
  color: #111827;
  /* text-gray-900 */
  margin-bottom: 1.5rem;
  /* mb-6 */
}

.contact-text {
  color: #4b5563;
  /* text-gray-600 */
  margin-bottom: 2rem;
  /* mb-8 */
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  /* space-y-4 */
}

.contact-detail-item {
  display: flex;
  align-items: center;
}
/* أيقونات التواصل */

.icon-bg {
  background-color: #eef2ff;
  /* bg-indigo-100 */
  padding: 0.75rem;
  /* p-3 */
  border-radius: 9999px;
  /* rounded-full */
  margin-right: 1rem;
  /* mr-4 */
}

.icon-color {
  color: #6a5acd;
  /* text-indigo-600 */
  width: 1.5rem;
  height: 1.5rem;
}

.detail-text {
  color: #374151;
  /* text-gray-700 */
}
/* ==================
   نموذج التواصل
   ================== */

.contact-form-container {
  padding: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  /* space-y-6 */
}

.form-label {
  display: block;
  font-size: 0.875rem;
  /* text-sm */
  font-weight: 500;
  /* font-medium */
  color: #374151;
  /* text-gray-700 */
  margin-bottom: 0.5rem;
  /* mb-2 */
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  /* px-4 py-3 */
  border: 1px solid #d1d5db;
  /* border-gray-300 */
  border-radius: 0.5rem;
  /* rounded-lg */
  transition: all 0.2s ease-in-out;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #6a5acd;
  /* focus:border-indigo-500 */
  box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.5);
  /* focus:ring-2 focus:ring-indigo-500 */
}

.submit-button {
  width: 100%;
  background-color: #6a5acd;
  /* bg-indigo-600 */
  color: #fff;
  /* text-white */
  font-weight: 500;
  /* font-medium */
  padding: 0.75rem 1.5rem;
  /* py-3 px-6 */
  border-radius: 0.5rem;
  /* rounded-lg */
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

.submit-button:hover {
  background-color: #6a5acd;
  /* hover:bg-indigo-700 */
}
/*
 * هذا الملف يحتوي على جميع الأنماط والتنسيقات اللازمة لإنشاء
 * تذييل (footer) مطابق للصورة.
 */
/* ==================
   الأنماط العامة والأساسية
   ================== */
/* ==================
   تذييل الصفحة
   ================== */

.site-footer {
  background-color: var(--light-purple);
  /* bg-gray-900 */
  padding: 3rem 0;
  /* py-12 */
}

.footer-container {
  max-width: 1280px;
  /* max-w-7xl */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  /* gap-8 */
  margin-bottom: 2rem;
  /* mb-8 */
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .footer-info {
    grid-column: span 2 / span 2;
  }
}
/* ==================
   معلومات التذييل
   ================== */

.footer-title {
  font-size: 1.5rem;
  /* text-2xl */
  font-weight: 700;
  /* font-bold */
  margin-bottom: 1rem;
  /* mb-4 */
}

.footer-description {
  font-size: 17px;
  opacity: 0.7;
  color: whitesmoke;
  /* text-gray-400 */
  margin-bottom: 1.5rem;
  /* mb-6 */
}
/* روابط وسائل التواصل الاجتماعي */

.social-links {
  display: flex;
  gap: 1rem;
  /* space-x-4 */
}

.social-icon-link {
  color: #9ca3af;
  /* text-gray-400 */
  transition: color 0.2s ease-in-out;
}

.social-icon-link:hover {
  color: #ffffff;
  /* hover:text-white */
}
/* ==================
   روابط الأقسام
   ================== */

.footer-links-column {
  margin-bottom: 1rem;
}

.column-title {
  font-size: 1.125rem;
  /* text-lg */
  font-weight: 600;
  /* font-semibold */
  margin-bottom: 1rem;
  /* mb-4 */
}

.link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  /* space-y-2 */
}

.footer-link {
  color: whitesmoke;
  /* text-gray-400 */
  text-decoration: none;
  font-size: 0.875rem;
  /* text-sm */
  transition: color 0.2s ease-in-out;
}

.footer-link:hover {
  color: #ffffff;
  /* hover:text-white */
}
/* ==================
   الجزء السفلي من التذييل
   ================== */

.footer-bottom {
  border-top: 1px solid #1f2937;
  /* border-gray-800 */
  padding-top: 2rem;
  /* pt-8 */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.copyright-text {
  color: whitesmoke;
  /* text-gray-400 */
  font-size: 0.875rem;
  /* text-sm */
  margin-bottom: 1rem;
  /* mt-4 */
}

@media (min-width: 768px) {
  .copyright-text {
    margin-bottom: 0;
  }
}

.privacy-links {
  display: flex;
  gap: 1.5rem;
  /* space-x-6 */
}
/* ========================= */
/* 🎯 Responsive Styles */
/* ========================= */
/* للشاشات الأصغر من 992px */

@media (min-width: 601px) {
  .nav,
  .logo,
  .text-of-logo2 {
    display: none;
  }
  .text-of-logo {
    margin-right: 10px;
  }
  .navbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

@media (max-width: 992px) {
  .last-text {
    margin-bottom: 40px;
  }
}

@media (min-width: 601px) and (max-width: 992px) {
  .promo-text-container {
    margin-top: 0;
  }
  .promo-img {
    margin-top: 40px;
  }
  .btn {
    margin-top: 10px;
  }
  .cards {
    gap: 40px;
  }
  .hero {
    gap: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
}
/* للشاشات الأصغر من 600px (موبايل) */

.nav1 {
  margin-left: 7px;
}

.classes-btn {
  cursor: pointer;
  display: inline;
  margin: 0 5px;
  text-decoration: none;
  color: #555;
  font-size: 16px;
}

a {
  display: inline;
}

.nav1 {
  display: flex;
}

.nav {
  display: none;
}

@media (max-width: 600px) {
  .text-of-logo {
    display: none;
  }
  .text-of-logo2 {
    margin-left: 10px;
  }
  .nav1 {
    display: none;
  }
  .hero {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .hero h1 {
    font-size: 24px;
    margin-top: 0;
  }
  .hero {
    font-size: 14px;
  }
  .stats div h2 {
    font-size: 20px;
  }
  .card {
    width: 100%;
  }
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border-bottom: 1px solid #e6def8;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  .material-symbols-outlined {
    font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  }
  .nav {
    display: flex;
    border-radius: 10px;
    flex-direction: column;
    width: 30%;
    margin-top: 40px;
    position: absolute;
    top: 30px;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    background-color: #f9f9f9;
  }
  .nav .classes-btn {
    padding: 10px;
    margin: 0 5px;
  }
  .list-icon {
    display: flex;
    margin-top: 5px;
    margin-right: 8px;
  }
  a {
    padding: 10px;
    color: #0a8d5e;
    color: #0a8d5e;
    display: inline;
  }
  .btn {
    max-width: 200px;
  }
  .hero {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .promo-img {
    height: 350px;
    width: 340px;
    /* height: 320px;
        width: 330px; */
    margin-top: 30px;
    gap: 0;
  }
  .promo-text-container {
    margin-top: 0;
  }
  .promo {
    height: auto;
    padding-bottom: 20px;
  }
}
/*اضفات جديدة لناف بار */
/*
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;

    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.list-icon {
    margin-left: 10px;
    filter: invert(36%) sepia(89%) saturate(1556%) hue-rotate(208deg) brightness(102%) contrast(101%);
}

.text-of-logo,
.text-of-logo2 {
    display: flex;

}

.studyou {
    font-size: 24px;
    font-weight: 700;
    color: #3a86ff;
    margin: 0;
}


/* تصميم النافبار للكمبيوتر (nav1) */
/*
.nav1 {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav1 a {
    text-decoration: none;
    color: whitesmoke;
    font-weight: 500;
    transition: color 0.3s;
    padding: 8px 12px;
}

.blue {
    border: none;
    border-radius: 20px;
    background-color: #3a86ff;
    color: white;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.classes-btn {
    background-color: #3a86ff;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.classes-btn:hover {
    background-color: #2667cc;
}

.blue:hover {
    background-color: #2667cc;
}


/* تصميم النافبار للجوال (nav) - مخفي افتراضيًا */
/*
.nav {
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 8px 8px;
    padding: 15px;
    z-index: 100;
}

.nav.active {
    display: flex;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s;
}

.nav a:last-child {
    border-bottom: none;
}

.nav a:hover {
    background-color: #f8f9fa;
    color: #3a86ff;
}

.nav .classes-btn {
    margin-top: 10px;
    text-align: center;
    border-radius: 8px;
}


/* إخفاء النص الثاني للشعار في الشاشات الكبيرة */
/*
.text-of-logo2 {
    display: none;
}


/* التصميم المتجاوب */
/*
@media (max-width: 768px) {
    .nav1 {
        display: none;
    }
    .text-of-logo {
        display: none;
    }
    .text-of-logo2 {
        display: flex;
    }
    .logo {
        order: 1;
    }
    .text-of-logo2 {
        order: 2;
        flex-grow: 1;
        justify-content: center;
    }
    .list-icon {
        display: flex;
    }
}


/* توضيح الاستجابة */
/*
.demo-text {
    text-align: center;
    margin-top: 30px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
    /*اضافات الكارتات */
/* الحاوية الأساسية */

.-cards-container {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
}
/* البطاقة */

.-card {
  width: 260px;
  padding: 25px;
  border-radius: 18px;
  background: linear-gradient(
    145deg,
    var(--text-light),
    var(--secondary-purple)
  );
  box-shadow: 0 10px 25px rgba(0, 70, 160, 0.15);
  text-align: center;
  transition: 0.3s;
}
/* عند المرور */

.-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 70, 160, 0.25);
}
/* الأيقونة */

.-icon {
  font-size: 38px;
  margin-bottom: 15px;
}
/* العنوان */

.-title {
  font-size: 20px;
  margin-bottom: 10px;
  color: #0b3b7b;
}
/* الوصف */

.-desc {
  font-size: 15px;
  color: #355e8d;
  margin-bottom: 20px;
}
/* الزر */

.-btn {
  padding: 10px 22px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #0b63d6, #0b8cf2);
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}

.-btn:hover {
  background: linear-gradient(135deg, #0b8cf2, #0b63d6);
  transform: scale(1.05);
}
/*اطار الصورة */
/* From Uiverse.io by alexruix */
/*Neo Brutalism pricing card*/

.card- {
  padding: 1rem;
  padding-left: 25px;
  padding-right: 25px;
  width: auto;
  background: var(--dark-gray);
  border-radius: 1rem;
  border: 0.5vmin solid var(--primary-purple);
  box-shadow: 0.4rem 0.4rem var(--light-purple);
  overflow: hidden;
  color: rgb(255, 255, 255);
  text-emphasis-color: var(--text-light);
}
/*Card content*/

.pricing-block-content {
  display: flex;
  height: 100%;
  flex-direction: column;
  gap: 0.5rem;
}

.pricing-plan {
  color: var(--accent-purple);
  font-size: 1.3rem;
  line-height: 1.25;
  font-weight: 700;
}

.price-value {
  display: flex;
  flex-direction: row;
  align-items: center;
  color: var(--light-purple);
  font-size: 1.8rem;
  line-height: 1.25;
  font-weight: 700;
}

.pricing-note {
  opacity: 0;
}

.price-discount-order {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
/*Checklist*/

.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.check-list-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.price-integer {
  color: whitesmoke;
}
/**************/
/* From Uiverse.io by suleymanlaarabidev */

.card2 {
  width: 250px;
  height: 355px;
  background: var(--light-purple);
  transition: all 0.4s;
  border-radius: 10px;
  box-shadow: 0px 0px 10px 5px rgba(100, 100, 100, 0.497);
  font-size: 30px;
  font-weight: 900;
  position: relative;
}

.card2:hover {
  border-radius: 15px;
  cursor: pointer;
  transform: scale(1.2);
  box-shadow: 0px 0px 10px 5px rgba(79, 79, 79, 0.547);
  background: var(--secondary-purple);
  z-index: 10;
}

.text-style {
  font-size: large;
  color: white;
  font-weight: bold;
  margin-bottom: 60px;
}

.first-content {
  height: 100%;
  width: 100%;
  transition: all 0.4s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  opacity: 1;
  border-radius: 50px;
}

.rr {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: start;
  width: 100%;
}

.img-tri {
  width: 100%;
  border-top-right-radius: 5%;
  border-top-left-radius: 5%;
}

.underline {
  font-size: 20px;
  text-decoration: underline;
}

.description {
  color: #E2D9F3;
}

.card-note {
  display: flex;
  width: 70px;
  height: 50px;
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 22px;
  text-align: center;
  justify-content: center;
  align-items: center;
  border-radius: 20%;
  
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

}

.free-card-note {
  background-color: #34D399;
  color:rgba(6, 78, 59, 0.45);
}

.locked-card-note {
  background-color: rgba(45, 10, 80, 0.45);
  color: #fca5a5;
}
/***************/
/* From Uiverse.io by gharsh11032000 */

.card {
  min-width: 320px;
  padding: 20px;
  color: white;
  background: linear-gradient(var(--secondary-purple), var(--accent-purple))
      padding-box,
    linear-gradient(145deg, transparent 35%, #e81cff, #40c9ff) border-box;
  border: 2px solid transparent;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.card .main-content {
  flex: 1;
}

.card .header span:first-child {
  font-weight: 600;
  color: #717171;
  margin-right: 4px;
}

.card .heading {
  font-size: 24px;
  margin: 24px 0 16px;
  font-weight: 600;
}

.card .categories {
  display: flex;
  gap: 8px;
}

.card .categories span {
  background-color: #e81cff;
  padding: 4px 8px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  border-radius: 50em;
}

.card .footer {
  font-weight: 600;
  color: #717171;
  margin-right: 4px;
}
/****طريقة التسجيل ***/
/* أنماط القسم الرئيسي */

.section-custom {
  padding: 3rem 1.5rem;
}

.container-custom {
  max-width: 1200px;
  margin: 0 auto;
}
/* أنماط الأعمدة */

.columns-custom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.column-left {
  width: 100%;
  margin-bottom: 40px;
}

.column-right {
  width: 100%;
}
/* أنماط النص */

.title-custom {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 50px;
}

.subtitle-custom {
  font-size: 1.125rem;
  color: #4a5568;
  margin-bottom: 50px;
}

.button-custom {
  width: 100px;
  display: inline-block;
  background-color: var(--primary-purple);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s;
}

.button-custom:hover {
  background-color: #2563eb;
}
/* أنماط القائمة */

.list-item {
  display: flex;
  margin-bottom: 1.5rem;
}

.number-container {
  padding-right: 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.number-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  font-size: 1.5rem;
  color: var(--primary-purple);
  background-color: #dbeafe;
  border-radius: 9999px;
  font-weight: 700;
}

.content {
  margin-top: 0.75rem;
  margin-right: 18px;
}

.item-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.item-subtitle {
  color: #4a5568;
}
/* استعلامات الوسائط للشاشات المتوسطة والكبيرة */

@media (min-width: 1024px) {
  .columns-custom {
    flex-wrap: nowrap;
  }
  .column-left {
    width: 33.333333%;
    margin-bottom: 0;
  }
  .column-right {
    width: 50%;
    margin-left: 8.333333%;
  }
  .title-custom {
    font-size: 2.25rem;
  }
  .promo {
    height: 700px;
  }
}

.navbar {
  z-index: 100;
}

.container-custom {
  background-color: rgba(229, 229, 229, 0.779);
  border-radius: 40px;
}

p {
  font-size: larger;
  font-weight: bolder;
}
