/* ============================
   HK Global Solution - style.css
   Theme: Gold, Black, Gray
   ============================ */

:root {
  --bg:      #0a0a0a;
  --bg2:     #111111;
  --accent:  #c9a84c;
  --gold:    #f0d080;
  --white:   #f5f0e8;
  --muted:   #888480;
  --card:    rgba(201, 168, 76, 0.05);
  --border:  rgba(201, 168, 76, 0.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ── Poppins heading global tightening ── */
h1, h2, h3 {
  font-optical-sizing: auto;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
}
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 4px; }

/* ════════════════════════════
   NAVBAR
════════════════════════════ */
nav {
  position: fixed; top: 0; width: 100%; z-index: 999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 6%;
  backdrop-filter: blur(18px);
  background: rgba(10, 10, 10, 0.92);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s;
}

/* Logo image */
.logo-link {
  text-decoration: none;
  display: flex; align-items: center;
  flex-shrink: 0; z-index: 1001; position: relative;
}
.nav-logo {
  height: 40px; width: auto;
  object-fit: contain; display: block;
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.82; }

/* Desktop nav links */
nav ul { list-style: none; display: flex; gap: 32px; }
nav ul li a {
  text-decoration: none; color: var(--muted);
  font-size: .92rem; font-weight: 500; letter-spacing: .5px;
  transition: color .2s; position: relative;
}
nav ul li a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transition: width .3s;
}
nav ul li a:hover,
nav ul li a.active { color: var(--accent); }
nav ul li a:hover::after,
nav ul li a.active::after { width: 100%; }

/* Desktop CTA */
.nav-cta {
  padding: 10px 24px; border-radius: 50px;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  color: #0a0a0a; font-weight: 700; font-size: .88rem;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201, 168, 76, 0.55); }

/* ════════════════════════════
   HAMBURGER BUTTON  (3 lines)
════════════════════════════ */
.hamburger {
  display: none;                         /* hidden on desktop */
  flex-direction: column;
  justify-content: center; align-items: center;
  gap: 5px;
  width: 42px; height: 42px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.28);
  border-radius: 10px; cursor: pointer;
  z-index: 1001; position: relative; flex-shrink: 0;
  transition: background .2s, border-color .2s;
}
.hamburger:hover {
  background: rgba(201,168,76,0.15);
  border-color: rgba(201,168,76,0.5);
}
.hamburger span {
  display: block; width: 20px; height: 2px;
  background: var(--gold); border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.25s ease, width 0.25s ease;
}
/* Animate into X when open */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ════════════════════════════
   MOBILE FULLSCREEN MENU
════════════════════════════ */
.mobile-menu {
  position: fixed; inset: 0; z-index: 998;
  background: rgba(5, 4, 2, 0.98);
  backdrop-filter: blur(24px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 4px;
  padding: 100px 8% 60px;
  /* hidden by default */
  opacity: 0; pointer-events: none;
  transform: translateY(-14px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.mobile-menu.open {
  opacity: 1; pointer-events: all;
  transform: translateY(0);
}
/* Big nav links */
.mob-link {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 6vw, 2.4rem);
  font-weight: 800; letter-spacing: -1px;
  color: var(--muted); text-decoration: none;
  padding: 8px 0; width: 100%; text-align: center;
  transition: color 0.2s, transform 0.2s;
}
.mob-link:hover,
.mob-link.active { color: var(--accent); transform: translateX(6px); }

/* Gold divider line */
.mob-divider {
  width: 50px; height: 2px; margin: 14px 0;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  border-radius: 2px;
}
/* CTA inside mobile menu */
.mob-cta {
  padding: 14px 48px; border-radius: 50px;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  color: #0a0a0a; font-weight: 700; font-size: 1rem;
  text-decoration: none; display: inline-block;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 6px 28px rgba(201,168,76,0.35);
  margin-top: 4px;
}
/* Social icons row */
.mob-socials {
  display: flex; gap: 10px; margin-top: 22px;
}
.mob-socials a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.22);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); text-decoration: none;
  font-size: .75rem; font-weight: 800;
  font-family: 'Poppins', sans-serif;
  transition: border-color .2s, color .2s, background .2s;
}
.mob-socials a:hover {
  border-color: var(--accent); color: var(--accent);
  background: rgba(201,168,76,0.08);
}

/* ════════════════════════════
   HERO
════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 130px 6% 90px;
  position: relative; overflow: hidden;
}
/* ── Hero Canvas ── */
#hero-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
  pointer-events: none;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%,   rgba(201,168,76,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 85%,  rgba(240,208,128,0.09) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 10% 70%,  rgba(201,168,76,0.07) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.hero > * { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.38);
  border-radius: 50px; padding: 8px 20px;
  font-size: .82rem; color: var(--accent); font-weight: 500;
  margin-bottom: 28px;
  animation: fadeDown .8s ease both;
}
.hero-badge .pulse-dot { font-size: .5rem; animation: pulse 1.5s infinite; }
.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 800; line-height: 1.05; letter-spacing: -3px;
  animation: fadeUp .9s ease .1s both;
}
.hero h1 .grad {
  background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 55%, #fff8dc 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero p {
  max-width: 600px; font-size: 1.1rem; color: var(--muted);
  line-height: 1.8; margin: 24px auto 40px;
  animation: fadeUp .9s ease .2s both;
}
.hero-btns {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp .9s ease .3s both;
}
.hero-stats {
  display: flex; gap: 48px; justify-content: center;
  margin-top: 72px; flex-wrap: wrap;
  animation: fadeUp .9s ease .4s both;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Poppins', sans-serif; font-size: 2.2rem; font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-label {
  font-size: .78rem; color: var(--muted);
  margin-top: 4px; letter-spacing: 1.5px; text-transform: uppercase;
}

/* ════════════════════════════
   BUTTONS
════════════════════════════ */
.btn-primary {
  padding: 14px 36px; border-radius: 50px;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  color: #0a0a0a; font-weight: 700; font-size: 1rem;
  text-decoration: none; display: inline-block;
  box-shadow: 0 6px 30px rgba(201,168,76,0.35);
  transition: transform .2s, box-shadow .2s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(201,168,76,0.55); }
.btn-outline {
  padding: 14px 36px; border-radius: 50px;
  border: 1px solid var(--border); color: var(--white);
  font-weight: 600; font-size: 1rem; text-decoration: none;
  display: inline-block; backdrop-filter: blur(8px);
  transition: border-color .2s, background .2s;
}
.btn-outline:hover { border-color: var(--accent); background: rgba(201,168,76,0.09); }

/* ════════════════════════════
   TICKER
════════════════════════════ */
.ticker-wrap {
  overflow: hidden;
  background: linear-gradient(90deg, #7a5c0a, var(--accent), #c9a84c, #7a5c0a);
  padding: 14px 0; white-space: nowrap;
}
.ticker {
  display: inline-block;
  animation: ticker 28s linear infinite;
  font-family: 'Poppins', sans-serif; font-size: .88rem;
  font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: #0a0a0a;
}
.ticker span { margin: 0 36px; }
.ticker .dot { color: rgba(10,10,10,0.5); }

/* ════════════════════════════
   SECTION SHARED
════════════════════════════ */
section { padding: 100px 6%; }
.section-tag {
  display: inline-block; font-size: .76rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; line-height: 1.15; letter-spacing: -2px;
}
.section-sub { color: var(--muted); margin-top: 16px; max-width: 580px; line-height: 1.8; font-size: 1rem; }
.section-header { margin-bottom: 60px; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 16px auto 0; }
.grad {
  background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 55%, #fff8dc 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

/* ════════════════════════════
   SERVICES
════════════════════════════ */
.services { background: var(--bg2); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 24px; }
.service-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 36px 30px;
  position: relative; overflow: hidden;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.08), transparent);
  opacity: 0; transition: opacity .3s;
}
.service-card:hover { transform: translateY(-8px); border-color: rgba(201,168,76,0.45); box-shadow: 0 20px 50px rgba(201,168,76,0.12); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 22px;
  background: linear-gradient(135deg, rgba(201,168,76,0.18), rgba(240,208,128,0.08));
  border: 1px solid rgba(201,168,76,0.28);
}
.service-card h3 { font-family: 'Poppins', sans-serif; font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: .93rem; line-height: 1.7; }

/* ════════════════════════════
   WHY US
════════════════════════════ */
.why-section { background: var(--bg); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-cards { display: flex; flex-direction: column; gap: 18px; margin-top: 36px; }
.why-card {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 22px 24px;
  transition: border-color .3s, transform .3s;
}
.why-card:hover { border-color: rgba(201,168,76,0.45); transform: translateX(6px); }
.why-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; color: #0a0a0a;
}
.why-card h4 { font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 5px; }
.why-card p { color: var(--muted); font-size: .9rem; line-height: 1.65; }
.why-visual {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 24px; padding: 52px 40px; text-align: center;
  position: relative; overflow: hidden;
}
.why-visual::before {
  content: ''; position: absolute; inset: -60%;
  background: radial-gradient(circle, rgba(201,168,76,0.18) 0%, transparent 60%);
  animation: rotateSlow 9s linear infinite;
}
.why-visual-inner { position: relative; z-index: 1; }
.circle-badge {
  width: 160px; height: 160px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  margin: 0 auto 32px; box-shadow: 0 0 60px rgba(201,168,76,0.4);
}
.circle-badge .cb-num { font-family: 'Poppins', sans-serif; font-size: 2.6rem; font-weight: 800; color: #0a0a0a; line-height: 1; }
.circle-badge .cb-lbl { font-size: .8rem; color: rgba(10,10,10,0.75); font-weight: 600; }
.mini-stats { display: flex; gap: 28px; justify-content: center; }
.mini-stat { text-align: center; }
.mini-stat-num {
  font-family: 'Poppins', sans-serif; font-size: 1.7rem; font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.mini-stat-label { font-size: .74rem; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; }

/* ════════════════════════════
   PROCESS
════════════════════════════ */
.process-section { background: var(--bg2); }
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-top: 16px; }
.process-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 36px 28px; text-align: center;
  position: relative; overflow: hidden;
  transition: transform .3s, border-color .3s;
}
.process-card:hover { transform: translateY(-6px); border-color: rgba(201,168,76,0.45); }
.process-num {
  font-family: 'Poppins', sans-serif; font-size: 3.5rem; font-weight: 800; line-height: 1;
  background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(240,208,128,0.1));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}
.process-icon { font-size: 2rem; margin-bottom: 14px; }
.process-card h3 { font-family: 'Poppins', sans-serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.process-card p { color: var(--muted); font-size: .9rem; line-height: 1.65; }

/* ════════════════════════════
   TESTIMONIALS
════════════════════════════ */
.testimonials { background: var(--bg); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 24px; }
.testi-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 32px;
  transition: transform .3s, border-color .3s;
}
.testi-card:hover { transform: translateY(-6px); border-color: rgba(201,168,76,0.38); }
.stars { color: var(--gold); font-size: .88rem; margin-bottom: 14px; letter-spacing: 3px; }
.testi-quote { font-size: 3rem; line-height: 1; color: var(--accent); margin-bottom: 10px; font-family: Georgia, serif; }
.testi-text { color: var(--muted); font-size: .93rem; line-height: 1.75; margin-bottom: 22px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .9rem; color: #0a0a0a;
}
.testi-name { font-weight: 600; font-size: .93rem; }
.testi-role { font-size: .78rem; color: var(--muted); margin-top: 2px; }

/* ════════════════════════════
   FAQ
════════════════════════════ */
.faq-section { background: var(--bg2); }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: 14px; margin-bottom: 12px; overflow: hidden; transition: border-color .3s; }
.faq-item:hover { border-color: rgba(201,168,76,0.35); }
.faq-q {
  width: 100%; background: var(--card); border: none;
  color: var(--white); font-family: 'DM Sans', sans-serif;
  font-size: 1rem; font-weight: 500; padding: 20px 24px;
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; text-align: left; transition: background .2s;
}
.faq-q:hover { background: rgba(201,168,76,0.07); }
.faq-icon { font-size: 1.4rem; color: var(--accent); transition: transform .3s; flex-shrink: 0; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .3s;
  color: var(--muted); font-size: .95rem; line-height: 1.75;
  padding: 0 24px; background: rgba(0,0,0,0.25);
}
.faq-item.open .faq-a { max-height: 300px; padding: 16px 24px 22px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ════════════════════════════
   CTA SECTION
════════════════════════════ */
.cta-section {
  text-align: center;
  background: linear-gradient(135deg, rgba(201,168,76,0.07), rgba(240,208,128,0.04));
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: -100%;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.11) 0%, transparent 60%);
  animation: rotateSlow 14s linear infinite;
}
.cta-section > * { position: relative; z-index: 1; }
.cta-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800; letter-spacing: -2px; margin-bottom: 18px;
}
.cta-section p { color: var(--muted); font-size: 1.05rem; max-width: 520px; margin: 0 auto 40px; line-height: 1.8; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ════════════════════════════
   FOOTER
════════════════════════════ */
footer { padding: 64px 6% 40px; border-top: 1px solid var(--border); background: #050505; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { color: var(--muted); font-size: .88rem; line-height: 1.7; max-width: 280px; }
.footer-col h5 { font-family: 'Poppins', sans-serif; font-size: .92rem; font-weight: 700; margin-bottom: 18px; color: var(--white); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--muted); text-decoration: none; font-size: .88rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--muted); font-size: .83rem; flex-wrap: wrap; gap: 12px;
}
.footer-socials { display: flex; gap: 12px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); text-decoration: none; font-size: .82rem; font-weight: 600;
  transition: border-color .2s, color .2s, background .2s;
}
.social-btn:hover { border-color: var(--accent); color: var(--accent); background: rgba(201,168,76,0.09); }

/* ════════════════════════════
   ANIMATIONS
════════════════════════════ */
@keyframes fadeUp   { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeDown { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:translateY(0); } }
@keyframes pulse    { 0%,100% { opacity:1; } 50% { opacity:.3; } }
@keyframes ticker   { from { transform:translateX(0); } to { transform:translateX(-50%); } }
@keyframes rotateSlow { to { transform:rotate(360deg); } }

.reveal { opacity: 0; transform: translateY(40px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ════════════════════════════
   RESPONSIVE
════════════════════════════ */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

/* ── Mobile navbar: show hamburger, hide desktop links ── */
@media (max-width: 900px) {
  nav ul    { display: none !important; }
  .nav-cta  { display: none !important; }
  .hamburger { display: flex; }
}

@media (max-width: 768px) {
  .hero-stats { gap: 28px; }
  .mini-stats { gap: 16px; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .mob-link { font-size: 1.5rem; }
}





/* ══════════════════════════════════════════
   STEP 1: style.css ke BILKUL END mein paste karo
   ══════════════════════════════════════════ */

.mega-wrap { position: static !important; }
.dropdown-toggle { cursor: pointer; }
.drop-arrow { font-size: .7rem; opacity: .7; margin-left: 2px; }

/* Bridge: padding-top se gap fill hoti hai takey cursor slip na kare */
.mega-wrap::after {
  content: '';
  position: fixed;
  top: 60px; left: 0; right: 0;
  height: 20px;
  z-index: 997;
  display: none;
}
.mega-wrap:hover::after { display: block; }

.mega-menu {
  display: none;
  position: fixed;
  top: 73px; left: 0; right: 0;
  background: rgba(10,10,10,0.98);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.08);
  backdrop-filter: blur(20px);
  z-index: 998;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  /* Gap fix: padding-top covers the invisible gap */
  padding-top: 8px;
}
.mega-menu.open { display: block; }

.mega-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 260px 1fr;
  min-height: 300px;
}

.mega-cats {
  border-right: 1px solid rgba(201,168,76,0.1);
  padding: 20px 0;
  display: flex; flex-direction: column;
}
.mega-cat-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 22px; cursor: pointer;
  color: var(--muted); font-size: .9rem; font-weight: 500;
  transition: background .2s, color .2s;
  border-left: 2px solid transparent;
}
.mega-cat-item:hover,
.mega-cat-item.active {
  background: rgba(201,168,76,0.07);
  color: var(--white);
  border-left-color: var(--accent);
}
.mega-cat-left { display: flex; align-items: center; gap: 10px; }
.mega-cat-icon { font-size: 1.1rem; }
.mega-cat-arrow { color: var(--accent); font-size: 1rem; opacity: 0; transition: opacity .2s; }
.mega-cat-item:hover .mega-cat-arrow,
.mega-cat-item.active .mega-cat-arrow { opacity: 1; }

.mega-panels { padding: 28px 32px 32px; }
.mega-panel { display: none; }
.mega-panel.active { display: block; }

.mega-panel-title {
  font-family: 'Poppins', sans-serif;
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--accent); margin-bottom: 18px;
}
.mega-sub-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.mega-sub-link {
  display: block; padding: 11px 16px;
  color: var(--muted); text-decoration: none;
  font-size: .88rem; font-weight: 400;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: all .2s;
}
.mega-sub-link:hover {
  color: var(--white);
  background: rgba(201,168,76,0.07);
  border-color: rgba(201,168,76,0.18);
  padding-left: 20px;
}
.mega-footer {
  margin-top: 24px; padding-top: 20px;
  border-top: 1px solid rgba(201,168,76,0.1);
  display: flex; align-items: center; justify-content: space-between;
}
.mega-footer p { font-size: .83rem; color: var(--muted); }
.mega-footer a {
  font-size: .83rem; font-weight: 700;
  color: var(--accent); text-decoration: none;
}
.mega-footer a:hover { color: var(--gold); }

@media (max-width: 900px) {
  .mega-menu { display: none !important; }
}


.testi-slider-wrap {
  display: flex; align-items: center; gap: 16px;
  max-width: 1200px; margin: 0 auto;
}
.testi-arrow {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.07); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s, transform .2s;
}
.testi-arrow:hover { background: rgba(201,168,76,0.18); border-color: var(--accent); transform: scale(1.1); }
.testi-track-outer { flex: 1; overflow: hidden; }
.testi-track { display: flex; gap: 24px; transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1); will-change: transform; }
.testi-card {
  flex-shrink: 0; background: var(--card);
  border: 1px solid var(--border); border-radius: 20px; padding: 32px;
  box-sizing: border-box; transition: border-color .3s, transform .3s;
}
.testi-card:hover { border-color: rgba(201,168,76,0.38); transform: translateY(-4px); }
.testi-dots { display: flex; justify-content: center; gap: 8px; margin-top: 32px; }
.testi-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(201,168,76,0.25); border: none; cursor: pointer;
  transition: background .2s, transform .2s; padding: 0;
}
.testi-dot.active { background: var(--accent); transform: scale(1.3); }
@media (max-width: 640px) {
  .testi-arrow { width: 38px; height: 38px; }
}






/* ════════════════════════════
   INDUSTRIES WE SERVE
════════════════════════════ */
.industries-section { background: var(--bg); }

.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.industry-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: transform .3s cubic-bezier(.23,1,.32,1), border-color .3s, box-shadow .3s;
}
.industry-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.5), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.industry-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.35);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}
.industry-card:hover::before { opacity: 1; }

.industry-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  transition: background .3s;
}
.industry-card:hover .industry-icon {
  background: rgba(201,168,76,0.15);
}

.industry-num {
  font-family: 'Poppins', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(201,168,76,0.07);
  line-height: 1;
  position: absolute;
  top: 24px; right: 28px;
  letter-spacing: -2px;
}

.industry-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.industry-card p {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.industry-tags {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.industry-tags li {
  font-size: .75rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 20px;
  padding: 4px 12px;
  letter-spacing: .3px;
}

@media (max-width: 768px) {
  .industries-grid { grid-template-columns: 1fr; }
}



/* ════════════════════════════
   MOBILE SERVICES ACCORDION
════════════════════════════ */
.mob-services-wrap { width: 100%; }

.mob-services-toggle {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 6vw, 2.4rem);
  font-weight: 800; letter-spacing: -1px;
  color: var(--muted);
  padding: 8px 0; width: 100%; text-align: center;
  cursor: pointer;
  transition: color .2s;
}
.mob-services-toggle:hover { color: var(--accent); }
.mob-services-toggle.open  { color: var(--accent); }

.mob-arrow {
  transition: transform .3s cubic-bezier(.23,1,.32,1);
  flex-shrink: 0; margin-top: 4px;
}
.mob-services-toggle.open .mob-arrow { transform: rotate(180deg); }

.mob-services-list {
  max-height: 0; overflow: hidden;
  transition: max-height .4s cubic-bezier(.23,1,.32,1), opacity .3s;
  opacity: 0;
  display: flex; flex-direction: column; gap: 4px;
  padding: 0 20px;
}
.mob-services-list.open {
  max-height: 400px;
  opacity: 1;
  padding: 8px 20px 12px;
}

.mob-sub-link {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  border-radius: 10px;
  text-decoration: none;
  font-size: .95rem; font-weight: 500;
  color: var(--muted);
  border: 1px solid transparent;
  transition: all .2s;
}
.mob-sub-link:hover {
  color: var(--white);
  background: rgba(201,168,76,0.07);
  border-color: rgba(201,168,76,0.2);
}
.mob-sub-icon {
  width: 28px; height: 28px; border-radius: 8px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}