@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

:root {
  --primary: #7a0c1b;
  --primary2: #a31627;
  --gold: #e5a817;
  --gold-dark: #b87e0c;
  --dark-bg: #2b070d;
  --cream: #faf5ec;
  --ink: #221c1a;
  --muted: #6e645e;
  --line: #e8dccb;
  --white: #ffffff;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: 'Noto Sans Devanagari', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.75
}

a {
  text-decoration: none;
  color: inherit
}

.container {
  width: min(1160px, 92%);
  margin: auto
}

.topbar {
  background: #341016;
  color: #f8e9c9;
  font-size: 13px;
  padding: 7px 0
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 20px
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 241, .95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line)
}

.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px
}

.logo {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), #4e111b);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 22px;
  box-shadow: 0 8px 20px #7b1e2b22
}

.brand strong {
  display: block;
  font-size: 19px
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 11px
}

.links {
  display: flex;
  gap: 24px;
  align-items: center
}

.links a {
  font-weight: 600;
  font-size: 14px;
  color: #453d37
}

.links a:hover,
.links a.active {
  color: var(--primary)
}

.menu {
  display: none;
  border: 0;
  background: none;
  font-size: 28px
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 10px;
  padding: 11px 20px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 20px #7b1e2b22
}

.btn-outline {
  border-color: var(--primary);
  color: var(--primary);
  background: transparent
}

.btn-gold {
  background: var(--gold);
  color: #251b0c
}

.hero {
  padding: 88px 0 78px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 90% 20%, #edd8b8 0, transparent 35%), linear-gradient(120deg, #fffaf1, #f7eee1)
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center
}

.eyebrow {
  display: inline-block;
  color: var(--primary);
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 12px
}

.hero h1 {
  font-family: 'Playfair Display', 'Noto Sans Devanagari', serif;
  font-size: 54px;
  line-height: 1.18;
  margin: 0 0 18px
}

.hero h1 span {
  color: var(--primary)
}

.hero p {
  font-size: 17px;
  color: var(--muted);
  max-width: 650px
}

.actions {
  display: flex;
  gap: 12px;
  margin-top: 26px;
  flex-wrap: wrap
}

.hero-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 25px 70px #4a241220
}

.hero-visual {
  min-height: 430px;
  border-radius: 26px;
  background: linear-gradient(145deg, #7b1e2b, #48121b);
  padding: 28px;
  color: #fff;
  position: relative;
  overflow: hidden
}

.hero-visual:before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: #d9ad5930;
  right: -70px;
  top: -70px
}

.seal {
  width: 110px;
  height: 110px;
  border: 2px solid #e7c978;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 25px auto 35px;
  color: #e7c978;
  text-align: center;
  font-weight: 800
}

.money {
  font-size: 44px;
  font-weight: 800
}

.mini {
  font-size: 13px;
  color: #f0dcb7
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px
}

.stat {
  background: #ffffff10;
  border: 1px solid #ffffff20;
  padding: 16px;
  border-radius: 14px
}

.stat b {
  display: block;
  font-size: 21px
}

.section {
  padding: 82px 0
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 36px
}

.section-head h2 {
  font-family: 'Playfair Display', 'Noto Sans Devanagari', serif;
  font-size: 36px;
  line-height: 1.3;
  margin: 0
}

.section-head p {
  color: var(--muted);
  max-width: 570px;
  margin: 0
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px;
  transition: .25s
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px #4a241212
}

.icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: #f5e7d3;
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 22px;
  margin-bottom: 18px
}

.card h3 {
  margin: 0 0 8px;
  font-size: 19px
}

.card p {
  color: var(--muted);
  font-size: 14px;
  margin: 0
}

.band {
  background: var(--primary);
  color: #fff
}

.band .section-head p {
  color: #ead9d9
}

.band .card {
  background: #ffffff0d;
  border-color: #ffffff20
}

.band .card p {
  color: #ead9d9
}

.numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px
}

.number {
  text-align: center;
  padding: 18px
}

.number b {
  font-size: 34px;
  color: var(--gold);
  display: block
}

.number span {
  font-size: 13px;
  color: #ead9d9
}

.page-hero {
  padding: 58px 0;
  background: linear-gradient(120deg, #f1e0c8, #fffaf1);
  border-bottom: 1px solid var(--line)
}

.page-hero h1 {
  font-family: 'Playfair Display', 'Noto Sans Devanagari', serif;
  font-size: 44px;
  margin: 0 0 8px
}

.page-hero p {
  margin: 0;
  color: var(--muted)
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center
}

.photo-box {
  min-height: 360px;
  border-radius: 24px;
  background: linear-gradient(145deg, #7b1e2b, #b46a4a);
  position: relative;
  overflow: hidden
}

.photo-box:after {
  content: "विश्वास • सहकार • प्रगती";
  position: absolute;
  bottom: 28px;
  left: 28px;
  color: #fff;
  font-size: 24px;
  font-weight: 800
}

.checklist {
  padding: 0;
  list-style: none
}

.checklist li {
  margin: 12px 0;
  padding-left: 28px;
  position: relative
}

.checklist li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 900
}

.loan-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 15px;
  overflow: hidden
}

.loan-table th,
.loan-table td {
  text-align: left;
  padding: 16px;
  border-bottom: 1px solid var(--line)
}

.loan-table th {
  background: #f4e8d6;
  color: var(--primary)
}

.faq {
  border-bottom: 1px solid var(--line);
  padding: 18px 0
}

.faq summary {
  cursor: pointer;
  font-weight: 700
}

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 25px
}

.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px
}

.field {
  margin-bottom: 16px
}

.field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #dccfbd;
  border-radius: 10px;
  background: #fffaf6;
  font: inherit
}

.field textarea {
  min-height: 120px;
  resize: vertical
}

footer {
  background: #2e1116;
  color: #e8d8d0;
  padding: 55px 0 20px
}

.footer-grid h3 {
  color: #fff;
  margin-top: 0
}

.footer-grid p,
.footer-grid a {
  color: #cbb9b1;
  font-size: 14px
}

.copyright {
  border-top: 1px solid #ffffff18;
  margin-top: 35px;
  padding-top: 18px;
  font-size: 12px;
  color: #a9928a;
  display: flex;
  justify-content: space-between
}

@media(max-width:850px) {
  .links {
    display: none
  }

  .menu {
    display: block
  }

  .hero-grid,
  .two-col,
  .contact-grid {
    grid-template-columns: 1fr
  }

  .hero h1 {
    font-size: 40px
  }

  .cards {
    grid-template-columns: 1fr 1fr
  }

  .numbers {
    grid-template-columns: 1fr 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .topbar .container {
    font-size: 11px
  }
}

@media(max-width:560px) {

  .cards,
  .numbers,
  .footer-grid {
    grid-template-columns: 1fr
  }

  .hero {
    padding: 55px 0
  }

  .hero-visual {
    min-height: 350px
  }

  .section {
    padding: 60px 0
  }

  .section-head {
    display: block
  }

  .section-head h2 {
    font-size: 30px;
    margin-bottom: 12px
  }

  .copyright {
    display: block
  }

  .copyright span {
    display: block;
    margin-top: 6px
  }
}