<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    text-decoration: none;
  }
  @import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@100;200;300;400;500;600;700&amp;family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&amp;display=swap');


  body {
    font-family: "IBM Plex Sans Arabic", sans-serif;
    font-weight: 500;
    font-style: normal;
  }




.dropdown {
    position: relative;
    display: inline-block;
    font-family: Arial, sans-serif;
  }

  .dropdown-toggle {
    background-color: #f0f0f0;
    color: #333;
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
  }

  .dropdown-menu {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
    border-radius: 6px;
    z-index: 1;
    margin-top: 8px;
  }

  .dropdown-menu a {
    color: #333;
    padding: 10px 16px;
    text-decoration: none;
    display: block;
  }

  .dropdown-menu a:hover {
    background-color: #f2f2f2;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }
  
  


    header {
      padding: 20px 40px ;
      background-color: #fff;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .header-container {
      max-width: 1200px;
      margin: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
    }

    /* Logo styling */
    .logo a {
      font-size: 1.8rem;
      font-weight: bold;
      color: #6d2e8b;
      text-decoration: none;
    }


    .logo a img {
      width: 25%;
      /* Adjust as needed */
    }

    /* Navigation styling */
    nav {
      display: flex;
      gap: 17px;
      flex-wrap: wrap;
      align-items: center;
    } 
    

    nav a {
      color: #333;
      text-decoration: none;
      font-weight: 500;
    }

    /* Call-to-action button */
    .cta {
      padding: 10px 20px;
      background-color: #6d2e8b;
      color: white;
      border-radius: 6px;
      text-decoration: none;
      font-weight: bold;
    }

    /* Hamburger menu icon styling */
    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }

    .hamburger span {
      height: 3px;
      width: 25px;
      background: #333;
      margin-bottom: 5px;
      border-radius: 3px;
      transition: all 0.3s ease;
    }

    /* Responsive styles for mobiles */
    @media (max-width: 768px) {
      nav {
        /* Hide nav links by default on mobile */
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
      }

      nav.active {
        /* When active, show the nav links */
        display: flex;
      }

      /* Show the hamburger menu icon on mobile */
      .hamburger {
        display: flex;
      }

      /* Place CTA at the bottom, if desired */
      .header-container {
        flex-direction: row;
        align-items: center;
      }
    }

    @media (max-width: 528px) {
      .logo {
        width: 90%;
      }
    }




/*
  header {
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
  }

  .logo img {
    width: 150px;
  }

  nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
    margin: 10px 0;
  }

  nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
  }

  .cta-button {
    padding: 10px 20px;
    background-color: #6d2e8b;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
  }
*/
  section {
    padding: 60px 20px;
  }

  .hero {
    background-color: #fefafe;
  }

  .hero .container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }

  .hero-text {
    flex: 1 1 500px;
    min-width: 280px;
  }

  .hero-text h1 {
    font-size: 2.5rem;
    color: #2e003e;
    margin: 20px 0;
  }

  .hero-text p {
    font-size: 1.1rem;
    color: #555;
  }

  .hero-text small {
    font-size: 0.9rem;
    color: #6d2e8b;
  }

  .hero-text .buttons {
    margin-top: 30px;
  }

  .hero-text .buttons a {
    padding: 12px 24px;
    background-color: #6d2e8b;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    margin-right: 20px;
    display: inline-block;
    margin-bottom: 10px;
  }

  .hero-text .buttons a:last-child {
    background: none;
    color: #6d2e8b;
  }

  .hero-image {
    flex: 1 1 500px;
    position: relative;
  }

  .hero-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 0 20px #eee;
  }

  .badge {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 10px 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
  }

  .badge1 { top: 10%; left: -10px; }
  .badge2 { bottom: 20%; left: -10px; }
  .badge3 { top: 30%; right: -10px; }

  .stats {
    max-width: 1000px;
    margin: 60px auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    text-align: center;
    color: #6d2e8b;
  }

  .stats h3 {
    font-size: 2rem;
  }

  .courses {
    background-color: #f9f9f9;
    text-align: center;
  }

  .courses .container {
    max-width: 1300px;
    margin: auto;
  }

  .courses h2 {
    font-size: 2.5rem;
    color: #6d2e8b;
  }

  .course-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
  }

  .course-card {
    flex: 1 1 calc(25% - 20px);
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    min-width: 260px;
    max-width: 300px;
  }

  .course-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }

  .course-card .info {
    padding: 20px;
    text-align: left;
  }

  .course-card h3 {
    font-size: 1.1rem;
    color: #2e003e;
  }

  .course-card p {
    font-size: 0.9rem;
    color: #666;
  }

  .course-card .meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0;
    font-size: 0.85rem;
  }

  .course-card .price {
    margin-top: 10px;
  }

  .course-card .price strong {
    color: #38b000;
  }

  .course-card .price .rating {
    margin-left: 10px;
    color: #ffcc00;
  }

  .see-all {
    display: inline-block;
    margin-top: 40px;
    padding: 12px 30px;
    background-color: #6d2e8b;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
  }

  .testimonials {
    background: #f9fdfc;
    text-align: center;
  }

  .testimonials h2 {
    font-size: 2.2rem;
    color: #2f2f2f;
    margin-bottom: 40px;
  }

  .testimonials span {
    color: #28a745;
  }

  .testimonials .container {
    max-width: 1100px;
    margin: auto;
  }

  .feedback-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }

  .feedback-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    max-width: 450px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  }

  .feedback-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 15px;
  }

  .stars {
    font-size: 1.5rem;
    color: #f9c200;
  }

  .feedback-card p {
    font-size: 0.95rem;
    color: #444;
    margin: 20px 0;
  }

  .feedback-card p.name {
    font-weight: bold;
    margin-bottom: 4px;
  }

  .feedback-card p.role {
    color: #999;
    font-size: 0.9rem;
  }

  /* RESPONSIVE STYLES */
  @media (max-width: 1024px) {
    .hero .container,
    .stats,
    .course-grid,
    .feedback-grid {
      flex-direction: column;
      align-items: center;
    }

    .hero-text,
    .hero-image {
      text-align: center;
    }

    .hero-text .buttons {
      text-align: center;
    }

    nav {
      justify-content: center;
    }

    .course-card {
      flex: 1 1 80%;
    }

    .badge {
      position: static;
      display: block;
      margin: 10px auto;
    }
  }

  @media (max-width: 600px) {
    .hero-text h1 {
      font-size: 1.8rem;
    }

    .courses h2,
    .testimonials h2 {
      font-size: 1.8rem;
    }

    .cta-button {
      display: block;
      margin-top: 10px;
    }

    .hero-text .buttons a {
      width: 100%;
      margin: 10px 0;
    }
  }</pre></body></html>