/* =====================================================
   HEADER BAR (TOP MENU)
===================================================== */

.header-bar {
  background: linear-gradient(135deg, #1f4d2e, #163824);
  color: white;
}

.header-main {
  padding: 10px 0;
}

.header-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-block img {
  height: 52px;
}

/* NAVIGATION */
.nav-desktop {
  display: flex;
  gap: 24px;
}

.nav-desktop a {
  font-size: 14.5px;
  font-weight: 500;
  color: white;
  opacity: 0.9;
  position: relative;
}

.nav-desktop a:hover {
  opacity: 1;
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-light);
  transition: 0.25s;
}

.nav-desktop a:hover::after {
  width: 100%;
}

/* =====================================================
   HERO BAR (SEPARATE BACKGROUND)
===================================================== */

.hero-bar {
  background: linear-gradient(135deg, #2f6b3f, #5e8c4a);
  color: white;
  padding: 26px 0;
}

/* HERO LAYOUT */
.hero-wrapper {
  display: grid;
  grid-template-columns: 1.2fr auto 0.8fr;
  align-items: center;
  gap: 40px;
}

/* TAGLINE */
.hero-tagline {
  font-family: 'Noto Serif Gurmukhi', serif;
  font-size: 32px;
  font-weight: 800;
  white-space: nowrap;
  text-align: center;
  text-shadow: 0 4px 18px rgba(166, 201, 79, 0.35);
}

/* TEXT */
.hero-title {
  font-size: 34px;
  line-height: 1.25;
}

.hero-title span {
  display: block;
}

.hero-desc {
  font-size: 18px;
  margin-top: 6px;
  opacity: 0.9;
}

/* IMAGE */
.hero-right img {
  width: var(--hero-image-size);
  height: auto;
  border-radius: 14px;
}

/* =====================================================
   MOBILE
===================================================== */

.nav-mobile {
  display: none;
}

@media (max-width: 900px) {

  .header-grid {
    flex-direction: column;
    gap: 10px;
  }

  .nav-desktop {
    display: none;
  }

  .nav-mobile {
    display: flex;
    gap: 10px;
  }

  .nav-mobile a {
    font-size: 13px;
    background: rgba(255,255,255,0.15);
    padding: 6px 12px;
    border-radius: 999px;
  }

  .hero-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 18px;
  }

  .hero-tagline {
    font-size: 24px;
    white-space: normal;
  }

  .hero-title {
    font-size: 26px;
  }

  .hero-right img {
    width: 160px;
  }
}

.hero-tagline {
  font-family: 'Noto Serif Gurmukhi', serif;
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  position: relative;
  padding: 0 34px;
  text-align: center;
  white-space: nowrap;
}

/* BIG QUOTES */
.hero-tagline::before,
.hero-tagline::after {
  position: absolute;
  top: 50%;
  transform: translateY(-52%);
  font-size: 64px;
  font-weight: 400;
  color: rgba(255,255,255,0.35);
  line-height: 1;
  font-family: serif;
}

/* LEFT QUOTE */
.hero-tagline::before {
  content: "“";
  left: 0;
}

/* RIGHT QUOTE */
.hero-tagline::after {
  content: "”";
  right: 0;
}

@media (max-width: 900px) {

  .hero-tagline {
    font-size: 24px;
    white-space: normal;
    padding: 0 18px;
  }

  .hero-tagline::before,
  .hero-tagline::after {
    font-size: 40px;
    position: static;
    transform: none;
    margin: 0 6px;
    display: inline;
  }
}

.hero-tagline {
  text-shadow: 0 4px 18px rgba(166, 201, 79, 0.35);
}