/** Shopify CDN: Minification failed

Line 333:4 Expected ":"

**/
/* 
  NxGenAI Solutions - Main Theme Stylesheet
  Converted for Shopify
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.7;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
}

/* Section Spacing */
.section {
  padding: 80px 0;
}

/* Typography Utilities */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.section-subtitle {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px auto;
  color: #666;
}

/* Shadow Utility */
.shadow {
  box-shadow: var(--shadow);
}

/* Responsive Images */
img {
  max-width: 100%;
  height: auto;
}

/* Rich Text Editor Styles */
.rte {
  line-height: 1.7;
}

.rte p {
  margin-bottom: 15px;
}

.rte ul,
.rte ol {
  margin-left: 20px;
  margin-bottom: 15px;
}

.rte a {
  color: var(--secondary-color);
  text-decoration: underline;
}

.rte a:hover {
  color: var(--accent-color);
}

/* Buttons */
.btn,
button[type="submit"] {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--accent-color);
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}

.btn:hover,
button[type="submit"]:hover {
  background-color: var(--secondary-color);
  color: white;
  transform: translateY(-2px);
}

/* Code Snippet Syntax Highlighting */
.code-snippet .comment { color: #888; }
.code-snippet .keyword { color: #f92672; }
.code-snippet .function { color: #a6e22e; }
.code-snippet .string { color: #e6db74; }
.code-snippet .class-name { color: #66d9ef; }
.code-snippet .decorator { color: #fd971f; }

/* Shopify-specific: Sticky Header */
.shopify-section-header-sticky {
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Customer Account */
.customer-account-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Accessibility */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Skip to content link */
.skip-to-content {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 10px 20px;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
}

.skip-to-content:focus {
  left: 0;
}

/* Loading States */
.loading {
  opacity: 0.5;
  pointer-events: none;
}

/* Cards & Shadows */
.card {
  background: var(--card-bg);
  border-radius: 8px;
  padding: 20px;
  box-shadow: var(--shadow);
}

/* Responsive Typography */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section {
    padding: 60px 0;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .footer,
  .cta-button,
  button {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* Links */
a {
  color: var(--secondary-color);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-color);
}

/* Lists */
ul, ol {
  line-height: 1.8;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

table th,
table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

table th {
  background-color: var(--primary-color);
  color: white;
  font-weight: 600;
}

/* Forms */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea,
select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--accent-color);
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-color);
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }

.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }

.pt-1 { padding-top: 10px; }
.pt-2 { padding-top: 20px; }
.pt-3 { padding-top: 30px; }
.pt-4 { padding-top: 40px; }

.pb-1 { padding-bottom: 10px; }
.pb-2 { padding-bottom: 20px; }
.pb-3 { padding-bottom: 30px; }
.pb-4 { padding-bottom: 40px; }

/* Shopify Specific */
.shopify-payment-button {
  ma