body {
font-family: 'Fira Code', monospace;
color: var(--light);
overflow-x: hidden;
line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
font-family: 'Orbitron', sans-serif;
font-weight: 700;
}

.section {
min-height: 100vh;
position: relative;
overflow: hidden;
padding: 100px 0;
}

.canvas-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
}

/* Navigation */
.navbar {
background: rgba(10, 14, 23, 0.9);
backdrop-filter: blur(10px);
border-bottom: 1px solid var(--glass-border);
padding: 15px 0;
transition: all 0.3s ease;
z-index: 1000;
}

.navbar-brand,.change-color-h5 {
font-family: 'Orbitron', sans-serif !important;
font-weight: 800 !important;
font-size: 1.8rem !important;
background: linear-gradient(90deg, var(--primary), var(--secondary)) !important;
-webkit-background-clip: text !important;
background-clip: text !important;
color: transparent !important;
text-shadow: 0 0 20px rgba(0, 255, 204, 0.3) !important;
}

.nav-link {
color: var(--light) !important;
font-weight: 500;
margin: 0 10px;
transition: all 0.3s ease;
position: relative;
}

.nav-link:hover {
color: var(--primary) !important;
}

.nav-link::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background: var(--primary);
transition: width 0.3s ease;
}

.nav-link:hover::after {
width: 100%;
}

.btn-primary {
background: linear-gradient(135deg, var(--primary), var(--secondary));
border: none;
border-radius: 30px;
padding: 12px 30px;
font-weight: 600;
letter-spacing: 1px;
transition: all 0.3s ease;
box-shadow: 0 5px 15px rgba(0, 245, 160, 0.3);
}

.btn-primary:hover {
transform: translateY(-3px);
box-shadow: 0 8px 20px rgba(0, 245, 160, 0.4);
}

/* Hero Section - FIXED CENTERING */
.hero {
display: flex;
align-items: center;
justify-content: center;
text-align: center;
position: relative;
min-height: 100vh;
}

.hero-content {
z-index: 10;
max-width: 900px;
padding: 0 20px;
margin:auto;
}

.hero h1 {
font-size: 4rem;
margin-bottom: 20px;
background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
text-shadow: 0 5px 15px rgba(0, 245, 160, 0.3);
}

.hero p {
font-size: 1.2rem;
margin-bottom: 30px;
color: #b0b7c3;
}

.typing-text {
font-family: 'Fira Code', monospace;
color: var(--primary);
border-right: 2px solid var(--primary);
padding-right: 5px;
animation: blink 1s infinite;
}

@keyframes blink {
0%, 100% { border-color: var(--primary); }
50% { border-color: transparent; }
}

/* Features Section */

.section-title {
text-align: center;
margin-bottom: 70px;
}

.section-title h2 {
font-size: 2.5rem;
margin-bottom: 15px;
color: var(--light);
}

.section-title p {
color: #b0b7c3;
max-width: 600px;
margin: 0 auto;
}

.feature-card {
background: var(--glass);
border: 1px solid var(--glass-border);
border-radius: 15px;
padding: 30px;
height: 100%;
transition: all 0.3s ease;
backdrop-filter: blur(10px);
position: relative;
overflow: hidden;
}

.feature-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(0, 245, 160, 0.1), rgba(138, 125, 255, 0.1));
opacity: 0;
transition: opacity 0.3s ease;
}

.feature-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
opacity: 1;
}

.feature-icon {
font-size: 2.5rem;
margin-bottom: 20px;
color: var(--primary);
}

.feature-card h3 {
font-size: 1.5rem;
margin-bottom: 15px;
color: var(--light);
}

.feature-card p {
color: #b0b7c3;
}

/* Editor Showcase */

.editor-container {
background: var(--code-bg);
border-radius: 15px;
overflow: hidden;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
border: 1px solid var(--glass-border);
}

.editor-header {
background: #1e2230;
padding: 15px 20px;
display: flex;
align-items: center;
border-bottom: 1px solid var(--glass-border);
}

.editor-buttons {
display: flex;
gap: 8px;
}

.editor-btn {
width: 12px;
height: 12px;
border-radius: 50%;
}

.btn-red { background: #ff5f57; }
.btn-yellow { background: #ffbd2e; }
.btn-green { background: #28ca42; }

.editor-title {
margin-left: 15px;
color: #b0b7c3;
font-size: 0.9rem;
}

.editor-body {
padding: 20px;
font-family: 'Fira Code', monospace;
font-size: 0.9rem;
line-height: 1.5;
}

.code-line {
margin-bottom: 5px;
display: flex;
}

.line-number {
color: #5c6370;
margin-right: 15px;
min-width: 30px;
text-align: right;
}

.code-keyword { color: #c678dd; }
.code-function { color: #61afef; }
.code-string { color: #98c379; }
.code-comment { color: #5c6370; }
.code-operator { color: #56b6c2; }
.code-variable { color: #e06c75; }

/* Pricing Section */

.pricing-card {
background: var(--glass);
border: 1px solid var(--glass-border);
border-radius: 15px;
padding: 40px 30px;
text-align: center;
transition: all 0.3s ease;
backdrop-filter: blur(10px);
position: relative;
overflow: hidden;
}

.pricing-card.featured {
border-color: var(--primary);
transform: scale(1.05);
box-shadow: 0 15px 30px rgba(0, 245, 160, 0.2);
}

.pricing-card.featured::before {
content: 'POPULAR';
position: absolute;
top: 14px;
right: -30px;
background: var(--primary);
color: var(--dark);
padding: 5px 30px;
transform: rotate(45deg);
font-size: 0.8rem;
font-weight: 700;
}

.pricing-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured:hover {
transform: scale(1.05) translateY(-10px);
}

.price {
font-size: 3rem;
font-weight: 700;
color: var(--primary);
margin: 20px 0;
}

.price span {
font-size: 1rem;
color: #b0b7c3;
}

.pricing-features {
list-style: none;
padding: 0;
margin: 30px 0;
}

.pricing-features li {
padding: 10px 0;
border-bottom: 1px solid var(--glass-border);
color: #b0b7c3;
}

.pricing-features li:last-child {
border-bottom: none;
}

/* Testimonials */

.testimonial-card {
background: var(--glass);
border: 1px solid var(--glass-border);
border-radius: 15px;
padding: 30px;
margin: 15px;
backdrop-filter: blur(10px);
}

.testimonial-content {
position: relative;
padding-left: 30px;
}

.testimonial-content::before {
content: '"';
position: absolute;
left: 0;
top: -10px;
font-size: 3rem;
color: var(--primary);
font-family: serif;
}

.testimonial-author {
display: flex;
align-items: center;
margin-top: 20px;
}

.author-avatar {
width: 50px;
height: 50px;
border-radius: 50%;
background: var(--secondary);
margin-right: 15px;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
color: var(--dark);
}

/* CTA Section */
.cta {
text-align: center;
}

.cta h2 {
font-size: 2.5rem;
margin-bottom: 20px;
}

.cta p {
font-size: 1.2rem;
margin-bottom: 30px;
color: #b0b7c3;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}

/* Footer */
.footer {
background: var(--darker);
padding: 80px 0 30px;
border-top: 1px solid var(--glass-border);
}

.footer h5 {
color: var(--light);
margin-bottom: 20px;
font-size: 1.2rem;
}

.footer-links {
list-style: none;
padding: 0;
}

.footer-links li {
margin-bottom: 10px;
}

.footer-links a {
color: #b0b7c3;
text-decoration: none;
transition: color 0.3s ease;
}

.footer-links a:hover {
color: var(--primary);
}

.social-links {
display: flex;
flex-wrap: wrap; /* allows wrapping to next line */
gap: 10px;       /* spacing between icons */
justify-content: flex-start;
max-width: 400px; /* keep inside the col boundary */
}

.social-links a {
display: flex;
align-items: center;
justify-content: center;
width: 36px;
height: 36px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.1);
color: #fff;
transition: all 0.3s ease;
}

.social-links a:hover {
background: var(--primary-color, #007bff);
color: #fff;
transform: translateY(-2px);
}

.copyright {
text-align: center;
margin-top: 50px;
padding-top: 20px;
border-top: 1px solid var(--glass-border);
color: #b0b7c3;
}

/* NEW SECTIONS */
.workflow{
min-height: 100vh;
position: relative;
overflow: hidden;
padding: 100px 0;
}

.workflow-step, .integration-card, .extension-card, .resource-card {
background: var(--glass);
border: 1px solid var(--glass-border);
border-radius: 15px;
padding: 30px;
height: 100%;
transition: all 0.3s ease;
backdrop-filter: blur(10px);
text-align: center;
}

.workflow-step:hover, .integration-card:hover, .extension-card:hover, .resource-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.workflow-number, .integration-icon, .extension-icon, .resource-icon {
font-size: 2.5rem;
margin-bottom: 20px;
color: var(--primary);
}

.workflow-number {
width: 60px;
height: 60px;
border-radius: 50%;
background: var(--primary);
color: var(--dark);
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
font-weight: 700;
margin: 0 auto 20px;
}

/* Responsive */
@media (max-width: 768px) {
.hero h1 {
font-size: 2.5rem;
}

.pricing-card.featured {
transform: scale(1);
}

.pricing-card.featured:hover {
transform: translateY(-10px);
}
}

.a-link-a{text-decoration: none;}        