@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap');

:root {
  --primary-purple: #220537;
  --secondary-purple: #1a032a;
  --accent-purple: #350753;
  --light-purple: #4a1a5f;
  --orange-accent: #ff7700;
  --gradient-bg: linear-gradient(135deg, #220537 0%, #1a032a 100%);
  --text-light: #ffffff;
  --text-dark: #333333;
  --border-light: #e5e7eb;
  --bg-light: #f8fafc;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

/* Particles Background */
#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--gradient-bg);
  z-index: -1;
}

/* Header & Navigation */
.header {
  background: var(--gradient-bg);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(34, 5, 55, 0.1);
}

.nav-container {
  width: 100%;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  position: relative;
  z-index: 1001;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-light);
  text-decoration: none;
}

.logo img {
  height: 32px;
  margin-right: 12px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-menu a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--orange-accent);
}

.login-btn {
  background: var(--orange-accent);
  color: white;
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.login-btn:hover {
  background: #e66a00;
  transform: translateY(-1px);
}

/* Partners Banner */
.partners-banner {
  background: var(--bg-light);
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.partners-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.partners-text {
  font-size: 16px;
  color: var(--text-dark);
  font-weight: 500;
  opacity: 0.8;
}

.partners-logos {
  display: flex;
  align-items: center;
  gap: 60px;
}

.partner-logo {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  opacity: 0.9;
  padding: 12px 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  background: white;
}

/* Hero Section */
.hero {
  background: transparent;
  padding: 40px 0 20px;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.hero-container {
  width: 100%;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 20px;
  opacity: 0.9;
  position: relative;
  z-index: 2;
}

.hero-form {
  background: rgba(255, 255, 255, 0.95);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 3;
  margin-top: 16px;
  max-width: 350px;
}

.hero-form h3 {
  color: var(--primary-purple);
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 600;
}

.form-group {
  margin-bottom: 10px;
}

.form-group input {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  font-size: 13px;
  transition: border-color 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--orange-accent);
}

.submit-btn {
  width: 100%;
  background: var(--orange-accent);
  color: white;
  padding: 8px;
  border: none;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: #e66a00;
  transform: translateY(-1px);
}

.hero-image {
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-image img {
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 0 3px rgba(128, 128, 128, 0.3);
  border: 3px solid #e5e7eb;
}

/* Services Overview */
.services-overview {
  padding: 40px 0;
  background: white;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-purple);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 18px;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.service-card {
  background: white;
  padding: 40px 32px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(34, 5, 55, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(34, 5, 55, 0.15);
  border-color: var(--orange-accent);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon i {
  font-size: 24px;
  color: white;
}

.service-card h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-purple);
  margin-bottom: 16px;
}

.service-card p {
  color: #6b7280;
  line-height: 1.6;
}

/* Platform Comparison */
.platform-comparison {
  padding: 40px 0;
  background: var(--bg-light);
}

/* Workflow Styles */
.workflow-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 40px 0;
  padding: 30px 20px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.workflow-step {
  flex: 1;
  min-width: 200px;
  max-width: 220px;
  text-align: center;
  padding: 30px 20px;
  background: white;
  border-radius: 12px;
  border: 2px solid #f3f4f6;
  transition: all 0.3s ease;
  position: relative;
}

.workflow-step:hover {
  border-color: var(--orange-accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(34, 5, 55, 0.1);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background: var(--orange-accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.step-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto 20px;
}

.step-icon i {
  font-size: 24px;
  color: white;
}

.workflow-step h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-purple);
  margin-bottom: 12px;
}

.workflow-step p {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.5;
}

.workflow-arrow {
  color: var(--orange-accent);
  font-size: 24px;
  flex-shrink: 0;
}

.workflow-image {
  text-align: center;
  margin-top: 40px;
}

.workflow-image img {
  max-width: 100%;
  width: 800px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.comparison-table {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  max-width: 800px;
  margin: 0 auto;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th {
  background: var(--primary-purple);
  color: white;
  padding: 20px;
  font-weight: 600;
  text-align: left;
}

.comparison-table td {
  padding: 16px 20px;
  border-bottom: 1px solid #e5e7eb;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.check-mark {
  color: #10b981;
  font-size: 18px;
}

.x-mark {
  color: #ef4444;
  font-size: 18px;
}

/* Service Details */
.service-details {
  padding: 40px 0;
  background: white;
}

.service-section {
  margin-bottom: 40px;
}

.service-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-content:nth-child(even) {
  direction: rtl;
}

.service-content:nth-child(even) > * {
  direction: ltr;
}

.service-text h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-purple);
  margin-bottom: 16px;
}

.service-text h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-purple);
  margin-bottom: 12px;
}

.service-text p {
  color: #6b7280;
  margin-bottom: 20px;
}

.service-text ul {
  list-style: none;
  margin-bottom: 20px;
}

.service-text li {
  color: #6b7280;
  margin-bottom: 8px;
  padding-left: 24px;
  position: relative;
}

.service-text li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange-accent);
  font-weight: bold;
}

.service-image {
  text-align: center;
}

.service-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about {
  padding: 40px 0;
  background: var(--bg-light);
}

.about-content {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: start;
}

.about-image {
  text-align: center;
}

.about-image img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
}

.about-image p {
  color: #6b7280;
  font-style: italic;
}

.about-text {
  font-size: 16px;
  line-height: 1.8;
  color: #4b5563;
}

.about-text p {
  margin-bottom: 20px;
}

/* Footer */
.footer {
  background: var(--primary-purple);
  color: var(--text-light);
  padding: 40px 0;
  text-align: center;
}

.footer p {
  margin-bottom: 8px;
}

.footer a {
  color: var(--orange-accent);
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .service-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Workflow Responsive */
  .workflow-container {
    flex-direction: column;
    gap: 30px;
    padding: 30px 15px;
  }

  .workflow-step {
    max-width: 100%;
    min-width: 280px;
  }

  .workflow-arrow {
    transform: rotate(90deg);
    font-size: 20px;
  }

  .workflow-image img {
    width: 100%;
    max-width: 400px;
  }

  /* Partners Banner Responsive */
  .partners-container {
    padding: 0 20px;
    flex-direction: column;
    gap: 10px;
  }

  .partners-logos {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .partner-logo {
    font-size: 12px;
  }
}

/* Blog Styles */
.blog-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
}

.blog-header {
  text-align: center;
  margin-bottom: 60px;
}

.blog-header h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-purple);
  margin-bottom: 16px;
}

.blog-header p {
  font-size: 18px;
  color: #6b7280;
}

.blog-post {
  background: white;
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.blog-post:hover {
  transform: translateY(-2px);
}

.blog-post h2 {
  font-size: 28px;
  font-weight: 600;
  color: var(--primary-purple);
  margin-bottom: 16px;
}

.blog-post .meta {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 20px;
}

.blog-post p {
  color: #4b5563;
  margin-bottom: 20px;
  line-height: 1.7;
}

.blog-post .read-more {
  color: var(--orange-accent);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
}

.blog-post .read-more:hover {
  text-decoration: underline;
}

/* Blog Responsive */
@media (max-width: 768px) {
  .blog-container {
    padding: 40px 20px;
  }

  .blog-header h1 {
    font-size: 36px;
  }

  .blog-post {
    padding: 30px 20px;
  }
}

/* Blog Post Specific Styles */
.blog-post-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
}

.breadcrumb {
  margin-bottom: 30px;
  font-size: 14px;
  color: #6b7280;
}

.breadcrumb a {
  color: var(--orange-accent);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.post-header {
  margin-bottom: 40px;
}

.post-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-purple);
  margin-bottom: 16px;
  line-height: 1.2;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  font-size: 14px;
  color: #6b7280;
}

.post-meta i {
  margin-right: 5px;
}

.post-content {
  background: white;
  border-radius: 12px;
  padding: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}

.post-content h2 {
  font-size: 28px;
  font-weight: 600;
  color: var(--primary-purple);
  margin: 40px 0 20px 0;
}

.post-content h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--primary-purple);
  margin: 30px 0 15px 0;
}

.post-content p {
  color: #4b5563;
  margin-bottom: 20px;
  line-height: 1.7;
  font-size: 16px;
}

.post-content ul, .post-content ol {
  margin: 20px 0;
  padding-left: 20px;
}

.post-content li {
  color: #4b5563;
  margin-bottom: 10px;
  line-height: 1.6;
}

.highlight-box {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border-left: 4px solid var(--orange-accent);
  padding: 20px;
  margin: 30px 0;
  border-radius: 8px;
}

.highlight-box h4 {
  color: var(--primary-purple);
  margin-bottom: 10px;
  font-weight: 600;
}

.code-block {
  background: #1f2937;
  color: #f9fafb;
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  overflow-x: auto;
}

.image-caption {
  text-align: center;
  font-size: 14px;
  color: #6b7280;
  margin-top: 10px;
  font-style: italic;
}

.tags {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}

.tag {
  background: var(--light-purple);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

/* Author Section */
.author-section {
  background: white;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.author-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 20px;
}

.author-details h4 {
  color: var(--primary-purple);
  margin-bottom: 5px;
}

.author-details p {
  color: #6b7280;
  font-size: 14px;
}

/* Related Posts */
.related-posts {
  margin-top: 60px;
}

.related-posts h3 {
  font-size: 24px;
  color: var(--primary-purple);
  margin-bottom: 30px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.related-post {
  background: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.related-post:hover {
  transform: translateY(-2px);
}

.related-post h4 {
  color: var(--primary-purple);
  margin-bottom: 10px;
  font-size: 16px;
}

.related-post p {
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 10px;
}

.related-post a {
  color: var(--orange-accent);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

/* Blog Post Responsive */
@media (max-width: 768px) {
  .blog-post-container {
    padding: 40px 20px;
  }

  .post-title {
    font-size: 36px;
  }

  .post-content {
    padding: 30px 20px;
  }

  .post-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .author-info {
    flex-direction: column;
    text-align: center;
  }
} 