@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-deep: #020304;
    --accent-main: #10b981;
    --accent-light: #34d399;
    --platinum: #e2e8f0;
    --nav-bg: rgba(5, 7, 10, 0.95);
    --sub-bg: rgba(10, 12, 16, 0.85);
    --glass-border: rgba(255, 255, 255, 0.08);
    --line-color: rgba(16, 185, 129, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-deep);
    color: var(--platinum);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Ensure all sections have consistent background */
.hero-banner,
.product-section,
.why-choose-section,
.capabilities-section,
.stats-section,
.testimonial-section,
.new-footer {
    background-color: var(--bg-deep);
}

/* Common button styles */
.btn-glass-emerald {
    background: rgba(16, 185, 129, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #fff;
    padding: 16px 36px;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 100px;
    transition: all 0.4s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-glass-emerald:hover {
    background: rgba(16, 185, 129, 0.15);
    border-color: var(--accent-main);
    transform: translateY(-2px);
}

.btn-ghost-platinum {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    padding: 16px 36px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 100px;
    transition: all 0.4s ease;
    cursor: pointer;
}

.btn-ghost-platinum:hover {
    border-color: var(--accent-main);
    color: var(--accent-main);
}

.btn-contact-platinum {
    background: linear-gradient(135deg, #f8fafc, #94a3b8);
    color: #000;
    padding: 10px 24px;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 100px;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-contact-platinum:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .btn-glass-emerald,
    .btn-ghost-platinum,
    .btn-contact-platinum {
        padding: 12px 24px;
        font-size: 0.8rem;
    }
}

/* Add to main.css */
canvas {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Ensure Three.js canvas is visible */
#canvas-container canvas {
    position: relative !important;
    z-index: 50 !important;
}

/* Fix for reveal animations */
.reveal {
    will-change: transform, opacity;
    width: 100%; 
    
}

.gallery-item{height: 300px;}

/*.reveal .gallery-item img{height: 350px;}*/

/* Ensure content is visible */
.narrative-block,
.visual-aperture,
.gallery-container,
.emerald-stage-container {
    opacity: 1 !important;
    visibility: visible !important;
}