/* TOP BAR */
.logo img {
  width: 100%;
  height: 100%;
  max-width: 180px;
  object-fit: contain;
  display: block;
}

.top-bar {
  background: var(--crimson);
}
.nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.top-bar a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}
.top-bar-left {
  display: flex;
  gap: 24px;
  align-items: center;
}
.top-bar-left a span {
  font-size: 16px;
}
.top-bar-right {
  display: flex;
  gap: 14px;
  align-items: center;
}
.social-icon {
  width: 33px;
  height: 33px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  text-decoration: none;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.15s;
}
.social-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  display: block;
}
.social-icon:hover {
  background: var(--saffron);
  border-color: var(--saffron);
  transform: scale(1.1);
}

/* HEADER */
header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: #ffff;
  backdrop-filter: blur(16px);
  border-bottom: 2px solid var(--border);
  box-shadow: 0 2px 20px rgba(180, 80, 20, 0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 0;
}
.nav-links li a {
  display: block;
  padding: 8px 13px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink2);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s;
  position: relative;
}
.nav-links li a::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 13px;
  right: 13px;
  height: 2px;
  background: var(--flame);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-links li a:hover,
.nav-links li a.active {
  color: var(--flame);
}
.nav-links li a:hover::after,
.nav-links li a.active::after {
  transform: scaleX(1);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-donate-nav {
  background: var(--flame);
  color: #fff;
  border: none;
  border-radius: 22px;
  padding: 9px 22px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(184, 58, 16, 0.3);
  text-decoration: none;
  display: inline-block;
}
.btn-donate-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 58, 16, 0.4);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: 0.3s;
}

/* ========================== hero section start==========================  */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("https://manavkartavya.org/wp-content/uploads/2018/08/our-approach.jpg")
    center/cover no-repeat;
  filter: grayscale(30%);
}
/* dark gradient overlay — left heavy */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 10, 10, 0.82) 0%,
    rgba(10, 10, 10, 0.6) 50%,
    rgba(10, 10, 10, 0.25) 100%
  );
}
.hero-content {
  position: relative;
}
.hero-eyebrow {
  display: inline-block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(40px, 6.5vw, 76px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 22px;
}
.hero-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 40px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 0.78rem;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: var(--saffron);
}
.breadcrumb span {
  color: rgba(255, 255, 255, 0.3);
}
.breadcrumb .current {
  color: var(--saffron);
}

/* ========================== hero section end==========================  */
/* ── Work feature row ── */
.work-feature {
  padding: 50px 0;
  border-bottom: 1px solid var(--border);
}
.work-feature:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* image */
.work-feature-img {
  border-radius: 20px;
  overflow: hidden;
  height: 550px;
  box-shadow: 0 4px 32px rgba(180, 80, 20, 0.1);
}
.work-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.work-feature-img:hover img {
  transform: scale(1.04);
}

/* tag pill */
.work-tag {
  display: inline-block;
  background: rgba(245, 166, 35, 0.15);
  color: var(--flame);
  border-radius: 20px;
  padding: 5px 16px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* heading */
.work-feature h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--ink);
  line-height: 1.25;
}

/* body text */
.work-feature p {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.85;
}

/* list */
.work-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.work-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.88rem;
  color: var(--ink2);
}
.work-list li::before {
  content: "✅";
  flex-shrink: 0;
  margin-top: 1px;
}

/* stat cards */
.work-stat {
  text-align: center;
  background: var(--cream2);
  border-radius: 14px;
  padding: 14px 20px;
  border-top: 3px solid var(--saffron);
  flex: 1;
}
.work-stat-num {
  font-family: "Playfair Display", serif;
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--flame);
  display: block;
  line-height: 1;
}
.work-stat-lbl {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
  margin-top: 4px;
  display: block;
}

@media (max-width: 991px) {
  .work-feature-img {
    height: 280px;
  }
}
/* ===========more much section start===================== */

.more-much {
  background: var(--cream2);
}
.section-p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* card */
.sub-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(180, 80, 20, 0.08);
  transition: transform 0.3s;
  height: 100%;
}
.sub-card:hover {
  transform: translateY(-5px);
}

.sub-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.sub-card-tag {
  display: inline-block;
  background: rgba(245, 166, 35, 0.12);
  color: var(--flame);
  border-radius: 14px;
  padding: 3px 12px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.sub-card h4 {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink);
  margin-bottom: 6px;
}

.sub-card p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* ===========more much section end===================== */
