/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: var(--bg-dark);
    padding: 8px;
    text-decoration: none;
    z-index: 100;
    box-shadow: 0 0 10px var(--glow-color);
}

.skip-link:focus {
    top: 0;
}

:root {
    --primary-color: #00FF41;
    --primary-dark: #008F11;
    --primary-light: #33FF66;
    --secondary-color: #00FF41;
    --accent-color: #00FF41;
    --text-dark: #000000;
    --text-light: #ffffff;
    --text-muted: #a0a0a0;
    --bg-dark: #000000;
    --bg-darker: #0a0a0a;
    --bg-light: #111111;
    --bg-white: #1a1a1a;
    --bg-card: #1a1a1a;
    --gradient-1: linear-gradient(135deg, #00FF41 0%, #008F11 100%);
    --gradient-2: linear-gradient(135deg, #00FF41 0%, #33FF66 100%);
    --gradient-3: linear-gradient(135deg, #008F11 0%, #00FF41 100%);
    --glow-color: rgba(0, 255, 65, 0.8);
    --glow-shadow: 0 0 25px rgba(0, 255, 65, 0.8);
    --shadow-sm: 0 2px 8px rgba(0, 255, 65, 0.2);
    --shadow-md: 0 4px 16px rgba(0, 255, 65, 0.3);
    --shadow-lg: 0 10px 40px rgba(0, 255, 65, 0.4);
    --shadow-glow: 0 0 20px rgba(0, 255, 65, 0.6);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-light);
    background-color: var(--bg-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 255, 65, 0.2);
    border-bottom: 1px solid rgba(0, 255, 65, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 16px rgba(0, 255, 65, 0.3);
    border-bottom: 1px solid rgba(0, 255, 65, 0.3);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo-link {
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo-image-footer {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
    margin-bottom: 1rem;
}

.hero-logo {
    margin-bottom: 2rem;
    text-align: center;
}

.hero-logo-image {
    height: 120px;
    width: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}


.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    box-shadow: 0 0 10px var(--glow-color);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
    text-shadow: 0 0 5px var(--glow-color);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 255, 65, 0.1) 0%, rgba(0, 0, 0, 0.9) 70%, #000000 100%);
    z-index: -1;
    overflow: hidden;
}

.binary-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 2rem;
    opacity: 0.15;
    z-index: 0;
}

.binary-text {
    font-family: 'Share Tech Mono', monospace;
    font-size: 10px;
    color: var(--primary-color);
    white-space: nowrap;
    letter-spacing: 2px;
    animation: binaryScroll 30s linear infinite;
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.3);
    opacity: 0.4;
}

@keyframes binaryScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.ai-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.6;
    box-shadow: 0 0 10px var(--glow-color);
    animation: float 15s infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0.2;
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 20px;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
}

.title-line {
    display: block;
}

.title-line.accent {
    color: var(--primary-color);
    text-shadow: var(--glow-shadow);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--bg-dark);
    box-shadow: var(--shadow-md), var(--shadow-glow);
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    background: var(--gradient-2);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-full {
    width: 100%;
}

.hero-visual {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid rgba(0, 255, 65, 0.3);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg), 0 0 20px rgba(0, 255, 65, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: floatCard 6s ease-in-out infinite;
}

.floating-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.card-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 10%;
    animation-delay: 1.5s;
}

.card-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 3s;
}

.card-4 {
    top: 30%;
    right: 30%;
    animation-delay: 4.5s;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.card-icon {
    font-size: 2rem;
}

.card-text {
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.9rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    position: relative;
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 2px;
    box-shadow: 0 0 5px var(--glow-color);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

/* Section Styles */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--gradient-1);
    color: var(--bg-dark);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 0 15px var(--glow-color);
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--bg-darker);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.about-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 255, 65, 0.2);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(0, 255, 65, 0.3);
    border-color: var(--primary-color);
}

.card-icon-large {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.about-card p {
    color: var(--text-muted);
    line-height: 1.8;
}

.values-section {
    margin-top: 4rem;
}

.values-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.value-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 255, 65, 0.2);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border-color: var(--primary-color);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* Why Us Section */
.why-us {
    background: var(--bg-darker);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: var(--bg-card);
    border: 1px solid rgba(0, 255, 65, 0.2);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-1);
    box-shadow: 0 0 10px var(--glow-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.feature-item:hover::before {
    transform: scaleY(1);
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(0, 255, 65, 0.3);
    border-color: var(--primary-color);
}

.feature-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 0 10px var(--glow-color);
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.feature-item p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* Industries Section */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.industry-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 255, 65, 0.2);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.industry-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: var(--shadow-lg);
    background: var(--gradient-1);
    color: white;
}

.industry-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.industry-card h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.industry-card:hover h3 {
    color: white;
}

/* Tech Stack Section */
.tech-stack {
    background: var(--bg-darker);
}

.tech-categories {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.tech-category {
    background: var(--bg-card);
    border: 1px solid rgba(0, 255, 65, 0.2);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.tech-category-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-weight: 600;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.tech-tag {
    padding: 0.75rem 1.5rem;
    background: var(--gradient-1);
    color: var(--bg-dark);
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: default;
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
}

.tech-tag:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-md), var(--shadow-glow);
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 255, 65, 0.2);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateX(10px);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-card p {
    color: var(--text-light);
}

.contact-card a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--primary-dark);
}

.contact-form-container {
    background: var(--bg-card);
    border: 1px solid rgba(0, 255, 65, 0.2);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--bg-dark);
    border: 2px solid rgba(0, 255, 65, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.3);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    border-top: 1px solid rgba(0, 255, 65, 0.2);
    color: var(--text-light);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand p {
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 3rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-dark);
        border-top: 1px solid rgba(0, 255, 65, 0.2);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-md);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.navbar {
    top: 0;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-nav {
    padding: 0.75rem 1.5rem;
    background: var(--gradient-1);
    color: var(--bg-dark);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
}

.btn-nav:hover {
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.6);
}


/* Hero Updates */
.hero {
    margin-top: 40px;
}

.hero-headline {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    text-shadow: 0 0 20px var(--glow-color);
    font-family: 'Orbitron', sans-serif;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Client Logos */
.client-logos {
    padding: 3rem 0;
    background: var(--bg-darker);
    border-top: 1px solid rgba(0, 255, 65, 0.1);
    border-bottom: 1px solid rgba(0, 255, 65, 0.1);
}

.logos-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.logo-item {
    color: var(--text-muted);
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.logo-item:hover {
    opacity: 1;
    color: var(--primary-color);
}

/* Solutions Section */
.solutions-section {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.solutions-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.solutions-left {
    background: var(--bg-card);
    border: 1px solid rgba(0, 255, 65, 0.2);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
}

.stat-large {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    text-shadow: var(--glow-shadow);
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 1rem;
}

.stat-description {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.progress-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.progress-bar {
    flex: 1;
    height: 12px;
    background: var(--bg-dark);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 65, 0.3);
}

.progress-fill {
    height: 100%;
    background: var(--gradient-1);
    box-shadow: 0 0 10px var(--glow-color);
    transition: width 1s ease;
}

.progress-text {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.2rem;
}

.solutions-right .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item-card {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-item-card .feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.feature-item-card h3 {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.feature-item-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Roadmap Section */
.roadmap-section {
    padding: 6rem 0;
    background: var(--bg-darker);
    position: relative;
}

.roadmap-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(0, 255, 65, 0.03) 10px,
        rgba(0, 255, 65, 0.03) 20px
    );
    pointer-events: none;
}

.roadmap-timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-top: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.roadmap-item {
    flex: 1;
    min-width: 150px;
    text-align: center;
    position: relative;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.roadmap-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.roadmap-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.roadmap-item h3 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.roadmap-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Growth Stats Section */
.growth-stats-section {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 255, 65, 0.2);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.stat-card-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    text-shadow: var(--glow-shadow);
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 0.5rem;
}

.stat-card-label {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Services Section New */
.services-section {
    padding: 6rem 0;
    background: var(--bg-darker);
}

.services-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card-new {
    background: var(--bg-card);
    border: 1px solid rgba(0, 255, 65, 0.2);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card-new:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.service-card-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.service-card-new h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card-new p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* Power Operations Section */
.power-operations-section {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.power-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.power-left .section-title {
    text-align: left;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.power-list {
    list-style: none;
    margin-bottom: 2rem;
}

.power-list li {
    color: var(--text-light);
    padding: 0.75rem 0;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(0, 255, 65, 0.1);
}

.power-list li:last-child {
    border-bottom: none;
}

.power-visual {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.visual-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 255, 65, 0.2);
    padding: 2rem;
    border-radius: 12px;
    font-size: 3rem;
    transition: all 0.3s ease;
}

.visual-card:hover {
    transform: scale(1.1);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

/* Makes Better Section */
.makes-better-section {
    padding: 6rem 0;
    background: var(--bg-darker);
}

.makes-better-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.better-visual {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 300px;
    justify-content: center;
}

.visual-element {
    background: var(--bg-card);
    border: 1px solid rgba(0, 255, 65, 0.2);
    padding: 1.5rem;
    border-radius: 12px;
    font-size: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.visual-element:hover {
    transform: translateX(10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.makes-better-right .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.better-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.better-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.better-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.better-feature h3 {
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.better-feature p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.better-stat {
    text-align: center;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 12px;
}

.better-stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    text-shadow: var(--glow-shadow);
    font-family: 'Orbitron', sans-serif;
}

.better-stat-label {
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 255, 65, 0.2);
    padding: 2.5rem;
    border-radius: 16px;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.testimonial-card.featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.testimonial-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--gradient-1);
    color: var(--bg-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 0 15px var(--glow-color);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 2px solid rgba(0, 255, 65, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.author-name {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.05rem;
}

.author-title {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* CTA & Blog Section */
.cta-blog-section {
    padding: 6rem 0;
    background: var(--bg-darker);
}

.cta-section {
    text-align: center;
    margin-bottom: 4rem;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.blog-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.blog-image {
    width: 100%;
    height: 200px;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    border-bottom: 1px solid rgba(0, 255, 65, 0.2);
}

.blog-content {
    padding: 2rem;
}

.blog-content h3 {
    color: var(--text-light);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.blog-meta {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

/* Final CTA Section */
.final-cta-section {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.final-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.cta-arrow {
    font-size: 4rem;
    color: var(--primary-color);
    text-shadow: var(--glow-shadow);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(20px);
    }
}

.cta-box {
    background: var(--bg-card);
    border: 1px solid rgba(0, 255, 65, 0.3);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-glow);
}

.cta-box h2 {
    color: var(--text-light);
    font-size: 2rem;
    margin-bottom: 2rem;
}

/* Footer Updates */
.footer-stats {
    display: flex;
    justify-content: space-around;
    padding: 3rem 0;
    border-bottom: 1px solid rgba(0, 255, 65, 0.2);
    margin-bottom: 3rem;
}

.footer-stat {
    text-align: center;
}

.footer-stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    text-shadow: var(--glow-shadow);
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 0.5rem;
}

.footer-stat-label {
    color: var(--text-muted);
    font-size: 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-subscribe {
    display: flex;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.footer-email {
    flex: 1;
    padding: 0.75rem;
    background: var(--bg-dark);
    border: 1px solid rgba(0, 255, 65, 0.3);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.footer-email:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
}

.footer-links-small {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.footer-links-small a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links-small a:hover {
    color: var(--primary-color);
}

.footer-column h4 {
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

/* Responsive Updates */
@media (max-width: 968px) {
    .solutions-grid,
    .power-grid,
    .makes-better-grid,
    .final-cta-grid {
        grid-template-columns: 1fr;
    }
    
    .better-features {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .roadmap-timeline {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}
