:root {
  --primary: #f05c2b;
  --primary-2: #ffb000;
  --ink: #102027;
  --muted: #5d6872;
  --white: #fff;
  --glass: rgba(255, 255, 255, 0.16);
  --glass-strong: rgba(255, 255, 255, 0.78);
  --line: rgba(255, 255, 255, 0.28);
  --shadow: 0 22px 70px rgba(16, 32, 39, 0.16);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Hind Siliguri", system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 20%, rgba(240, 92, 43, .16), transparent 28rem),
    radial-gradient(circle at 90% 10%, rgba(255, 176, 0, .13), transparent 22rem),
    linear-gradient(135deg, #f8fbf8 0%, #eef8f3 48%, #fff6ef 100%);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.loader {
  position: fixed; inset: 0; z-index: 9999; display: grid; place-items: center;
  background: #071114; color: white; transition: opacity .45s ease, visibility .45s ease;
}
.loader.hide { opacity: 0; visibility: hidden; }
.loader span {
  width: 58px; height: 58px; border: 4px solid rgba(255,255,255,.2);
  border-top-color: var(--primary); border-radius: 50%; animation: spin .4s linear infinite;
}
.loader p { position: absolute; margin-top: 96px; }
@keyframes spin { to { transform: rotate(360deg); } }

.cursor-dot {
  position: fixed; width: 10px; height: 10px; border-radius: 999px; background: var(--primary);
  pointer-events: none; z-index: 9998; transform: translate(-50%, -50%); opacity: .75;
}

.top-announcement {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1200; overflow: hidden;
  height: 36px; display: flex; align-items: center; backdrop-filter: blur(18px);
  background: rgba(7, 17, 20, .72); color: #fff; border-bottom: 1px solid rgba(255,255,255,.13);
}
.announce-track { white-space: nowrap; min-width: 100%; animation: marquee 18s linear infinite; font-weight: 700; }
@keyframes marquee { from { transform: translateX(100%); } to { transform: translateX(-100%); } }

.site-header {
  position: fixed; top: 36px; left: 16px; right: 16px; z-index: 1100; height: 76px;
  display: flex; align-items: center; justify-content: space-between; padding: 0 22px;
  background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.35);
  border-radius: var(--radius); backdrop-filter: blur(22px); box-shadow: var(--shadow);
  transition: .35s ease;
}
.site-header.scrolled { background: rgba(255,255,255,.86); top: 44px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: Inter, sans-serif; }
.brand-mark {
  width: 44px; height: 44px; display: grid; place-items: center; border-radius: var(--radius);
  color: white; font-weight: 900; background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 12px 26px rgba(240, 92, 43, .32);
}
.brand strong { display: block; line-height: 1; }
.brand small { display: block; color: var(--primary); font-weight: 800; letter-spacing: 0; }
.desktop-nav { display: flex; align-items: center; gap: 4px; }
.desktop-nav a {
  padding: 10px 12px; border-radius: var(--radius); color: #f72314; font-weight: 700; font-size: 14px;
  transition: .25s ease;
}
.desktop-nav a:hover, .desktop-nav a.active { color: white; background: var(--primary); box-shadow: 0 12px 26px rgba(240,92,43,.25); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: var(--ink); border-radius: var(--radius); padding: 11px; }
.menu-toggle span { display: block; height: 2px; background: white; margin: 5px 0; }
.mobile-drawer, .drawer-overlay { display: none; }

.hero-slider { position: relative; min-height: 100vh; overflow: hidden; background: #071114; }
.hero-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transform: scale(1.06);
  transition: opacity 1.1s ease, transform 4s ease;
}
.hero-slide::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,14,17,.78), rgba(5,14,17,.38), rgba(5,14,17,.72)); }
.hero-slide.active { opacity: 1; transform: scale(1); }
.particle-bg {
  position: absolute; inset: 0; z-index: 2; background-image: radial-gradient(rgba(255,255,255,.42) 1px, transparent 1px);
  background-size: 36px 36px; opacity: .14; animation: drift 18s linear infinite;
}
@keyframes drift { to { transform: translate3d(-36px, -36px, 0); } }
.hero-content {
  position: relative; z-index: 3; width: min(1120px, calc(100% - 32px)); margin: 0 auto; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center; padding-top: 100px; color: white;
}
.eyebrow, .section-head span, .page-hero span, .founder-card span {
  color: var(--primary-2); text-transform: uppercase; font-family: Inter, sans-serif; font-weight: 900; font-size: 12px;
}
h1, h2, h3, p { margin-top: 0; }
.hero-content h1 { max-width: 760px; font-size: clamp(42px, 7vw, 92px); line-height: 1.02; margin: 12px 0; }
.hero-content p { max-width: 650px; font-size: clamp(18px, 2vw, 24px); color: rgba(255,255,255,.86); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; width: fit-content; min-height: 46px;
  padding: 12px 20px; border: 0; border-radius: var(--radius); color: white; font-weight: 900;
  background: linear-gradient(135deg, var(--primary), #ff8b3d); box-shadow: 0 16px 34px rgba(240,92,43,.28);
  transition: transform .25s ease, box-shadow .25s ease; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 22px 44px rgba(240,92,43,.34); }
.btn.large { min-height: 56px; padding: 15px 24px; }
.btn.ghost { background: rgba(255,255,255,.14); color: var(--ink); border: 1px solid rgba(16,32,39,.12); box-shadow: none; }
.section { width: min(1180px, calc(100% - 32px)); margin: 0 auto; padding: 90px 0; }
.section-head { display: grid; gap: 8px; margin-bottom: 30px; }
.section-head h2, .page-hero h1 { font-size: clamp(30px, 4vw, 54px); line-height: 1.08; margin: 0; }
.text-link { color: var(--primary); font-weight: 900; }
.glass-card {
  border: 1px solid rgba(255,255,255,.52); border-radius: var(--radius); background: rgba(255,255,255,.42);
  box-shadow: var(--shadow); backdrop-filter: blur(20px); padding: 24px; transition: .28s ease;
}
.glass-card:hover { transform: translateY(-5px); border-color: rgba(240,92,43,.36); box-shadow: 0 28px 80px rgba(240,92,43,.14); }
.trust-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.stat-card i {
  width: 42px; height: 42px; display: grid; place-items: center; border-radius: var(--radius);
  background: rgba(240,92,43,.12); color: var(--primary); font-weight: 900; font-style: normal; margin-bottom: 14px;
}
.stat-card strong { display: block; color: var(--primary); font-size: 30px; font-family: Inter, sans-serif; }
.stat-card h3 { margin: 4px 0 8px; }
.stat-card p { color: var(--muted); margin: 0; }
.project-grid, .document-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.project-card {
  overflow: hidden; border-radius: var(--radius); background: rgba(255,255,255,.58); border: 1px solid rgba(255,255,255,.55);
  box-shadow: var(--shadow); transition: .3s ease; cursor: pointer;
}
.project-card:hover { transform: translateY(-6px); }
.project-card img { width: 100%; height: 230px; object-fit: cover; transition: transform .55s ease; }
.project-card:hover img { transform: scale(1.06); }
.project-card div { padding: 18px; }
.project-card span { color: var(--primary); font-weight: 900; }
.project-card h3 { margin: 6px 0; }
.project-card p { color: var(--muted); margin: 0; }
.brand-slider, .client-marquee { overflow: hidden; }
.brand-track, .client-track { display: flex; gap: 16px; width: max-content; animation: marquee-left 25s linear infinite; }
.brand-slider:hover .brand-track, .client-marquee:hover .client-track { animation-play-state: paused; }
@keyframes marquee-left { to { transform: translateX(-50%); } }
.brand-card, .client-pill {
  min-width: 180px; height: 92px; display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 18px; border-radius: var(--radius); background: rgba(255,255,255,.48); border: 1px solid rgba(255,255,255,.56);
  box-shadow: 0 18px 40px rgba(16,32,39,.1); font-family: Inter, sans-serif; font-weight: 900;
}
.brand-card:hover { box-shadow: 0 0 36px rgba(240,92,43,.32); color: var(--primary); }
.client-pill span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--primary); color: white; }
.founder-card {
  display: grid; grid-template-columns: .85fr 1.15fr; gap: 34px; align-items: center; padding: 34px;
  border-radius: var(--radius); background: linear-gradient(135deg, rgba(255,255,255,.55), rgba(240,92,43,.14));
  border: 1px solid rgba(255,255,255,.62); box-shadow: var(--shadow);
}
.founder-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); }
.founder-card p { font-size: 20px; line-height: 1.8; color: #243a41; }
.signature { font-family: cursive; color: var(--primary); font-size: 30px; }
.testimonial-carousel { display: flex; gap: 18px; overflow: auto; scroll-snap-type: x mandatory; padding-bottom: 10px; }
.review-card { flex: 0 0 min(380px, 88vw); scroll-snap-align: start; }
.review-card img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; margin-bottom: 12px; }
.stars { color: #ffae00; letter-spacing: 0; }
.page-hero {
  min-height: 58vh; padding: 150px 16px 70px; display: grid; place-items: center; text-align: center; color: white;
  background: linear-gradient(135deg, rgba(7,17,20,.86), rgba(240,92,43,.48)), url("https://images.unsplash.com/photo-1509391366360-2e959784a276?auto=format&fit=crop&w=1800&q=80") center/cover;
}
.page-hero > div { width: min(880px, 100%); }
.page-hero p { font-size: 20px; color: rgba(255,255,255,.88); }
.split-section, .contact-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.timeline { position: relative; }
.timeline-item { display: grid; grid-template-columns: 56px 1fr; gap: 14px; align-items: center; margin: 14px 0; }
.timeline-item b { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%; background: var(--primary); color: white; }
.timeline-item p { margin: 0; padding: 18px; border-radius: var(--radius); background: rgba(255,255,255,.52); box-shadow: var(--shadow); }
.clean-list { margin: 0; padding-left: 22px; line-height: 2; }
.faq details { margin-bottom: 14px; }
.faq summary { font-weight: 900; cursor: pointer; }
.field { display: grid; gap: 7px; margin-bottom: 14px; }
.field span { font-weight: 800; color: #253d45; }
.field input, .field textarea, .field select {
  width: 100%; border: 1px solid rgba(16,32,39,.14); border-radius: var(--radius); background: rgba(255,255,255,.72);
  padding: 13px 14px; outline: none;
}
.field textarea { min-height: 110px; resize: vertical; }
.action-row, .filter-bar { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.map-wrap { overflow: hidden; border-radius: var(--radius); border: 1px solid rgba(255,255,255,.32); height: 180px; }
.large-map { height: 280px; margin-top: 16px; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }
.filter {
  border: 1px solid rgba(16,32,39,.12); background: rgba(255,255,255,.58); border-radius: 999px; padding: 10px 18px; font-weight: 900;
}
.filter.active { background: var(--primary); color: white; border-color: var(--primary); }
.hidden { display: none !important; }
.center-btn { margin: 26px auto 0; }
.document-card img { width: 100%; height: 260px; object-fit: cover; border-radius: var(--radius); cursor: zoom-in; }
.policy-card { line-height: 1.9; font-size: 18px; }
.footer {
  margin-top: 40px; padding: 60px 16px 24px; color: white; background: #071114;
  background-image: radial-gradient(circle at 20% 10%, rgba(240,92,43,.26), transparent 28rem);
}
.footer-grid { width: min(1180px, 100%); margin: 0 auto; display: grid; grid-template-columns: 1.25fr .8fr 1fr 1.15fr; gap: 28px; }
.footer a { display: block; color: rgba(255,255,255,.82); margin: 9px 0; transition: .2s ease; }
.footer a:hover { color: var(--primary-2); }
.footer p { color: rgba(255,255,255,.72); line-height: 1.8; }
.footer-brand { margin-bottom: 16px; }
.socials { display: flex; gap: 12px; flex-wrap: wrap; }
.socials a, .admin-login-link { color: white !important; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); padding: 8px 12px; border-radius: var(--radius); }
.copyright { width: min(1180px, 100%); margin: 30px auto 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.62); }
.floating-inquiry, .float-whatsapp, .float-call, .scroll-top {
  position: fixed; z-index: 1000; border: 0; border-radius: var(--radius); color: white; font-weight: 900; box-shadow: var(--shadow);
}
.floating-inquiry { right: 16px; bottom: 92px; background: var(--primary); padding: 13px 17px; }
.float-whatsapp { right: 16px; bottom: 24px; width: 52px; height: 52px; display: grid; place-items: center; background: #16a34a; }
.float-call { left: 16px; bottom: 24px; padding: 14px 16px; background: #111827; }
.scroll-top { right: 82px; bottom: 24px; width: 52px; height: 52px; background: #111827; opacity: 0; pointer-events: none; transition: .25s ease; }
.scroll-top.show { opacity: 1; pointer-events: auto; }

.modal {
  position: fixed; inset: 0; z-index: 2000; display: none; place-items: center; padding: 16px;
  background: rgba(7,17,20,.68); backdrop-filter: blur(12px);
}
.modal.open { display: grid; }
.modal-panel {
  width: min(680px, 100%); max-height: 90vh; overflow: auto; position: relative; padding: 24px; border-radius: var(--radius);
  background: rgba(255,255,255,.86); border: 1px solid rgba(255,255,255,.7); box-shadow: 0 32px 100px rgba(0,0,0,.32);
}
.modal-close {
  position: absolute; right: 14px; top: 12px; width: 38px; height: 38px; border: 0; border-radius: var(--radius);
  background: #111827; color: white; font-size: 24px; line-height: 1;
}
.wizard-head { padding-right: 44px; }
.wizard-head strong { display: block; font-size: 26px; line-height: 1.2; margin: 8px 0 14px; }
.progress { height: 8px; background: rgba(16,32,39,.1); border-radius: 999px; overflow: hidden; }
.progress i { display: block; height: 100%; width: 25%; background: linear-gradient(90deg, var(--primary), var(--primary-2)); transition: .35s ease; }
.wizard-step { display: none; padding: 22px 0; }
.wizard-step.active { display: block; }
.capsule-grid { display: flex; gap: 10px; flex-wrap: wrap; }
.capsule-grid button {
  min-width: 118px; border: 1px solid rgba(16,32,39,.12); border-radius: 999px; padding: 13px 18px;
  background: rgba(255,255,255,.74); font-weight: 900; transition: .22s ease;
}
.capsule-grid button.active { background: var(--primary); color: white; border-color: var(--primary); box-shadow: 0 14px 28px rgba(240,92,43,.22); }
.wizard-actions { display: flex; justify-content: space-between; gap: 10px; }
.submit-btn { display: none; }
.toast {
  position: fixed; left: 50%; bottom: 24px; z-index: 3000; transform: translate(-50%, 20px); opacity: 0;
  background: #071114; color: white; padding: 13px 18px; border-radius: var(--radius); transition: .25s ease; box-shadow: var(--shadow);
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.image-panel { width: min(920px, 96vw); background: #071114; }
.image-panel img { width: 100%; max-height: 80vh; object-fit: contain; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.show { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .mobile-drawer {
    display: flex; flex-direction: column; gap: 8px; position: fixed; top: 0; right: 0; bottom: 0; z-index: 2100;
    width: min(360px, 88vw); padding: 72px 18px 18px; background: rgba(255,255,255,.82); backdrop-filter: blur(24px);
    border-left: 1px solid rgba(255,255,255,.48); transform: translateX(105%); transition: transform .35s ease;
  }
  .mobile-drawer.open { transform: none; }
  .mobile-drawer a { padding: 14px; border-radius: var(--radius); font-weight: 900; }
  .mobile-drawer a.active, .mobile-drawer a:hover { background: var(--primary); color: white; }
  .drawer-close { position: absolute; top: 16px; right: 16px; width: 42px; height: 42px; border: 0; border-radius: var(--radius); background: var(--ink); color: white; font-size: 26px; }
  .drawer-overlay { display: block; position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,.5); opacity: 0; pointer-events: none; transition: .3s ease; }
  .drawer-overlay.open { opacity: 1; pointer-events: auto; }
  .trust-grid, .project-grid, .document-grid, .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .founder-card, .split-section, .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .cursor-dot { display: none; }
  .site-header { left: 10px; right: 10px; height: 66px; padding: 0 12px; top: 42px; }
  .brand-mark { width: 38px; height: 38px; }
  .brand strong { font-size: 15px; }
  .hero-content { padding-top: 120px; }
  .section { padding: 58px 0; }
  .trust-grid, .project-grid, .document-grid, .footer-grid { grid-template-columns: 1fr; }
  .project-card img { height: 210px; }
  .founder-card { padding: 18px; }
  .wizard-actions { position: sticky; bottom: 0; background: rgba(255,255,255,.86); padding-top: 10px; }
  .capsule-grid button { flex: 1 1 calc(50% - 8px); min-width: 0; }
  .floating-inquiry { bottom: 86px; }
  .float-call { bottom: 86px; }
  .footer { padding-bottom: 96px; }
}
