@import "Vazirmatn-font-face.css";
@import "all.css";
 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Vazirmatn', system-ui, -apple-system, sans-serif;
      background-color: #0a0c10;
      color: #eef2ff;
      line-height: 1.5;
      overflow-x: hidden;
    }

    html {
      scroll-behavior: smooth;
    }

    .container {
      width: 100%;
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
    }

    @media (max-width: 640px) {
      .container {
        padding: 0 16px;
      }
    }

    .code-bold {
      font-weight: 800;
      background: linear-gradient(135deg, #38bdf8, #a78bfa);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      display: inline-block;
      letter-spacing: -0.3px;
    }

    .badge-code {
      background: rgba(56, 189, 248, 0.12);
      border: 1px solid rgba(56, 189, 248, 0.3);
      border-radius: 40px;
      padding: 4px 14px;
      font-size: 0.75rem;
      font-weight: 600;
      font-family: monospace;
      backdrop-filter: blur(2px);
      white-space: nowrap;
    }

    @media (max-width: 480px) {
      .badge-code {
        white-space: normal;
        font-size: 0.7rem;
        padding: 4px 10px;
      }
    }

    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      backdrop-filter: blur(16px);
      background: rgba(10, 12, 16, 0.85);
      border-bottom: 1px solid rgba(56, 189, 248, 0.2);
      z-index: 1000;
      padding: 14px 0;
    }

    .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
    }

    .logo {
      font-size: 1.6rem;
      font-weight: 800;
      letter-spacing: -1px;
    }

    @media (max-width: 640px) {
      .logo {
        font-size: 1.4rem;
      }
    }

    .logo span {
      background: linear-gradient(125deg, #2dd4bf, #3b82f6);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
    }

    .nav-links {
      display: flex;
      gap: 20px;
      align-items: center;
      flex-wrap: wrap;
    }

    @media (max-width: 640px) {
      .nav-links {
        gap: 12px;
      }
    }

    .nav-links a {
      color: #e2e8f0;
      text-decoration: none;
      font-weight: 500;
      transition: 0.2s;
      font-size: 0.9rem;
      cursor: pointer;
    }

    @media (max-width: 480px) {
      .nav-links a {
        font-size: 0.8rem;
      }
    }

    .btn-outline-light {
      border: 1px solid #38bdf8;
      padding: 6px 16px;
      border-radius: 40px;
      background: transparent;
      font-weight: 600;
      transition: 0.2s;
      font-size: 0.85rem;
      cursor: pointer;
    }

    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding-top: 100px;
      position: relative;
      overflow: hidden;
    }

    @media (max-width: 900px) {
      .hero {
        padding-top: 130px;
        padding-bottom: 60px;
      }
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
    }

    @media (max-width: 900px) {
      .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
      }
    }

    .hero-badge {
      display: inline-flex;
      background: rgba(56, 189, 248, 0.15);
      padding: 6px 16px;
      border-radius: 40px;
      margin-bottom: 24px;
      font-weight: 500;
      font-size: 0.85rem;
      backdrop-filter: blur(4px);
    }

    .hero-title {
      font-size: 3rem;
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 24px;
    }

    @media (max-width: 640px) {
      .hero-title {
        font-size: 2.2rem;
      }
    }

    @media (max-width: 480px) {
      .hero-title {
        font-size: 1.9rem;
      }
    }

    .hero-desc {
      font-size: 1.1rem;
      color: #cbd5e6;
      margin-bottom: 32px;
    }

    @media (max-width: 640px) {
      .hero-desc {
        font-size: 1rem;
      }
    }

    .btn-group {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: linear-gradient(95deg, #2b6ef0, #38bdf8);
      padding: 12px 28px;
      border-radius: 40px;
      font-weight: 700;
      color: white;
      border: none;
      cursor: pointer;
      transition: transform 0.2s, box-shadow 0.2s;
      font-size: 0.95rem;
    }

    @media (max-width: 480px) {
      .btn-primary, .btn-secondary {
        padding: 10px 20px;
        font-size: 0.85rem;
      }
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 22px -10px #2b6ef0;
    }

    .btn-secondary {
      background: transparent;
      border: 1px solid #4b5565;
      padding: 12px 28px;
      border-radius: 40px;
      font-weight: 600;
      transition: 0.2s;
      font-size: 0.95rem;
      color: #e2e8f0;
      cursor: pointer;
    }

    .btn-secondary:hover {
      border-color: #38bdf8;
      background: rgba(56, 189, 248, 0.05);
    }

    .code-panel {
      background: #0f1117;
      border-radius: 28px;
      border: 1px solid #1f2937;
      box-shadow: 0 25px 40px -12px rgba(0, 0, 0, 0.5);
      overflow: hidden;
      backdrop-filter: blur(4px);
    }

    .code-header {
      background: #1a1e26;
      padding: 12px 20px;
      display: flex;
      gap: 12px;
      border-bottom: 1px solid #2d3748;
    }

    .dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #ff5f56;
    }

    .dot.yellow {
      background: #ffbd2e;
    }

    .dot.green {
      background: #27c93f;
    }

    pre {
      padding: 20px;
      overflow-x: auto;
      font-family: 'Fira Code', 'Courier New', monospace;
      font-size: 0.8rem;
      color: #e2e8f0;
      line-height: 1.5;
    }

    @media (max-width: 640px) {
      pre {
        font-size: 0.7rem;
        padding: 16px;
      }
    }

    .keyword {
      color: #ff79c6;
    }

    .function {
      color: #50fa7b;
    }

    .string {
      color: #f1fa8c;
    }

    .section {
      padding: 80px 0;
    }

    @media (max-width: 768px) {
      .section {
        padding: 60px 0;
      }
    }

    .section-title {
      font-size: 2.2rem;
      font-weight: 800;
      text-align: center;
      margin-bottom: 16px;
    }

    @media (max-width: 640px) {
      .section-title {
        font-size: 1.8rem;
      }
    }

    .section-sub {
      text-align: center;
      color: #9ca3af;
      max-width: 700px;
      margin: 0 auto 48px auto;
      font-size: 1rem;
      padding: 0 16px;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 28px;
    }

    .feature-card {
      background: #11141c;
      border-radius: 28px;
      padding: 28px 20px;
      border: 1px solid #1f2a3a;
      transition: all 0.25s ease;
    }

    .feature-card:hover {
      border-color: #38bdf8;
      transform: translateY(-8px);
      box-shadow: 0 20px 30px -15px rgba(0, 0, 0, 0.5);
    }

    .feature-icon {
      font-size: 2.2rem;
      background: linear-gradient(145deg, #2563eb, #38bdf8);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      margin-bottom: 20px;
    }

    .feature-card h3 {
      font-size: 1.4rem;
      margin-bottom: 12px;
      font-weight: 700;
    }

    .feature-card p {
      color: #a0aec0;
      font-size: 0.95rem;
    }

    .code-tag {
      display: inline-block;
      background: #0e1622;
      font-family: monospace;
      padding: 2px 10px;
      border-radius: 20px;
      font-size: 0.7rem;
      margin-top: 16px;
      color: #60a5fa;
    }

    .solutions-showcase {
      background: radial-gradient(circle at 10% 20%, #0c0f17, #080a0f);
      border-radius: 48px;
      padding: 48px 32px;
      margin-top: 20px;
    }

    @media (max-width: 768px) {
      .solutions-showcase {
        padding: 32px 20px;
      }
    }

    .twin-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
    }

    @media (max-width: 800px) {
      .twin-grid {
        grid-template-columns: 1fr;
        gap: 28px;
      }
    }

    .solution-item {
      background: rgba(17, 24, 39, 0.6);
      border-radius: 28px;
      padding: 28px;
      backdrop-filter: blur(8px);
      border: 1px solid #2d3748;
    }

    .solution-icon {
      font-size: 2rem;
      margin-bottom: 20px;
    }

    .solution-item h3 {
      font-size: 1.6rem;
      margin-bottom: 12px;
    }

    @media (max-width: 640px) {
      .solution-item h3 {
        font-size: 1.4rem;
      }
      .solution-item {
        padding: 22px;
      }
    }

    .coding-spirit {
      background: #0a0d14;
      border-radius: 32px;
      padding: 40px 24px;
      text-align: center;
      border: 1px dashed #38bdf8;
    }

    @media (max-width: 640px) {
      .coding-spirit {
        padding: 32px 16px;
      }
    }

    footer {
      background: #05070a;
      padding: 48px 0 32px;
      border-top: 1px solid #1a202c;
      margin-top: 40px;
    }

    .footer-flex {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 40px;
    }

    @media (max-width: 768px) {
      .footer-flex {
        flex-direction: column;
        gap: 32px;
        text-align: center;
        align-items: center;
      }
    }

    .fade-up {
      opacity: 0;
      transform: translateY(25px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 900px) {
      .hero-left, .hero-right {
        text-align: center;
      }
      .btn-group {
        justify-content: center;
      }
      .hero-badge {
        margin-left: auto;
        margin-right: auto;
      }
    }

    .hero-left {
      display: flex;
      flex-direction: column;
    }

    @media (max-width: 900px) {
      .hero-left {
        align-items: center;
        text-align: center;
      }
    }

    .badge-group {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .contact-box {
      background: linear-gradient(135deg, #0b1120 0%, #0f172a 100%);
      border-radius: 48px;
      padding: 56px 32px;
      text-align: center;
      border: 1px solid rgba(56, 189, 248, 0.3);
      box-shadow: 0 25px 40px -12px rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(2px);
    }

    @media (max-width: 640px) {
      .contact-box {
        padding: 40px 20px;
      }
      .contact-box h2 {
        font-size: 1.8rem;
      }
    }

    .contact-info-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 32px;
      margin: 48px 0 32px;
    }

    .contact-card {
      background: rgba(20, 30, 45, 0.6);
      backdrop-filter: blur(8px);
      border-radius: 32px;
      padding: 28px 32px;
      min-width: 240px;
      border: 1px solid #2d3a5e;
      transition: 0.2s;
    }

    .contact-card:hover {
      border-color: #38bdf8;
      transform: translateY(-5px);
    }

    .contact-icon {
      font-size: 2.5rem;
      background: linear-gradient(145deg, #38bdf8, #818cf8);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      margin-bottom: 16px;
    }

    .contact-value {
      font-size: 1.4rem;
      font-weight: 700;
      letter-spacing: 1px;
      direction: ltr;
      font-family: monospace;
    }

    @media (max-width: 640px) {
      .contact-value {
        font-size: 1.1rem;
      }
      .contact-card {
        padding: 20px 24px;
        min-width: 200px;
      }
    }

    .copy-btn {
      background: rgba(56, 189, 248, 0.1);
      border: 1px solid #38bdf8;
      padding: 8px 20px;
      border-radius: 40px;
      font-size: 0.8rem;
      font-weight: 500;
      margin-top: 16px;
      cursor: pointer;
      transition: 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: #e2e8f0;
    }

    .copy-btn:hover {
      background: #38bdf8;
      color: #0a0c10;
    }

    .toast-msg {
      position: fixed;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      background: #1e293b;
      color: #38bdf8;
      padding: 10px 24px;
      border-radius: 60px;
      font-size: 0.85rem;
      z-index: 1100;
      border: 1px solid #38bdf8;
      backdrop-filter: blur(8px);
      opacity: 0;
      transition: opacity 0.3s;
      pointer-events: none;
    }
