/* JP Techno Park - Premium Corporate IT Website Styles */
:root {
  --navy: #0b1d3a;
  --navy-2: #102a55;
  --navy-3: #1a3a6b;
  --orange: #f04a23;
  --orange-2: #ff6a3d;
  --green: #7cc242;
  --green-2: #5fa433;
  --text: #1a2438;
  --text-light: #4a5568;
  --muted: #6b7280;
  --bg: #ffffff;
  --bg-soft: #f6f8fc;
  --bg-soft-2: #eef2f9;
  --border: #e5e9f2;
  --shadow-sm: 0 2px 8px rgba(11,29,58,0.06);
  --shadow: 0 6px 20px rgba(11,29,58,0.08);
  --shadow-lg: 0 14px 40px rgba(11,29,58,0.10);
  --radius: 12px;
  --radius-lg: 16px;
  --container: 1240px;
  --t: 0.25s ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--orange); }
h1,h2,h3,h4,h5 { color: var(--navy); margin: 0 0 0.6em; line-height: 1.25; font-weight: 700; }
h1 { font-size: clamp(2rem, 4.4vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
p { margin: 0 0 1em; color: var(--text-light); }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section-soft { background: var(--bg-soft); }
.section-navy { background: var(--navy); color: #fff; }
.section-navy h1, .section-navy h2, .section-navy h3 { color: #fff; }
.section-navy p { color: rgba(255,255,255,0.82); }
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(240,74,35,0.08);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.eyebrow-green { color: var(--green-2); background: rgba(124,194,66,0.12); }
.text-center { text-align: center; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--t);
  white-space: nowrap;
}
.btn-primary { background: var(--orange); color: #fff !important; }
.btn-primary:hover { background: var(--orange-2); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(240,74,35,0.30); color: #fff; }
.btn-outline { background: transparent; color: var(--navy) !important; border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff !important; }
.btn-white { background: #fff; color: var(--navy) !important; }
.btn-white:hover { background: var(--bg-soft); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--navy) !important; }
.btn-ghost:hover { color: var(--orange) !important; }
.btn-sm { padding: 9px 18px; font-size: 0.86rem; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-top {
  background: var(--navy);
  color: #d8e1f0;
  font-size: 0.83rem;
  padding: 7px 0;
}
.header-top .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.header-top a { color: #d8e1f0; }
.header-top a:hover { color: #fff; }
.header-top-info { display: flex; gap: 18px; flex-wrap: wrap; }
.header-top-info span { display: inline-flex; align-items: center; gap: 6px; }
.header-top-social { display: flex; gap: 10px; }
.header-top-social a { width: 22px; height: 22px; display: inline-flex; align-items: center; justify-content: center; }

.header-main { padding: 14px 0; }
.header-main .container { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.logo { display: flex; align-items: center; }
.logo img { height: 60px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > li { list-style: none; position: relative; }
.main-nav > li > a {
  display: inline-block;
  padding: 10px 14px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  border-radius: 8px;
}
.main-nav > li > a:hover, .main-nav > li > a.active { color: var(--orange); background: rgba(240,74,35,0.06); }
.has-mega { position: static; }
.mega-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 26px;
  width: min(1100px, 96vw);
  opacity: 0;
  visibility: hidden;
  transition: all var(--t);
  z-index: 99;
}
.has-mega:hover .mega-menu { opacity: 1; visibility: visible; top: 100%; }
.mega-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.mega-col h4 {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--orange); margin: 0 0 12px;
  padding-bottom: 10px; border-bottom: 1px solid var(--border);
}
.mega-col ul { list-style: none; padding: 0; margin: 0; }
.mega-col ul li a {
  display: block; padding: 7px 0; font-size: 0.9rem; color: var(--text);
  border-radius: 6px;
}
.mega-col ul li a:hover { color: var(--orange); padding-left: 6px; }

.header-cta { display: flex; align-items: center; gap: 10px; }
.menu-toggle { display: none; background: none; border: 0; font-size: 1.5rem; cursor: pointer; color: var(--navy); }

/* Mobile */
.mobile-nav {
  position: fixed; top: 0; right: -100%;
  width: 86%; max-width: 360px; height: 100vh;
  background: #fff; z-index: 200;
  box-shadow: -8px 0 30px rgba(0,0,0,0.10);
  transition: right 0.3s ease;
  overflow-y: auto;
}
.mobile-nav.open { right: 0; }
.mobile-nav-header { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--border); }
.mobile-nav-close { background: none; border: 0; font-size: 1.6rem; cursor: pointer; color: var(--navy); }
.mobile-nav ul { list-style: none; padding: 8px 0; margin: 0; }
.mobile-nav > ul > li > a, .mobile-nav > ul > li > button {
  display: block; width: 100%; text-align: left;
  padding: 14px 20px; font-weight: 600; color: var(--navy);
  background: none; border: 0; cursor: pointer; font-size: 1rem;
  border-bottom: 1px solid var(--border);
}
.mobile-nav .submenu { padding-left: 0; background: var(--bg-soft); }
.mobile-nav .submenu a { padding: 11px 32px; font-weight: 500; font-size: 0.92rem; }
.overlay { position: fixed; inset: 0; background: rgba(11,29,58,0.55); z-index: 150; opacity: 0; visibility: hidden; transition: all var(--t); }
.overlay.open { opacity: 1; visibility: visible; }
.mobile-bottom-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #fff; border-top: 1px solid var(--border);
  display: none; z-index: 90; padding: 8px;
}
.mobile-bottom-bar a { flex: 1; text-align: center; padding: 8px 4px; font-size: 0.78rem; color: var(--navy); }
.mobile-bottom-bar a span { display: block; font-size: 1.15rem; margin-bottom: 2px; color: var(--orange); }

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(135deg, #f6f8fc 0%, #eaf0fa 100%);
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -120px; right: -120px;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(240,74,35,0.10) 0%, transparent 70%);
}
.hero::after {
  content: ''; position: absolute; bottom: -150px; left: -150px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124,194,66,0.12) 0%, transparent 70%);
}
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; }
.hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
.hero h1 span { color: var(--orange); }
.hero-sub { font-size: 1.12rem; color: var(--text-light); margin-bottom: 14px; }
.hero-support { display: flex; gap: 18px; flex-wrap: wrap; font-size: 0.92rem; color: var(--text-light); margin-bottom: 28px; }
.hero-support span { display: inline-flex; align-items: center; gap: 6px; }
.hero-support span::before { content: '✓'; color: var(--green-2); font-weight: 700; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-visual { position: relative; }
.hero-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 22px; box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.hero-mini { background: var(--bg-soft); border-radius: 10px; padding: 16px; }
.hero-mini .num { font-size: 1.6rem; font-weight: 800; color: var(--orange); }
.hero-mini .lbl { font-size: 0.82rem; color: var(--text-light); }
.hero-floating {
  position: absolute; background: #fff; border-radius: 12px;
  padding: 14px 18px; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 10px; font-weight: 600;
}
.hero-floating.top { top: 10px; right: -20px; }
.hero-floating.bottom { bottom: 10px; left: -20px; }
.hero-floating .ic { width: 36px; height: 36px; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; background: rgba(124,194,66,0.15); color: var(--green-2); font-size: 1.1rem; }

/* Hero Slider */
.slider-section { padding: 0; background: var(--navy); }
.slider { position: relative; overflow: hidden; }
.slides { display: flex; transition: transform 0.6s ease; }
.slide {
  flex: 0 0 100%; padding: 70px 0;
  color: #fff; position: relative;
}
.slide::before { content: ''; position: absolute; inset: 0; opacity: 0.18; }
.slide-1 { background: linear-gradient(135deg, #0b1d3a 0%, #1a3a6b 100%); }
.slide-2 { background: linear-gradient(135deg, #102a55 0%, #0e3a5a 100%); }
.slide-3 { background: linear-gradient(135deg, #0b1d3a 0%, #2a4a7a 100%); }
.slide-4 { background: linear-gradient(135deg, #0e3a5a 0%, #0b1d3a 100%); }
.slide-5 { background: linear-gradient(135deg, #1a3a6b 0%, #102a55 100%); }
.slide .container { position: relative; z-index: 2; max-width: 820px; }
.slide h2 { color: #fff; font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
.slide p { color: rgba(255,255,255,0.85); font-size: 1.05rem; }
.slide-bullets { display: flex; gap: 18px; flex-wrap: wrap; margin: 18px 0 24px; }
.slide-bullets span { display: inline-flex; align-items: center; gap: 6px; color: #ffd9c9; font-size: 0.92rem; }
.slide-bullets span::before { content: '◆'; color: var(--orange-2); font-size: 0.7rem; }
.slider-controls { position: absolute; top: 50%; left: 0; right: 0; transform: translateY(-50%); display: flex; justify-content: space-between; padding: 0 18px; pointer-events: none; }
.slider-controls button {
  pointer-events: auto; background: rgba(255,255,255,0.12); border: 0;
  width: 44px; height: 44px; border-radius: 50%; color: #fff; font-size: 1.4rem; cursor: pointer;
  backdrop-filter: blur(6px);
}
.slider-controls button:hover { background: var(--orange); }
.slider-dots { position: absolute; bottom: 20px; left: 0; right: 0; display: flex; justify-content: center; gap: 8px; }
.slider-dots button { width: 10px; height: 10px; border-radius: 50%; border: 0; background: rgba(255,255,255,0.30); cursor: pointer; }
.slider-dots button.active { background: var(--orange); width: 28px; border-radius: 999px; }

/* Stats */
.stats { padding: 60px 0; background: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.stat-card { text-align: center; padding: 24px 14px; border-radius: var(--radius); background: var(--bg-soft); transition: all var(--t); }
.stat-card:hover { background: var(--navy); transform: translateY(-4px); }
.stat-card:hover .stat-num, .stat-card:hover .stat-lbl { color: #fff; }
.stat-num { font-size: 2.4rem; font-weight: 800; color: var(--orange); transition: color var(--t); }
.stat-lbl { color: var(--text-light); font-weight: 500; transition: color var(--t); }

/* Page header (inner) */
.page-header {
  background: linear-gradient(135deg, #0b1d3a 0%, #1a3a6b 100%);
  color: #fff; padding: 64px 0; position: relative; overflow: hidden;
}
.page-header::before { content: ''; position: absolute; right: -100px; top: -100px; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle, rgba(240,74,35,0.18) 0%, transparent 70%); }
.page-header h1 { color: #fff; position: relative; z-index: 2; }
.page-header p { color: rgba(255,255,255,0.85); position: relative; z-index: 2; font-size: 1.08rem; max-width: 720px; }
.breadcrumb { position: relative; z-index: 2; margin-bottom: 18px; font-size: 0.88rem; }
.breadcrumb a { color: rgba(255,255,255,0.78); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { color: rgba(255,255,255,0.45); margin: 0 8px; }
.breadcrumb .current { color: var(--orange-2); }

/* Grids */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

/* Cards */
.card {
  background: #fff; border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 28px; transition: all var(--t);
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card-icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(240,74,35,0.10) 0%, rgba(124,194,66,0.10) 100%);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: 1.5rem; margin-bottom: 18px;
}
.card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.card p { font-size: 0.95rem; margin-bottom: 14px; }
.card-link { color: var(--orange); font-weight: 600; font-size: 0.9rem; }
.card-link::after { content: ' →'; transition: margin var(--t); }
.card-link:hover::after { margin-left: 4px; }

/* Service card */
.service-card .card-icon { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%); color: var(--orange-2); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

/* Why choose */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.why-card { padding: 26px; background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--border); transition: all var(--t); }
.why-card:hover { border-color: var(--orange); transform: translateY(-3px); box-shadow: var(--shadow); }
.why-num { font-size: 0.85rem; font-weight: 800; color: var(--orange); margin-bottom: 12px; display: inline-block; padding: 5px 12px; background: rgba(240,74,35,0.10); border-radius: 999px; }
.why-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.why-card p { font-size: 0.9rem; margin: 0; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0;
  padding: 18px 0; font-weight: 600; color: var(--navy); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 14px; font-size: 1rem;
}
.faq-q::after { content: '+'; color: var(--orange); font-size: 1.4rem; font-weight: 300; transition: transform var(--t); }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-a { max-height: 600px; }
.faq-a-inner { padding: 0 0 18px; color: var(--text-light); }

/* Testimonials */
.testimonial { background: #fff; border-radius: var(--radius-lg); padding: 26px; border: 1px solid var(--border); position: relative; }
.testimonial::before { content: '"'; position: absolute; top: 6px; right: 18px; font-size: 4rem; color: var(--orange); opacity: 0.18; line-height: 1; font-family: Georgia, serif; }
.testimonial p { font-style: italic; color: var(--text); margin-bottom: 18px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--orange) 0%, var(--green) 100%); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; }
.testimonial-name { font-weight: 700; color: var(--navy); }
.testimonial-role { font-size: 0.85rem; color: var(--text-light); }

/* Projects */
.project-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); transition: all var(--t); }
.project-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.project-thumb { aspect-ratio: 16/10; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.45); font-size: 2.5rem; position: relative; }
.project-thumb.alt-1 { background: linear-gradient(135deg, #1a3a6b, #2a5a8a); }
.project-thumb.alt-2 { background: linear-gradient(135deg, #f04a23, #ff8b5e); }
.project-thumb.alt-3 { background: linear-gradient(135deg, #7cc242, #4a8a26); }
.project-thumb.alt-4 { background: linear-gradient(135deg, #102a55, #1a3a6b); }
.project-body { padding: 22px; }
.project-tag { display: inline-block; font-size: 0.74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--green-2); background: rgba(124,194,66,0.12); padding: 4px 10px; border-radius: 999px; margin-bottom: 10px; }
.project-body h3 { font-size: 1.1rem; margin-bottom: 8px; }
.project-body p { font-size: 0.9rem; margin-bottom: 12px; }

/* Forms */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 6px; color: var(--navy); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border);
  border-radius: 8px; font-family: inherit; font-size: 0.95rem;
  background: #fff; color: var(--text); transition: border var(--t);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: 0; border-color: var(--orange); }
.form-group textarea { min-height: 110px; resize: vertical; }
.form-success { display: none; padding: 16px; background: rgba(124,194,66,0.12); color: var(--green-2); border-radius: 8px; font-weight: 600; margin-top: 14px; }
.form-success.show { display: block; }

/* Contact info */
.contact-card { background: #fff; border-radius: var(--radius-lg); padding: 22px; border: 1px solid var(--border); display: flex; gap: 16px; align-items: flex-start; }
.contact-card .ic { width: 48px; height: 48px; border-radius: 12px; background: rgba(240,74,35,0.10); color: var(--orange); display: inline-flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-card h4 { font-size: 0.95rem; margin: 0 0 4px; }
.contact-card p { font-size: 0.9rem; margin: 0; color: var(--text-light); }
.contact-card a { color: var(--text-light); }
.contact-card a:hover { color: var(--orange); }

/* Footer */
.site-footer { background: var(--navy); color: #c8d2e3; padding: 64px 0 0; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-col h4 { color: #fff; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: #c8d2e3; font-size: 0.92rem; }
.footer-col ul li a:hover { color: var(--orange-2); }
.footer-about p { color: #c8d2e3; font-size: 0.92rem; margin-bottom: 16px; }
.footer-logo { margin-bottom: 16px; }
.footer-logo img { height: 56px; }
.footer-social { display: flex; gap: 10px; margin-top: 12px; }
.footer-social a { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.08); color: #c8d2e3; display: inline-flex; align-items: center; justify-content: center; font-size: 0.95rem; }
.footer-social a:hover { background: var(--orange); color: #fff; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: 0.9rem; color: #c8d2e3; }
.footer-contact-item .ic { color: var(--orange-2); margin-top: 3px; }

.footer-jabalpur { padding: 32px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-jabalpur h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer-jabalpur-links { display: flex; flex-wrap: wrap; gap: 8px 14px; }
.footer-jabalpur-links a { color: #c8d2e3; font-size: 0.86rem; padding: 4px 0; }
.footer-jabalpur-links a:hover { color: var(--orange-2); }
.footer-jabalpur-links .sep { color: rgba(255,255,255,0.18); }

.footer-bottom { padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; font-size: 0.86rem; color: #95a3bb; }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a { color: #95a3bb; }
.footer-legal a:hover { color: var(--orange-2); }
.footer-credit { width: 100%; text-align: center; color: #95a3bb; font-size: 0.82rem; margin-top: 8px; }

/* WhatsApp Float */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 99;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.7rem; box-shadow: 0 8px 24px rgba(37,211,102,0.40);
  transition: transform var(--t);
}
.whatsapp-float:hover { transform: scale(1.08); color: #fff; }

/* CTA */
.cta-section { background: linear-gradient(135deg, #0b1d3a 0%, #1a3a6b 100%); color: #fff; padding: 70px 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; right: -120px; top: -120px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(240,74,35,0.20) 0%, transparent 70%); }
.cta-section h2 { color: #fff; }
.cta-section p { color: rgba(255,255,255,0.85); max-width: 720px; margin: 0 auto 28px; font-size: 1.08rem; }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Content layout */
.content-block { padding: 60px 0; }
.content-block h2 { margin-top: 0.4em; }
.content-block h3 { color: var(--navy); margin-top: 1.4em; }
.content-block ul { padding-left: 22px; color: var(--text-light); }
.content-block ul li { margin-bottom: 8px; }

/* Two col with sidebar */
.with-sidebar { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
.sidebar { background: var(--bg-soft); border-radius: var(--radius-lg); padding: 24px; align-self: start; position: sticky; top: 100px; }
.sidebar h4 { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--orange); margin-bottom: 12px; }
.sidebar ul { list-style: none; padding: 0; margin: 0; }
.sidebar ul li a { display: block; padding: 9px 12px; border-radius: 6px; font-size: 0.9rem; color: var(--text); }
.sidebar ul li a:hover, .sidebar ul li a.active { background: #fff; color: var(--orange); }

/* Filter */
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 30px; }
.filter-btn { padding: 8px 18px; border: 1px solid var(--border); background: #fff; border-radius: 999px; font-size: 0.88rem; cursor: pointer; color: var(--text-light); font-weight: 500; }
.filter-btn.active, .filter-btn:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

/* Blog */
.blog-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); transition: all var(--t); }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-thumb { aspect-ratio: 16/9; background: linear-gradient(135deg, var(--navy), var(--navy-3)); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); font-size: 2rem; }
.blog-body { padding: 22px; }
.blog-meta { display: flex; gap: 12px; font-size: 0.78rem; color: var(--text-light); margin-bottom: 8px; flex-wrap: wrap; }
.blog-meta .cat { color: var(--orange); font-weight: 700; text-transform: uppercase; }
.blog-body h3 { font-size: 1.1rem; margin-bottom: 8px; }
.blog-body p { font-size: 0.9rem; margin-bottom: 12px; }

/* Industries grid */
.industry-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.industry-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; text-align: center; transition: all var(--t); }
.industry-card:hover { border-color: var(--orange); transform: translateY(-3px); box-shadow: var(--shadow); }
.industry-card .ic { width: 56px; height: 56px; border-radius: 12px; background: linear-gradient(135deg, var(--navy), var(--navy-3)); color: var(--orange-2); margin: 0 auto 14px; display: inline-flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.industry-card h3 { font-size: 1rem; margin-bottom: 6px; }
.industry-card p { font-size: 0.85rem; margin: 0; }

/* Logo strip */
.logo-strip { padding: 40px 0; background: var(--bg-soft); }
.logo-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; align-items: center; }
.logo-placeholder { aspect-ratio: 3/1.5; background: #fff; border: 1px dashed var(--border); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 0.8rem; text-align: center; padding: 8px; }

/* Animations */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 0.7s ease both; }

/* Process steps */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; position: relative; }
.process-step { background: #fff; padding: 26px; border-radius: var(--radius-lg); border: 1px solid var(--border); position: relative; }
.process-step .step-num { width: 44px; height: 44px; border-radius: 50%; background: var(--orange); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-weight: 800; margin-bottom: 14px; }
.process-step h3 { font-size: 1.05rem; margin-bottom: 6px; }
.process-step p { font-size: 0.9rem; margin: 0; }

/* Two col cta */
.cta-flex { display: flex; gap: 30px; align-items: center; flex-wrap: wrap; justify-content: center; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item { aspect-ratio: 4/3; background: linear-gradient(135deg, var(--navy-2), var(--navy-3)); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); font-size: 1.1rem; }

/* Responsive */
@media (max-width: 1100px) {
  .main-nav { display: none; }
  .menu-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .industry-grid { grid-template-columns: repeat(3, 1fr); }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .with-sidebar { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .logo-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .section { padding: 56px 0; }
  .header-top { display: none; }
  .grid-2, .grid-3, .grid-4, .why-grid, .industry-grid, .process-steps, .service-grid, .footer-grid, .logo-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .header-cta .btn { display: none; }
  .mobile-bottom-bar { display: flex; }
  body { padding-bottom: 60px; }
  .whatsapp-float { bottom: 80px; }
  .hero { padding: 56px 0 70px; }
  .hero-floating { display: none; }
  .slide { padding: 50px 0; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}
