  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
    body { font-family: 'Inter', sans-serif; }

    .gradient-bg { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }

    .slide { display: none; animation: fadeIn 0.5s; }
    .slide.active { display: block; }

    @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

    .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
    .faq-answer.open { max-height: 500px; }

    .api-card { transition: all 0.3s ease; }
    .api-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    }

    /* ✅ Modal Styles */
    .modal-overlay {
      position: fixed; top: 0; left: 0;
      width: 100%; height: 100%;
      background-color: rgba(0, 0, 0, 0.7);
      display: flex; justify-content: center; align-items: center;
      z-index: 1000; padding: 20px;
    }
    .modal-content {
      background-color: white;
      border-radius: 10px;
      width: 90%; max-width: 800px; max-height: 90vh;
      overflow: hidden; box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }
    .modal-header {
      padding: 20px; border-bottom: 1px solid #e5e7eb;
      display: flex; justify-content: space-between; align-items: center;
    }
    .modal-body {
      padding: 20px; overflow-y: auto;
      max-height: calc(90vh - 120px);
    }
    .modal-body pre {
      background-color: #f8f9fa; padding: 15px;
      border-radius: 5px; overflow-x: auto;
      font-size: 14px; line-height: 1.4;
    }
    .close-btn {
      background: none; border: none; font-size: 24px;
      cursor: pointer; color: #6b7280;
    }
    .close-btn:hover { color: #374151; }

    /* ✅ Blogs Section */
    .blog-card { transition: all 0.3s ease; border-radius: 10px; overflow: hidden; }
    .blog-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }
    .blog-image { height: 200px; object-fit: cover; width: 100%; }
    .blog-content { padding: 20px; }
    .blog-tag {
      display: inline-block; background-color: #e9d5ff;
      color: #7c3aed; padding: 4px 10px; border-radius: 20px;
      font-size: 12px; font-weight: 600; margin-bottom: 10px;
    }
    .blog-title { font-size: 18px; font-weight: 700; margin-bottom: 10px; line-height: 1.3; }
    .blog-excerpt { color: #6b7280; font-size: 14px; line-height: 1.5; margin-bottom: 15px; }
    .blog-meta { display: flex; align-items: center; color: #9ca3af; font-size: 13px; }
    .blog-author { margin-right: 15px; display: flex; align-items: center; }
    .blog-date { display: flex; align-items: center; }
    .blog-author i, .blog-date i { margin-right: 5px; }