:root {
    --bg-color: #03030a;
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    
    --neon-blue: #00f0ff;
    --neon-purple: #8a2be2;
    --neon-cyan: #00ffff;
    --neon-pink: #ff00ff;
    --neon-gold: #ffd700;
    
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: cubic-bezier(0.25, 1, 0.5, 1);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

#canvas-container {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: -1; pointer-events: none;
}

.glass-panel {
    background: var(--glass-bg); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border); border-radius: 16px; box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.neon-text { color: var(--neon-cyan); text-shadow: 0 0 10px rgba(0, 255, 255, 0.5), 0 0 20px rgba(0, 255, 255, 0.3); }

.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-family: var(--font-heading); font-size: 3rem; font-weight: 700; margin-bottom: 0.5rem; background: linear-gradient(90deg, #fff, var(--text-secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.section-header p { font-size: 1.1rem; color: var(--neon-cyan); letter-spacing: 2px; text-transform: uppercase; }

.btn { display: inline-block; padding: 1rem 2rem; font-family: var(--font-heading); font-weight: 600; font-size: 1rem; border-radius: 30px; cursor: pointer; text-decoration: none; transition: all 0.4s var(--transition); position: relative; overflow: hidden; z-index: 1; }
.primary-btn { background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple)); color: #fff; border: none; box-shadow: 0 0 20px rgba(138, 43, 226, 0.4); text-align: center; }
.primary-btn:hover { box-shadow: 0 0 30px rgba(0, 240, 255, 0.6); transform: translateY(-2px); }
.secondary-btn { background: transparent; border: 1px solid var(--glass-border); color: #fff; backdrop-filter: blur(5px); text-align: center; }
.secondary-btn:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-2px); }

/* Updated Nav Settings */
.glass-nav { position: fixed; top: 20px; left: 50%; transform: translateX(-50%); width: 90%; max-width: 1200px; display: flex; justify-content: space-between; align-items: center; padding: 1rem 2rem; z-index: 100; background: rgba(10, 10, 15, 0.5); backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 50px; }

/* White box for original logo */
.nav-logo { height: 40px; width: auto; background-color: #ffffff; border-radius: 8px; padding: 5px; box-shadow: 0 0 15px rgba(255, 255, 255, 0.2); transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1); }
.nav-logo:hover { transform: scale(1.05); box-shadow: 0 0 25px rgba(0, 240, 255, 0.5); }
.logo-footer { height: 60px; background-color: #ffffff; border-radius: 12px; padding: 8px; margin-bottom: 20px; box-shadow: 0 0 20px rgba(255, 255, 255, 0.2); }

.nav-links { list-style: none; display: flex; gap: 2rem; align-items: center; }
.nav-links a { color: var(--text-secondary); text-decoration: none; font-size: 0.95rem; font-weight: 500; transition: color 0.3s ease; }
.nav-links a:hover { color: var(--neon-cyan); }
.nav-cta { background: rgba(255, 255, 255, 0.1); color: #fff; border: 1px solid rgba(255, 255, 255, 0.2); padding: 0.6rem 1.5rem; border-radius: 20px; font-family: var(--font-heading); cursor: pointer; transition: all 0.3s ease; }
.nav-cta:hover { background: var(--text-primary); color: var(--bg-color); }

.hero-section { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; position: relative; padding: 120px 2rem 50px; text-align: center; }
.hero-content { max-width: 800px; z-index: 10; }
.hero-title { font-family: var(--font-heading); font-size: 4.5rem; line-height: 1.1; font-weight: 700; margin-bottom: 1.5rem; }
.hero-subtitle { font-size: 1.25rem; color: var(--text-secondary); margin-bottom: 2.5rem; max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.6; }
.hero-buttons { display: flex; gap: 1.5rem; justify-content: center; }

/* Subpage Headers */
.page-header { padding: 180px 20px 60px; text-align: center; }

.floating-widget { position: absolute; z-index: 5; animation: float 6s ease-in-out infinite; }
.top-right { top: 20%; right: 10%; animation-delay: 0s; }
.bottom-left { bottom: 20%; left: 10%; animation-delay: 2s; }
.widget-content { background: var(--glass-bg); backdrop-filter: blur(10px); border: 1px solid var(--glass-border); padding: 1rem; border-radius: 12px; display: flex; align-items: center; gap: 1rem; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.widget-icon { font-size: 1.5rem; }
.widget-text { font-size: 0.9rem; color: #fff; }
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-20px); } 100% { transform: translateY(0px); } }

.about-section { padding: 100px 20px; max-width: 1200px; margin: 0 auto; }
.about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.about-card { padding: 2.5rem; text-align: left; transition: transform 0.4s ease; }
.about-card:hover { transform: translateY(-10px); border-color: rgba(255, 255, 255, 0.2); }
.card-icon { font-size: 2.5rem; margin-bottom: 1.5rem; }
.about-card h3 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 1rem; }
.about-card p { color: var(--text-secondary); line-height: 1.6; }

.services-section { padding: 100px 20px; max-width: 1200px; margin: 0 auto; perspective: 1000px; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.service-card { position: relative; height: 300px; background-color: transparent; perspective: 1000px; cursor: pointer; }
.service-card .service-inner { position: relative; width: 100%; height: 100%; text-align: center; transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1); transform-style: preserve-3d; }
.service-front { position: absolute; width: 100%; height: 100%; backface-visibility: hidden; padding: 2rem; display: flex; flex-direction: column; justify-content: center; align-items: center; z-index: 2; }
.service-bg-glow { position: absolute; width: 100%; height: 100%; top: 0; left: 0; border-radius: 16px; background: radial-gradient(circle at center, rgba(0, 240, 255, 0.2) 0%, transparent 70%); opacity: 0; transition: opacity 0.5s ease; z-index: 1; transform: translateZ(-10px); }
.service-card:hover .service-bg-glow { opacity: 1; }
.glow-purple { background: radial-gradient(circle at center, rgba(138, 43, 226, 0.2) 0%, transparent 70%); }
.glow-cyan { background: radial-gradient(circle at center, rgba(0, 255, 255, 0.2) 0%, transparent 70%); }
.glow-pink { background: radial-gradient(circle at center, rgba(255, 0, 255, 0.2) 0%, transparent 70%); }
.glow-blue { background: radial-gradient(circle at center, rgba(0, 50, 255, 0.2) 0%, transparent 70%); }
.glow-gold { background: radial-gradient(circle at center, rgba(255, 215, 0, 0.2) 0%, transparent 70%); }
.icon-orb { width: 60px; height: 60px; border-radius: 50%; background: rgba(255, 255, 255, 0.05); display: flex; justify-content: center; align-items: center; font-size: 1.5rem; margin-bottom: 1.5rem; box-shadow: 0 0 20px rgba(0, 0, 0, 0.5) inset; border: 1px solid var(--glass-border); transition: all 0.3s ease; }
.service-card:hover .icon-orb { transform: translateZ(30px) scale(1.1); box-shadow: 0 0 20px rgba(255, 255, 255, 0.2); }
.service-card h3 { font-family: var(--font-heading); font-size: 1.4rem; margin-bottom: 1rem; transform: translateZ(20px); }
.service-card p { color: var(--text-secondary); font-size: 0.95rem; transform: translateZ(10px); line-height: 1.5;}
.service-card a { font-family: var(--font-heading); transform: translateZ(15px); transition: color 0.3s; }
.service-card a:hover { color: var(--neon-cyan) !important; }

.stats-section { padding: 80px 20px; max-width: 1000px; margin: 0 auto; }
.stats-wrapper { display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; padding: 3rem; gap: 2rem; }
.stat-box { text-align: center; }
.stat-box h3 { font-family: var(--font-heading); font-size: 3.5rem; color: var(--neon-cyan); margin-bottom: 0.5rem; text-shadow: 0 0 15px rgba(0, 255, 255, 0.3); }
.stat-box p { color: var(--text-secondary); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem; }

.portfolio-section { padding: 100px 20px; max-width: 1200px; margin: 0 auto; }
.testimonial-grid, .portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 2rem; }
.testimonial-card, .portfolio-item { padding: 2.5rem; text-align: left; }
.testimonial-card p { font-style: italic; color: #fff; margin-bottom: 1.5rem; line-height: 1.7; }
.testimonial-card h4 { color: var(--neon-cyan); text-align: right; font-family: var(--font-heading); }

.contact-section { padding: 100px 20px; max-width: 1000px; margin: 0 auto; }
.contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; padding: 3rem; }
.contact-info h2 { font-family: var(--font-heading); font-size: 2.5rem; margin-bottom: 1rem; }
.contact-info p { color: var(--text-secondary); margin-bottom: 2rem; line-height: 1.7; }
.contact-methods { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.method-item { color: #fff; text-decoration: none; font-size: 1.1rem; display: flex; align-items: center; gap: 10px; transition: color 0.3s ease; }
.method-item:hover { color: var(--neon-cyan); }
.whatsapp-btn { border-color: #25D366; color: #25D366; }
.whatsapp-btn:hover { background: rgba(37, 211, 102, 0.1); box-shadow: 0 0 15px rgba(37, 211, 102, 0.4); }

.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.input-group { position: relative; width: 100%; }
.input-group input, .input-group textarea { width: 100%; background: rgba(0, 0, 0, 0.2); border: 1px solid var(--glass-border); border-radius: 8px; padding: 1rem; color: #fff; font-family: var(--font-body); font-size: 1rem; outline: none; transition: all 0.3s ease; }
.input-group label { position: absolute; left: 1rem; top: 1rem; color: var(--text-secondary); transition: all 0.3s ease; pointer-events: none; }
.input-group input:focus ~ label, .input-group input:not(:placeholder-shown) ~ label, .input-group textarea:focus ~ label, .input-group textarea:not(:placeholder-shown) ~ label { top: -0.5rem; left: 0.8rem; font-size: 0.8rem; background: var(--bg-color); padding: 0 0.4rem; color: var(--neon-cyan); }
.input-group input:focus, .input-group textarea:focus { border-color: var(--neon-cyan); box-shadow: 0 0 10px rgba(0, 255, 255, 0.1); }
.submit-btn { width: 100%; margin-top: 1rem; }

footer { border-top: 1px solid var(--glass-border); padding: 4rem 2rem 2rem; margin-top: 4rem; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); }
.footer-content { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 2rem; margin-bottom: 3rem; }
.footer-brand h3 { font-family: var(--font-heading); font-size: 1.8rem; margin-bottom: 0.5rem; }
.footer-brand p { color: var(--text-secondary); max-width: 400px; line-height: 1.6;}
.footer-links { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-links a { color: var(--text-secondary); text-decoration: none; transition: color 0.3s ease; }
.footer-links a:hover { color: var(--neon-blue); }
.footer-socials { display: flex; gap: 1rem; }
.social-icon { width: 40px; height: 40px; border-radius: 50%; background: var(--glass-bg); border: 1px solid var(--glass-border); display: flex; justify-content: center; align-items: center; color: #fff; text-decoration: none; transition: all 0.3s ease; }
.social-icon:hover { border-color: var(--neon-purple); color: var(--neon-purple); box-shadow: 0 0 15px rgba(138, 43, 226, 0.3); }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255, 255, 255, 0.05); color: #555; font-size: 0.9rem; }

/* Content Wrapper for generic pages */
.content-wrapper { background: var(--glass-bg); backdrop-filter: blur(12px); border: 1px solid var(--glass-border); padding: 3rem; border-radius: 16px; margin-bottom: 2rem; color: var(--text-secondary); line-height: 1.8; }
.content-wrapper h2 { color: var(--text-primary); font-family: var(--font-heading); margin-bottom: 1.5rem; font-size: 2rem; }

/* Responsive Mobile Rules */
@media (max-width: 900px) {
    .contact-container { grid-template-columns: 1fr; }
    .floating-widget { display: none; }
}
@media (max-width: 768px) {
    .glass-nav { flex-direction: column; border-radius: 20px; text-align: center; padding: 1.5rem; gap: 1.2rem; }
    .nav-links { flex-wrap: wrap; justify-content: center; gap: 1rem; }
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .hero-buttons { flex-direction: column; }
    .section-header h2 { font-size: 2.2rem; }
    .page-header { padding-top: 250px; } /* Buffer for stack nav */
    .services-grid, .about-grid, .testimonial-grid { grid-template-columns: 1fr; }
    .footer-content { flex-direction: column; align-items: center; text-align: center; }
    .footer-links { align-items: center; }
}

/* Content Block Injections */
.content-banner-img { width: 100%; max-height: 400px; object-fit: cover; border-radius: 12px; margin-bottom: 2rem; box-shadow: 0 10px 30px rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.1); }
.content-section { display: flex; flex-direction: column; gap: 2rem; margin-bottom: 3rem; }
.content-text p { font-size: 1.05rem; margin-bottom: 1.5rem; text-align: justify; }

/* Pricing Grid */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 2rem; }
.pricing-card { background: rgba(0, 0, 0, 0.4); border: 1px solid var(--glass-border); padding: 2.5rem 2rem; border-radius: 16px; text-align: center; transition: all 0.3s; position: relative; overflow: hidden; }
.pricing-card:hover { transform: translateY(-10px); border-color: var(--neon-blue); box-shadow: 0 0 20px rgba(0, 240, 255, 0.2); }
.pricing-price { font-size: 2.5rem; font-family: var(--font-heading); color: var(--neon-cyan); margin: 1.5rem 0; }
.pricing-features { list-style: none; margin: 2rem 0; text-align: left; }
.pricing-features li { padding: 0.8rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); color: #fff; }

/* Stages Grid */
.stages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.stage-card { text-align: center; padding: 2rem; border-radius: 12px; background: rgba(255, 255, 255, 0.02); border: 1px solid var(--glass-border); position: relative; }
.stage-card h3 { color: var(--neon-purple); margin: 1rem 0; font-family: var(--font-heading); }
.stage-icon { display: inline-flex; justify-content: center; align-items: center; width: 60px; height: 60px; background: rgba(138, 43, 226, 0.2); border-radius: 50%; border: 1px solid var(--neon-purple); font-size: 1.5rem; margin-bottom: 1rem; }

/* FAQ Accordion Lists */
.faq-block { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.faq-item { background: rgba(255, 255, 255, 0.03); border: 1px solid var(--glass-border); border-radius: 8px; padding: 1.5rem; transition: transform 0.3s ease; }
.faq-item:hover { transform: translateY(-3px); border-color: rgba(255,255,255,0.2); }
.faq-item h4 { color: var(--neon-blue); margin-bottom: 0.5rem; font-size: 1.1rem; }
.faq-item p { margin: 0; color: #ccc; line-height: 1.6; }

/* Why Choose Us Grid */
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-top: 2rem; }
.trust-card { text-align: center; padding: 2.5rem 1.5rem; border-radius: 16px; transition: transform 0.4s ease; background: var(--glass-bg); border: 1px solid var(--glass-border); }
.trust-card:hover { transform: translateY(-10px); box-shadow: 0 10px 30px rgba(0, 240, 255, 0.1); border-color: var(--neon-cyan); }
.trust-icon { font-size: 3rem; margin-bottom: 1.5rem; color: var(--text-primary); text-shadow: 0 0 15px rgba(255,255,255,0.4); }
.trust-card h3 { font-family: var(--font-heading); font-size: 1.3rem; margin-bottom: 1rem; color: #fff; }
.trust-card p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; }

/* Floating WhatsApp Button */
.floating-whatsapp { position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px; background-color: #25D366; color: #FFF; border-radius: 50px; text-align: center; font-size: 30px; box-shadow: 0px 4px 20px rgba(37, 211, 102, 0.4); z-index: 1000; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.floating-whatsapp:hover { transform: scale(1.1) translateY(-5px); box-shadow: 0px 8px 25px rgba(37, 211, 102, 0.6); color: #fff; }
.floating-whatsapp svg { width: 35px; height: 35px; fill: currentColor; }

/* Visual Portfolio Grid */
.portfolio-visual-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 2rem; }
.portfolio-mockup { position: relative; border-radius: 12px; overflow: hidden; background: #000; aspect-ratio: 16/9; border: 1px solid var(--glass-border); cursor: pointer; }
.portfolio-mockup img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; opacity: 0.7; }
.portfolio-mockup:hover img { transform: scale(1.05); opacity: 0.3; }
.portfolio-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; opacity: 0; transition: opacity 0.3s ease; padding: 2rem; background: rgba(0,0,0,0.4); }
.portfolio-mockup:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay h3 { color: var(--neon-cyan); font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 0.5rem; text-shadow: 0 0 10px rgba(0,255,255,0.5); }
.portfolio-overlay p { color: #fff; font-size: 0.9rem; }
