/* arabic */
@font-face {
  font-family: 'Vazirmatn';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(/assets/fonts/vazirmatn.woff2) format('woff2');
  unicode-range: U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0897-08E1, U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF, U+FE70-FE74, U+FE76-FEFC, U+102E0-102FB, U+10E60-10E7E, U+10EC2-10EC4, U+10EFC-10EFF, U+1EE00-1EE03, U+1EE05-1EE1F, U+1EE21-1EE22, U+1EE24, U+1EE27, U+1EE29-1EE32, U+1EE34-1EE37, U+1EE39, U+1EE3B, U+1EE42, U+1EE47, U+1EE49, U+1EE4B, U+1EE4D-1EE4F, U+1EE51-1EE52, U+1EE54, U+1EE57, U+1EE59, U+1EE5B, U+1EE5D, U+1EE5F, U+1EE61-1EE62, U+1EE64, U+1EE67-1EE6A, U+1EE6C-1EE72, U+1EE74-1EE77, U+1EE79-1EE7C, U+1EE7E, U+1EE80-1EE89, U+1EE8B-1EE9B, U+1EEA1-1EEA3, U+1EEA5-1EEA9, U+1EEAB-1EEBB, U+1EEF0-1EEF1;
}

    :root {
      --primary: #0f172a;
      --primary-2: #1e293b;
      --secondary: #0ea5a4;
      --secondary-soft: #ccfbf1;
      --accent: #ff9f1c;
      --accent-2: #ffb703;
      --bg: #f8fafc;
      --card: #ffffff;
      --text: #0f172a;
      --muted: #475569;
      --border: #e2e8f0;
      --success: #16a34a;
      --shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
      --radius: 24px;
      --radius-sm: 16px;
      --transition: all 0.3s ease;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Vazirmatn", sans-serif !important;
      background: var(--bg);
      color: var(--text);
      line-height: 1.9;
      overflow-x: hidden;
    }

    a {
      text-decoration: none;
      transition: var(--transition);
    }

    img {
      max-width: 100%;
      display: block;
    }

    .section-padding {
      padding: 72px 0;
    }

    .section-title {
      font-weight: 900;
      font-size: clamp(1.6rem, 5vw, 2.5rem);
      line-height: 1.4;
      margin-bottom: 14px;
      color: var(--primary);
    }

    .section-subtitle {
      color: var(--muted);
      font-size: 1rem;
      max-width: 760px;
      margin: 0 auto;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(14, 165, 164, 0.1);
      color: var(--secondary);
      border: 1px solid rgba(14, 165, 164, 0.18);
      padding: 8px 14px;
      border-radius: 999px;
      font-size: 0.85rem;
      font-weight: 700;
      margin-bottom: 16px;
    }

    .btn {
      border-radius: 16px;
      padding: 14px 20px;
      font-weight: 700;
      font-size: 0.98rem;
      transition: var(--transition);
      box-shadow: none;
      text-decoration: none;
    }

    .btn-primary-custom {
      background: linear-gradient(135deg, var(--accent), var(--accent-2));
      color: #1f2937;
      border: none;
    }

    .btn-primary-custom:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 30px rgba(255, 159, 28, 0.28);
      color: #111827;
    }

    .btn-outline-custom {
      border: 1.5px solid rgba(255, 255, 255, 0.28);
      color: #fff;
      background: rgba(255, 255, 255, 0.06);
      backdrop-filter: blur(10px);
    }

    .btn-outline-custom:hover {
      background: rgba(255, 255, 255, 0.14);
      color: #fff;
    }

    .btn-soft {
      background: #fff;
      color: var(--primary);
      border: 1px solid var(--border);
    }

    .btn-soft:hover {
      border-color: var(--secondary);
      color: var(--secondary);
      transform: translateY(-2px);
    }

    .navbar {
      padding: 14px 0;
      transition: var(--transition);
      background: transparent;
    }

    .navbar.scrolled {
      background: rgba(15, 23, 42, 0.9);
      backdrop-filter: blur(14px);
      box-shadow: 0 10px 30px rgba(2, 6, 23, 0.18);
    }

    .navbar-brand {
      color: #fff;
      font-weight: 900;
      letter-spacing: -0.3px;
      font-size: 1rem;
    }

    .navbar-brand:hover,
    .navbar .nav-link:hover,
    .navbar .nav-link:focus {
      color: #fff;
    }

    .navbar .nav-link {
      color: rgba(255, 255, 255, 0.88);
      font-weight: 500;
      font-size: 0.95rem;
      padding: 10px 12px;
    }

    .navbar-toggler {
      border: none;
      box-shadow: none !important;
    }

    .navbar-toggler i {
      color: #fff;
      font-size: 1.2rem;
    }

    .hero {
      position: relative;
      background:
        radial-gradient(circle at top right, rgba(14, 165, 164, 0.2), transparent 30%),
        radial-gradient(circle at bottom left, rgba(255, 159, 28, 0.15), transparent 25%),
        linear-gradient(135deg, #0f172a 0%, #172554 52%, #0f172a 100%);
      color: #fff;
      padding: 110px 0 72px;
      overflow: hidden;
    }

    .hero::before,
    .hero::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      filter: blur(60px);
      opacity: 0.35;
      pointer-events: none;
    }

    .hero::before {
      width: 220px;
      height: 220px;
      top: 5%;
      left: -60px;
      background: #22d3ee;
    }

    .hero::after {
      width: 180px;
      height: 180px;
      bottom: 8%;
      right: -50px;
      background: #f59e0b;
    }

    .hero-title {
      font-size: clamp(2rem, 7vw, 4rem);
      font-weight: 900;
      line-height: 1.35;
      margin-bottom: 16px;
    }

    .hero-subtitle {
      color: rgba(255, 255, 255, 0.86);
      font-size: 1rem;
      margin-bottom: 26px;
    }

    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 24px;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 14px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: #fff;
      font-size: 0.88rem;
      font-weight: 600;
    }

    .hero-card {
      position: relative;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.14);
      backdrop-filter: blur(14px);
      border-radius: 28px;
      box-shadow: 0 24px 60px rgba(2, 6, 23, 0.28);
      overflow: hidden;
      padding: 18px;
    }

    .hero-card-top {
      display: flex;
      gap: 8px;
      margin-bottom: 16px;
    }

    .hero-card-top span {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      display: inline-block;
    }

    .dot-red { background: #fb7185; }
    .dot-yellow { background: #fbbf24; }
    .dot-green { background: #34d399; }

    .hero-visual {
      background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
      border-radius: 22px;
      padding: 20px;
      color: var(--primary);
    }

    .mini-stat-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
      margin-top: 18px;
    }

    .mini-stat {
      background: #fff;
      border-radius: 18px;
      padding: 16px;
      box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
      border: 1px solid rgba(148, 163, 184, 0.15);
    }

    .mini-stat strong {
      display: block;
      font-size: 1.2rem;
      color: var(--primary);
      margin-bottom: 4px;
    }

    .mini-stat span {
      color: var(--muted);
      font-size: 0.88rem;
    }

    .quick-trust {
      margin-top: 28px;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .quick-trust-item {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 18px;
      padding: 14px;
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.92);
    }

    .card-ui {
      background: var(--card);
      border: 1px solid rgba(148, 163, 184, 0.16);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 24px;
      height: 100%;
    }

    .icon-box {
      width: 58px;
      height: 58px;
      border-radius: 18px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, rgba(14, 165, 164, 0.12), rgba(14, 165, 164, 0.22));
      color: var(--secondary);
      font-size: 1.4rem;
      margin-bottom: 16px;
    }

    .feature-card h3,
    .benefit-card h3,
    .audience-card h3,
    .testimonial-card h3,
    .mentor-card h3,
    .video-card h3 {
      font-size: 1.12rem;
      font-weight: 800;
      margin-bottom: 10px;
      color: var(--primary);
    }

    .feature-card p,
    .benefit-card p,
    .audience-card p,
    .testimonial-card p,
    .mentor-card p,
    .video-card p,
    .course-copy,
    .faq-copy {
      color: var(--muted);
      margin-bottom: 0;
    }

    .split-highlight {
      background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    }

    .check-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .check-list li {
      position: relative;
      padding-right: 34px;
      margin-bottom: 14px;
      color: var(--muted);
    }

    .check-list li::before {
      content: "\f058";
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      position: absolute;
      right: 0;
      top: 2px;
      color: var(--success);
    }

    .python-django-box {
      background: linear-gradient(135deg, #ecfeff 0%, #ffffff 100%);
      border: 1px solid rgba(14, 165, 164, 0.14);
      border-radius: 24px;
      padding: 22px;
      height: 100%;
    }

    .stack-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 14px;
      border-radius: 999px;
      background: #fff;
      border: 1px solid var(--border);
      color: var(--primary);
      font-size: 0.9rem;
      font-weight: 700;
      margin: 0 0 10px 10px;
    }

    .syllabus-wrap {
      background: linear-gradient(135deg, #0f172a 0%, #16213e 100%);
      color: #fff;
      border-radius: 28px;
      padding: 28px;
      box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
    }

    .syllabus-item {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 18px;
      padding: 16px;
      display: flex;
      align-items: start;
      gap: 12px;
      height: 100%;
    }

    .syllabus-index {
      flex: 0 0 38px;
      width: 38px;
      height: 38px;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--accent), var(--accent-2));
      color: #111827;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      font-size: 0.95rem;
    }

    .result-banner {
      background: linear-gradient(135deg, #082f49, #0f766e);
      color: #fff;
      border-radius: 28px;
      padding: 28px;
      overflow: hidden;
      position: relative;
    }

    .result-banner::after {
      content: "";
      position: absolute;
      inset: auto -60px -60px auto;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
    }

    .audience-card,
    .benefit-card,
    .feature-card,
    .testimonial-card,
    .video-card,
    .mentor-card {
      transition: var(--transition);
    }

    .audience-card:hover,
    .benefit-card:hover,
    .feature-card:hover,
    .testimonial-card:hover,
    .video-card:hover,
    .mentor-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 50px rgba(15, 23, 42, 0.1);
    }

    .testimonial-meta {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
    }

    .avatar {
      width: 58px;
      height: 58px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid #fff;
      box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
    }

    .rating {
      color: #f59e0b;
      font-size: 0.9rem;
      margin-top: 6px;
    }

    .video-card {
      overflow: hidden;
      padding: 0;
    }

    .video-thumb {
      position: relative;
      min-height: 240px;
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: end;
      padding: 20px;
      isolation: isolate;
    }

    .video-thumb::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(15, 23, 42, 0.1), rgba(15, 23, 42, 0.72));
      z-index: -1;
    }

    .play-btn {
      position: absolute;
      top: 18px;
      left: 18px;
      width: 58px;
      height: 58px;
      border: none;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.92);
      color: var(--primary);
      box-shadow: 0 12px 30px rgba(15, 23, 42, 0.18);
      font-size: 1rem;
    }

    .video-info {
      color: #fff;
    }

    .video-info span {
      color: rgba(255, 255, 255, 0.78);
      font-size: 0.9rem;
    }

    .mentor-photo {
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
      border: 1px solid rgba(148, 163, 184, 0.16);
    }

    .mentor-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 18px;
    }

    .mentor-badge {
      padding: 10px 14px;
      border-radius: 999px;
      background: #fff;
      border: 1px solid var(--border);
      color: var(--primary);
      font-weight: 700;
      font-size: 0.88rem;
    }

    .cta-band {
      background: linear-gradient(135deg, #111827 0%, #1d4ed8 100%);
      color: #fff;
      border-radius: 30px;
      padding: 28px;
      box-shadow: 0 24px 50px rgba(29, 78, 216, 0.18);
    }

    .form-panel {
      background: #fff;
      border-radius: 28px;
      padding: 24px;
      box-shadow: var(--shadow);
      border: 1px solid rgba(148, 163, 184, 0.16);
    }

    .form-control,
    .form-select {
      border-radius: 14px;
      border: 1px solid #dbe3ef;
      padding: 13px 14px;
      min-height: 52px;
      font-size: 0.95rem;
      box-shadow: none !important;
    }

    .form-control:focus,
    .form-select:focus {
      border-color: var(--secondary);
    }

    .form-note {
      font-size: 0.85rem;
      color: var(--muted);
    }

    .advantage-box {
      background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 20px;
      height: 100%;
    }

    .accordion-item {
      border: 1px solid var(--border);
      border-radius: 18px !important;
      overflow: hidden;
      margin-bottom: 12px;
      box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
    }

    .accordion-button {
      font-weight: 700;
      padding: 18px 20px;
      box-shadow: none !important;
      background: #fff;
    }

    .accordion-button:not(.collapsed) {
      color: var(--primary);
      background: #f8fafc;
    }

    .accordion-body {
      color: var(--muted);
      padding-top: 0;
    }

    .footer {
      background: #0f172a;
      color: rgba(255, 255, 255, 0.82);
      padding: 56px 0 100px;
    }

    .footer a {
      color: rgba(255, 255, 255, 0.82);
      text-decoration: none;
    }

    .footer a:hover {
      color: #fff;
      text-decoration: none;
    }

    .footer-title {
      font-size: 1.08rem;
      color: #fff;
      font-weight: 800;
      margin-bottom: 16px;
    }

    .social-links {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .social-links a {
      width: 42px;
      height: 42px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.08);
    }

    .floating-call {
      position: fixed;
      left: 18px;
      bottom: 92px;
      z-index: 1040;
      width: 58px;
      height: 58px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #10b981, #059669);
      color: #fff;
      box-shadow: 0 18px 34px rgba(5, 150, 105, 0.3);
      animation: pulse 2.2s infinite;
    }

    @keyframes pulse {
      0% { box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.45); }
      70% { box-shadow: 0 0 0 14px rgba(5, 150, 105, 0); }
      100% { box-shadow: 0 0 0 0 rgba(5, 150, 105, 0); }
    }

    .bottom-sticky-bar {
      position: fixed;
      right: 0;
      left: 0;
      bottom: 0;
      z-index: 1050;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(14px);
      border-top: 1px solid rgba(148, 163, 184, 0.2);
      padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
      box-shadow: 0 -10px 30px rgba(15, 23, 42, 0.08);
    }

    .bottom-sticky-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 8px;
    }

    .sticky-action {
      border-radius: 14px;
      padding: 12px 10px;
      text-align: center;
      font-size: 0.84rem;
      font-weight: 800;
      border: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .sticky-call {
      background: #e8fff5;
      color: #047857;
    }

    .sticky-consult {
      background: linear-gradient(135deg, var(--accent), var(--accent-2));
      color: #1f2937;
    }

    .sticky-brochure {
      background: #eff6ff;
      color: #1d4ed8;
    }

    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.active {
      opacity: 1;
      transform: translateY(0);
    }

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

      .hero {
        padding: 132px 0 90px;
      }

      .quick-trust {
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }

      .bottom-sticky-bar {
        display: none;
      }
    }

    @media (max-width: 991.98px) {
      .navbar-collapse {
        background: rgba(15, 23, 42, 0.96);
        border: 1px solid rgba(255, 255, 255, 0.08);
        padding: 16px;
        margin-top: 12px;
        border-radius: 20px;
      }
    }

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

      .hero-title {
        font-size: 2rem;
      }

      .hero-card {
        margin-top: 24px;
      }

      .btn {
        width: 100%;
      }

      .cta-stack-mobile {
        display: grid;
        gap: 12px;
      }

      .floating-call {
        bottom: 88px;
      }

      .footer {
        padding-bottom: 110px;
      }
    }
