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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    background: #000000;
    color: #ffffff;
}

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

/* Header */
.header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #00ff88;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 101;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #00ff88;
    transition: all 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #00ff88;
}

/* Hero Section */
.hero {
    padding: 6rem 20px;
    background: #000000;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(0, 255, 136, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    position: relative;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #00ff88;
}

#typing-text {
    display: inline-block;
}

.typing-cursor {
    color: #00ff88;
    font-weight: 300;
    margin-left: 4px;
    animation: blink-cursor 1s infinite;
}

@keyframes blink-cursor {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #888888;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.cta-button {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
    border: 2px solid;
}

.cta-button.primary {
    background: #00ff88;
    color: #000000;
    border-color: #00ff88;
}

.cta-button.primary:hover {
    background: #00cc6f;
    border-color: #00cc6f;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.cta-button.secondary:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: left;
    transition: transform 0.3s, border-color 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #00ff88;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #00ff88;
}

.feature-icon i {
    display: inline-block;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #00ff88;
}

.feature-card p {
    color: #888888;
    line-height: 1.7;
}

/* Code Section */
.code-section {
    padding: 6rem 20px;
    background: #0a0a0a;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #ffffff;
}

.section-description {
    text-align: center;
    color: #888888;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.terminal-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.terminal {
    background: #0a0a0a;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.terminal-header {
    background: #1a1a1a;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.terminal-controls {
    display: flex;
    gap: 0.5rem;
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-dot.red {
    background: #ff5f56;
}

.terminal-dot.yellow {
    background: #ffbd2e;
}

.terminal-dot.green {
    background: #27c93f;
}

.terminal-title {
    flex: 1;
    color: #888888;
    font-size: 0.85rem;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    text-align: center;
}

.terminal-window-controls {
    display: flex;
    gap: 0.5rem;
    color: #888;
    font-size: 0.9rem;
    cursor: default;
}

.terminal-body {
    background: #000000;
    padding: 1.5rem;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #ffffff;
    min-height: 300px;
}

.terminal-line {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.terminal-prompt {
    color: #00ff88;
    margin-right: 0.5rem;
    font-weight: bold;
}

.terminal-command {
    color: #ffffff;
}

.terminal-output {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.output-line {
    margin-bottom: 0.4rem;
    color: #ffffff;
}

.output-line.indent {
    padding-left: 1.5rem;
    color: #666666;
}

.output-label {
    color: #00ff88;
    font-weight: 500;
}

.output-line .critical {
    color: #f48771;
    font-weight: bold;
}

.output-line .high {
    color: #ce9178;
}

.output-line .medium {
    color: #dcdcaa;
}

.output-line .success {
    color: #00ff88;
}

.cursor {
    display: inline-block;
    width: 8px;
    height: 16px;
    background: #00ff88;
    margin-left: 2px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.code-editor {
    padding: 1rem;
}

.code-editor pre {
    margin: 0;
    background: transparent;
    color: #ffffff;
}

.code-editor code {
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
}

.code-editor .comment {
    color: #666666;
    font-style: italic;
}

.code-editor .keyword {
    color: #00ff88;
}

.code-editor .variable {
    color: #ffffff;
}

.code-editor .property {
    color: #ffffff;
}

.code-editor .string {
    color: #888888;
}

.code-editor .number {
    color: #00ff88;
}

.code-editor .function {
    color: #ffffff;
}

/* Features Section */
.features-section {
    padding: 6rem 20px;
    background: #000000;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2rem;
    transition: transform 0.3s, border-color 0.3s;
}

.feature-item strong {
    color: #00ff88;
}

.feature-item:hover {
    transform: translateY(-3px);
    border-color: #00ff88;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

a{
    text-decoration: none;
}

.feature-item p {
    color: #888888;
    line-height: 1.7;
}

/* Features Showcase Section */
.features-showcase-section {
    padding: 6rem 20px;
    background: #0a0a0a;
}

.features-showcase-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 3rem;
}

.feature-showcase-card {
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 400px;
}


.feature-showcase-image {
    width: 50%;
    height: 400px;
    overflow: hidden;
    background: #0a0a0a;
    flex-shrink: 0;
}

.feature-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}


.feature-showcase-content {
    padding: 3rem;
    width: 50%;
    flex-shrink: 0;
}

.feature-content-right {
    padding-left: 3rem;
}

.feature-content-left {
    padding-right: 3rem;
}

.feature-showcase-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.feature-showcase-subtitle {
    font-size: 1rem;
    font-weight: 500;
    color: #00ff88;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-showcase-description {
    font-size: 1rem;
    color: #888888;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-showcase-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.feature-showcase-list li {
    color: #ffffff;
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
    font-size: 0.95rem;
}

.feature-showcase-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00ff88;
    font-weight: bold;
}

.feature-showcase-button {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    background: transparent;
    color: #00ff88;
    border: 2px solid #00ff88;
    border-radius: 4px;
    transition: all 0.3s;
}

.feature-showcase-button:hover {
    background: #00ff88;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.3);
}

/* Journey Section */
.journey-section {
    padding: 6rem 20px;
    background: #000000;
}

.journey-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.journey-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 3rem;
    line-height: 1.3;
}

.journey-image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.journey-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.journey-image:hover {
    opacity: 1;
}

/* Capabilities Section */
.capabilities-section {
    padding: 6rem 20px;
    background: #0a0a0a;
}

.capabilities-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.capability-item {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.capability-item:last-child {
    border-bottom: none;
}

.capability-number {
    font-size: 3rem;
    font-weight: 700;
    color: #00ff88;
    line-height: 1;
    flex-shrink: 0;
    min-width: 80px;
}

.capability-content {
    flex: 1;
}

.capability-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.capability-description {
    font-size: 1rem;
    color: #888888;
    line-height: 1.7;
}

/* Products Section */
.products-section {
    padding: 6rem 20px;
    background: #000000;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2rem;
    transition: transform 0.3s, border-color 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: #00ff88;
}

.product-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #00ff88;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.product-description {
    color: #888888;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* eBook Section */
.ebook-section {
    padding: 6rem 20px;
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ebook-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.ebook-title {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.ebook-subtitle {
    font-size: 1.2rem;
    color: #888888;
    margin-bottom: 2rem;
}

.ebook-list {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 0 auto 3rem;
    padding: 0;
}

.ebook-list li {
    color: #ffffff;
    font-size: 1.1rem;
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ebook-list li:last-child {
    border-bottom: none;
}

.ebook-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #00ff88;
    font-weight: bold;
    font-size: 1.2rem;
}

.ebook-button {
    display: inline-block;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    background: #00ff88;
    color: #000000;
    border-radius: 4px;
    border: 2px solid #00ff88;
    transition: all 0.3s;
}

.ebook-button:hover {
    background: #00cc6f;
    border-color: #00cc6f;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.3);
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 20px;
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonials-carousel-wrapper {
    position: relative;
    margin-top: 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.testimonials-carousel {
    overflow: hidden;
    width: 100%;
    flex: 1;
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
}

.testimonial-card {
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2.5rem;
    transition: transform 0.3s, border-color 0.3s;
    position: relative;
    min-width: calc(33.333% - 1.33rem);
    flex-shrink: 0;
    max-width: 300px;
}

.carousel-button {
    background: transparent;
    border: 2px solid #00ff88;
    color: #00ff88;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s;
    flex-shrink: 0;
}

.carousel-button:hover {
    background: #00ff88;
    color: #000000;
    transform: scale(1.1);
}

.carousel-button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-button:disabled:hover {
    background: transparent;
    color: #00ff88;
    transform: scale(1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: #00ff88;
}

.testimonial-quote {
    color: #00ff88;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.testimonial-text {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.testimonial-name {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.testimonial-role {
    color: #888888;
    font-size: 0.9rem;
}

/* Clients Section */
.clients-section {
    padding: 5rem 20px;
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.clients-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.clients-text {
    font-size: 1.1rem;
    color: #888888;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.clients-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.clients-logo-image {
    max-width: 100%;
    height: auto;
    opacity: 0.7;
    filter: grayscale(100%) brightness(0.8);
    transition: opacity 0.3s, filter 0.3s;
}

.clients-logo-image:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(1);
}

/* Contact Page Styles */
.contact-hero-section {
    padding: 8rem 20px 4rem;
    background: #000000;
    text-align: center;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.contact-hero-subtitle {
    font-size: 1.2rem;
    color: #888888;
    line-height: 1.8;
}

.contact-info-section {
    padding: 6rem 20px;
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-item {
    text-align: center;
    padding: 2rem;
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 50%;
    color: #00ff88;
    font-size: 1.5rem;
}

.contact-info-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.contact-info-text {
    color: #888888;
    line-height: 1.7;
}

/* Terms Page Styles */
.terms-hero-section {
    padding: 8rem 20px 4rem;
    background: #000000;
    text-align: center;
}

.terms-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.terms-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.terms-hero-subtitle {
    font-size: 1.1rem;
    color: #888888;
}

.terms-content-section {
    padding: 6rem 20px;
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.terms-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.terms-section {
    margin-bottom: 3rem;
}

.terms-section:last-child {
    margin-bottom: 0;
}

.terms-section-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #00ff88;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
}

.terms-section:first-child .terms-section-title {
    margin-top: 0;
}

.terms-text {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.terms-list {
    color: #cccccc;
    line-height: 1.8;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
}

.terms-list li {
    margin-bottom: 0.75rem;
    position: relative;
}

.terms-list li::marker {
    color: #00ff88;
}

.terms-subsection-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* About Page Styles */
.about-hero {
    padding: 6rem 20px;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
}

.coder-hero-wrapper {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.coder-terminal {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.coder-terminal-header {
    background: #1a1a1a;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.coder-terminal-controls {
    display: flex;
    gap: 0.5rem;
}

.coder-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.coder-dot.red {
    background: #ff5f56;
}

.coder-dot.yellow {
    background: #ffbd2e;
}

.coder-dot.green {
    background: #27c93f;
}

.coder-terminal-title {
    flex: 1;
    color: #888888;
    font-size: 0.85rem;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    text-align: center;
}

.coder-terminal-body {
    background: #000000;
    padding: 2rem;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 1rem;
    line-height: 1.8;
    color: #ffffff;
    min-height: 400px;
}

.coder-line {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.coder-prompt {
    color: #00ff88;
    margin-right: 0.75rem;
    font-weight: bold;
}

.coder-command {
    color: #ffffff;
}

.coder-output {
    margin-top: 1.5rem;
    margin-left: 0;
}

.coder-comment {
    color: #666666;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.coder-code-block {
    display: block;
    margin-bottom: 0.3rem;
    padding-left: 0;
}

.coder-code-block.indent {
    padding-left: 2rem;
}

.coder-keyword {
    color: #00ff88;
}

.coder-variable {
    color: #ffffff;
}

.coder-property {
    color: #ffffff;
}

.coder-string {
    color: #888888;
}

.coder-number {
    color: #00ff88;
}

.coder-line-break {
    height: 1rem;
}

.coder-cursor {
    display: inline-block;
    width: 8px;
    height: 18px;
    background: #00ff88;
    margin-left: 2px;
    animation: blink-cursor 1s infinite;
}

@keyframes blink-cursor {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

.about-content-section {
    padding: 6rem 20px;
    background: #0a0a0a;
}

.about-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.about-text {
    color: #888888;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.about-card {
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: #00ff88;
}

.about-card-icon {
    font-size: 3rem;
    color: #00ff88;
    margin-bottom: 1.5rem;
}

.about-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.about-card-text {
    color: #888888;
    line-height: 1.7;
    font-size: 0.95rem;
}

.about-story-section {
    padding: 6rem 20px;
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-expertise-section {
    padding: 6rem 20px;
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.expertise-item {
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2rem;
    transition: transform 0.3s, border-color 0.3s;
}

.expertise-item:hover {
    transform: translateY(-3px);
    border-color: #00ff88;
}

.expertise-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #00ff88;
    margin-bottom: 1rem;
}

.expertise-text {
    color: #888888;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Contact Form Section */
.contact-form-section {
    padding: 6rem 20px;
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form-subtitle {
    color: #888888;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.contact-form {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 3rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: #ffffff;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00ff88;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666666;
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    cursor: pointer;
    font-size: 0.95rem;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    cursor: pointer;
    accent-color: #00ff88;
}

.checkbox-label span {
    user-select: none;
}

.form-submit-button {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: #00ff88;
    color: #000000;
    border: 2px solid #00ff88;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

.form-submit-button:hover {
    background: #00cc6f;
    border-color: #00cc6f;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.3);
}

.form-submit-button:active {
    transform: translateY(0);
}

/* Footer */
.footer {
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 20px 2rem;
    color: #666666;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-title {
    color: #00ff88;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-registration {
    color: #888888;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-heading {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-address,
.footer-phone {
    color: #888888;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #888888;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #00ff88;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #666666;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .terminal-container {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .features-showcase-grid {
        gap: 3rem;
    }
    
    .feature-showcase-card {
        flex-direction: column;
        min-height: auto;
    }
    
    .feature-card-reverse {
        flex-direction: column;
    }
    
    .feature-showcase-image {
        width: 100%;
        height: 250px;
    }
    
    .feature-showcase-content {
        width: 100%;
        padding: 2rem;
    }
    
    .feature-content-right,
    .feature-content-left {
        padding: 2rem;
    }
    
    .journey-title {
        font-size: 2rem;
    }
    
    .capabilities-list {
        gap: 2.5rem;
    }
    
    .capability-item {
        gap: 2rem;
    }
    
    .capability-number {
        font-size: 2.5rem;
        min-width: 60px;
    }
    
    .capability-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .nav {
        position: relative;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #000000;
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 0;
        transition: right 0.3s ease;
        z-index: 100;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-links a {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
    }
    
    .nav-links a:hover {
        color: #00ff88;
        padding-left: 0.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .terminal-container {
        grid-template-columns: 1fr;
    }
    
    .terminal-body {
        padding: 1rem;
        font-size: 0.8rem;
    }
    
    .code-editor code {
        font-size: 0.8rem;
    }
    
    .ebook-title {
        font-size: 1.5rem;
    }
    
    .ebook-subtitle {
        font-size: 1rem;
    }
    
    .ebook-list li {
        font-size: 1rem;
        padding-left: 1.5rem;
    }
    
    .ebook-button {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
    
    .clients-text {
        font-size: 1rem;
    }
    
    .clients-logos {
        padding: 1.5rem 0;
    }
    
    .testimonials-carousel-wrapper {
        gap: 1rem;
    }
    
    .testimonial-card {
        min-width: calc(50% - 1rem);
        padding: 2rem;
    }
    
    .carousel-button {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card {
        padding: 1.5rem;
    }
    
    .product-title {
        font-size: 1.2rem;
    }
    
    .product-description {
        font-size: 0.9rem;
    }
    
    .features-showcase-grid {
        gap: 2rem;
    }
    
    .feature-showcase-card {
        flex-direction: column;
        min-height: auto;
    }
    
    .feature-card-reverse {
        flex-direction: column;
    }
    
    .feature-showcase-image {
        width: 100%;
        height: 200px;
    }
    
    .feature-showcase-content {
        width: 100%;
        padding: 1.5rem;
    }
    
    .feature-content-right,
    .feature-content-left {
        padding: 1.5rem;
    }
    
    .feature-showcase-title {
        font-size: 1.3rem;
    }
    
    .feature-showcase-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .journey-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .capabilities-list {
        gap: 2rem;
    }
    
    .capability-item {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem 0;
    }
    
    .capability-number {
        font-size: 2rem;
        min-width: auto;
    }
    
    .capability-title {
        font-size: 1.2rem;
    }
    
    .capability-description {
        font-size: 0.95rem;
    }
    
    .testimonials-carousel-wrapper {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        min-width: 100%;
        padding: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    .carousel-button {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }
    
    .carousel-button-prev {
        left: 10px;
    }
    
    .carousel-button-next {
        right: 10px;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .checkbox-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer {
        padding: 3rem 20px 2rem;
    }
    
    .about-hero {
        min-height: 60vh;
        padding: 4rem 20px;
    }
    
    .coder-terminal-body {
        padding: 1.5rem;
        font-size: 0.9rem;
        min-height: 350px;
    }
    
    .coder-code-block.indent {
        padding-left: 1.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .terms-hero-title {
        font-size: 2.5rem;
    }
    
    .terms-hero-subtitle {
        font-size: 1rem;
    }
    
    .terms-section-title {
        font-size: 1.5rem;
        margin-top: 2rem;
    }
    
    .terms-text {
        font-size: 0.95rem;
    }
    
    .terms-list {
        margin-left: 1.5rem;
    }
    
    .terms-subsection-title {
        font-size: 1.1rem;
        margin-top: 1.5rem;
    }
}


