:root {
    --bg-main: #FFFFFF;
    --bg-secondary: #F8FAFC; /* Light gray for sections */
    --text-primary: #051139; /* Deep Navy from logo */
    --text-secondary: #475569; /* Slate gray */
    --accent-teal: #009ED9; /* Cyan from logo */
    --accent-blue: #051139; /* Navy as secondary accent */
    --gradient-primary: linear-gradient(135deg, #009ED9, #051139);
    --gradient-glow: linear-gradient(135deg, rgba(0, 158, 217, 0.15), rgba(5, 17, 57, 0.15));
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(5, 17, 57, 0.1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background-color: var(--bg-main); color: var(--text-primary); line-height: 1.6; overflow-x: hidden; }

/* Typography */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; margin-bottom: 1rem; color: var(--text-primary); }
h1 { font-size: 3.5rem; letter-spacing: -1px; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; color: var(--text-secondary); }

.text-gradient {
    background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: inline-block;
}

/* Layout */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 5%; }
section { padding: 5rem 0; position: relative; }
.section-header { text-align: center; margin-bottom: 3rem; }

/* Utilities */
.glass-panel { background: var(--glass-bg); backdrop-filter: blur(12px); border: 1px solid var(--glass-border); border-radius: 16px; padding: 2rem; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04); }
.glass-card { background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%); border: 1px solid var(--glass-border); border-radius: 20px; padding: 2rem; box-shadow: 0 15px 35px rgba(5, 17, 57, 0.05); position: relative; overflow: hidden; }
.icon-large { font-size: 3.5rem; background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.logo-img {     font-size: 0;height: 40px; border-radius: 4px; object-fit: contain; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.8rem 1.8rem; border-radius: 8px; font-family: var(--font-heading); font-weight: 600; text-decoration: none; transition: var(--transition); cursor: pointer; border: none; font-size: 1rem; }
.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.9rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.1rem; }
.btn-primary {     background: #151851;color: white !important; box-shadow: 0 4px 15px rgba(0, 158, 217, 0.25); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0, 158, 217, 0.35); color: white; }
.btn-secondary { background: white; color: var(--text-primary); border: 1px solid var(--glass-border); box-shadow: 0 4px 10px rgba(0,0,0,0.03); }
.btn-secondary:hover { background: #F8FAFC; transform: translateY(-2px); border-color: var(--accent-teal); }
.btn-block { width: 100%; }

/* Navbar */
.navbar { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; transition: var(--transition); padding: 1.5rem 0; background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(10px); border-bottom: 1px solid transparent; }
.navbar.scrolled { padding: 1rem 0; border-bottom: 1px solid var(--glass-border); box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04); background: rgba(255, 255, 255, 0.98); }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo {    font-size: 0; font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; color: var(--text-primary); text-decoration: none; display: flex; align-items: center; gap: 0.5rem; }
.nav-links { display: flex; list-style: none; gap: 2rem; align-items: center; }
.nav-links a { color: var(--text-secondary); text-decoration: none; font-weight: 500; transition: var(--transition); }
.nav-links a:hover { color: var(--accent-teal); }
.menu-toggle { display: none; font-size: 1.5rem; cursor: pointer; color: var(--text-primary); }

/* Hero */
.hero { min-height: 100vh; display: flex; align-items: center; padding-top: 80px; overflow: hidden; position: relative; }
.hero::before { content: ''; position: absolute; width: 100%; height: 100%; top: 0; left: 0; background: var(--bg-secondary); z-index: -2; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; }
.gradient-sphere { position: absolute; top: 20%; right: 10%; width: 500px; height: 500px; border-radius: 50%; background: var(--gradient-glow); filter: blur(80px); opacity: 0.8; animation: float 10s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-30px) scale(1.05); } }
.grid-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: linear-gradient(rgba(5, 17, 57, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(5, 17, 57, 0.03) 1px, transparent 1px); background-size: 30px 30px; transform: perspective(500px) rotateX(60deg) translateY(-100px) translateZ(-200px); animation: gridMove 20s linear infinite; }
@keyframes gridMove { 0% { background-position: 0 0; } 100% { background-position: 0 30px; } }
.hero-content { max-width: 800px; padding-bottom: 2rem; }
.hero-content p { font-size: 1.2rem; margin-bottom: 2rem; color: var(--text-secondary); }
.hero-btns { display: flex; gap: 1rem; }

/* About Section */
.about { background: var(--bg-main); }
.about-container { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.stats { display: flex; gap: 2rem; margin-bottom: 2rem; }
.stat-item h3 { font-size: 2.2rem; color: var(--accent-teal); margin-bottom: 0.2rem; }
.stat-item span { font-size: 0.9rem; color: var(--text-secondary); }
.cube-animation { height: 150px; display: flex; align-items: center; justify-content: center; background: var(--bg-secondary); border-radius: 12px; border: 1px solid var(--glass-border); }

/* Services */
.services { background: var(--bg-secondary); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; }
.service-card { background: var(--bg-main); border: 1px solid var(--glass-border); border-radius: 16px; padding: 2rem 1.5rem; transition: var(--transition); position: relative; overflow: hidden; z-index: 1; box-shadow: 0 4px 15px rgba(0,0,0,0.02); }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: var(--gradient-primary); opacity: 0; transition: var(--transition); z-index: -1; }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(5, 17, 57, 0.08); border-color: transparent; }
.service-card:hover::before { opacity: 0.04; }
.service-icon { font-size: 2rem; color: var(--accent-teal); margin-bottom: 1rem; transition: var(--transition); }
.service-card:hover .service-icon { transform: scale(1.1); }
.service-card h3 { font-size: 1.1rem; margin-bottom: 0; }

/* Industries */
.industries { background: var(--bg-main); }
.industries-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1.2rem; }
.ind-card { background: var(--bg-main); border: 1px solid var(--glass-border); border-radius: 12px; padding: 1.5rem 1rem; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1rem; transition: var(--transition); cursor: default; box-shadow: 0 4px 10px rgba(0,0,0,0.015); }
.ind-card i { font-size: 1.8rem; color: var(--accent-blue); transition: var(--transition); }
.ind-card span { font-weight: 500; font-size: 0.9rem; color: var(--text-primary); }
.ind-card:hover { background: var(--bg-secondary); border-color: var(--accent-teal); transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.04); }
.ind-card:hover i { color: var(--accent-teal); }

/* Vision / Timeline */
.vision { background: var(--bg-secondary); }
.timeline { position: relative; max-width: 800px; margin: 0 auto; }
.timeline::before { content: ''; position: absolute; top: 0; bottom: 0; left: 20px; width: 2px; background: var(--glass-border); }
.timeline-item { position: relative; padding-left: 60px; margin-bottom: 1.5rem; }
.timeline-dot { position: absolute; top: 20px; left: 14px; width: 14px; height: 14px; border-radius: 50%; background: var(--accent-teal); box-shadow: 0 0 10px rgba(0, 158, 217, 0.3); }
.timeline-content { padding: 1.2rem; background: var(--bg-main); border: 1px solid var(--glass-border); border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.02); }
.timeline-content h4 { color: var(--accent-blue); margin-bottom: 0.5rem; }
.timeline-content p { margin-bottom: 0; }

/* Why Choose Section */
.why-choose { background: var(--bg-main); }
.features-wrapper { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }
.feature-block { text-align: center; padding: 1.5rem; }
.f-icon { width: 70px; height: 70px; margin: 0 auto 1.2rem; background: rgba(0, 158, 217, 0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: var(--accent-teal); border: 1px solid rgba(0, 158, 217, 0.15); transition: var(--transition); }
.feature-block:hover .f-icon { background: var(--accent-teal); color: white; transform: rotateY(180deg); }
.feature-block h4 { margin-bottom: 0.5rem; color: var(--accent-blue); }

/* CTA Section */
.cta-section { background: var(--bg-secondary); }
.cta-box { text-align: center; padding: 3rem 1.5rem; background: var(--gradient-glow); border: 1px solid rgba(0, 158, 217, 0.15); border-radius: 16px; box-shadow: 0 10px 40px rgba(0, 158, 217, 0.05); }
.cta-box h2 { font-size: 1.8rem; margin-bottom: 1.2rem; font-weight: 500; }
.cta-box p { font-size: 1.1rem; margin-bottom: 1.5rem; color: var(--text-primary); }

/* Contact Form */
.contact { background: var(--bg-main); }
.contact-container { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; }
.contact-methods { margin: 1.5rem 0; }
.method { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; font-size: 1rem; color: var(--text-secondary); }
.method i { color: var(--accent-teal); font-size: 1.1rem; min-width: 20px; text-align: center; }
.map-placeholder { height: 200px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; color: var(--text-secondary); background: var(--bg-secondary); border-radius: 12px; border: 1px solid var(--glass-border); box-shadow: inset 0 2px 10px rgba(0,0,0,0.02); }
.glass-form { background: white; padding: 2rem; border-radius: 16px; border: 1px solid var(--glass-border); box-shadow: 0 10px 30px rgba(5, 17, 57, 0.04); }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; margin-bottom: 0.4rem; font-family: var(--font-heading); font-weight: 500; color: var(--accent-blue); }
.form-group input, .form-group textarea { width: 100%; padding: 0.8rem; background: var(--bg-secondary); border: 1px solid var(--glass-border); border-radius: 8px; color: var(--text-primary); font-family: var(--font-body); transition: var(--transition); }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--accent-teal); box-shadow: 0 0 0 2px rgba(0, 158, 217, 0.15); background: white; }

/* Footer */
footer { background: var(--accent-blue); padding: 3rem 0 1.5rem; color: white; }
.footer-container { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer-brand p { margin-top: 1rem; color: rgba(255,255,255,0.7); }
.footer-brand .logo { color: white; margin-bottom: 0.5rem; }
.footer-brand .logo .logo-img { filter: drop-shadow(0px 0px 4px rgba(255,255,255,0.2)); }
.footer-links h4, .footer-social h4 { color: white; margin-bottom: 1rem; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; transition: var(--transition); }
.footer-links a:hover { color: white; padding-left: 5px; }
.social-icons { display: flex; gap: 1rem; }
.social-icons a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: white; text-decoration: none; transition: var(--transition); border: 1px solid rgba(255,255,255,0.15); }
.social-icons a:hover { background: var(--accent-teal); border-color: var(--accent-teal); transform: translateY(-3px); }
.footer-bottom { text-align: center; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.6); font-size: 0.9rem; }

/* Animations */
.scroll-reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.5, 0, 0, 1); }
.scroll-reveal.right { transform: translateX(30px); }
.scroll-reveal.left { transform: translateX(-30px); }
.scroll-reveal.active { opacity: 1; transform: translate(0); }
.fade-in-up { animation: fadeInUp 0.8s ease forwards; opacity: 0; transform: translateY(20px); }
.delay-1 { animation-delay: 0.2s; transition-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; transition-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; transition-delay: 0.6s; }
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }

/* Responsive */
@media (max-width: 992px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 1.8rem; }
    .about-container, .contact-container { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .nav-links { position: absolute; top: 100%; left: 0; width: 100%; background: white; flex-direction: column; padding: 2rem 0; gap: 1.5rem; transform: translateY(-100%); opacity: 0; pointer-events: none; transition: var(--transition); border-bottom: 1px solid var(--glass-border); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
    .nav-links.active { transform: translateY(0); opacity: 1; pointer-events: all; }
    h1 { font-size: 2.2rem; }
    .hero-btns { flex-direction: column; }
    .footer-container { grid-template-columns: 1fr; gap: 2rem; }
}
