/* Global Styles */
:root {
    --primary-color: #8a2be2;
    --secondary-color: #00d9ff;
    --gradient-primary: linear-gradient(135deg, #8a2be2, #00d9ff);
    --text-dark: #e0e0e0;
    --text-light: #f5f5f5;
    --text-muted: #aaaaaa;
    --bg-dark: #121212;
    --bg-darker: #0a0a0a;
    --card-bg: rgba(25, 25, 25, 0.95);
    --card-bg-hover: rgba(35, 35, 35, 0.95);
    --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --border-radius: 12px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Space Grotesk', 'Inter', 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--text-light);
    transition: color var(--transition-speed) ease;
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

section {
    padding: var(--spacing-lg) 0;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--text-light);
    font-size: 2.5rem;
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Button Styles */
.primary-button, .outline-button, .cta-button, .pricing-button, .submit-button {
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.primary-button, .cta-button, .pricing-button {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.4);
}

.primary-button:hover, .cta-button:hover, .pricing-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.5);
}

.outline-button {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--secondary-color);
}

.outline-button:hover {
    background: rgba(0, 217, 255, 0.1);
    transform: translateY(-3px);
}

.glow {
    animation: glow-effect 3s infinite alternate;
}

@keyframes glow-effect {
    0% {
        box-shadow: 0 0 10px rgba(138, 43, 226, 0.6);
    }
    100% {
        box-shadow: 0 0 25px rgba(0, 217, 255, 0.8);
    }
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    transition: transform 0.4s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header.hide {
    transform: translateY(-100%);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 5%;
    padding-left: 10px;

    max-width: 1400px;
    margin: 0 auto;
}

.logo img {
    height: 80px;

}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-muted);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--text-light);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
}

.hamburger span {
    height: 2px;
    width: 100%;
    background-color: var(--text-light);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-darker);
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content, .hero-image {
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    padding-right: var(--spacing-md);
}

.tagline {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
    line-height: 1.2;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.subtext {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-render {
    position: relative;
    max-width: 100%;
}

.product-render img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    transform-style: preserve-3d;
}

.glow-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    border-radius: var(--border-radius);
}

/* Features Section */
.features {
    padding: var(--spacing-lg) 5%;
    background-color: var(--bg-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: var(--spacing-md);
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    background: var(--card-bg-hover);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.feature-card h3 {
    color: var(--text-light);
    margin-bottom: var(--spacing-xs);
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-muted);
}

.demo {
    padding: var(--spacing-lg) 5%;
    background: linear-gradient(to bottom, var(--bg-dark), var(--bg-darker));
}

.demo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-lg);
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: nowrap; /* Prevents wrapping */
}

/* Terminal & Video: Same Size */
.terminal, .demo-image {
    width: 50vw;  /* Equal width */
    height: 50vh; /* Equal height */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Terminal Styling */
.terminal {
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.1);
    font-family: 'Courier New', monospace;
    flex-direction: column;
}

.terminal-header {
    background: #2a2a2a;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}


/* Video Section */
.demo-image video {
    width: 100%;  /* Match terminal width */
    height: 100%; /* Match terminal height */
    object-fit: cover; /* Ensures video scales properly */
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsive Fix */
@media (max-width: 1024px) {
    .demo-container {
        flex-wrap: wrap; /* Stack them on small screens */
    }

    .terminal, .demo-image {
        width: 90%;
        height: auto;
    }

    .demo-image video {
        height: auto;
    }
}
@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.terminal-content {
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid #66FF66; /* Cursor effect */
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    color: #66FF66;
    display: inline-block;
    width: 0;
    animation: none; /* Initially, no animation */
}

  

/* How It Works Section */
.how-it-works {
    padding: var(--spacing-lg) 5%;
    background-color: var(--bg-dark);
}

.steps-container {
    display: flex;
    justify-content: space-around;
    gap: var(--spacing-md);
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.step {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: var(--spacing-md);
    text-align: center;
    flex: 1;
    min-width: 250px;
    box-shadow: var(--card-shadow);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
}

.step::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -40px;
    width: 30px;
    height: 30px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%238a2be2'%3E%3Cpath d='M8.59,16.58L13.17,12L8.59,7.41L10,6L16,12L10,18L8.59,16.58Z'/%3E%3C/svg%3E");
    background-size: contain;
    transform: translateY(-50%);
}

.step:last-child::after {
    display: none;
}

.step-number {
    font-size: 2rem;
    margin-bottom: var(--spacing-xs);
}

.step h3 {
    color: var(--text-light);
    margin-bottom: var(--spacing-xs);
}

.step p {
    color: var(--text-muted);
}

/* Reviews Section */
.reviews {
    padding: var(--spacing-lg) 5%;
    background: linear-gradient(to bottom, var(--bg-dark), var(--bg-darker));
}

.rating {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.stars i {
    color: #ffcb45;
    font-size: 1.5rem;
}

.rating-text {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.2rem;
}

.testimonials-container {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.testimonial-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: var(--spacing-md);
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-text {
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
    font-style: italic;
    line-height: 1.6;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: var(--spacing-xs);
}

.testimonial-stars i {
    color: #ffcb45;
    font-size: 1rem;
}

.testimonial-author {
    color: var(--text-muted);
    text-align: right;
    font-size: 0.9rem;
}

.video-reviews {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.video-review {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.video-thumbnail {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: var(--spacing-xs);
    cursor: pointer;
}

.video-thumbnail img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(138, 43, 226, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.play-button i {
    color: white;
    font-size: 1.5rem;
}

.video-review h3 {
    color: var(--text-light);
    font-size: 1.1rem;
    text-align: center;
}

/* Pricing Section */
.pricing {
    padding: var(--spacing-lg) 5%;
    background-color: var(--bg-dark);
}

.pricing-container {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
}

.pricing-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: var(--spacing-md);
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    background: linear-gradient(145deg, rgba(138, 43, 226, 0.2), rgba(0, 217, 255, 0.2));
    transform: scale(1.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 10;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.most-popular {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.8rem;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--spacing-md);
    position: relative;
}

.pricing-header h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
}

.pricing-features {
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
}

.pricing-features ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pricing-features li {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li::before {
    content: "✓";
    color: var(--secondary-color);
    font-weight: bold;
}

.pricing-button {
    width: 100%;
    padding: 12px;
    border-radius: 30px;
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.pricing-cta {
    text-align: center;
    margin-top: var(--spacing-md);
}

/* Contact Section */
.contact {
    padding: var(--spacing-lg) 5%;
    background: linear-gradient(to bottom, var(--bg-dark), var(--bg-darker));
}

.contact-container {
    display: flex;
    gap: var(--spacing-lg);
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.contact-form-container {
    flex: 2;
    min-width: 300px;
}

.contact-form {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: var(--spacing-md);
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
    margin-bottom: var(--spacing-sm);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(0, 217, 255, 0.2);
}

.contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23aaaaaa'%3E%3Cpath d='M7,10L12,15L17,10H7Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
}

.submit-button {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: block;
    margin-top: var(--spacing-sm);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.contact-info {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 217, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-item p {
    color: var(--text-light);
}

.live-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
}

.chat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(138, 43, 226, 0.5);
    transition: all 0.3s ease;
}

.chat-icon:hover {
    transform: scale(1.1);
}

.chat-icon i {
    color: white;
    font-size: 1.5rem;
}

/* Footer */
footer {
    background: var(--bg-darker);
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h3 {
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-primary);
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--secondary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: var(--spacing-sm);
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
}

.social-icons i {
    color: var(--text-light);
}

.newsletter {
    display: flex;
    margin-top: var(--spacing-sm);
}

.newsletter input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 30px 0 0 30px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-right: none;
}

.newsletter input:focus {
    outline: none;
}

.newsletter button {
    background: var(--gradient-primary);
    border: none;
    border-radius: 0 30px 30px 0;
    padding: 0 15px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter button:hover {
    background: linear-gradient(135deg, #9932cc, #1e90ff);
}

.copyright {
    text-align: center;
    padding: var(--spacing-md) 0;
    margin-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .tagline {
        font-size: 2.5rem;
    }
    
    .hero {
        height: auto;
        padding-top: 120px;
        padding-bottom: var(--spacing-lg);
    }
    
    .feature-card, .pricing-card, .testimonial-card {
        min-width: 240px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 5%;
    }
    
    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 0;
        height: 0;
        overflow: hidden;
        transition: all 0.5s ease;
        opacity: 0;
        padding: 0 5%;
    }
    
    .nav-links.active {
        height: auto;
        opacity: 1;
        padding: var(--spacing-md) 5%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-links a {
        padding: 12px 0;
        width: 100%;
        display: block;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    .hero-content {
        padding-right: 0;
    }}