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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    overflow-x: hidden;
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #00ffff;
    border-radius: 50%;
    animation: float 6s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 1; }
}

.neon-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0,255,255,0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1rem 2rem;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,255,255,0.3);
    z-index: 100;
    transition: all 0.3s ease;
}

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

.logo {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0,255,255,0.5);
    text-decoration: none;
}

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

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover, .nav-links a.active {
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0,255,255,0.8);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00ffff, #ff00ff, #00ff00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0,255,255,0.5);
    animation: glitch 2s infinite;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: typewriter 3s ease-out;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.8;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid #00ffff;
    color: #00ffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: rgba(0,255,255,0.1);
    box-shadow: 0 0 30px rgba(0,255,255,0.5);
    transform: translateY(-2px);
}

/* General Section Styling */
.section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0,255,255,0.5);
}

/* About Section */
.about-content {
    background: rgba(0,0,0,0.5);
    padding: 3rem;
    border: 1px solid rgba(0,255,255,0.3);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    animation: slideInLeft 1s ease-out;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.mission-list {
    list-style: none;
    margin-top: 2rem;
}

.mission-list li {
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(0,255,255,0.1);
    border-left: 4px solid #00ffff;
    border-radius: 5px;
    animation: fadeIn 1s ease-out;
}

.mission-list strong {
    font-family: 'Orbitron', monospace;
    color: #00ffff;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* Divisions Section */
.divisions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.division-card {
    background: rgba(0,0,0,0.7);
    border: 1px solid rgba(0,255,255,0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.division-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0,255,255,0.1) 0%, transparent 70%);
    transition: transform 0.5s ease;
    transform: scale(0);
}

.division-card:hover::before {
    transform: scale(1);
}

.division-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0,255,255,0.3);
    border-color: #00ffff;
}

.division-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.division-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #00ffff;
}

.division-description {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.keyword {
    background: rgba(255,0,255,0.2);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(255,0,255,0.3);
}

.enter-lab {
    background: transparent;
    border: 2px solid #ff00ff;
    color: #ff00ff;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.enter-lab:hover {
    background: rgba(255,0,255,0.1);
    box-shadow: 0 0 20px rgba(255,0,255,0.5);
    transform: scale(1.05);
}

/* Collaborate Section */
.collaborate {
    background: rgba(0,0,0,0.8);
    border: 1px solid rgba(0,255,255,0.3);
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    margin-top: 3rem;
}

.collaborate-title {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #00ff00;
    text-shadow: 0 0 20px rgba(0,255,0,0.5);
}

.collaborate-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.collaborate-option {
    background: transparent;
    border: 2px solid #00ff00;
    color: #00ff00;
    padding: 1rem 1.5rem;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.collaborate-option:hover {
    background: rgba(0,255,0,0.1);
    box-shadow: 0 0 20px rgba(0,255,0,0.5);
    transform: translateY(-2px);
}

/* Contact Section */
.contact-content {
    background: rgba(0,0,0,0.5);
    padding: 3rem;
    border: 1px solid rgba(0,255,255,0.3);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Form */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
}

.form-input, .form-textarea {
    width: 100%;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(0,255,255,0.3);
    color: #ffffff;
    padding: 0.8rem 1rem;
    border-radius: 5px;
    font-family: 'Exo 2', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: #00ffff;
    box-shadow: 0 0 15px rgba(0,255,255,0.3);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-button {
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid #00ffff;
    color: #00ffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: inline-block;
    margin-top: 1rem;
}

.submit-button:hover {
    background: rgba(0,255,255,0.1);
    box-shadow: 0 0 30px rgba(0,255,255,0.5);
}

/* Footer */
.footer {
    background: rgba(0,0,0,0.9);
    border-top: 1px solid rgba(0,255,255,0.3);
    padding: 3rem 2rem 1rem;
    text-align: center;
    margin-top: 5rem;
}

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

.footer-section h3 {
    font-family: 'Orbitron', monospace;
    color: #00ffff;
    margin-bottom: 1rem;
}

.footer-section a {
    color: #ffffff;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #00ffff;
}

.footer-bottom {
    border-top: 1px solid rgba(0,255,255,0.3);
    padding-top: 2rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Chat Toggle */
.chat-toggle {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, #00ffff, #0088cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 0 30px rgba(0,255,255,0.5);
    animation: pulse 2s infinite;
}

/* Keyframes */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes glitch {
    0%, 100% { transform: translate(0); }
    10% { transform: translate(-2px, 2px); }
    20% { transform: translate(2px, -2px); }
    30% { transform: translate(-2px, -2px); }
    40% { transform: translate(2px, 2px); }
    50% { transform: translate(-2px, 2px); }
    60% { transform: translate(2px, -2px); }
    70% { transform: translate(-2px, -2px); }
    80% { transform: translate(2px, 2px); }
    90% { transform: translate(-2px, 2px); }
}

@keyframes typewriter {
    from { width: 0; }
    to { width: 100%; }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-links {
        display: none;
    }
    
    .divisions {
        grid-template-columns: 1fr;
    }
    
    .collaborate-options {
        flex-direction: column;
        align-items: center;
    }
}


/* Additional styles for products section */
.product-categories {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.product-category {
    background: rgba(0,0,0,0.3);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
}

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

.product-card {
    background: rgba(0,0,0,0.7);
    border: 1px solid rgba(0,255,255,0.3);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.product-card.assistive {
    border-color: rgba(255,0,255,0.3);
}

.product-card.agri {
    border-color: rgba(0,255,0,0.3);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,255,255,0.2);
}

.product-card.assistive:hover {
    box-shadow: 0 10px 30px rgba(255,0,255,0.2);
}

.product-card.agri:hover {
    box-shadow: 0 10px 30px rgba(0,255,0,0.2);
}

.product-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.product-card h4 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #00ffff;
}

.product-card.assistive h4 {
    color: #ff00ff;
}

.product-card.agri h4 {
    color: #00ff00;
}

.product-desc {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.product-features span {
    background: rgba(0,255,255,0.2);
    color: #ffffff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(0,255,255,0.3);
}

.product-card.assistive .product-features span {
    background: rgba(255,0,255,0.2);
    border-color: rgba(255,0,255,0.3);
}

.product-card.agri .product-features span {
    background: rgba(0,255,0,0.2);
    border-color: rgba(0,255,0,0.3);
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .product-category {
        padding: 2rem 1rem;
    }
}
/* Product preview styles for home page */
.product-overview {
    background: rgba(0,0,0,0.3);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
}

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

.product-preview-card {
    background: rgba(0,0,0,0.6);
    border: 2px solid rgba(0,255,255,0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.product-preview-card.featured {
    border-color: rgba(255,0,255,0.5);
    background: rgba(255,0,255,0.1);
}

.product-preview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,255,255,0.3);
    border-color: #00ffff;
}



.product-preview-card.featured:hover {
    box-shadow: 0 15px 40px rgba(255,0,255,0.4);
    border-color: #ff00ff;
}

.preview-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.product-preview-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #00ffff;
}

.product-preview-card.featured h3 {
    color: #ff00ff;
    text-shadow: 0 0 20px rgba(255,0,255,0.5);
}

.product-preview-card p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    opacity: 0.9;
}

.preview-examples {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.preview-examples span {
    background: rgba(0,255,255,0.2);
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(0,255,255,0.3);
}

.product-preview-card.featured .preview-examples span {
    background: rgba(255,0,255,0.2);
    border-color: rgba(255,0,255,0.3);
}

@media (max-width: 768px) {
    .product-preview-grid {
        grid-template-columns: 1fr;
    }
    
    .product-overview {
        padding: 2rem 1rem;
    }
}