
/* ===== RESET & ROOT ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --or: #B45309;
  --or2: #8A3E0A;
  --gold: #B45309;
  --dk: #1E2430;
  --dk2: #111827;
  --dk3: #1E293B;
  --gl: #F1F5F9;
  --wh: #FFFFFF;
  --mu: #94A3B8;
  --bd: #334155;
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--bd); background: var(--wh); overflow-x: hidden; }

/* ===== TOPBAR ===== */
.topbar { background: var(--dk); color: #CBD5E1; padding: 9px 0; font-size: 13px; }
.topbar .cn { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.tb-left { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.tb-left a { color: #CBD5E1; text-decoration: none; display: flex; align-items: center; gap: 6px; transition: color .2s; }
.tb-left a i { color: var(--or); font-size: 12px; }
.tb-left a:hover { color: var(--or); }
.tb-right { display: flex; gap: 8px; }
.tb-btn { background: var(--or); color: white !important; padding: 5px 14px; border-radius: 3px; font-weight: 700; font-size: 11px; letter-spacing: 0.5px; text-decoration: none !important; transition: background .2s; }
.tb-btn:hover { background: var(--or2) !important; }

/* ===== NAVBAR ===== */
.navbar { background: var(--dk2); position: sticky; top: 0; z-index: 1000; border-bottom: 3px solid var(--or); }
.navbar .cn { display: flex; justify-content: space-between; align-items: center; height: 70px; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo img { height: 44px; width: 44px; object-fit: contain; border-radius: 50%; background: #FFFFFF; padding: 3px; box-shadow: 0 0 0 2px rgba(255,255,255,0.12); }
.logo-txt { display: flex; flex-direction: column; line-height: 1.1; }
.logo-txt .brand { color: white; font-family: 'Oswald', sans-serif; font-size: 19px; font-weight: 700; letter-spacing: 1px; }
.logo-txt .tag { color: var(--or); font-size: 9.5px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-top: 2px; }
.nav-ul { display: flex; list-style: none; align-items: center; }
.nav-ul a { color: #CBD5E1; text-decoration: none; font-size: 12.5px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; padding: 26px 15px; display: block; transition: color .2s; position: relative; }
.nav-ul a::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 0; height: 3px; background: var(--or); transition: width .3s; }
.nav-ul a:hover { color: white; }
.nav-ul a:hover::after { width: 100%; }
.nav-cta { background: var(--or) !important; color: white !important; margin-left: 8px; padding: 9px 20px !important; border-radius: 4px; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--or2) !important; }
.ham { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.ham span { width: 24px; height: 2px; background: white; border-radius: 2px; transition: .3s; }

/* ===== MOBILE MENU ===== */
.mob-menu { display: none; flex-direction: column; background: var(--dk2); border-top: 1px solid rgba(255,255,255,0.08); }
.mob-menu.open { display: flex; }
.mob-menu a { color: #CBD5E1; text-decoration: none; padding: 13px 20px; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.mob-menu a:hover { color: var(--or); padding-left: 28px; transition: .2s; }

/* ===== CONTAINER ===== */
.cn { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== HERO ===== */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; background: #FFFFFF; overflow: hidden; border-bottom: 1px solid #E2E8F0; }
.hero-bg { position: absolute; inset: 0; background: url('https://nagpaltimbertraders.com/wp-content/uploads/2024/07/WhatsApp-Image-2024-07-13-at-1.03.22-PM.jpeg') center/cover; opacity: 0.05; }
.hero-mesh {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(30,36,48,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(30,36,48,0.04) 1px, transparent 1px);
  background-size: 55px 55px;
}
.hero-grad { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.97) 0%, rgba(248,250,252,0.94) 55%, rgba(180,83,9,0.05) 100%); }
.hero .cn { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding-top: 80px; padding-bottom: 80px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(180,83,9,0.12); border: 1px solid rgba(180,83,9,0.4); color: var(--or); padding: 8px 18px; border-radius: 50px; font-size: 11.5px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 22px; }
.hero h1 { font-family: 'Oswald', sans-serif; font-size: clamp(36px,5vw,68px); font-weight: 700; color: var(--dk); line-height: 1.08; text-transform: uppercase; margin-bottom: 22px; letter-spacing: -1px; }
.hero h1 .ac { color: var(--or); }
.hero h1 .ul { position: relative; display: inline-block; }
.hero h1 .ul::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 4px; background: var(--or); border-radius: 2px; }
.hero-desc { color: #475569; font-size: 15.5px; line-height: 1.75; margin-bottom: 30px; max-width: 510px; }
.hero-desc strong { color: var(--dk); }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.btn-p { background: var(--or); color: white; padding: 15px 30px; border-radius: 4px; font-weight: 700; font-size: 14px; text-decoration: none; text-transform: uppercase; letter-spacing: 1px; display: inline-flex; align-items: center; gap: 9px; transition: background .2s, transform .2s; }
.btn-p:hover { background: var(--or2); transform: translateY(-2px); }
.btn-o { background: transparent; color: var(--dk); padding: 15px 30px; border-radius: 4px; font-weight: 600; font-size: 14px; text-decoration: none; text-transform: uppercase; letter-spacing: 1px; display: inline-flex; align-items: center; gap: 9px; border: 2px solid #CBD5E1; transition: .2s; }
.btn-o:hover { border-color: var(--or); background: rgba(180,83,9,0.06); color: var(--or); }
.hero-minis { display: flex; gap: 30px; flex-wrap: wrap; }
.hm-num { font-family: 'Oswald', sans-serif; font-size: 30px; font-weight: 700; color: var(--or); line-height: 1; }
.hm-lbl { font-size: 11px; color: #64748B; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-top: 3px; }
.hero-right { position: relative; display: flex; flex-direction: column; gap: 0; }
.hi-wrap { border-radius: 8px; overflow: hidden; border: 2px solid rgba(180,83,9,0.25); position: relative; }
.hi-wrap img { width: 100%; height: 420px; object-fit: cover; display: block; }
.hi-badge { position: absolute; top: 18px; right: 18px; background: var(--or); color: white; font-family: 'Oswald', sans-serif; font-size: 12px; font-weight: 700; padding: 9px 15px; border-radius: 4px; text-transform: uppercase; letter-spacing: 1px; }
.hi-card { position: absolute; bottom: -22px; left: -22px; background: var(--dk2); border: 2px solid rgba(180,83,9,0.3); padding: 18px 22px; border-radius: 8px; min-width: 210px; }
.hi-card .num { font-family: 'Oswald', sans-serif; font-size: 32px; font-weight: 700; color: var(--or); line-height: 1; }
.hi-card .lbl { font-size: 12px; color: #94A3B8; font-weight: 500; margin-top: 5px; }
.hi-card2 { position: absolute; top: 16px; left: 16px; z-index: 3; background: var(--or); padding: 14px 18px; border-radius: 8px; box-shadow: 0 4px 16px rgba(0,0,0,0.25); }
.hi-card2 .cn2-num { font-family: 'Oswald', sans-serif; font-size: 22px; font-weight: 700; color: white; line-height: 1; }
.hi-card2 .cn2-lbl { font-size: 10px; color: rgba(255,255,255,0.85); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-top: 3px; }

/* ===== TICKER ===== */
.ticker { background: var(--or); padding: 13px 0; overflow: hidden; white-space: nowrap; }
.ticker-wrap { display: flex; width: max-content; animation: tick 45s linear infinite; }
.ticker:hover .ticker-wrap { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) { .ticker-wrap { animation: none; } }
.ti { color: white; font-weight: 700; font-size: 12.5px; text-transform: uppercase; letter-spacing: 1px; padding: 0 35px; display: inline-flex; align-items: center; gap: 10px; }
.ti i { font-size: 14px; }
@keyframes tick { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== STATS ===== */
.stats-strip { background: var(--gl); border-top: 1px solid #E2E8F0; border-bottom: 1px solid #E2E8F0; }
.stats-g { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 38px 24px; text-align: center; border-right: 1px solid #E2E8F0; border-bottom: 3px solid transparent; transition: border-color .3s; cursor: default; }
.stat:last-child { border-right: none; }
.stat:hover { border-bottom-color: var(--or); }
.stat-ico { font-size: 32px; color: rgba(180,83,9,0.3); margin-bottom: 14px; display: block; }
.stat-num { font-family: 'Oswald', sans-serif; font-size: clamp(30px,3.5vw,52px); font-weight: 700; color: var(--or); line-height: 1; margin-bottom: 8px; }
.stat-suf { font-size: 0.75em; }
.stat-lbl { color: #64748B; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* ===== SECTION BASE ===== */
.sec { padding: 100px 0; }
.sec-alt { background: var(--gl); }
.sec-dk { background: var(--dk2); }
.sec-darker { background: var(--dk); }
.sec-lbl { display: inline-flex; align-items: center; gap: 8px; color: var(--or); font-size: 11.5px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 14px; }
.sec-lbl::before { content: ''; width: 28px; height: 2px; background: var(--or); }
.sec-h { font-family: 'Oswald', sans-serif; font-size: clamp(26px,3.5vw,46px); font-weight: 700; color: var(--dk2); text-transform: uppercase; line-height: 1.1; margin-bottom: 14px; }
.sec-h-wh { color: white; }
.sec-p { color: var(--mu); font-size: 15px; line-height: 1.75; max-width: 580px; }
.ac-txt { color: var(--or); }

/* ===== SERVICES ===== */
.srv-g { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px; }
.srv-c { background: white; border: 1px solid #E2E8F0; padding: 36px 28px; border-radius: 8px; transition: all .3s; position: relative; overflow: hidden; }
.srv-c::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--or); transform: scaleX(0); transition: transform .3s; transform-origin: left; }
.srv-c:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.1); transform: translateY(-4px); }
.srv-c:hover::before { transform: scaleX(1); }
.srv-ico { width: 60px; height: 60px; background: rgba(180,83,9,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 26px; color: var(--or); margin-bottom: 22px; }
.srv-c h3 { font-family: 'Oswald', sans-serif; font-size: 21px; font-weight: 700; color: var(--dk2); text-transform: uppercase; margin-bottom: 11px; }
.srv-c p { color: var(--bd); font-size: 13.5px; line-height: 1.7; margin-bottom: 18px; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag { background: var(--gl); color: #64748B; font-size: 10.5px; font-weight: 700; padding: 4px 9px; border-radius: 3px; text-transform: uppercase; letter-spacing: 0.5px; }

/* ===== PRODUCTS ===== */
.prod-h { text-align: center; margin-bottom: 56px; }
.prod-h .sec-lbl { justify-content: center; }
.prod-h .sec-p { margin: 0 auto; }
.prod-g { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.prod-c { background: white; border-radius: 8px; overflow: hidden; border: 1px solid #E2E8F0; transition: all .3s; position: relative; }
.prod-c:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.12); transform: translateY(-4px); }
.prod-img { height: 195px; background: #F8FAFC; display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
.prod-img img { width: 100%; height: 100%; object-fit: contain; padding: 14px; transition: transform .35s; }
.prod-c:hover .prod-img img { transform: scale(1.07); }
.prod-img-dark { background: #F1F5F9 !important; }
.prod-avail { position: absolute; top: 10px; right: 10px; background: #10B981; color: white; font-size: 9.5px; font-weight: 700; padding: 3px 8px; border-radius: 3px; letter-spacing: 0.5px; text-transform: uppercase; }
.prod-b { padding: 18px 18px 20px; }
.prod-b h4 { font-family: 'Oswald', sans-serif; font-size: 16px; font-weight: 700; color: var(--dk2); text-transform: uppercase; margin-bottom: 7px; }
.prod-b p { font-size: 12.5px; color: #64748B; line-height: 1.55; margin-bottom: 14px; }
.enq { background: var(--or); color: white; padding: 9px 18px; border-radius: 4px; font-size: 11.5px; font-weight: 700; text-decoration: none; text-transform: uppercase; letter-spacing: 0.5px; display: flex; align-items: center; justify-content: center; gap: 6px; transition: background .2s; }
.enq:hover { background: var(--or2); }

/* ===== WHY US ===== */
.why-g { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-l { position: relative; }
.why-l img { width: 100%; border-radius: 8px; border: 2px solid rgba(180,83,9,0.2); display: block; }
.why-stamp { position: absolute; bottom: -18px; right: -18px; background: var(--or); color: white; font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 700; padding: 16px 20px; border-radius: 6px; text-align: center; text-transform: uppercase; letter-spacing: 1px; }
.why-stamp span { display: block; font-size: 30px; line-height: 1; }
.reasons { display: flex; flex-direction: column; gap: 22px; margin-top: 36px; }
.rsn { display: flex; gap: 14px; align-items: flex-start; }
.rsn-ico { width: 48px; height: 48px; min-width: 48px; background: rgba(180,83,9,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--or); font-size: 20px; }
.rsn h4 { font-family: 'Oswald', sans-serif; font-size: 17px; font-weight: 700; color: var(--dk2); text-transform: uppercase; margin-bottom: 4px; }
.rsn p { font-size: 13.5px; color: var(--bd); line-height: 1.6; }

/* ===== GALLERY ===== */
.gal-g { display: grid; grid-template-columns: repeat(12, 1fr); grid-template-rows: auto; gap: 14px; margin-top: 44px; }
.gi { border-radius: 8px; overflow: hidden; cursor: pointer; position: relative; }
.gi img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.gi:hover img { transform: scale(1.06); }
.gi-ov { position: absolute; inset: 0; background: rgba(180,83,9,0.7); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .3s; }
.gi-ov i { color: white; font-size: 28px; }
.gi:hover .gi-ov { opacity: 1; }
.g1 { grid-column: span 4; height: 280px; }
.g2 { grid-column: span 4; height: 280px; }
.g3 { grid-column: span 4; height: 280px; }
.g4 { grid-column: span 6; height: 240px; }
.g5 { grid-column: span 6; height: 240px; }

/* ===== TESTIMONIALS ===== */
.test-g { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 56px; }
.test-c { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); padding: 30px; border-radius: 8px; transition: all .3s; }
.test-c:hover { border-color: rgba(180,83,9,0.4); background: rgba(180,83,9,0.04); }
.stars { color: var(--gold); font-size: 13px; margin-bottom: 14px; letter-spacing: 2px; }
.test-c p { color: #CBD5E1; font-size: 13.5px; line-height: 1.8; margin-bottom: 22px; font-style: italic; }
.t-auth { display: flex; align-items: center; gap: 12px; }
.av { width: 42px; height: 42px; border-radius: 50%; background: var(--or); display: flex; align-items: center; justify-content: center; font-family: 'Oswald', sans-serif; font-size: 18px; font-weight: 700; color: white; }
.t-name { color: white; font-weight: 600; font-size: 14px; }
.t-loc { color: #64748B; font-size: 11.5px; margin-top: 2px; }

/* ===== COVERAGE ===== */
.cov-g { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 56px; }
.cov-areas { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.cov-a { display: flex; align-items: center; gap: 9px; background: rgba(255,255,255,0.04); border: 1px solid rgba(180,83,9,0.15); padding: 13px 16px; border-radius: 6px; color: white; font-size: 13px; font-weight: 500; transition: all .2s; }
.cov-a:hover { border-color: var(--or); background: rgba(180,83,9,0.08); }
.cov-a i { color: var(--or); font-size: 14px; }
.cov-a.hl { background: rgba(180,83,9,0.1) !important; border-color: var(--or) !important; font-weight: 700; }
.cov-box { background: rgba(255,255,255,0.03); border: 1px solid rgba(180,83,9,0.2); border-radius: 8px; padding: 44px 36px; text-align: center; }
.cov-box .big-ico { font-size: 72px; color: rgba(180,83,9,0.2); margin-bottom: 20px; display: block; }
.cov-box h3 { font-family: 'Oswald', sans-serif; font-size: 22px; font-weight: 700; color: white; text-transform: uppercase; margin-bottom: 12px; }
.cov-box p { color: #64748B; font-size: 13.5px; line-height: 1.7; margin-bottom: 22px; }

/* ===== CTA BAND ===== */
.cta-band { background: var(--or); padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background: url('https://nagpaltimbertraders.com/wp-content/uploads/2024/07/g3.jpeg') center/cover; opacity: 0.07; }
.cta-band .cn { position: relative; z-index: 1; }
.cta-band h2 { font-family: 'Oswald', sans-serif; font-size: clamp(26px,4vw,52px); font-weight: 700; color: white; text-transform: uppercase; margin-bottom: 14px; line-height: 1.1; }
.cta-band p { color: rgba(255,255,255,0.9); font-size: 17px; margin-bottom: 38px; }
.cta-bs { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.btn-wh { background: white; color: var(--or); padding: 16px 36px; border-radius: 4px; font-weight: 700; font-size: 14px; text-decoration: none; text-transform: uppercase; letter-spacing: 1px; display: inline-flex; align-items: center; gap: 9px; transition: all .2s; }
.btn-wh:hover { background: var(--dk2); color: white; transform: translateY(-2px); }
.btn-wh-o { background: transparent; color: white; padding: 16px 36px; border-radius: 4px; font-weight: 700; font-size: 14px; text-decoration: none; text-transform: uppercase; letter-spacing: 1px; display: inline-flex; align-items: center; gap: 9px; border: 2px solid rgba(255,255,255,0.6); transition: all .2s; }
.btn-wh-o:hover { border-color: white; background: rgba(255,255,255,0.12); }

/* ===== FOOTER ===== */
.footer { background: #070A12; padding: 80px 0 36px; }
.ft-g { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 56px; }
.ft-brand { }
.ft-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.ft-logo img { height: 42px; width: 42px; object-fit: contain; border-radius: 50%; background: #FFFFFF; padding: 3px; }
.ft-bn { font-family: 'Oswald', sans-serif; font-size: 19px; font-weight: 700; color: white; }
.ft-brand p { color: #475569; font-size: 13.5px; line-height: 1.75; margin-bottom: 20px; }
.ft-soc { display: flex; gap: 9px; }
.si { width: 36px; height: 36px; border-radius: 6px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: #64748B; text-decoration: none; font-size: 15px; transition: all .2s; }
.si:hover { background: var(--or); border-color: var(--or); color: white; }
.ft-col h4 { font-family: 'Oswald', sans-serif; font-size: 15px; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px; padding-bottom: 9px; border-bottom: 2px solid var(--or); display: inline-block; }
.ft-lnk { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.ft-lnk a { color: #475569; text-decoration: none; font-size: 13.5px; transition: .2s; display: flex; align-items: center; gap: 6px; }
.ft-lnk a::before { content: '›'; color: var(--or); }
.ft-lnk a:hover { color: var(--or); padding-left: 4px; }
.ft-cont { display: flex; flex-direction: column; gap: 13px; }
.ci { display: flex; gap: 10px; align-items: flex-start; }
.ci i { color: var(--or); font-size: 14px; margin-top: 2px; min-width: 14px; }
.ci span, .ci a { color: #475569; font-size: 13px; line-height: 1.5; text-decoration: none; }
.ci a:hover { color: var(--or); }
.ft-kws { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.05); }
.kw { color: #1E293B; font-size: 11px; padding: 3px 8px; border: 1px solid #1E293B; border-radius: 3px; }
.ft-bot { padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.ft-bot p { color: #334155; font-size: 12.5px; }
.ft-bot a { color: var(--or); text-decoration: none; }
.india-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(180,83,9,0.1); border: 1px solid rgba(180,83,9,0.3); color: var(--or); padding: 5px 12px; border-radius: 50px; font-size: 11px; font-weight: 700; letter-spacing: 1px; }

/* ===== FLOATING ===== */
.fl-wa { position: fixed; bottom: 28px; right: 28px; z-index: 9999; background: #25D366; color: white; width: 58px; height: 58px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 26px; text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,0.35); transition: transform .2s; }
.fl-wa:hover { transform: scale(1.1); }
.fl-ph { position: fixed; bottom: 97px; right: 28px; z-index: 9999; background: var(--or); color: white; width: 58px; height: 58px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; text-decoration: none; box-shadow: 0 4px 20px rgba(180,83,9,0.4); transition: transform .2s; }
.fl-ph:hover { transform: scale(1.1); }

/* ===== BANNER STRIP ===== */
.banner-strip { background: linear-gradient(135deg, #B45309 0%, #8A3E0A 100%); padding: 20px 0; }
.banner-strip .cn { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.bs-txt { font-family: 'Oswald', sans-serif; font-size: 20px; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: 1px; }
.bs-txt span { background: rgba(0,0,0,0.15); padding: 3px 10px; border-radius: 4px; margin-left: 8px; }
.bs-btn { background: white; color: var(--or); padding: 10px 24px; border-radius: 4px; font-weight: 700; font-size: 13px; text-decoration: none; display: flex; align-items: center; gap: 8px; text-transform: uppercase; letter-spacing: 1px; transition: all .2s; }
.bs-btn:hover { background: var(--dk2); color: white; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .prod-g { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .hero .cn { grid-template-columns: 1fr; padding-top: 60px; padding-bottom: 60px; }
  .hero-right { display: none; }
  .srv-g { grid-template-columns: 1fr 1fr; }
  .stats-g { grid-template-columns: repeat(2, 1fr); }
  .prod-g { grid-template-columns: repeat(2, 1fr); }
  .ft-g { grid-template-columns: 1fr 1fr; }
  .why-g { grid-template-columns: 1fr; }
  .cov-g { grid-template-columns: 1fr; }
  .test-g { grid-template-columns: 1fr; }
  .gal-g { grid-template-columns: 1fr 1fr 1fr; }
  .g1,.g2,.g3 { grid-column: span 1; height: 200px; }
  .g4,.g5 { grid-column: span 1; height: 200px; }
  .nav-ul { display: none; }
  .ham { display: flex; }
  .banner-strip .cn { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
  .sec { padding: 60px 0; }
  .srv-g { grid-template-columns: 1fr; }
  .prod-g { grid-template-columns: 1fr 1fr; }
  .ft-g { grid-template-columns: 1fr; }
  .gal-g { grid-template-columns: 1fr 1fr; }
  .g1,.g2,.g3,.g4,.g5 { grid-column: span 1; height: 160px; }
  .tb-right { display: none; }
  .stats-g { grid-template-columns: 1fr 1fr; }
  .cta-bs { flex-direction: column; align-items: center; }
  .hero h1 { font-size: 38px; }
  .hero-minis { gap: 20px; }
}
/* ENQUIRY FORM */
.enq-wrap { display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; align-items: start; margin-top: 40px; }
.enq-form-box { background: var(--s2); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; padding: 36px; }
.enq-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.enq-field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.enq-field label { font-size: 12px; font-weight: 700; color: var(--or); text-transform: uppercase; letter-spacing: 1px; }
.enq-field input, .enq-field select, .enq-field textarea { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; padding: 12px 16px; color: var(--lt); font-size: 14px; font-family: 'Inter', sans-serif; outline: none; transition: border 0.2s; }
.enq-field input:focus, .enq-field select:focus, .enq-field textarea:focus { border-color: var(--or); }
.enq-field select option { background: #1E293B; color: white; }
.enq-field textarea { resize: vertical; }
.enq-btns { display: flex; gap: 12px; margin-top: 8px; flex-wrap: wrap; }
.enq-wa { background: #25D366; color: white; border: none; padding: 14px 28px; border-radius: 8px; font-size: 15px; font-weight: 700; cursor: pointer; display: flex; align-items: center; gap: 8px; transition: opacity 0.2s; }
.enq-wa:hover { opacity: 0.9; }
.enq-call { background: var(--or); color: white; padding: 14px 28px; border-radius: 8px; font-size: 15px; font-weight: 700; text-decoration: none; display: flex; align-items: center; gap: 8px; transition: opacity 0.2s; }
.enq-call:hover { opacity: 0.9; }
.enq-email { background: #1E293B; color: white; border: none; padding: 14px 28px; border-radius: 8px; font-size: 15px; font-weight: 700; cursor: pointer; display: flex; align-items: center; gap: 8px; transition: opacity 0.2s; }
.enq-email:hover { opacity: 0.9; }
.enq-note { font-size: 11.5px; color: rgba(255,255,255,0.4); margin-top: 14px; display: flex; align-items: center; gap: 6px; }
.enq-info { display: flex; flex-direction: column; gap: 16px; }
.enq-info-card { background: var(--s2); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; padding: 18px 20px; display: flex; align-items: flex-start; gap: 16px; }
.enq-info-card i { color: var(--or); font-size: 22px; margin-top: 2px; flex-shrink: 0; }
.enq-info-card strong { display: block; font-size: 14px; font-weight: 700; color: var(--lt); margin-bottom: 3px; }
.enq-info-card span { font-size: 12.5px; color: rgba(255,255,255,0.5); }
.enq-wa-direct { background: #25D366; color: white; padding: 14px 24px; border-radius: 10px; font-size: 15px; font-weight: 700; text-decoration: none; display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 4px; transition: opacity 0.2s; }
.enq-wa-direct:hover { opacity: 0.9; }
@media (max-width: 900px) { .enq-wrap { grid-template-columns: 1fr; } .enq-row { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .enq-form-box { padding: 22px; } .enq-btns { flex-direction: column; } .enq-wa, .enq-call { justify-content: center; } }
/* MOBILE STICKY BOTTOM BAR */
.mob-sticky { display:none; position:fixed; bottom:0; left:0; right:0; z-index:9999; background:var(--dk2); border-top:2px solid var(--or); padding:8px 0 10px; box-shadow:0 -4px 20px rgba(0,0,0,0.5); }
.mob-sticky a { flex:1; display:flex; flex-direction:column; align-items:center; gap:3px; text-decoration:none; font-size:10.5px; font-weight:700; letter-spacing:0.5px; text-transform:uppercase; transition:opacity 0.2s; }
.mob-sticky a:hover { opacity:0.85; }
.mob-sticky a.ms-call { color:var(--or); }
.mob-sticky a.ms-wa { color:#25D366; }
.mob-sticky a.ms-enq { color:white; }
.mob-sticky a i { font-size:19px; }
@media (max-width:900px) { .mob-sticky { display:flex; } body { padding-bottom:68px; } }

/* HINDI TOGGLE */
.lang-btn { background:rgba(180,83,9,0.12); border:1px solid rgba(180,83,9,0.4); color:var(--or); padding:5px 14px; border-radius:20px; font-size:12px; font-weight:700; cursor:pointer; letter-spacing:0.5px; transition:all 0.2s; white-space:nowrap; }
.lang-btn:hover { background:var(--or); color:white; }
body.hindi .lang-btn { background:var(--or); color:white; }

/* CITY SEO SECTION */
.city-g { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:36px; }
.city-c { background:var(--s2); border:1px solid rgba(255,255,255,0.06); border-radius:14px; padding:28px 24px; transition:transform 0.2s, border-color 0.2s; }
.city-c:hover { transform:translateY(-4px); border-color:rgba(180,83,9,0.3); }
.city-c i { font-size:28px; color:var(--or); margin-bottom:14px; display:block; }
.city-c h3 { font-family:'Oswald',sans-serif; font-size:17px; font-weight:600; color:var(--lt); margin-bottom:10px; }
.city-c p { font-size:13px; color:rgba(255,255,255,0.55); line-height:1.7; margin-bottom:16px; }
.city-c a { color:var(--or); font-size:13px; font-weight:700; text-decoration:none; display:inline-flex; align-items:center; gap:5px; }
.city-c a:hover { text-decoration:underline; }
@media (max-width:900px) { .city-g { grid-template-columns:1fr 1fr; } }
@media (max-width:600px) { .city-g { grid-template-columns:1fr; } }

/* GOOGLE MAP */
.map-wrap { border-radius:14px; overflow:hidden; border:1px solid rgba(180,83,9,0.2); margin-top:20px; }
.map-wrap iframe { display:block; width:100%; height:300px; border:0; }
.map-cta { display:flex; gap:10px; justify-content:center; flex-wrap:wrap; margin-top:16px; }

/* ===== SUBPAGE CONTENT ADDITIONS ===== */
.page-hero { background: var(--dk); padding: 60px 0 40px; text-align:center; }
.page-hero h1 { font-family:'Oswald',sans-serif; color:white; font-size:clamp(28px,4vw,46px); text-transform:uppercase; letter-spacing:-0.5px; margin-bottom:10px; }
.page-hero p { color:#94A3B8; font-size:15px; max-width:700px; margin:0 auto; }
.breadcrumb { color: var(--or); font-size:12px; text-transform:uppercase; letter-spacing:1px; font-weight:700; margin-bottom:14px; }
.breadcrumb a { color:#CBD5E1; text-decoration:none; }
.breadcrumb a:hover { color:var(--or); }
.content-block { max-width: 900px; margin: 40px auto; }
.content-block h2 { font-family:'Oswald',sans-serif; font-size:26px; color:var(--dk2); margin: 30px 0 14px; text-transform:uppercase; }
.content-block p { color:var(--bd); line-height:1.8; margin-bottom:16px; font-size:15px; }
.content-block ul { margin: 0 0 20px 20px; color:var(--bd); line-height:1.9; }
.card-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:22px; margin: 30px 0; }
.info-card { background:var(--wh); border:1px solid #E2E8F0; border-radius:10px; padding:0 0 22px; box-shadow:0 2px 10px rgba(0,0,0,0.04); overflow:hidden; }
.info-card i { color:var(--or); font-size:26px; margin:22px 22px 12px; display:block; }
.info-card h3 { font-family:'Oswald',sans-serif; font-size:17px; color:var(--dk2); margin:16px 22px 8px; }
.info-card p { color:#475569; font-size:13.5px; line-height:1.7; margin:0 22px; }
.info-card a { margin:14px 22px 0; display:inline-block; }
.info-card-img { width:100%; height:150px; object-fit:cover; display:block; background:var(--gl); border-bottom:3px solid var(--or); }
.product-hero-img { width:100%; max-width:460px; border-radius:12px; float:right; margin:0 0 20px 30px; border:2px solid rgba(180,83,9,0.2); box-shadow:0 8px 24px rgba(0,0,0,0.08); object-fit:cover; }
@media (max-width:760px) { .product-hero-img { float:none; max-width:100%; margin:0 0 20px; } }
.content-block table.spec-table { clear:both; }
.cta-box { background: var(--dk); border-radius:12px; padding:36px 30px; text-align:center; margin: 40px 0; }
.cta-box h3 { color:white; font-family:'Oswald',sans-serif; font-size:22px; margin-bottom:10px; text-transform:uppercase; }
.cta-box p { color:#94A3B8; margin-bottom:20px; }
.cta-box .btns { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }
.spec-table { width:100%; border-collapse:collapse; margin: 20px 0 30px; }
.spec-table th, .spec-table td { text-align:left; padding:10px 14px; border-bottom:1px solid #E2E8F0; font-size:14px; }
.spec-table th { background:var(--gl); color:var(--dk2); font-family:'Oswald',sans-serif; text-transform:uppercase; font-size:12px; letter-spacing:0.5px; }
.job-card { background:var(--wh); border:1px solid #E2E8F0; border-left:4px solid var(--or); border-radius:8px; padding:22px; margin-bottom:16px; }
.job-card h3 { font-family:'Oswald',sans-serif; font-size:18px; color:var(--dk2); margin-bottom:6px; }
.job-card .meta { font-size:12.5px; color:#64748B; margin-bottom:10px; }
.team-card { text-align:center; padding: 20px; }
.team-card .avatar { width:90px; height:90px; border-radius:50%; background:var(--gl); display:flex; align-items:center; justify-content:center; margin:0 auto 14px; font-size:30px; color:var(--or); border: 2px solid var(--or); }
.team-card h3 { font-family:'Oswald',sans-serif; font-size:16px; color:var(--dk2); margin-bottom:4px; }
.team-card .role { color:var(--or); font-size:12.5px; font-weight:700; text-transform:uppercase; letter-spacing:0.5px; }
