/* 
   IT Solutions Neemrana — Cyberpunk / Dark Glassmorphism Theme 
*/
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
  --bg-dark: #05050A;
  --bg-surface: rgba(15, 23, 42, 0.6);
  --glass-border: rgba(255, 255, 255, 0.08);
  --neon-cyan: #00F0FF;
  --neon-purple: #BD00FF;
  --text-main: #F8FAFC;
  --text-muted: #94A3B8;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 16px;
  --shadow-neon: 0 0 20px rgba(0, 240, 255, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.8;
  overflow-x: hidden;
  position: relative;
}

/* Cyber mesh background effect */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background-image: 
    radial-gradient(circle at 15% 50%, rgba(189, 0, 255, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 85% 30%, rgba(0, 240, 255, 0.08) 0%, transparent 40%);
  z-index: -1;
  pointer-events: none;
}

a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
img { max-width: 100%; height: auto; display: block; }

/* NAV */
.site-nav {
  background: rgba(5, 5, 10, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  position: sticky; top: 0; z-index: 100; padding: 18px 0;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; }
.site-logo { 
  font-family: var(--font-heading); font-size: 1.6rem; font-weight: 800; 
  color: #fff; letter-spacing: 1px; text-transform: uppercase;
}
.site-logo .accent { color: var(--neon-cyan); text-shadow: 0 0 10px rgba(0,240,255,0.4); }
.site-logo .solution { color: var(--neon-purple); font-weight: 400; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-weight: 500; font-size: 0.95rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.nav-links a:hover { color: var(--neon-cyan); }
.nav-links .btn-contact {
  background: transparent;
  color: var(--neon-cyan); padding: 10px 24px; border-radius: 4px;
  border: 1px solid var(--neon-cyan);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}
.nav-links .btn-contact:hover { 
  background: var(--neon-cyan); color: #000;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.6); 
}

/* BLOG CONTAINER */
.blog-container { max-width: 800px; margin: 0 auto; padding: 0 24px; }

/* HERO */
.blog-hero { padding: 100px 0 60px; text-align: left; position: relative; }
.category-badge {
  display: inline-block; background: rgba(189, 0, 255, 0.1); 
  color: var(--neon-purple); border: 1px solid rgba(189, 0, 255, 0.3);
  padding: 8px 16px; border-radius: 4px; font-size: 0.8rem; font-weight: 700;
  margin-bottom: 24px; text-transform: uppercase; letter-spacing: 2px;
  font-family: var(--font-heading);
}
.blog-title {
  font-family: var(--font-heading); font-size: 4rem; font-weight: 800;
  line-height: 1.1; color: #fff; margin-bottom: 24px; text-transform: uppercase;
}
.blog-title .highlight { 
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.blog-subtitle { font-size: 1.1rem; color: var(--text-muted); margin: 0 0 40px; line-height: 1.8; }
.author-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 40px; }
.author-meta img { width: 50px; height: 50px; border-radius: 50%; border: 2px solid var(--neon-cyan); }
.author-details { text-align: left; }
.author-name { display: block; font-weight: 600; font-family: var(--font-heading); color: #fff; letter-spacing: 1px; }
.post-date { font-size: 0.85rem; color: var(--text-muted); font-family: monospace; }

/* HERO IMAGE */
.hero-image-wrapper {
  margin-bottom: 60px; border-radius: 8px; overflow: hidden;
  box-shadow: var(--shadow-neon); border: 1px solid rgba(0, 240, 255, 0.3);
  position: relative;
}
.hero-image-wrapper::after {
  content: ''; position: absolute; top:0; left:0; width: 100%; height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(5,5,10,0.8));
  pointer-events: none;
}
.hero-image-wrapper img { width: 100%; display: block; filter: contrast(1.1) brightness(0.9); }

/* BLOG CONTENT */
.blog-content { padding-bottom: 60px; }
.blog-content h2 { 
  font-family: var(--font-heading); font-size: 2.2rem; color: #fff; 
  margin: 70px 0 24px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 10px;
}
.blog-content h3 { font-family: var(--font-heading); font-size: 1.4rem; color: var(--neon-cyan); margin: 32px 0 14px; font-weight: 600; }
.blog-content p { font-size: 1.1rem; margin-bottom: 24px; color: var(--text-muted); line-height: 1.9; }
.blog-content strong { color: #fff; font-weight: 600; }

/* HIGHLIGHT BOX */
.highlight-box {
  background: rgba(0, 240, 255, 0.03);
  backdrop-filter: blur(10px); border: 1px solid rgba(0, 240, 255, 0.2);
  border-left: 4px solid var(--neon-cyan); border-radius: 4px;
  padding: 30px; margin: 40px 0; font-size: 1.1rem;
  color: #fff; line-height: 1.8;
}

/* SERVICE GRID */
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin: 40px 0; }
.service-card {
  background: var(--bg-surface); backdrop-filter: blur(12px); 
  border: 1px solid var(--glass-border); border-radius: 8px; padding: 32px;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.service-card:hover { 
  border-color: var(--neon-purple); transform: translateY(-5px); 
  box-shadow: 0 10px 30px rgba(189, 0, 255, 0.15); 
}
.service-icon { 
  width: 50px; height: 50px; background: rgba(189, 0, 255, 0.1); 
  border-radius: 4px; display: flex; align-items: center; justify-content: center; 
  margin-bottom: 20px; font-size: 1.5rem; color: var(--neon-purple); 
}
.service-card h3 { font-size: 1.2rem; margin: 0 0 12px; color: #fff; }
.service-card p { font-size: 0.95rem; color: var(--text-muted); margin: 0; }

/* FEATURE LIST */
.feature-list { list-style: none; margin: 30px 0; padding: 0; }
.feature-list li { 
  padding: 16px 20px; background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05); border-radius: 4px;
  display: flex; align-items: flex-start; gap: 16px; margin-bottom: 12px;
  transition: background 0.3s;
}
.feature-list li:hover { background: rgba(0,240,255,0.05); border-color: rgba(0,240,255,0.2); }
.check { color: var(--neon-cyan); font-size: 1.2rem; margin-top: 2px; }

/* STEPS */
.steps { margin: 40px 0; position: relative; }
.steps::before { 
  content:''; position: absolute; left: 24px; top: 0; bottom: 0; 
  width: 1px; background: rgba(255,255,255,0.1); 
}
.step { display: flex; gap: 24px; margin-bottom: 30px; position: relative; z-index: 1; }
.step-num { 
  width: 48px; height: 48px; background: var(--bg-dark); 
  border: 1px solid var(--neon-cyan); color: var(--neon-cyan); 
  border-radius: 50%; display: flex; align-items: center; justify-content: center; 
  font-size: 1.2rem; font-weight: 800; font-family: monospace; flex-shrink: 0;
  box-shadow: 0 0 15px rgba(0,240,255,0.2);
}
.step-content { background: var(--bg-surface); padding: 24px; border-radius: 8px; border: 1px solid var(--glass-border); width: 100%; }
.step-content h3 { margin: 0 0 8px; color: #fff; }
.step-content p { margin: 0; }

/* INLINE IMAGE */
.article-image { margin: 50px 0; border-radius: 8px; overflow: hidden; border: 1px solid var(--glass-border); position: relative; }
.article-image img { filter: grayscale(20%) contrast(1.2); transition: filter 0.5s; }
.article-image:hover img { filter: grayscale(0) contrast(1); }
.article-image figcaption { background: #000; text-align: center; font-size: 0.85rem; color: var(--neon-cyan); padding: 12px; font-family: monospace; letter-spacing: 1px; text-transform: uppercase; }

/* CTA BANNER */
.premium-cta {
  background: linear-gradient(45deg, rgba(15,23,42,0.8), rgba(0,0,0,0.9));
  border: 1px solid rgba(189, 0, 255, 0.3);
  padding: 60px 40px; border-radius: 8px; text-align: center; margin: 60px 0;
  box-shadow: 0 0 40px rgba(189, 0, 255, 0.1); position: relative; overflow: hidden;
}
.premium-cta::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-purple), transparent);
}
.premium-cta h3 { font-family: var(--font-heading); color: #fff; font-size: 2.5rem; margin: 0 0 16px; text-transform: uppercase; }
.premium-cta p { color: var(--text-muted); font-size: 1.1rem; margin: 0 auto 30px; max-width: 500px; }
.btn-cta {
  display: inline-block; background: var(--neon-purple); color: #fff;
  padding: 16px 40px; border-radius: 4px; font-weight: 700; font-size: 1.1rem;
  text-transform: uppercase; letter-spacing: 2px; transition: all 0.3s;
  box-shadow: 0 0 20px rgba(189, 0, 255, 0.4);
}
.btn-cta:hover { background: #fff; color: var(--neon-purple); box-shadow: 0 0 30px rgba(255, 255, 255, 0.5); transform: scale(1.02); }

/* FOOTER */
.footer { background-color: #020204; border-top: 1px solid rgba(255,255,255,0.05); padding: 80px 0 30px; margin-top: 60px; }
.footer-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; }
.footer h2 { font-family: var(--font-heading); font-size: 1.5rem; color: #fff; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.footer h3 { font-family: var(--font-heading); font-size: 1.1rem; color: var(--neon-cyan); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.footer p, .footer a { color: var(--text-muted); font-size: 0.95rem; }
.footer a:hover { color: var(--neon-purple); }
.social-icons { display: flex; gap: 16px; margin-top: 20px; }
.social-icons a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.1); border-radius: 4px; color: #fff; transition: 0.3s; }
.social-icons a:hover { border-color: var(--neon-cyan); color: var(--neon-cyan); box-shadow: 0 0 10px rgba(0,240,255,0.2); }
.keyword-links { max-width: 1200px; margin: 40px auto 0; padding: 24px; text-align: center; border-top: 1px solid rgba(255,255,255,0.05); }
.keyword-links p { color: var(--text-muted); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.keyword-links a { color: #556; margin: 0 10px; font-size: 0.85rem; transition: color 0.3s; }
.keyword-links a:hover { color: var(--neon-cyan); }
.footer-bottom { text-align: center; margin-top: 20px; font-size: 0.85rem; color: #445; font-family: monospace; }

/* WHATSAPP */
.whatsapp-float {
  position: fixed; width: 60px; height: 60px; bottom: 30px; right: 30px;
  background: #000; color: #25d366; border: 2px solid #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 30px;
  box-shadow: 0 0 20px rgba(37,211,102,0.2); z-index: 200; transition: all 0.3s;
}
.whatsapp-float:hover { background: #25d366; color: #000; box-shadow: 0 0 30px rgba(37,211,102,0.6); transform: scale(1.1); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .blog-title { font-size: 2.5rem; }
  .blog-hero { padding: 60px 0 40px; }
  .nav-links a.hide-mobile { display: none; }
  .service-grid { grid-template-columns: 1fr; }
  .premium-cta h3 { font-size: 1.8rem; }
  .steps::before { left: 20px; }
  .step { gap: 16px; flex-direction: column; }
  .step-num { width: 40px; height: 40px; font-size: 1rem; }
}
