/* ============================================
   Ashish Mittal — LIC Agent Recruitment Website
   Palette: LIC Navy Blue + White + Gold accent
   ============================================ */

:root {
  --navy-deep:   #0A2F6B;
  --navy:        #0E3E8F;
  --navy-light:  #145DA0;
  --gold:        #E8A93B;
  --gold-deep:   #C6862A;
  --red:         #B5122E;
  --ink:         #1B2430;
  --slate:       #55606F;
  --paper:       #FFFFFF;
  --mist:        #F4F7FB;
  --line:        #E1E7F0;
  --radius:      10px;
  --shadow:      0 10px 30px rgba(10, 47, 107, 0.10);
  --shadow-sm:   0 4px 14px rgba(10, 47, 107, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Hind', 'Noto Sans Devanagari', sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Hind', 'Noto Sans Devanagari', sans-serif;
  font-weight: 700;
  color: var(--navy-deep);
  margin: 0 0 0.5em;
  line-height: 1.3;
}

p { margin: 0 0 1em; color: var(--slate); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { padding-left: 0; list-style: none; margin: 0; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 72px 0; }
.section-alt { background: var(--mist); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold-deep);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

.section-head {
  max-width: 680px;
  margin-bottom: 44px;
}
.section-head h2 { font-size: clamp(1.6rem, 2.6vw, 2.15rem); }
.section-head p { font-size: 1.05rem; }

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--navy-deep);
  color: #DCE6F7;
  font-size: 0.85rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar a { color: #EAF1FF; }
.topbar-links { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar-links span { display: inline-flex; align-items: center; gap: 6px; }

/* ---------- Header / Nav ---------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--navy), var(--navy-deep));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.brand-text .name { font-weight: 700; color: var(--navy-deep); font-size: 1.05rem; }
.brand-text .role { font-size: 0.78rem; color: var(--slate); }

nav.main-nav ul {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
nav.main-nav a {
  display: block;
  padding: 10px 14px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  border-radius: 6px;
}
nav.main-nav a:hover { background: var(--mist); }
nav.main-nav a.active { background: var(--navy-deep); color: #fff; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--navy-deep);
  cursor: pointer;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: var(--navy-deep); box-shadow: var(--shadow-sm); }
.btn-primary:hover { box-shadow: var(--shadow); }
.btn-outline { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-ghost-light { border-color: rgba(255,255,255,0.5); color: #fff; }
.btn-ghost-light:hover { background: rgba(255,255,255,0.15); }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(120deg, var(--navy-deep) 0%, var(--navy) 65%, var(--navy-light) 100%);
  color: #fff;
  overflow: hidden;
  position: relative;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  padding-top: 76px;
  padding-bottom: 76px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 2.9rem);
  margin-bottom: 18px;
}
.hero .lead {
  color: #D9E4F7;
  font-size: 1.12rem;
  max-width: 520px;
  margin-bottom: 28px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  margin-bottom: 22px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual svg { width: 100%; max-width: 420px; }
.hero-visual img {
  width: 100%;
  max-width: 480px;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

/* ---------- Profile photo (About page) ---------- */
.profile-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 4px solid #fff;
}
.profile-photo img { width: 100%; height: 100%; object-fit: cover; }
.profile-caption {
  text-align: center;
  font-size: 0.85rem;
  color: var(--slate);
  margin-top: 10px;
}

/* ---------- Gallery real photos ---------- */
.gallery-photo {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  background: var(--mist);
}
.gallery-photo img { width: 100%; height: 240px; object-fit: cover; display: block; }
.gallery-photo .caption { padding: 12px 14px; font-size: 0.88rem; color: var(--ink); font-weight: 600; }

/* ---------- Income stat pill on testimonial ---------- */
.income-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--mist);
  color: var(--navy-deep);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 999px;
  margin-top: 10px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  background: rgba(6, 27, 66, 0.5);
}
.hero-stats .stat {
  padding: 22px 24px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.hero-stats .stat:last-child { border-right: none; }
.hero-stats .stat .num { font-size: 1.5rem; font-weight: 800; color: var(--gold); }
.hero-stats .stat .lbl { font-size: 0.82rem; color: #C9D8F0; margin-top: 2px; }

/* ---------- Page header (inner pages) ---------- */
.page-hero {
  background: linear-gradient(120deg, var(--navy-deep), var(--navy));
  color: #fff;
  padding: 52px 0;
}
.page-hero .breadcrumb { font-size: 0.85rem; color: #B9CBEE; margin-bottom: 10px; }
.page-hero h1 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 0; }
.page-hero p { color: #D9E4F7; max-width: 640px; margin-top: 10px; }

/* ---------- Cards / grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card .icon {
  width: 50px; height: 50px;
  border-radius: 10px;
  background: var(--mist);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.card p { font-size: 0.95rem; margin: 0; }

.stat-card {
  background: var(--navy-deep);
  color: #fff;
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;
}
.stat-card .num { font-size: 1.8rem; font-weight: 800; color: var(--gold); }
.stat-card .lbl { font-size: 0.85rem; color: #D9E4F7; margin-top: 6px; }

.checklist li {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}
.checklist li:last-child { border-bottom: none; }
.checklist .tick {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--navy-deep);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
}

/* ---------- Table ---------- */
.stipend-table { width: 100%; border-collapse: collapse; margin-top: 12px; }
.stipend-table th, .stipend-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.stipend-table th {
  background: var(--navy-deep);
  color: #fff;
  font-size: 0.9rem;
}
.stipend-table tr:nth-child(even) { background: var(--mist); }
.stipend-table td { font-size: 0.95rem; color: var(--ink); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--gold-deep), var(--gold));
  color: var(--navy-deep);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-band h3 { color: var(--navy-deep); margin-bottom: 6px; }
.cta-band p { color: #4A3110; margin: 0; }

/* ---------- Women Career Agent page accent ---------- */
.mca-accent { --navy-deep: #7A1E4C; --navy: #9C2A63; --navy-light: #B93E7C; --gold: #F2B93B; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--mist), #E4EBF6);
  display: flex; align-items: center; justify-content: center;
  color: var(--slate);
  font-size: 0.85rem;
  text-align: center;
  border: 1px dashed var(--line);
  padding: 10px;
}

.testimonial-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.testimonial-card .quote { font-style: normal; color: var(--ink); margin-bottom: 16px; }
.testimonial-person { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy-deep);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.testimonial-person .role { font-size: 0.82rem; color: var(--slate); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
}
.contact-card {
  display: flex;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 14px;
  align-items: center;
}
.contact-card .icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy-deep);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-card .label { font-size: 0.8rem; color: var(--slate); }
.contact-card .value { font-weight: 700; color: var(--navy-deep); }

form.enquiry {
  background: var(--mist);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--line);
}
form.enquiry .field { margin-bottom: 16px; }
form.enquiry label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--navy-deep); margin-bottom: 6px; }
form.enquiry input, form.enquiry textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
}
form.enquiry input:focus, form.enquiry textarea:focus {
  outline: 2px solid var(--navy-light);
  outline-offset: 1px;
}
.form-note { font-size: 0.8rem; color: var(--slate); margin-top: 10px; }

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--navy-deep);
  color: #C9D8F0;
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-grid h4 { color: #fff; font-size: 0.95rem; margin-bottom: 16px; }
.footer-grid p { color: #A9BEE0; font-size: 0.88rem; }
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid ul a { color: #C9D8F0; font-size: 0.9rem; }
.footer-grid ul a:hover { color: var(--gold); }
.footer-bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
  color: #93A9CF;
}
.disclaimer {
  font-size: 0.78rem;
  color: #93A9CF;
  max-width: 720px;
  margin-top: 6px;
}

/* ---------- WhatsApp floating button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  z-index: 200;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; padding-top: 40px; padding-bottom: 40px; }
  .hero-visual { order: -1; max-width: 260px; margin: 0 auto; }
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  nav.main-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  nav.main-nav.open { display: block; }
  nav.main-nav ul { flex-direction: column; padding: 12px; }
  .nav-toggle { display: block; }
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stats .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .cta-band { flex-direction: column; text-align: center; }
  .topbar .container { justify-content: center; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
}
