/* ===== NEMTARA INVESTMENT — SHARED STYLES ===== */
:root {
  --orange: #f97316;
  --orange-dark: #ea6c0a;
  --orange-light: #fff7ed;
  --navy: #0f172a;
  --navy-mid: #1e293b;
  --slate: #475569;
  --slate-light: #94a3b8;
  --bg: #f8fafc;
  --white: #ffffff;
  --border: #e2e8f0;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(15,23,42,0.08);
  --shadow-lg: 0 12px 40px rgba(15,23,42,0.14);
  --transition: 0.22s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  color: var(--navy);
  line-height: 1.6;
}

/* ---- TYPOGRAPHY ---- */
h1,h2,h3,h4,h5 { line-height: 1.25; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p { color: var(--slate); }
a { color: inherit; text-decoration: none; }

/* ---- UTILITIES ---- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.text-center { text-align: center; }
.orange { color: var(--orange); }
.tag {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(249,115,22,0.35); }
.btn-outline {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-outline:hover { background: var(--orange); color: var(--white); transform: translateY(-1px); }
.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover { background: var(--orange-light); }
.btn-lg { padding: 1rem 2.4rem; font-size: 1.05rem; }

/* ---- NAVBAR ---- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(15,23,42,0.06);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
}
.nav-brand .logo-icon {
  width: 40px; height: 40px;
  background: var(--orange);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.1rem; font-weight: 800;
}
.nav-brand span.sub { font-size: 0.7rem; color: var(--slate-light); font-weight: 400; display: block; line-height: 1; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.nav-links a {
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--orange); background: var(--orange-light); }
.nav-cta { display: flex; align-items: center; gap: 0.75rem; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 0.4rem; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); margin: 5px 0; border-radius: 2px; transition: var(--transition); }

/* ---- TICKER ---- */
.ticker-bar {
  background: var(--navy);
  color: var(--white);
  font-size: 0.8rem;
  padding: 0.45rem 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  gap: 3rem;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item { display: flex; align-items: center; gap: 0.4rem; }
.ticker-item .up { color: #4ade80; }
.ticker-item .down { color: #f87171; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- HERO ---- */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1e3a5f 100%);
  color: var(--white);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(249,115,22,0.15) 0%, transparent 70%);
}
.hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-badge { display: flex; align-items: center; gap: 0.6rem; background: rgba(249,115,22,0.18); border: 1px solid rgba(249,115,22,0.4); border-radius: 999px; padding: 0.4rem 1rem; width: fit-content; margin-bottom: 1.5rem; }
.hero-badge span { font-size: 0.8rem; font-weight: 600; color: #fed7aa; }
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 em { color: var(--orange); font-style: normal; }
.hero p { color: #94a3b8; font-size: 1.05rem; margin-bottom: 2rem; max-width: 480px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 2rem; margin-top: 3rem; flex-wrap: wrap; }
.hero-stat strong { font-size: 1.8rem; color: var(--orange); display: block; }
.hero-stat span { font-size: 0.82rem; color: #94a3b8; }
.hero-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 2rem;
}
.hero-card h3 { color: var(--white); margin-bottom: 1.25rem; }
.hero-card-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.hero-card-item:last-child { border-bottom: none; }
.hero-card-item .icon { width: 36px; height: 36px; background: rgba(249,115,22,0.2); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.hero-card-item p { color: #cbd5e1; font-size: 0.88rem; margin: 0; }
.hero-card-item strong { color: var(--white); font-size: 0.92rem; }

/* ---- SECTION HEADERS ---- */
.section-header { max-width: 600px; margin: 0 auto 3.5rem; text-align: center; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { font-size: 1.05rem; }

/* ---- CARDS ---- */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: #f97316; }
.card-icon { width: 52px; height: 52px; background: var(--orange-light); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1.25rem; }
.card h3 { margin-bottom: 0.5rem; }

/* ---- SERVICES GRID ---- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }

/* ---- PRICING ---- */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem;
  position: relative;
  transition: var(--transition);
}
.pricing-card.featured {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.12), var(--shadow);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: white;
  font-size: 0.75rem; font-weight: 700; padding: 0.3rem 1rem; border-radius: 999px;
}
.price-amount { font-size: 2.5rem; font-weight: 800; color: var(--navy); line-height: 1; }
.price-amount sup { font-size: 1.2rem; vertical-align: super; }
.price-period { font-size: 0.85rem; color: var(--slate-light); }
.price-features { list-style: none; margin: 1.5rem 0 2rem; }
.price-features li { display: flex; align-items: flex-start; gap: 0.6rem; padding: 0.45rem 0; font-size: 0.9rem; color: var(--slate); }
.price-features li::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; margin-top: 0.05rem; }

/* ---- TEAM ---- */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  text-align: center;
}
.team-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.team-photo {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  margin: 2rem auto 1.25rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem; font-weight: 800; color: white;
}
.team-card h3 { margin-bottom: 0.2rem; }
.team-card .role { color: var(--orange); font-size: 0.85rem; font-weight: 600; margin-bottom: 0.4rem; }
.team-card .reg { color: var(--slate-light); font-size: 0.78rem; margin-bottom: 1rem; }
.team-card p { font-size: 0.9rem; padding: 0 1.5rem 1.75rem; }
.team-quals { display: flex; justify-content: center; gap: 0.5rem; flex-wrap: wrap; padding: 0 1.5rem 1.75rem; }
.qual-tag { background: var(--orange-light); color: var(--orange); font-size: 0.75rem; font-weight: 600; padding: 0.25rem 0.7rem; border-radius: 999px; }

/* ---- CTA BAND ---- */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, #1e3a5f 100%);
  color: var(--white);
  padding: 5rem 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 1rem; }
.cta-band p { color: #94a3b8; max-width: 520px; margin: 0 auto 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---- FOOTER ---- */
footer {
  background: var(--navy);
  color: #94a3b8;
  padding: 4rem 0 2rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .nav-brand { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; }
.footer-col h4 { color: var(--white); font-size: 0.9rem; font-weight: 600; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a { font-size: 0.88rem; color: #94a3b8; transition: var(--transition); }
.footer-col ul a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
}
.sebi-note { font-size: 0.78rem; color: #64748b; max-width: 600px; line-height: 1.6; }

/* ---- FORM ---- */
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--navy); margin-bottom: 0.4rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--navy);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(249,115,22,0.1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ---- CONTACT PAGE ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 3rem; align-items: start; }
.contact-info-card { background: var(--navy); color: var(--white); border-radius: var(--radius); padding: 2.5rem; }
.contact-info-card h3 { color: var(--white); margin-bottom: 0.5rem; }
.contact-info-card > p { color: #94a3b8; margin-bottom: 2rem; }
.contact-item { display: flex; gap: 1rem; margin-bottom: 1.75rem; }
.contact-item .ci-icon { width: 44px; height: 44px; background: rgba(249,115,22,0.18); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-item strong { color: var(--white); display: block; font-size: 0.88rem; }
.contact-item a, .contact-item span { color: #94a3b8; font-size: 0.9rem; }
.contact-item a:hover { color: var(--orange); }
.wa-btn { display: flex; align-items: center; gap: 0.75rem; background: #25d366; color: white; padding: 0.9rem 1.5rem; border-radius: var(--radius-sm); font-weight: 600; margin-top: 2rem; transition: var(--transition); }
.wa-btn:hover { background: #1ebe5d; transform: translateY(-1px); }
.map-placeholder { background: var(--border); border-radius: var(--radius-sm); height: 200px; margin-top: 1.5rem; display: flex; align-items: center; justify-content: center; color: var(--slate-light); font-size: 0.88rem; }

/* ---- LOGIN PAGE ---- */
.login-layout { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; }
.login-panel { display: flex; align-items: center; justify-content: center; padding: 3rem; }
.login-form-wrap { width: 100%; max-width: 420px; }
.login-form-wrap .nav-brand { justify-content: center; margin-bottom: 2.5rem; }
.login-form-wrap h2 { text-align: center; margin-bottom: 0.4rem; }
.login-form-wrap .sub-text { text-align: center; color: var(--slate); font-size: 0.9rem; margin-bottom: 2rem; }
.login-bg {
  background: linear-gradient(135deg, var(--navy) 0%, #1e3a5f 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 3rem; text-align: center; position: relative; overflow: hidden;
}
.login-bg::before { content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%; background: rgba(249,115,22,0.1); top: -100px; right: -100px; }
.login-bg h2 { color: white; position: relative; margin-bottom: 1rem; }
.login-bg p { color: #94a3b8; position: relative; max-width: 360px; }
.login-features { margin-top: 3rem; position: relative; }
.login-feat { display: flex; align-items: center; gap: 1rem; background: rgba(255,255,255,0.06); border-radius: var(--radius-sm); padding: 1rem 1.25rem; margin-bottom: 0.75rem; text-align: left; }
.login-feat .lf-icon { width: 38px; height: 38px; background: rgba(249,115,22,0.2); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.login-feat strong { color: white; font-size: 0.9rem; display: block; }
.login-feat span { color: #94a3b8; font-size: 0.8rem; }
.divider { display: flex; align-items: center; gap: 1rem; margin: 1.5rem 0; color: var(--slate-light); font-size: 0.85rem; }
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.forgot-link { text-align: right; margin-top: -0.5rem; margin-bottom: 1.25rem; }
.forgot-link a { font-size: 0.85rem; color: var(--orange); }

/* ---- ABOUT PAGE ---- */
.about-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); padding: 5rem 0; color: white; text-align: center; }
.about-hero h1 { color: white; margin-bottom: 1rem; }
.about-hero p { color: #94a3b8; max-width: 600px; margin: 0 auto; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.25rem; }
.value-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; text-align: center; }
.value-card .vi { font-size: 2rem; margin-bottom: 0.75rem; }
.value-card h4 { margin-bottom: 0.3rem; }
.value-card p { font-size: 0.85rem; }
.timeline { position: relative; padding-left: 2rem; }
.timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: var(--border); }
.tl-item { position: relative; padding-bottom: 2.5rem; }
.tl-item::before { content: ''; position: absolute; left: -2.45rem; top: 0.3rem; width: 14px; height: 14px; border-radius: 50%; background: var(--orange); border: 3px solid var(--bg); }
.tl-year { font-size: 0.82rem; font-weight: 700; color: var(--orange); margin-bottom: 0.25rem; }
.tl-item h4 { margin-bottom: 0.25rem; }
.tl-item p { font-size: 0.88rem; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); padding: 4rem 0; color: white; text-align: center; }
.page-hero h1 { color: white; font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 0.75rem; }
.page-hero p { color: #94a3b8; }
.breadcrumb { display: flex; justify-content: center; gap: 0.5rem; font-size: 0.85rem; margin-bottom: 1rem; }
.breadcrumb a { color: var(--orange); }
.breadcrumb span { color: #64748b; }

/* ---- WHATSAPP FLOAT ---- */
.wa-float {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 999;
  width: 54px; height: 54px; background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: var(--transition);
}
.wa-float:hover { transform: scale(1.08); background: #1ebe5d; }
.wa-float svg { width: 28px; height: 28px; fill: white; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .login-layout { grid-template-columns: 1fr; }
  .login-bg { display: none; }
}
@media (max-width: 700px) {
  .nav-links, .nav-cta .btn:not(.btn-primary) { display: none; }
  .hamburger { display: block; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; }
  .hero-actions { flex-direction: column; }
  .hero-stats { gap: 1.25rem; }
  .cta-actions { flex-direction: column; align-items: center; }
}

/* ---- MOBILE NAV ---- */
.mobile-nav {
  display: none;
  position: fixed; inset: 0; z-index: 200;
  background: var(--white);
  flex-direction: column;
  padding: 1.5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; }
.mobile-nav-links { list-style: none; }
.mobile-nav-links li { border-bottom: 1px solid var(--border); }
.mobile-nav-links a { display: block; padding: 1rem 0; font-size: 1rem; font-weight: 500; color: var(--navy); }
.mobile-nav-links a:hover { color: var(--orange); }
.close-btn { background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--navy); }

/* ---- SEBI DISCLAIMER BANNER ---- */
.disclaimer-bar {
  background: #fef3c7;
  border-bottom: 1px solid #fde68a;
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.78rem;
  color: #92400e;
}

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.5s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* ---- MISC ---- */
.bg-light { background: var(--bg); }
.bg-white { background: var(--white); }
.bg-navy { background: var(--navy); color: white; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: 1rem; }
.inline-flex { display: inline-flex; align-items: center; gap: 0.5rem; }
.sebi-reg { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(249,115,22,0.12); color: var(--orange); font-size: 0.8rem; font-weight: 600; padding: 0.35rem 0.9rem; border-radius: 999px; margin-top: 1rem; }

/* Alert/Success */
.alert { padding: 1rem 1.25rem; border-radius: var(--radius-sm); font-size: 0.9rem; margin-bottom: 1rem; }
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-error { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
