/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Space Grotesk', 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
}

:root {
    --primary: #6d28d9;
    --primary-light: #8b5cf6;
    --primary-dark: #5b21b6;
    --accent: #10b981;
    --background: #020617;
    --card-bg: #0f172a;
    --text: #f8fafc;
    --text-secondary: #94a3b8;
    --border: #334155;
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse {
    0% { opacity: 0.8; transform: scale(0.98); }
    50% { opacity: 1; transform: scale(1); }
    100% { opacity: 0.8; transform: scale(0.98); }
}

@keyframes slideIn {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}
#download-tr{
    display: flex;
    justify-content: center;
    align-items: center;
    gap:6px;
}
/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}
.btnn {
    display: inline-block;
    display:flex;
   

    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(109, 40, 217, 0.4);
}

.btn-outlinee {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary-light);
    box-shadow: none;
}

.btnn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(109, 40, 217, 0.5);
}

.btn-outlinee:hover {
    background: rgba(109, 40, 217, 0.1);
}
#download-trr{
    display: flex;
    justify-content: center;
    align-items: center;
    gap:6px;
}

/* Header Styles */
header {
    background-color: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-links a:hover::after {
    width: 100%;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.5px;
}

.btn {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: #000;
            color: white;
            padding: 16px 16px;
            border-radius: 12px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.4s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 0 20px rgba(109, 40, 217, 0.6);
            position: relative;
            overflow: hidden;
            width: 350px;
            z-index: 1;
        }
        
        /* Specific style for the collaborative code editor button */
        .btn-collab {
            background: linear-gradient(135deg, #000, #0a0a2a);
            border: 1px solid rgba(109, 40, 217, 0.3);
            box-shadow: 0 0 25px rgba(109, 40, 217, 0.7);
        }
        
        .btn-collab:before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            z-index: -1;
            background: linear-gradient(45deg, #8A2BE2, #5D3FD3, #000, #000, #5D3FD3, #8A2BE2);
            background-size: 400%;
            border-radius: 12px;
            animation: glowing 20s linear infinite;
            opacity: 0.7;
        }
        
        .btn-collab:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: -1;
            background: #000;
            border-radius: 12px;
        }
        
        .btn-text {
            display: flex;
            align-items: center;
            z-index: 999;
            background-color: blur(10px);
        }
        
        .btn img {
            width: 20px;
            height: 20px;
            margin-left: 12px;
            filter: brightness(0) invert(1);
            transition: transform 0.3s ease;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 30px rgba(109, 40, 217, 0.9);
        }
        
        .btn:hover img {
            transform: translateX(4px) translateY(-4px);
        }
        
        /* Stars effect */
        .stars {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            border-radius: 12px;
        }
        
        .star {
            position: absolute;
            color: #b967ff;
            opacity: 0;
            animation: twinkle 4s infinite;
            font-size: 8px;
        }
        
        @keyframes twinkle {
            0% { opacity: 0; transform: scale(0) rotate(0deg); }
            25% { opacity: 1; transform: scale(1.2) rotate(90deg); }
            50% { opacity: 0.8; transform: scale(1) rotate(180deg); }
            75% { opacity: 1; transform: scale(1.1) rotate(270deg); }
            100% { opacity: 0; transform: scale(0) rotate(360deg); }
        }
        
        @keyframes glowing {
            0% { background-position: 0 0; }
            50% { background-position: 400% 0; }
            100% { background-position: 0 0; }
        }
        
        .instructions {
            margin-top: 3rem;
            padding: 1.5rem;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 12px;
            text-align: left;
            max-width: 600px;
        }
        
        .instructions h2 {
            color: #8A2BE2;
            margin-bottom: 1rem;
        }
        
        .instructions ul {
            list-style-position: inside;
            line-height: 1.8;
        }
        
        .instructions li {
            margin-bottom: 0.5rem;
        }
        
        .note {
            margin-top: 2rem;
            padding: 1rem;
            background: rgba(109, 40, 217, 0.2);
            border-radius: 8px;
            border-left: 4px solid #8A2BE2;
        }

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary-light);
    box-shadow: none;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(109, 40, 217, 0.5);
}

.btn-outline:hover {
    background: rgba(109, 40, 217, 0.1);
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.15), transparent 60%);
    z-index: -1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content {
    animation: slideIn 1s ease-out;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-title-gradient {
    background: linear-gradient(to right, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    max-width: 550px;
}

.hero-buttons {
            display: flex;
            flex-direction: column;
            width: fit-content;
            gap: 0.4rem;

        }
        
.hero-image {
    position: relative;
    height: 500px;
    animation: float 6s ease-in-out infinite;
}

.editor-mockup {
    width: 100%;
    height: 100%;
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 
                0 0 0 1px rgba(255, 255, 255, 0.1),
                0 0 60px rgba(139, 92, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.editor-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.editor-dots {
    display: flex;
    gap: 8px;
}

.editor-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-red { background-color: #ef4444; }
.dot-yellow { background-color: #f59e0b; }
.dot-green { background-color: #10b981; }

.editor-tabs {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
}

.editor-tab {
    padding: 8px 16px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px 6px 0 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.editor-tab.active {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text);
}

.editor-content {
    display: flex;
    height: calc(100% - 80px);
}

.editor-sidebar {
    width: 60px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 8px 0 0 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 0;
    gap: 20px;
}

.sidebar-icon {
    width: 20px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.editor-main {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 0 8px 8px 0;
    padding: 15px;
    font-family: monospace;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    overflow: hidden;
}

.code-line {
    display: flex;
    margin-bottom: 8px;
}

.line-number {
    width: 30px;
    color: #475569;
    text-align: right;
    padding-right: 10px;
}

.line-content {
    flex: 1;
}

.keyword { color: #8b5cf6; }
.string { color: #10b981; }
.comment { color: #64748b; }
.function { color: #60a5fa; }

/* Features Section */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0;
    color: var(--text);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 0;
    font-size: 1.1rem;
}

.features {
    padding: 100px 0;
    position: relative;
}

#features-alternating{
    padding-top: 100px;
    position: relative;
}


.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100px;
    background: linear-gradient(to bottom, var(--primary-light), transparent);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background: linear-gradient(145deg, var(--card-bg), rgba(15, 23, 42, 0.9));
    border-radius: 16px;
    padding: 32px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(139, 92, 246, 0.3);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(139, 92, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 24px;
    color: var(--primary-light);
    font-size: 24px;
}

.feature-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text);
}

.feature-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* Collaboration Features */
.collab-features {
    padding-top:100px;
    background: linear-gradient(180deg, var(--background), rgba(15, 23, 42, 0.95));
    position: relative;
}

.collab-features::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at 20% 50%, rgba(16, 185, 129, 0.1), transparent 70%);
    z-index: -1;
}

.collab-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 80px;
}

.collab-image {
    position: relative;
    height: 500px;
    animation: pulse 6s ease-in-out infinite;
}

.collab-mockup {
    width: 100%;
    height: 100%;
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 
                0 0 0 1px rgba(255, 255, 255, 0.1),
                0 0 60px rgba(16, 185, 129, 0.3);
}

.collab-features-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.collab-feature-item {
    background: rgba(15, 23, 42, 0.6);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.collab-feature-item:hover {
    transform: translateX(10px);
    border-color: rgba(16, 185, 129, 0.3);
}

.collab-feature-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.collab-feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(16, 185, 129, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--accent);
    font-size: 18px;
}

.collab-feature-title {
    font-size: 1.2rem;
    color: var(--text);
}

.collab-feature-desc {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* CTA Section */
.cta {
    padding: 120px 0;
    text-align: center;
    background: linear-gradient(to bottom, transparent, rgba(109, 40, 217, 0.05));
    position: relative;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--text), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

/* Footer */
footer {
    background-color: rgba(2, 6, 23, 0.9);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 16px;
}

.footer-about {
    color: var(--text-secondary);
    margin-bottom: 24px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 36px;
    height: 36px;
    background-color: rgba(139, 92, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 24px;
    color: var(--text);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        order: -1;
        height: 400px;
    }
    
    .collab-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .collab-image {
        height: 350px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
}

@media (max-width: 480px) {
    .hero-buttons, .cta-buttons {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}



.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 80px;
}

.feature-row.reverse {
    direction: rtl;
}

.feature-row.reverse .feature-content,
.feature-row.reverse .feature-image {
    direction: ltr;
}

.feature-image {
    position: relative;
    height: 400px;
}

.feature-mockup {
    width: 100%;
    height: 100%;
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 
                0 0 0 1px rgba(255, 255, 255, 0.1),
                0 0 60px rgba(16, 185, 129, 0.3);
}

.feature-content {
    padding: 20px;
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(16, 185, 129, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--accent);
    font-size: 24px;
}

.feature-title {
    font-size: 1.8rem;
    color: var(--text);
}

.feature-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .feature-row {
        grid-template-columns: 1fr;
    }
    
    .feature-row.reverse {
        direction: ltr;
    }
    
    .feature-image {
        height: 300px;
    }
}
/* Contact Section */
.contact {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(to bottom, var(--background), rgba(15, 23, 42, 0.95));
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1), transparent 70%);
    z-index: -1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
    margin-top: 10px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(139, 92, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 16px;
    font-size: 24px;
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text);
}

.contact-card p {
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    color: var(--primary-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--accent);
    text-decoration: underline;
}

.contact-form-container {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: var(--text);
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-light);
    outline: none;
    box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.2);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(148, 163, 184, 0.6);
}

.btn-contact {
    margin-top: 10px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
    }
}



footer {
    background: var(--bg-dark);
    padding: 80px 0 30px;
    color: var(--text-secondary);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;

}

