 
    @import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700&display=swap');
    
    :root {
      --dark-blue: #0a1929;
      --blue: #0d47a1;
      --light-blue: #2196f3;
      --glow-blue: #4fc3f7;
      --accent: #00e5ff;
      --accent-purple: #9c27b0;
      --accent-pink: #e91e63;
      --gradient-blue: linear-gradient(135deg, #0d47a1, #00e5ff);
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Tajawal', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    body {
      background: radial-gradient(ellipse at top, #0a1929, #000510);
      color: white;
      min-height: 100vh;
    }
    
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }
    
    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      position: sticky;
      top: 0;
      z-index: 100;
      backdrop-filter: blur(10px);
      background-color: rgba(10, 25, 41, 0.8);
    }
    
    .logo {
      font-size: 28px;
      font-weight: bold;
      color: var(--accent);
      text-shadow: 0 0 10px var(--glow-blue);
      display: flex;
      align-items: center;
      gap: 10px;
    }
    
    .logo i {
      font-size: 24px;
    }
    
    .logo span {
      color: white;
    }
    
    nav ul {
      display: flex;
      list-style: none;
      gap: 30px;
    }
    
    nav a {
      color: white;
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s;
      display: flex;
      align-items: center;
      gap: 5px;
    }
    
    nav a:hover {
      color: var(--accent);
      text-shadow: 0 0 8px var(--glow-blue);
      transform: translateY(-2px);
    }
    
    .btn-login {
      background: linear-gradient(135deg, var(--blue), var(--light-blue));
      border: none;
      color: white;
      padding: 8px 20px;
      border-radius: 30px;
      font-weight: 500;
      transition: all 0.3s;
      display: flex;
      align-items: center;
      gap: 5px;
      text-decoration: none;
    }
    
    .btn-login:hover {
      background: linear-gradient(135deg, var(--light-blue), var(--accent));
      box-shadow: 0 0 15px rgba(0, 229, 255, 0.5);
      transform: translateY(-2px);
      color: white;
    }
    
    .hero {
      text-align: center;
      padding: 80px 0 60px;
      position: relative;
      overflow: hidden;
    }
    
    .hero::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(0, 229, 255, 0.1) 0%, rgba(13, 71, 161, 0) 70%);
      animation: rotate 30s linear infinite;
      z-index: -1;
    }
    
    @keyframes rotate {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }
    
    .hero h1 {
      font-size: 48px;
      margin-bottom: 20px;
      background: linear-gradient(to right, white, var(--accent));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    
    .hero p {
      font-size: 18px;
      max-width: 800px;
      margin: 0 auto 40px;
      color: #e0e0e0;
    }
    
    .search-box {
      position: relative;
      max-width: 600px;
      margin: 0 auto;
    }
    
    .search-box input {
      width: 100%;
      padding: 18px 25px;
      border-radius: 30px;
      border: none;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(5px);
      color: white;
      font-size: 16px;
      box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
      transition: all 0.3s;
    }
    
    .search-box input:focus {
      outline: none;
      background: rgba(255, 255, 255, 0.15);
      box-shadow: 0 0 25px rgba(0, 229, 255, 0.5);
    }
    
    .search-box button {
      position: absolute;
      right: 5px;
      top: 5px;
      background: linear-gradient(135deg, var(--blue), var(--light-blue));
      border: none;
      color: white;
      padding: 13px 25px;
      border-radius: 25px;
      cursor: pointer;
      font-weight: bold;
      transition: all 0.3s;
      display: flex;
      align-items: center;
      gap: 5px;
    }
    
    .search-box button:hover {
      background: linear-gradient(135deg, var(--light-blue), var(--accent));
      box-shadow: 0 0 15px var(--accent);
      transform: translateY(-2px);
    }
    
    .ai-badge {
      position: absolute;
      left: 15px;
      top: 50%;
      transform: translateY(-50%);
      background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
      border-radius: 30px;
      padding: 5px 10px;
      font-size: 12px;
      color: white;
      display: flex;
      align-items: center;
      gap: 5px;
      z-index:999;
    }
    
    .plans {
      display: flex;
      justify-content: center;
      gap: 30px;
      margin: 60px 0;
      flex-wrap: wrap;
      position: relative;
    }
    
    .plans::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 0;
      width: 100%;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--accent), transparent);
      z-index: -1;
    }
    
    .plan {
      background: linear-gradient(145deg, rgba(13, 71, 161, 0.4), rgba(10, 25, 41, 0.8));
      border-radius: 20px;
      padding: 40px 30px;
      width: 320px;
      text-align: center;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: all 0.5s;
      position: relative;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .plan::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(0, 229, 255, 0.05) 0%, rgba(13, 71, 161, 0) 70%);
      z-index: 0;
    }
    
    .plan:hover {
      transform: translateY(-15px);
      box-shadow: 0 15px 40px rgba(0, 229, 255, 0.2);
      border-color: var(--accent);
    }
    
    .plan-content {
      position: relative;
      z-index: 1;
    }
    
    .plan-icon {
      width: 80px;
      height: 80px;
      background: rgba(0, 229, 255, 0.1);
      border-radius: 50%;
      margin: 0 auto 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
      color: var(--accent);
      box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
      transition: all 0.3s;
    }
    
    .plan:hover .plan-icon {
      transform: scale(1.1);
      box-shadow: 0 0 30px rgba(0, 229, 255, 0.5);
    }
    
    .plan h3 {
      font-size: 24px;
      margin-bottom: 15px;
    }
    
    .plan .price-container {
      margin-bottom: 20px;
    }
    
    .plan .old-price {
      font-size: 22px;
      color: #aaa;
      text-decoration: line-through;
      margin-bottom: 5px;
    }
    
    .plan .price {
      font-size: 36px;
      font-weight: bold;
      color: var(--accent);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 5px;
    }
    
    .plan .period {
      font-size: 16px;
      color: #aaa;
    }
    
    .discount-badge {
      position: absolute;
      top: 20px;
      right: -35px;
      background: linear-gradient(135deg, #ff9800, #f44336);
      color: white;
      padding: 5px 40px;
      transform: rotate(45deg);
      font-size: 14px;
      font-weight: bold;
      box-shadow: 0 5px 15px rgba(244, 67, 54, 0.3);
      z-index: 2;
    }
    
    .plan ul {
      text-align: right;
      margin: 30px 0;
      list-style: none;
    }
    
    .plan li {
      margin-bottom: 12px;
      font-size: 15px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    
    .plan li i {
      color: var(--accent);
      font-size: 16px;
      min-width: 20px;
    }
    
    .plan button {
      background: linear-gradient(135deg, var(--blue), var(--light-blue));
      border: none;
      color: white;
      padding: 15px 30px;
      border-radius: 30px;
      cursor: pointer;
      font-weight: bold;
      width: 100%;
      transition: all 0.3s;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }
    
    .plan button:hover {
      background: linear-gradient(135deg, var(--light-blue), var(--accent));
      box-shadow: 0 0 20px rgba(0, 229, 255, 0.5);
      transform: translateY(-5px);
    }
    
    .popular-plan {
      transform: scale(1.05);
      border: 2px solid var(--accent);
      z-index: 2;
    }
    
    .popular-badge {
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      background: linear-gradient(135deg, var(--blue), var(--accent));
      color: white;
      padding: 8px 20px;
      border-radius: 0 0 15px 15px;
      font-size: 14px;
      font-weight: bold;
      box-shadow: 0 5px 15px rgba(0, 229, 255, 0.3);
      z-index: 2;
    }
    
    .features {
      padding: 80px 0;
      background: linear-gradient(to bottom, rgba(10, 25, 41, 0), rgba(13, 71, 161, 0.2), rgba(10, 25, 41, 0));
    }
    
    .section-title {
      text-align: center;
      font-size: 36px;
      margin-bottom: 20px;
      color: white;
      position: relative;
    }
    
    .section-title::after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background: linear-gradient(to right, var(--blue), var(--accent));
    }
    
    .section-subtitle {
      text-align: center;
      color: #aaa;
      max-width: 700px;
      margin: 0 auto 50px;
    }
    
    .feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 30px;
    }
    
    .feature {
      background: rgba(13, 71, 161, 0.2);
      border-radius: 20px;
      padding: 40px 30px;
      text-align: center;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
      backdrop-filter: blur(5px);
      border: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .feature::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: linear-gradient(to right, var(--blue), var(--accent));
      transform: scaleX(0);
      transform-origin: right;
      transition: transform 0.3s ease-out;
    }
    
    .feature:hover {
      background: rgba(13, 71, 161, 0.3);
      transform: translateY(-10px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
      border-color: rgba(255, 255, 255, 0.1);
    }
    
    .feature:hover::before {
      transform: scaleX(1);
      transform-origin: left;
    }
    
    .feature-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      font-size: 30px;
      color: var(--accent);
      background: rgba(0, 229, 255, 0.1);
      box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
      transition: all 0.3s;
    }
    
    .feature:hover .feature-icon {
      transform: rotate(360deg);
      color: white;
      background: linear-gradient(135deg, var(--blue), var(--accent));
    }
    
    .feature h3 {
      font-size: 20px;
      margin-bottom: 15px;
    }
    
    .feature p {
      color: #ccc;
      font-size: 15px;
      line-height: 1.6;
    }
    
    .testimonials {
      padding: 80px 0;
      text-align: center;
    }
    
    .testimonial-cards {
      display: flex;
      justify-content: center;
      gap: 30px;
      margin-top: 50px;
      flex-wrap: wrap;
    }
    
    .testimonial {
      background: linear-gradient(145deg, rgba(13, 71, 161, 0.3), rgba(10, 25, 41, 0.6));
      padding: 30px;
      border-radius: 20px;
      max-width: 350px;
      border: 1px solid rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(5px);
      transition: all 0.3s;
    }
    
    .testimonial:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
      border-color: rgba(0, 229, 255, 0.3);
    }
    
    .testimonial-avatar {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      margin: 0 auto 20px;
      overflow: hidden;
      border: 3px solid var(--accent);
      box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
    }
    
    .testimonial-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .testimonial-content {
      font-style: italic;
      color: #e0e0e0;
      margin-bottom: 20px;
      position: relative;
    }
    
    .testimonial-content::before,
    .testimonial-content::after {
      content: '"';
      font-size: 60px;
      color: rgba(0, 229, 255, 0.2);
      position: absolute;
      line-height: 1;
    }
    
    .testimonial-content::before {
      top: -20px;
      left: -10px;
    }
    
    .testimonial-content::after {
      bottom: -40px;
      right: -10px;
    }
    
    .testimonial-author {
      font-weight: bold;
      color: var(--accent);
    }
    
    .testimonial-role {
      font-size: 14px;
      color: #aaa;
    }
    
    .cta {
      padding: 80px 0;
      text-align: center;
      background: linear-gradient(to right, rgba(10, 25, 41, 0.9), rgba(13, 71, 161, 0.5), rgba(10, 25, 41, 0.9));
      margin: 40px 0;
      border-radius: 20px;
      position: relative;
      overflow: hidden;
    }
    
    .cta::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(0, 229, 255, 0.05) 0%, rgba(13, 71, 161, 0) 70%);
      animation: rotate 30s linear infinite;
      z-index: 0;
    }
    
    .cta-content {
      position: relative;
      z-index: 1;
    }
    
    .cta h2 {
      margin-bottom: 20px;
      font-size: 36px;
    }
    
    .cta p {
      max-width: 600px;
      margin: 0 auto 30px;
      color: #e0e0e0;
    }
    
    .btn-cta {
      background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
      color: white;
      padding: 15px 40px;
      border-radius: 50px;
      font-size: 18px;
      font-weight: bold;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      box-shadow: 0 10px 20px rgba(156, 39, 176, 0.3);
      transition: all 0.3s;
    }
    
    .btn-cta:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(156, 39, 176, 0.5);
    }
    
    .faq {
      padding: 80px 0;
    }
    
    .faq-list {
      max-width: 800px;
      margin: 0 auto;
    }
    
    .faq-item {
      margin-bottom: 20px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 15px;
      overflow: hidden;
    }
    
    .faq-question {
      padding: 20px;
      background: rgba(13, 71, 161, 0.2);
      cursor: pointer;
      font-weight: bold;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: all 0.3s;
    }
    
    .faq-question:hover {
      background: rgba(13, 71, 161, 0.3);
    }
    
    .faq-question i {
      transition: all 0.3s;
    }
    
    .faq-answer {
      padding: 0 20px;
      max-height: 0;
      overflow: hidden;
      transition: all 0.3s ease-out;
      background: rgba(10, 25, 41, 0.3);
    }
    
    .faq-item.active .faq-question {
      background: linear-gradient(to right, rgba(13, 71, 161, 0.4), rgba(0, 229, 255, 0.2));
    }
    
    .faq-item.active .faq-question i {
      transform: rotate(180deg);
    }
    
    .faq-item.active .faq-answer {
      padding: 20px;
      max-height: 1000px;
    }
    
    footer {
      background: rgba(0, 0, 0, 0.5);
      padding: 60px 0 30px;
      margin-top: 60px;
      position: relative;
      overflow: hidden;
    }
    
    footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--accent), transparent);
    }
    
    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      margin-bottom: 40px;
    }
    
    .footer-column h3 {
      font-size: 20px;
      margin-bottom: 20px;
      color: var(--accent);
    }
    
    .footer-links {
      list-style: none;
    }
    
    .footer-links li {
      margin-bottom: 10px;
    }
    
    .footer-links a {
      color: #ccc;
      text-decoration: none;
      transition: all 0.3s;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    
    .footer-links a:hover {
      color: var(--accent);
      transform: translateX(5px);
    }
    
    .footer-social {
      display: flex;
      gap: 15px;
      margin-top: 20px;
    }
    
    .social-icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-decoration: none;
      transition: all 0.3s;
    }
    
    .social-icon:hover {
      background: var(--gradient-blue);
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0, 229, 255, 0.3);
    }
    
    .footer-bottom {
      text-align: center;
      padding-top: 30px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-bottom p {
      color: #aaa;
      font-size: 14px;
    }
    
    /* Animation and effects */
    @keyframes float {
      0% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
      100% { transform: translateY(0px); }
    }
    
    .floating {
      animation: float 5s ease-in-out infinite;
    }
    
    /* Responsive */
    @media (max-width: 992px) {
      .hero h1 {
        font-size: 42px;
      }
      
      .popular-plan {
        transform: scale(1);
      }
    }
    
    @media (max-width: 768px) {
      header {
        flex-direction: column;
        gap: 20px;
        padding: 15px 0;
      }
      
      nav ul {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
      }
      
      .hero h1 {
        font-size: 36px;
      }
      
      .search-box input {
        padding: 15px 20px;
      }
      
      .search-box button {
        padding: 10px 15px;
      }
      
      .plans {
        gap: 40px;
      }
      
      .plan {
        width: 100%;
        max-width: 330px;
      }
      
      .feature-grid {
        grid-template-columns: 1fr;
      }
      
      .testimonial-cards {
        flex-direction: column;
        align-items: center;
      }
    }
    
    @media (max-width: 576px) {
      .hero h1 {
        font-size: 28px;
      }
      
      .hero p {
        font-size: 16px;
      }
      
      .logo {
        font-size: 24px;
      }
      
      .section-title {
        font-size: 28px;
      }
    }
    
    /* Animations for page load */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .animate-fadeInUp {
      animation: fadeInUp 0.6s ease-out forwards;
    }
    
    .delay-100 { animation-delay: 0.1s; }
    .delay-200 { animation-delay: 0.2s; }
    .delay-300 { animation-delay: 0.3s; }
    .delay-400 { animation-delay: 0.4s; }
    .delay-500 { animation-delay: 0.5s; }
    
    /* JavaScript enabled features */
    .faq-item {
      cursor: pointer;
    }
    
    /* Dynamic elements */
    .glow-effect {
      position: relative;
    }
    
    .glow-effect::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      border-radius: inherit;
      box-shadow: 0 0 20px var(--accent);
      opacity: 0;
      transition: opacity 0.3s;
    }
    
    .glow-effect:hover::after {
      opacity: 1;
    }
  