/* =============================================
   APEXPIXEL DESIGN - MAIN STYLESHEET
   Edit colors in :root to change theme globally
   ============================================= */

:root {
  --primary: #2563EB;        /* Main blue - change this to rebrand */
  --primary-dark: #1D4ED8;
  --primary-light: #EFF6FF;
  --accent: #3B82F6;
  --text-dark: #111827;
  --text-mid: #374151;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;
  --bg: #FFFFFF;
  --bg-light: #F9FAFB;
  --bg-dark: #111827;
  --border: #E5E7EB;
  --border-mid: #D1D5DB;
  --success: #10B981;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
  --font: 'Inter', 'Segoe UI', system-ui, sans-serif;
}

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

body {
  font-family: var(--font);
  font-size: 16px;
  color: var(--text-dark);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); }

/* ---- PAGES ---- */
.page { display: none; }
.page.active { display: block; }

/* Puray page ke liye horizontal scroll band karne ke liye */
html, body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

/* Navbar container fix */
.nav-inner {
  max-width: 100%;
  padding: 0 15px;
}
/* ---- NAVBAR ---- */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 68px;
  display: flex; align-items: center;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 400; font-size: 1.25rem; color: #1e293b;
  flex-shrink: 0; text-decoration: none; letter-spacing: -0.5px;
}
.nav-logo .logo-icon {
  width: 38px; height: 38px;
  background: #111;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.1rem; font-weight: 800; font-family: Georgia, serif;
}
.nav-logo span { color: var(--primary); }
.nav-logo small { display: block; font-size: 0.6rem; font-weight: 400; color: var(--text-muted); letter-spacing: 0.15em; text-transform: uppercase; line-height: 1; }

.nav-links {
  display: flex; align-items: center; gap: 0;
  margin-left: auto;
  margin-right: 1rem;
}
.nav-links a {
  font-size: 0.88rem; font-weight: 500; color: var(--text-mid);
  padding: 0.4rem 0.7rem; border-radius: 6px;
  transition: all 0.15s; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); background: var(--primary-light); }

.btn { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; border-radius: var(--radius); transition: all 0.2s; border: none; font-family: var(--font); cursor: pointer; }
.btn-primary { background: var(--primary); color: white; padding: 0.55rem 1.1rem; font-size: 0.85rem; white-space: nowrap; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(37,99,235,0.35); }
.btn-outline { background: transparent; color: var(--primary); padding: 0.6rem 1.3rem; font-size: 0.9rem; border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: white; }
.btn-white { background: white; color: var(--primary); padding: 0.7rem 1.5rem; font-size: 0.95rem; }
.btn-white:hover { background: var(--primary-light); }
.btn-white-outline { background: transparent; color: white; padding: 0.7rem 1.5rem; font-size: 0.95rem; border: 2px solid rgba(255,255,255,0.7); }
.btn-white-outline:hover { background: rgba(255,255,255,0.1); border-color: white; }
.btn-lg { padding: 0.85rem 1.8rem; font-size: 1rem; }
.btn-sm { padding: 0.4rem 1rem; font-size: 0.82rem; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.hamburger span { width: 22px; height: 2px; background: var(--text-dark); display: block; border-radius: 2px; transition: all 0.3s; }
.mobile-menu { display: none; position: fixed; top: 68px; left: 0; right: 0; background: white; border-bottom: 1px solid var(--border); padding: 1rem 1.5rem 1.5rem; z-index: 999; flex-direction: column; gap: 0.3rem; box-shadow: var(--shadow-md); }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1rem; font-weight: 500; color: var(--text-mid); padding: 0.6rem 0.5rem; border-bottom: 1px solid var(--border); }
.mobile-menu a:last-child { border: none; }
.mobile-menu .btn { margin-top: 0.5rem; justify-content: center; }

/* ---- LAYOUT HELPERS ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 60px 0; }
.section-tag { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--primary); margin-bottom: 0.6rem; display: block; }
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: 800; color: var(--text-dark); margin-bottom: 0.8rem; line-height: 1.2; }
.section-sub { font-size: 1rem; color: var(--text-muted); max-width: 560px; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header .section-sub { margin: 0 auto; }
.text-blue { color: var(--primary); }
.bg-light { background: var(--bg-light); }
.bg-dark { background: var(--bg-dark); }

/* GRID */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.align-center { align-items: center; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: 0.5rem; } .gap-2 { gap: 1rem; } .gap-3 { gap: 1.5rem; }

/* CARD */
.card { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.8rem; transition: all 0.25s; }
.card:hover { box-shadow: var(--shadow-md); border-color: var(--border-mid); transform: translateY(-2px); }
.card-icon { width: 48px; height: 48px; border-radius: 10px; background: var(--primary-light); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; color: var(--primary); font-size: 1.3rem; }

/* BADGE */
.badge { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.25rem 0.7rem; border-radius: 100px; }
.badge-blue { background: var(--primary-light); color: var(--primary); }
.badge-popular { background: var(--primary); color: white; }

/* STAT */
.stat-box { text-align: center; }
.stat-num { font-size: 2.2rem; font-weight: 800; color: var(--text-dark); line-height: 1.1; }
.stat-num span { color: var(--primary); }
.stat-label { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.25rem; }

/* CHECK LIST */
.check-list { display: flex; flex-direction: column; gap: 0.6rem; }
.check-list li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.9rem; color: var(--text-mid); }
.check-list li::before { content: ''; width: 18px; height: 18px; border-radius: 50%; background: var(--primary); flex-shrink: 0; margin-top: 1px; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 7L5.5 10L11.5 4' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-size: 12px; background-repeat: no-repeat; background-position: center; }
.check-list li.no::before { background-color: var(--border-mid); background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 3L11 11M11 3L3 11' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); }

/* BLUE CTA SECTION */
.cta-blue { background: var(--primary); color: white; padding: 80px 0; text-align: center; }
.cta-blue h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: 800; margin-bottom: 0.8rem; }
.cta-blue p { font-size: 1rem; opacity: 0.85; margin-bottom: 2rem; max-width: 500px; margin-inline: auto; margin-bottom: 2rem; }
.cta-blue .btn-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* STATS BAR */
.stats-bar { background: var(--primary); color: white; padding: 2rem 0; }
.stats-bar .grid-4 .stat-num { color: white; }
.stats-bar .stat-label { color: rgba(255,255,255,0.75); }

/* FOOTER */
footer { background: #0F172A; color: white; padding: 64px 0 0; width: 100%; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 0.9fr 0.9fr 1.2fr; gap: 2rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); align-items: start; width: 100%; }
.footer-brand .nav-logo { margin-bottom: 0.8rem; }
.footer-brand .nav-logo, .footer-brand .nav-logo span { color: white; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 240px; margin-top: 0.5rem; }
.footer-socials { display: flex; gap: 0.6rem; margin-top: 1rem; }
.footer-socials a { width: 34px; height: 34px; border-radius: 6px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; transition: all 0.2s; }
.footer-socials a:hover { background: var(--primary); border-color: var(--primary); }
.footer-col h4 { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 1.2rem; display: block; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; list-style: none; padding: 0; margin: 0; }
.footer-col ul li { display: block; }
.footer-col ul a { font-size: 0.88rem; color: rgba(255,255,255,0.65); transition: color 0.2s; display: block; }
.footer-col ul a:hover { color: white; }
.footer-subscribe p { font-size: 0.88rem; color: rgba(255,255,255,0.6); margin-bottom: 0.8rem; }
.subscribe-form { display: flex; gap: 0; }
.subscribe-form input { flex: 1; padding: 0.65rem 1rem; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); border-right: none; border-radius: var(--radius) 0 0 var(--radius); color: white; font-size: 0.88rem; font-family: var(--font); outline: none; }
.subscribe-form input::placeholder { color: rgba(255,255,255,0.35); }
.subscribe-form button { background: var(--primary); color: white; border: none; padding: 0 1.2rem; border-radius: 0 var(--radius) var(--radius) 0; font-weight: 600; font-size: 0.88rem; }
.subscribe-form button:hover { background: var(--primary-dark); }
.footer-bottom { padding: 1.2rem 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-bottom a { font-size: 0.82rem; color: rgba(255,255,255,0.4); margin-left: 1rem; transition: color 0.2s; }
.footer-bottom a:hover { color: white; }

/* =====================
   HOME PAGE
   ===================== */
.hero {
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-eyebrow { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--primary); margin-bottom: 1rem; display: block; }
.hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.2rem); font-weight: 800; line-height: 1.15; color: var(--text-dark); margin-bottom: 1.2rem; }
.hero h1 .blue { color: var(--primary); }
.hero p { font-size: 1rem; color: var(--text-muted); margin-bottom: 2rem; max-width: 480px; }
.hero-price-box {
  display: inline-flex; align-items: flex-start; gap: 0; background: var(--bg-light);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1rem 1.5rem; margin-bottom: 1.5rem; gap: 1rem;
}
.hero-price-box .starting { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.hero-price-box .price { font-size: 1.6rem; font-weight: 800; color: var(--primary); line-height: 1; }
.hero-price-box .price sub { font-size: 0.9rem; font-weight: 500; }
.hero-price-box ul { font-size: 0.8rem; color: var(--text-muted); display: flex; flex-direction: column; gap: 0.2rem; }
.hero-price-box ul li::before { content: '✓ '; color: var(--success); font-weight: 700; }
.hero-btns { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.hero-trust { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 0.4rem; font-size: 0.82rem; color: var(--text-muted); }
.trust-item .stars { color: #FBBF24; letter-spacing: 1px; }
.trust-badge { display: flex; align-items: center; gap: 0.4rem; font-size: 0.8rem; font-weight: 600; color: var(--text-mid); }
.hero-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: linear-gradient(135deg, #EFF6FF, #DBEAFE); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; font-size: 5rem; }

/* Services section */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; transition: all 0.25s; }
.service-card:hover { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(37,99,235,0.08); transform: translateY(-2px); }
.service-card .icon { width: 44px; height: 44px; border-radius: 10px; background: var(--primary-light); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; font-size: 1.2rem; }
.service-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.6rem; }
.service-card p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.6; }
.service-card a { font-size: 0.85rem; color: var(--primary); font-weight: 600; display: inline-flex; align-items: center; gap: 4px; }
.service-card a:hover { gap: 8px; }

/* Why section */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.why-features { display: flex; flex-direction: column; gap: 1.8rem; }
.why-item { display: flex; gap: 1rem; }
.why-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--primary-light); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.why-item h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.3rem; }
.why-item p { font-size: 0.88rem; color: var(--text-muted); }
.why-img { border-radius: var(--radius-lg); overflow: hidden; background: linear-gradient(135deg, #F3F4F6, #E5E7EB); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; font-size: 6rem; }

/* About section */
.about-home-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-home-img { border-radius: var(--radius-lg); overflow: hidden; background: linear-gradient(135deg, #F3F4F6, #E5E7EB); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; font-size: 6rem; }
.about-stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--border); }

/* Testimonials */
.testi-slider { position: relative; }
.testi-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; }
.testi-stars { color: #FBBF24; font-size: 1rem; letter-spacing: 2px; margin-bottom: 1rem; }
.testi-text { font-size: 1rem; color: var(--text-mid); font-style: italic; margin-bottom: 1.5rem; line-height: 1.7; }
.testi-author { display: flex; align-items: center; gap: 0.8rem; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), #60A5FA); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 0.9rem; }
.testi-author h5 { font-size: 0.92rem; font-weight: 700; }
.testi-author p { font-size: 0.8rem; color: var(--text-muted); }
.testi-dots { display: flex; gap: 0.5rem; justify-content: center; margin-top: 1.5rem; }
.testi-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border-mid); cursor: pointer; border: none; transition: all 0.2s; }
.testi-dot.active { background: var(--primary); width: 24px; border-radius: 4px; }

/* Trusted brands */
.brands-row { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 2rem; padding: 1.5rem 0; }
.brand-pill { font-size: 0.85rem; font-weight: 700; color: var(--text-muted); background: var(--bg-light); border: 1px solid var(--border); border-radius: 8px; padding: 0.5rem 1.2rem; letter-spacing: 0.04em; }

/* Free scan CTA */
.scan-section { background: var(--primary); color: white; padding: 80px 0; }
.scan-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.scan-section h2 { font-size: clamp(1.8rem, 3.5vw, 2.3rem); font-weight: 800; margin-bottom: 0.8rem; }
.scan-section p { opacity: 0.85; margin-bottom: 1.5rem; font-size: 0.95rem; }
.scan-box { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius-lg); padding: 1.5rem; }
.scan-box h4 { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 1rem; opacity: 0.85; }
.scan-list li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; padding: 0.4rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); opacity: 0.9; }
.scan-list li:last-child { border: none; }
.scan-list li::before { content: '✓'; font-weight: 700; color: #6EE7B7; }

/* =====================
   ABOUT PAGE
   ===================== */
.about-hero { padding: 100px 0 60px; }
.about-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 1rem; }
.about-hero p { color: var(--text-muted); margin-bottom: 2rem; }
.about-hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.about-hero-stat { text-align: center; padding: 0.5rem; }
.about-hero-img { border-radius: var(--radius-lg); overflow: hidden; background: linear-gradient(135deg, #EFF6FF, #DBEAFE); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; font-size: 7rem; box-shadow: var(--shadow-lg); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.story-img { border-radius: var(--radius-lg); overflow: hidden; background: linear-gradient(135deg, #F3F4F6, #E5E7EB); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; font-size: 7rem; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.value-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.8rem; text-align: center; transition: all 0.25s; }
.value-card:hover { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(37,99,235,0.08); }
.value-card .icon { width: 48px; height: 48px; background: var(--primary-light); border-radius: 10px; margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.value-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.85rem; color: var(--text-muted); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.team-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all 0.25s; }
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.team-photo { aspect-ratio: 1; background: linear-gradient(135deg, #EFF6FF, #DBEAFE); display: flex; align-items: center; justify-content: center; font-size: 4rem; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-info { padding: 1.2rem; }
.team-info h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 2px; }
.team-info .role { font-size: 0.8rem; color: var(--primary); font-weight: 600; margin-bottom: 0.5rem; }
.team-info p { font-size: 0.82rem; color: var(--text-muted); }

/* =====================
   SERVICES PAGE
   ===================== */
.services-hero { padding: 100px 0 60px; text-align: center; }
.services-tabs { display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.tab-btn { background: white; border: 1px solid var(--border); color: var(--text-mid); padding: 0.5rem 1rem; border-radius: 100px; font-size: 0.85rem; font-weight: 500; transition: all 0.2s; }
.tab-btn.active, .tab-btn:hover { background: var(--primary); color: white; border-color: var(--primary); }
.service-section { padding: 60px 0; border-bottom: 1px solid var(--border); }
.service-section:last-child { border: none; }
.service-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.service-detail-grid.reverse { direction: rtl; }
.service-detail-grid.reverse > * { direction: ltr; }
.service-detail-img { background: linear-gradient(135deg, #EFF6FF, #DBEAFE); border-radius: var(--radius-lg); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; font-size: 6rem; box-shadow: var(--shadow-md); }
.service-detail-content .section-tag { display: inline-flex; align-items: center; gap: 6px; }
.service-detail-content h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 1rem; }
.service-detail-content p { color: var(--text-muted); margin-bottom: 1.5rem; }
.what-included { margin-bottom: 1.5rem; }
.what-included h4 { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.8rem; }
.included-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem; }
.included-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--text-mid); }
.included-item::before { content: '✓'; color: var(--primary); font-weight: 700; flex-shrink: 0; }
.pricing-mini { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; margin-bottom: 1.2rem; }
.price-pill { border: 1px solid var(--border); border-radius: var(--radius); padding: 0.6rem 0.8rem; text-align: center; }
.price-pill .tier { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; font-weight: 600; letter-spacing: 0.06em; }
.price-pill .amount { font-size: 0.95rem; font-weight: 800; color: var(--primary); }
.price-pill .period { font-size: 0.7rem; color: var(--text-muted); }
.price-note { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 1.2rem; font-style: italic; }
.btn-row { display: flex; gap: 0.8rem; flex-wrap: wrap; }

/* =====================
   SOCIAL MEDIA PAGE
   ===================== */
.social-hero { padding: 100px 0 60px; }
.social-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.social-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.15; margin-bottom: 1rem; }
.social-hero h1 .blue { color: var(--primary); }
.social-hero p { color: var(--text-muted); margin-bottom: 1.5rem; }
.social-hero-img { background: linear-gradient(135deg, #EFF6FF, #DBEAFE); border-radius: var(--radius-lg); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; font-size: 6rem; box-shadow: var(--shadow-lg); }
.platforms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.platform-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; display: flex; gap: 1rem; align-items: flex-start; transition: all 0.25s; }
.platform-card:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.platform-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.platform-icon.ig { background: linear-gradient(135deg, #F97316, #EC4899); }
.platform-icon.tt { background: #000; }
.platform-icon.li { background: #0A66C2; }
.platform-icon.fb { background: #1877F2; }
.platform-icon.tw { background: #000; }
.platform-icon.yt { background: #FF0000; }
.platform-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 2px; }
.platform-card .users { font-size: 0.75rem; color: var(--primary); font-weight: 600; margin-bottom: 0.3rem; }
.platform-card p { font-size: 0.83rem; color: var(--text-muted); }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.process-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.8rem; }
.process-num { font-size: 2rem; font-weight: 800; color: var(--primary); opacity: 0.2; line-height: 1; margin-bottom: 0.5rem; }
.process-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.5rem; }
.process-card p { font-size: 0.85rem; color: var(--text-muted); }
.included-section-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.included-section-img { background: linear-gradient(135deg, #F3F4F6, #E5E7EB); border-radius: var(--radius-lg); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; font-size: 6rem; }

/* =====================
   PRICING PAGE
   ===================== */
.pricing-hero { padding: 100px 0 60px; text-align: center; }
.pricing-toggle { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 2.5rem; }
.toggle-label { font-size: 0.9rem; font-weight: 500; color: #9CA3AF; transition: all 0.2s; }
.toggle-label.active { color: #111827; font-weight: 700; }
.toggle-label:not(.active) { opacity: 0.55; }
.toggle-switch { position: relative; width: 48px; height: 26px; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider { position: absolute; inset: 0; background: #D1D5DB; border-radius: 100px; cursor: pointer; transition: 0.3s; }
.toggle-switch input:checked + .toggle-slider { background: var(--primary); }
.toggle-slider::before { content: ''; position: absolute; width: 20px; height: 20px; background: white; border-radius: 50%; left: 3px; top: 3px; transition: 0.3s; box-shadow: 0 1px 4px rgba(0,0,0,0.2); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(22px); }
.save-badge { background: #D1FAE5; color: #065F46; font-size: 0.72rem; font-weight: 700; padding: 0.2rem 0.6rem; border-radius: 100px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
.pricing-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; position: relative; transition: all 0.25s; }
.pricing-card.popular { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(37,99,235,0.12); }
.pricing-card.popular .card-header { background: var(--primary); margin: -2rem -2rem 1.5rem; padding: 1.5rem 2rem 1.2rem; border-radius: var(--radius-lg) var(--radius-lg) 0 0; color: white; }
.pricing-card.popular .plan-name { color: rgba(255,255,255,0.8); }
.pricing-card.popular .plan-title { color: white; }
.pricing-card.popular .plan-desc { color: rgba(255,255,255,0.75); }
.popular-tag { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; background: rgba(255,255,255,0.2); color: white; padding: 0.2rem 0.7rem; border-radius: 100px; display: inline-block; margin-bottom: 0.5rem; }
.plan-name { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.3rem; }
.plan-title { font-size: 1.2rem; font-weight: 800; color: var(--text-dark); margin-bottom: 0.4rem; }
.plan-desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.2rem; }
.plan-price { display: flex; align-items: baseline; gap: 2px; margin-bottom: 0.3rem; }
.plan-price .currency { font-size: 1.2rem; font-weight: 700; color: var(--text-dark); }
.plan-price .amount { font-size: 2.5rem; font-weight: 800; color: var(--text-dark); line-height: 1; }
.plan-price .period { font-size: 0.85rem; color: var(--text-muted); }
.plan-avg { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 1.2rem; }
.pricing-card .btn { width: 100%; justify-content: center; margin-bottom: 1.5rem; }
.pricing-card.popular .btn-primary { background: white; color: var(--primary); }
.pricing-card.popular .btn-primary:hover { background: var(--primary-light); }
.compare-box { background: var(--primary-light); border: 1px solid rgba(37,99,235,0.2); border-radius: var(--radius); padding: 1rem 1.2rem; margin-bottom: 2rem; display: flex; align-items: flex-start; gap: 0.7rem; }
.compare-box .icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.compare-box p { font-size: 0.85rem; color: var(--text-mid); }
.website-packages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.addons-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.addon-card { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.2rem; display: flex; gap: 0.8rem; align-items: flex-start; transition: all 0.2s; }
.addon-card:hover { border-color: var(--primary); }
.addon-card .icon { width: 36px; height: 36px; border-radius: 8px; background: var(--primary-light); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.addon-card h4 { font-size: 0.88rem; font-weight: 700; margin-bottom: 2px; }
.addon-card .price { font-size: 0.8rem; color: var(--primary); font-weight: 700; margin-bottom: 0.3rem; }
.addon-card p { font-size: 0.8rem; color: var(--text-muted); }
.faq-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border: none; }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 1.2rem 1.5rem; cursor: pointer; font-size: 0.95rem; font-weight: 600; transition: background 0.2s; background: white; }
.faq-q:hover { background: var(--bg-light); }
.faq-q span { color: var(--primary); font-size: 1.2rem; transition: transform 0.2s; }
.faq-q.open span { transform: rotate(45deg); }
.faq-a { font-size: 0.9rem; color: var(--text-muted); padding: 0 1.5rem 1.2rem; display: none; line-height: 1.7; }
.faq-a.open { display: block; }

/* =====================
   CONTACT PAGE
   ===================== */
.contact-hero { padding: 100px 0 40px; text-align: center; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: start; padding-bottom: 80px; }
.contact-info-box { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item-icon { width: 42px; height: 42px; border-radius: 10px; background: var(--primary-light); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-item h4 { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.2rem; }
.contact-item p { font-size: 0.9rem; color: var(--text-dark); font-weight: 500; }
.contact-social { margin-top: 0.5rem; }
.contact-social h4 { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.8rem; }
.social-row { display: flex; gap: 0.6rem; }
.social-icon { width: 38px; height: 38px; border-radius: 8px; background: var(--bg-light); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; transition: all 0.2s; }
.social-icon:hover { background: var(--primary); border-color: var(--primary); color: white; }
.contact-team-img { margin-top: 1.5rem; border-radius: var(--radius-lg); overflow: hidden; background: linear-gradient(135deg, #EFF6FF, #DBEAFE); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; font-size: 5rem; }
.contact-form-box { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow-md); }
.contact-form-box h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 0.4rem; }
.contact-form-box > p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-mid); margin-bottom: 0.4rem; }
.form-group label .req { color: var(--primary); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.7rem 1rem;
  border: 1px solid var(--border); border-radius: var(--radius);
  font-size: 0.9rem; font-family: var(--font); color: var(--text-dark);
  background: var(--bg); transition: border-color 0.2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
.form-group textarea { resize: vertical; min-height: 110px; }
.char-count { font-size: 0.75rem; color: var(--text-muted); text-align: right; margin-top: 0.25rem; }
.submit-btn { width: 100%; padding: 0.9rem; background: var(--primary); color: white; border: none; border-radius: var(--radius); font-size: 1rem; font-weight: 700; font-family: var(--font); cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 0.5rem; transition: all 0.2s; }
.submit-btn:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(37,99,235,0.35); }

/* =====================
   RESPONSIVE FIXES 
   (Mobile aur Tablet ke liye)
   ===================== */

@media (max-width: 1024px) {
  .hero-inner, .about-home-grid, .about-hero-grid, .service-detail-grid, .social-hero-grid, .contact-grid {
    grid-template-columns: 1fr; /* 2 columns ko 1 kar dega */
    text-align: center;
    gap: 3rem;
  }
  .hero-img, .about-home-img, .about-hero-img, .service-detail-img, .social-hero-img {
    order: -1; /* Image ko text ke upar le aayega */
  }
  .hero p, .section-sub {
    margin-inline: auto; /* Text center karne ke liye */
  }
  .hero-btns, .btn-row {
    justify-content: center;
  }
  .grid-3, .grid-4, .services-grid, .values-grid, .team-grid, .pricing-grid {
    grid-template-columns: repeat(2, 1fr); /* 4 ya 3 columns ko 2 kar dega */
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none; /* Desktop menu chhupa dega */
  }
  .hamburger {
    display: flex; /* Mobile button dikhayega */
  }
  .grid-2, .grid-3, .grid-4, .services-grid, .values-grid, .team-grid, .pricing-grid, .platforms-grid, .process-grid {
    grid-template-columns: 1fr; /* Sab kuch 1 column mein (Mobile View) */
  }
  .section {
    padding: 60px 0;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-brand p {
    margin-inline: auto;
  }
  .footer-socials {
    justify-content: center;
  }
}
/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .grid-4, .values-grid, .team-grid, .about-hero-stats { grid-template-columns: repeat(2, 1fr); }
  .services-grid, .process-grid, .platforms-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid, .website-packages { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .addons-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 1.5rem; }
  .nav-links, .nav-cta-wrap { display: none; }
  .hamburger { display: flex; }
  .hero-inner, .why-grid, .about-home-grid, .scan-grid, .grid-2, .about-hero-grid, .story-grid, .social-hero-grid, .contact-grid, .service-detail-grid, .included-section-grid { grid-template-columns: 1fr; }
  .service-detail-grid.reverse { direction: ltr; }
  .services-grid, .process-grid, .platforms-grid, .addons-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .pricing-mini { grid-template-columns: repeat(3, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .about-hero-stats { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .grid-4, .values-grid { grid-template-columns: 1fr; }
  .team-grid, .about-hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-trust { flex-direction: column; align-items: flex-start; }
  .stats-bar .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* =====================
   3D DESIGN SERVICE PAGE
   ===================== */

/* Hero */
.threed-hero {
  padding: 110px 0 0;
  background: linear-gradient(160deg, #0f0c29, #302b63, #24243e);
  color: white;
  overflow: hidden;
  position: relative;
}
.threed-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 70% 40%, rgba(99,102,241,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.threed-hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
  padding: 4rem 0 0;
}
.threed-hero .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(99,102,241,0.2); border: 1px solid rgba(99,102,241,0.4);
  color: #a5b4fc; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.35rem 1rem; border-radius: 100px; margin-bottom: 1.2rem;
}
.threed-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800; line-height: 1.1;
  margin-bottom: 1.2rem; color: white;
}
.threed-hero h1 .gradient-text {
  background: linear-gradient(135deg, #818cf8, #38bdf8, #34d399);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.threed-hero p {
  font-size: 1rem; color: rgba(255,255,255,0.7);
  margin-bottom: 2rem; max-width: 460px; line-height: 1.7;
}
.threed-hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.btn-gradient {
  background: linear-gradient(135deg, #6366f1, #3b82f6);
  color: white; padding: 0.85rem 1.8rem;
  border-radius: 8px; border: none; font-weight: 700;
  font-size: 0.95rem; cursor: pointer; font-family: var(--font);
  transition: all 0.2s; box-shadow: 0 4px 20px rgba(99,102,241,0.4);
}
.btn-gradient:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(99,102,241,0.5); }
.btn-ghost {
  background: rgba(255,255,255,0.08); color: white;
  padding: 0.85rem 1.8rem; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2); font-weight: 600;
  font-size: 0.95rem; cursor: pointer; font-family: var(--font);
  transition: all 0.2s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.15); }
.threed-hero-stats {
  display: flex; gap: 2rem;
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.threed-stat .num { font-size: 1.8rem; font-weight: 800; color: white; line-height: 1; }
.threed-stat .num span { background: linear-gradient(135deg, #818cf8, #38bdf8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.threed-stat .lbl { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-top: 0.2rem; }

/* Hero visual (right side) */
.threed-hero-visual {
  position: relative; display: flex; align-items: center; justify-content: center;
}
.threed-mockup {
  width: 100%; border-radius: 16px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  background: #1e1b4b; border: 1px solid rgba(99,102,241,0.3);
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  font-size: 7rem;
}
.threed-mockup img { width: 100%; height: 100%; object-fit: cover; }
.threed-float-badge {
  position: absolute; bottom: 20px; left: -20px;
  background: white; border-radius: 12px;
  padding: 0.8rem 1.2rem; box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  display: flex; align-items: center; gap: 0.7rem;
  font-size: 0.82rem;
}
.threed-float-badge .icon { font-size: 1.4rem; }
.threed-float-badge strong { display: block; font-size: 0.9rem; color: #111; }
.threed-float-badge span { color: #6B7280; font-size: 0.78rem; }
.threed-wave {
  width: 100%; margin-top: -2px;
  display: block;
}

/* What is 3D strip */
.threed-intro-bar {
  background: #f8faff;
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}
.threed-intro-bar .scroll-row {
  display: flex; gap: 2.5rem; align-items: center;
  flex-wrap: wrap; justify-content: center;
}
.intro-pill {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem; font-weight: 600; color: var(--text-mid);
}
.intro-pill .dot { width: 8px; height: 8px; background: var(--primary); border-radius: 50%; }

/* Services we offer */
.threed-services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-top: 3rem;
}
.threed-service-card {
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s; cursor: default;
  background: white;
}
.threed-service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(37,99,235,0.12); border-color: var(--primary); }
.threed-card-img {
  height: 170px; overflow: hidden;
  display: flex; align-items: center; justify-content: center; font-size: 5rem;
}
.threed-card-img img { width: 100%; height: 100%; object-fit: cover; }
.threed-card-body { padding: 1.5rem; }
.threed-card-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.threed-card-body p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.6; }
.threed-card-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.tag { font-size: 0.72rem; font-weight: 600; background: var(--primary-light); color: var(--primary); padding: 0.2rem 0.6rem; border-radius: 4px; }

/* Process */
.threed-process { counter-reset: step; }
.threed-process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 3rem; position: relative;
}
.threed-process-steps::before {
  content: '';
  position: absolute; top: 28px; left: 12.5%; right: 12.5%; height: 2px;
  background: linear-gradient(90deg, var(--primary), #38bdf8);
  z-index: 0;
}
.process-step { text-align: center; padding: 0 1rem; position: relative; z-index: 1; }
.step-circle {
  width: 56px; height: 56px; border-radius: 50%;
  background: white; border: 3px solid var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin: 0 auto 1rem;
  box-shadow: 0 0 0 6px #EFF6FF;
}
.process-step h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.3rem; }
.process-step p { font-size: 0.8rem; color: var(--text-muted); }

/* Portfolio showcase */
.threed-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem; margin-top: 2.5rem;
}
.portfolio-item {
  border-radius: 12px; overflow: hidden;
  position: relative; cursor: pointer;
}
.portfolio-item.large { grid-column: span 2; }
.portfolio-item-img {
  width: 100%; aspect-ratio: 4/3;
  overflow: hidden; position: relative;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
}
.portfolio-item.large .portfolio-item-img { aspect-ratio: 16/9; }
.portfolio-item-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.portfolio-item:hover img { transform: scale(1.05); }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; padding: 1rem;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-label { color: white; font-weight: 700; font-size: 0.9rem; }
.portfolio-label span { display: block; font-size: 0.75rem; font-weight: 400; opacity: 0.8; margin-top: 2px; }

/* Industries */
.industries-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2.5rem;
}
.industry-card {
  background: white; border: 1px solid var(--border); border-radius: 12px;
  padding: 1.5rem 1.2rem; text-align: center; transition: all 0.2s;
}
.industry-card:hover { border-color: var(--primary); background: var(--primary-light); }
.industry-card .icon { font-size: 2rem; margin-bottom: 0.6rem; display: block; }
.industry-card h4 { font-size: 0.88rem; font-weight: 700; color: var(--text-dark); }

/* Tech stack */
.tools-row {
  display: flex; gap: 1rem; flex-wrap: wrap;
  justify-content: center; margin-top: 2rem;
}
.tool-badge {
  background: white; border: 1px solid var(--border);
  border-radius: 10px; padding: 0.7rem 1.2rem;
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.85rem; font-weight: 600; color: var(--text-mid);
  transition: all 0.2s;
}
.tool-badge:hover { border-color: var(--primary); color: var(--primary); box-shadow: 0 4px 12px rgba(37,99,235,0.1); }
.tool-badge .icon { font-size: 1.1rem; }

/* Pricing 3D */
.threed-pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem;
}

/* FAQ 3D */
.threed-faq { max-width: 700px; margin: 2rem auto 0; }

/* CTA dark */
.threed-cta {
  background: linear-gradient(135deg, #1e1b4b, #312e81);
  color: white; padding: 80px 0; text-align: center;
}
.threed-cta h2 { font-size: clamp(1.8rem,3.5vw,2.5rem); font-weight: 800; margin-bottom: 0.8rem; }
.threed-cta p { opacity: 0.75; margin-bottom: 2rem; max-width: 500px; margin-inline: auto; }
.threed-cta .cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Responsive 3D page */
@media (max-width: 1024px) {
  .threed-services-grid { grid-template-columns: repeat(2, 1fr); }
  .threed-process-steps { grid-template-columns: repeat(2, 1fr); }
  .threed-process-steps::before { display: none; }
  .threed-portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-item.large { grid-column: span 2; }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .threed-pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
}
@media (max-width: 768px) {
  .threed-hero-inner { grid-template-columns: 1fr; }
  .threed-hero-visual { display: none; }
  .threed-services-grid, .threed-portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item.large { grid-column: span 1; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .threed-process-steps { grid-template-columns: 1fr 1fr; }
}
/* =============================================
   RESPONSIVE DESIGN (Mobile & Tablet)
   ============================================= */

@media (max-width: 1024px) {
  .hero-inner, .about-hero-grid, .service-detail-grid, .social-hero-grid, .contact-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  .hero-img, .about-hero-img, .service-detail-img, .social-hero-img {
    order: -1; /* Image text se pehle dikhegi mobile par */
  }
  .hero p, .section-sub { margin-inline: auto; }
  .hero-btns, .btn-row { justify-content: center; }
  .grid-3, .grid-4, .services-grid, .team-grid, .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* Navbar adjustments */
  .nav-links { display: none; } /* Desktop links chhup jayenge */
  .hamburger { display: flex; }  /* Mobile button dikhega */
  
  /* Grids to single column */
  .grid-2, .grid-3, .grid-4, .services-grid, .values-grid, .team-grid, .pricing-grid, .platforms-grid, .process-grid, .website-packages, .addons-grid {
    grid-template-columns: 1fr;
  }
  
  .hero h1 { font-size: 2.2rem; }
  .section { padding: 60px 0; }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-brand p { margin-inline: auto; }
  .footer-socials { justify-content: center; }
  .subscribe-form { max-width: 400px; margin-inline: auto; }
}

/* ===========================
   MOBILE RESPONSIVENESS FIXES
   =========================== */

/* 320px small phones */
@media (max-width: 380px) {
  .hero h1 { font-size: 1.7rem !important; }
  .hero-price-box { flex-direction: column; gap: 0.5rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; text-align: center; }
  .hero-trust { flex-direction: column; gap: 0.4rem; }
  .stat-num { font-size: 1.8rem !important; }
  .section-title { font-size: 1.5rem !important; }
  .plan-price .amount { font-size: 2.2rem !important; }
  .pricing-grid { grid-template-columns: 1fr !important; }
  .website-packages { grid-template-columns: 1fr !important; }
  .threed-hero-stats { grid-template-columns: repeat(2, 1fr) !important; }
  .contact-form-box { padding: 1.2rem !important; }
  .nav-logo span { font-size: 1.1rem !important; }
}

/* Tablet - 768px improvements */
@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr !important; max-width: 440px; margin: 0 auto; }
  .website-packages { grid-template-columns: 1fr !important; max-width: 440px; margin: 0 auto; }
  .pricing-card.popular { transform: none !important; }
  .hero-inner { gap: 2rem !important; }
  .service-detail-grid, .service-detail-grid.reverse { grid-template-columns: 1fr !important; }
  .service-detail-img { min-height: 220px !important; }
  .testi-card { padding: 1.5rem !important; }
  .why-grid { grid-template-columns: 1fr !important; }
  .why-img { min-height: 250px; }
  .about-home-grid { grid-template-columns: 1fr !important; }
  .about-home-img { min-height: 250px; }
  .included-section-grid { grid-template-columns: 1fr !important; }
  .threed-process-steps { grid-template-columns: 1fr 1fr !important; }
  .portfolio-item.large { grid-column: span 1 !important; }
  .contact-grid { grid-template-columns: 1fr !important; }
  .contact-team-img { display: none; }
  .btn-lg { padding: 0.75rem 1.5rem !important; font-size: 0.95rem !important; }
  .cta-blue h2 { font-size: 1.5rem !important; }
  .cta-blue { padding: 3rem 1rem !important; }
  .footer-grid { grid-template-columns: 1fr 1fr !important; }
  .subscribe-form { flex-direction: column !important; }
  .subscribe-form input, .subscribe-form button { width: 100% !important; }
  /* Fix horizontal scroll */
  body { overflow-x: hidden; }
  .scroll-row { -webkit-overflow-scrolling: touch; }
  /* Chatbot on mobile - bottom center */
  #chatbotBtn { right: 16px !important; bottom: 16px !important; }
  #chatbotWidget { right: 16px !important; bottom: 70px !important; }
  /* Hero image hide on very small */
  .hero-img img { border-radius: 12px; }
}

/* Fix for Safari iOS - sticky nav */
@supports (-webkit-touch-callout: none) {
  .mobile-menu { -webkit-overflow-scrolling: touch; }
  .page { -webkit-overflow-scrolling: touch; }
}

/* Better tap targets for mobile */
@media (max-width: 768px) {
  .btn, button, a { min-height: 44px; }
  .nav-links a, .mobile-menu a { min-height: 48px; display: flex; align-items: center; }
  .tab-btn { min-height: 40px; }
  .faq-q { min-height: 48px; }
  input, select, textarea { font-size: 16px !important; /* Prevents iOS zoom */ }
}

/* Pricing mini pills on mobile */
@media (max-width: 520px) {
  .pricing-mini { flex-wrap: wrap; gap: 0.5rem; }
  .price-pill { flex: 1; min-width: 80px; }
  .included-grid { grid-template-columns: 1fr !important; }
}

/* Cross-browser fixes */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
img {
  max-width: 100%;
  height: auto;
}

/* IE/Edge grid fallback */
.services-grid, .grid-3, .grid-4 {
  display: -ms-grid;
  display: grid;
}

/* Firefox scrollbar */
* { scrollbar-width: thin; scrollbar-color: #CBD5E1 transparent; }

/* Phone number in navbar */
.nav-phone { display: flex; }
@media (max-width: 900px) {
  .nav-phone { display: none !important; }
}
