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

:root {
    --electric-blue: #00d4ff;
    --deep-green: #00ff88;
    --dark-bg: #0a0a0f;
    --card-bg: #151520;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --neon-glow: 0 0 20px rgba(0, 212, 255, 0.5);
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.orbitron {
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 1px;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #0a0a0f 100%);
    overflow: hidden;
}

.animated-bg::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Light Rays */
.light-rays {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.ray {
    position: absolute;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(0, 212, 255, 0.4) 50%,
        transparent 100%);
    opacity: 0;
    animation: rayAnimation 8s ease-in-out infinite;
}

.ray-1 {
    left: 10%;
    animation-delay: 0s;
    filter: blur(2px);
}

.ray-2 {
    left: 30%;
    animation-delay: 1.5s;
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(0, 255, 136, 0.4) 50%,
        transparent 100%);
    filter: blur(2px);
}

.ray-3 {
    left: 50%;
    animation-delay: 3s;
    filter: blur(2px);
}

.ray-4 {
    left: 70%;
    animation-delay: 4.5s;
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(0, 212, 255, 0.4) 50%,
        transparent 100%);
    filter: blur(2px);
}

.ray-5 {
    left: 85%;
    animation-delay: 6s;
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(0, 255, 136, 0.4) 50%,
        transparent 100%);
    filter: blur(2px);
}

@keyframes rayAnimation {
    0%, 100% {
        opacity: 0;
        transform: translateY(-100%) scaleY(0.5);
    }
    50% {
        opacity: 1;
        transform: translateY(0) scaleY(1);
    }
}

/* Energy Particles */
.energy-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--electric-blue);
    box-shadow: 0 0 10px var(--electric-blue), 0 0 20px var(--electric-blue);
    animation: particleFloat 15s infinite;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle:nth-child(2) {
    left: 20%;
    animation-delay: 2s;
    animation-duration: 14s;
    background: var(--deep-green);
    box-shadow: 0 0 10px var(--deep-green), 0 0 20px var(--deep-green);
}

.particle:nth-child(3) {
    left: 35%;
    animation-delay: 1s;
    animation-duration: 16s;
}

.particle:nth-child(4) {
    left: 50%;
    animation-delay: 3s;
    animation-duration: 13s;
    background: var(--deep-green);
    box-shadow: 0 0 10px var(--deep-green), 0 0 20px var(--deep-green);
}

.particle:nth-child(5) {
    left: 65%;
    animation-delay: 4s;
    animation-duration: 15s;
}

.particle:nth-child(6) {
    left: 75%;
    animation-delay: 2.5s;
    animation-duration: 17s;
    background: var(--deep-green);
    box-shadow: 0 0 10px var(--deep-green), 0 0 20px var(--deep-green);
}

.particle:nth-child(7) {
    left: 85%;
    animation-delay: 1.5s;
    animation-duration: 14s;
}

.particle:nth-child(8) {
    left: 15%;
    animation-delay: 5s;
    animation-duration: 16s;
    background: var(--deep-green);
    box-shadow: 0 0 10px var(--deep-green), 0 0 20px var(--deep-green);
}

.particle:nth-child(9) {
    left: 45%;
    animation-delay: 3.5s;
    animation-duration: 13s;
}

.particle:nth-child(10) {
    left: 90%;
    animation-delay: 4.5s;
    animation-duration: 15s;
    background: var(--deep-green);
    box-shadow: 0 0 10px var(--deep-green), 0 0 20px var(--deep-green);
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(100px) scale(1);
        opacity: 0;
    }
}

/* Light Paths */
.light-paths {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.path-svg {
    width: 100%;
    height: 100%;
}

.light-path {
    stroke: var(--electric-blue);
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    opacity: 0.3;
    filter: blur(1px);
    animation: drawPath 8s ease-in-out infinite;
}

.path-1 {
    animation-delay: 0s;
}

.path-2 {
    animation-delay: 2s;
    stroke: var(--deep-green);
}

.path-3 {
    animation-delay: 4s;
}

@keyframes drawPath {
    0%, 100% {
        stroke-dashoffset: 200;
        opacity: 0;
    }
    50% {
        stroke-dashoffset: 0;
        opacity: 0.4;
    }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 5%;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

nav .container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--electric-blue), var(--deep-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--electric-blue);
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

section {
    padding: 100px 0;
    position: relative;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 80px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, var(--electric-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.hero .tagline {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--electric-blue);
    font-weight: 700;
    animation: fadeInUp 1.2s ease-out;
}

.hero .sub-tagline {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1.4s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1.6s ease-out;
}

.btn {
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--electric-blue), var(--deep-green));
    color: #000;
    box-shadow: var(--neon-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.8);
}

.btn-secondary {
    background: transparent;
    color: var(--electric-blue);
    border: 2px solid var(--electric-blue);
}

.btn-secondary:hover {
    background: var(--electric-blue);
    color: #000;
    transform: translateY(-3px);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--electric-blue), var(--deep-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* AR Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.ar-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
}

.ar-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.ar-card:hover {
    transform: translateY(-10px);
    border-color: var(--electric-blue);
    box-shadow: var(--neon-glow);
}

.ar-card:hover::before {
    opacity: 1;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
}

.ar-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--electric-blue);
}

.ar-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.4s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--neon-glow);
}

.product-img {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #1a1a2e, #2a2a3e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.product-img::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(0, 212, 255, 0.3));
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.product-info {
    padding: 30px;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--deep-green);
}

.product-features {
    list-style: none;
    margin-bottom: 20px;
}

.product-features li {
    padding: 8px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.product-features li::before {
    content: '✓';
    color: var(--deep-green);
    font-weight: bold;
    margin-right: 10px;
}

/* Green Energy Section */
.green-energy-section {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05), rgba(0, 212, 255, 0.05));
    border-top: 1px solid rgba(0, 255, 136, 0.2);
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
}

.green-energy-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.energy-flow-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 40px;
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid var(--deep-green);
}

.energy-step {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.energy-icon {
    font-size: 4rem;
    margin-bottom: 15px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.energy-icon.solar {
    animation-delay: 0s;
}

.energy-icon.battery {
    animation-delay: 0.5s;
}

.energy-icon.reuse {
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.energy-arrow {
    font-size: 3rem;
    color: var(--deep-green);
    font-weight: bold;
    animation: pulse 2s infinite;
}

.energy-step h3 {
    font-size: 1.5rem;
    color: var(--deep-green);
    margin-bottom: 10px;
}

.energy-step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.green-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.green-card {
    background: var(--card-bg);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 136, 0.3);
    transition: all 0.4s;
}

.green-card:hover {
    transform: translateY(-10px);
    border-color: var(--deep-green);
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.3);
}

.green-card-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.green-card h3 {
    font-size: 1.6rem;
    color: var(--deep-green);
    margin-bottom: 15px;
}

.green-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.green-benefits {
    list-style: none;
    padding: 0;
}

.green-benefits li {
    padding: 10px 0;
    color: var(--text-primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
}

.green-benefits li::before {
    content: '✓';
    color: var(--deep-green);
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.1rem;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding: 40px;
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--electric-blue), var(--deep-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    font-family: 'Rajdhani', sans-serif;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
}

/* Feature List */
.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s;
}

.feature-item:hover {
    border-color: var(--electric-blue);
    transform: translateX(10px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--electric-blue);
}

.feature-item h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
}

/* Factory Section */
.factory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.factory-card {
    position: relative;
    height: 300px;
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.factory-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e, #2a2a3e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
}

.factory-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid var(--electric-blue);
    box-shadow: var(--neon-glow);
}

.factory-label h4 {
    color: var(--electric-blue);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.factory-label p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    background: var(--card-bg);
    padding: 80px 0;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s;
}

.contact-item:hover {
    border-color: var(--electric-blue);
    box-shadow: var(--neon-glow);
}

.contact-icon {
    font-size: 2rem;
    color: var(--electric-blue);
    min-width: 40px;
}

.contact-details h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--deep-green);
}

.contact-details p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.map-container {
    background: var(--dark-bg);
    border-radius: 20px;
    height: 100%;
    min-height: 400px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    overflow: hidden;
    position: relative;
}

.map-container iframe {
    filter: grayscale(20%) brightness(0.9) contrast(1.1);
    transition: filter 0.3s;
}

.map-container:hover iframe {
    filter: grayscale(0%) brightness(1) contrast(1);
}

/* Footer */
footer {
    background: rgba(10, 10, 15, 0.95);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

footer p {
    color: var(--text-secondary);
}

/* Parallax Effect */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .tagline {
        font-size: 1.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }
}

/* Glowing Dots */
.glow-dot {
    width: 8px;
    height: 8px;
    background: var(--electric-blue);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--electric-blue);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}
