/*
Theme Name: Dal Khalsa Australia
Theme URI: https://dalkhalsaaustralia.com.au
Author: Grok
Description: Custom WordPress theme for Dal Khalsa Australia - Independence As A Goal
Version: 1.0
Text Domain: dal-khalsa-australia
*/

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Lato:wght@300;400;700&family=Noto+Sans+Gurmukhi:wght@400;600;700&display=swap');

/* ========================================
   RESET & BASE
======================================== */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  background: #F5F7FA;
  color: #1A1A2E;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ========================================
   CSS VARIABLES
======================================== */
:root {
  --blue:       #1A4B8C;
  --gold:       #C8960C;
  --gold-light: #E5AA14;
  --navy:       #1A1A2E;
  --light-blue: #EBF2FF;
  --white:      #FFFFFF;
  --gray-bg:    #F5F7FA;
  --text:       #1A1A2E;
  --text-muted: #5A6475;
  --border:     #D8E2F0;
}

/* ========================================
   TOP BAR
======================================== */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  font-family: 'Lato', sans-serif;
  font-size: 12.5px;
  padding: 8px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: 0.5px;
}
.topbar-left { display:flex; gap:28px; }
.topbar-right { display:flex; gap:16px; align-items:center; }
.topbar a { color: rgba(255,255,255,0.75); transition: color 0.2s; }
.topbar a:hover { color: var(--gold); }
.topbar-icon {
  width:30px; height:30px; border-radius:50%;
  background: rgba(200,150,12,0.15);
  display:flex; align-items:center; justify-content:center;
  font-size:14px; cursor:pointer;
  transition: background 0.2s;
}
.topbar-icon:hover { background: var(--gold); }

/* ========================================
   NAVBAR
======================================== */
.navbar {
  background: var(--blue);
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 72px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-logo-circle {
  width: 50px; height: 50px;
  background: var(--navy);
  border-radius: 50%;
  border: 2.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-brand-info { line-height: 1.1; }
.nav-brand-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.nav-brand-name span { color: var(--gold); }
.nav-brand-tagline {
  font-family: 'Oswald', sans-serif;
  font-size: 11.5px;
  color: var(--gold);
  letter-spacing: 3.5px;
  text-transform: uppercase;
  opacity: 0.85;
}

nav ul {
  list-style: none;
  display: flex;
}
nav ul li a {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 0 15px;
  height: 72px;
  line-height: 72px;
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
}
nav ul li a:hover,
nav ul li a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
  background: rgba(0,0,0,0.15);
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
  position: relative;
  width: 100%;
  height: 88vh;
  min-height: 580px;
  max-height: 760px;
  overflow: hidden;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,15,40,0.88) 0%,
    rgba(10,15,40,0.70) 35%,
    rgba(26,75,140,0.25) 65%,
    rgba(10,15,40,0.10) 100%
  );
}
.hero-bottom-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 140px;
  background: linear-gradient(to bottom, transparent, rgba(245,247,250,0.95));
}
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 80px;
}
.hero-text { max-width: 560px; }
.hero-gurmukhi {
  font-family: 'Noto Sans Gurmukhi', sans-serif;
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 18px;
  display: block;
  opacity: 0.95;
}
.hero-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 68px;
  color: #fff;
  line-height: 1.0;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-shadow: 0 3px 30px rgba(0,0,0,0.6);
}
.hero-title .gold { color: var(--gold); display: block; }
.hero-tagline {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 6px;
  text-transform: uppercase;
  border-left: 4px solid var(--gold);
  padding-left: 16px;
  margin: 20px 0 38px;
  line-height: 1.4;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: background 0.2s, transform 0.1s;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  display: inline-block;
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0.55;
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll span {
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
}
.scroll-arrow {
  width: 18px; height: 18px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
}
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ========================================
   GOLD DIVIDER
======================================== */
.gold-bar {
  height: 5px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--gold) 25%, var(--gold) 75%, var(--blue) 100%);
}

/* ========================================
   SECTION UTILITIES
======================================== */
.section { padding: 90px 60px; }
.section-sm { padding: 60px 60px; }
.section-dark { background: var(--navy); color: #fff; }
.section-blue { background: var(--blue); color: #fff; }
.section-light { background: var(--light-blue); }
.section-gold { background: var(--gold); }
.section-white { background: #fff; }

.section-label {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}
.section-label-white { color: rgba(255,255,255,0.6); }

.section-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 42px;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-title .gold { color: var(--gold); }

.section-divider {
  width: 60px; height: 4px;
  background: var(--gold);
  margin-bottom: 24px;
}
.section-divider-center { margin-left: auto; margin-right: auto; }
.section-divider-white { background: rgba(255,255,255,0.4); }

.section-intro {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 640px;
}
.section-intro-white { color: rgba(255,255,255,0.75); }

.text-center { text-align: center; }
.text-center .section-intro { margin: 0 auto; }

.container { max-width: 1240px; margin: 0 auto; }

/* ========================================
   WHO WE ARE
======================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.about-img-wrap {
  position: relative;
}
.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.about-img-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,150,12,0.12) 0%, transparent 60%);
}
.about-khanda-bg {
  opacity: 0.08;
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 110px; height: 110px;
  background: var(--gold);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
}
.about-badge-year {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--navy);
  line-height: 1;
}
.about-badge-text {
  font-family: 'Lato', sans-serif;
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--navy);
  text-transform: uppercase;
  margin-top: 4px;
}
.about-content .section-intro { max-width: 100%; color: var(--text-muted); margin-bottom: 28px; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  margin: 32px 0;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}
.about-stat-num {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: var(--blue);
  display: block;
}
.about-stat-label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: 'Lato', sans-serif;
}

/* ========================================
   MISSION / KEY PILLARS
======================================== */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2px;
  margin-top: 60px;
}
.pillar-card {
  background: rgba(255,255,255,0.05);
  padding: 40px 28px;
  border-top: 4px solid transparent;
  transition: all 0.3s;
  cursor: default;
}
.pillar-card:hover {
  background: rgba(200,150,12,0.1);
  border-top-color: var(--gold);
}
.pillar-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(200,150,12,0.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  border: 1.5px solid rgba(200,150,12,0.3);
}
.pillar-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.pillar-text {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
}

/* ========================================
   KHALISTAN MOVEMENT HIGHLIGHT
======================================== */
.movement-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.movement-left {
  background: var(--navy);
  padding: 80px 60px;
  display: flex; flex-direction: column; justify-content: center;
}
.movement-right {
  background: var(--blue);
  padding: 80px 60px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
  overflow: hidden;
}
.movement-right::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 40px solid rgba(200,150,12,0.06);
}
.timeline { margin-top: 36px; }
.timeline-item {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.timeline-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.timeline-year {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--gold);
  min-width: 60px;
  line-height: 1.2;
}
.timeline-text {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}
.key-issues { margin-top: 36px; }
.issue-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.04);
  border-left: 3px solid var(--gold);
}
.issue-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 6px;
  flex-shrink: 0;
}
.issue-text {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

/* ========================================
   NEWS SECTION
======================================== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
  margin-top: 50px;
}
.news-card {
  background: #fff;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.3s;
  display: flex; flex-direction: column;
}
.news-card:hover {
  box-shadow: 0 8px 32px rgba(26,75,140,0.12);
  transform: translateY(-4px);
}
.news-card-img {
  width: 100%;
  height: 200px;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  position: relative;
}
.news-card-img-inner {
  width: 100%; height: 100%;
  object-fit: cover;
}
.news-card-category {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
}
.news-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.news-card-date {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: 'Lato', sans-serif;
}
.news-card-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.5px;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 12px;
}
.news-card-excerpt {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}
.news-read-more {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  display: flex; align-items: center; gap: 8px;
  transition: color 0.2s;
}
.news-read-more::after {
  content: "→";
  transition: transform 0.2s;
}
.news-card:hover .news-read-more { color: var(--gold); }
.news-card:hover .news-read-more::after { transform: translateX(4px); }

/* ========================================
   EVENTS SECTION
======================================== */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  margin-top: 50px;
}
.event-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 32px;
  display: flex; gap: 24px;
  align-items: flex-start;
  transition: all 0.3s;
}
.event-card:hover {
  background: rgba(200,150,12,0.08);
  border-color: rgba(200,150,12,0.3);
}
.event-date-box {
  background: var(--gold);
  color: var(--navy);
  width: 68px;
  min-width: 68px;
  height: 78px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
}
.event-day {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
}
.event-month {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.event-info { flex: 1; }
.event-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.event-location {
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  display: flex; align-items: center; gap: 5px;
}
.event-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ========================================
   CTA BANNER
======================================== */
.cta-section {
  background: var(--gold);
  padding: 70px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-text-block {}
.cta-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 40px;
  color: var(--navy);
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 10px;
}
.cta-sub {
  font-size: 16px;
  color: rgba(26,26,46,0.7);
}
.btn-navy {
  background: var(--navy);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 18px 44px;
  border: none;
  cursor: pointer;
  display: inline-block;
  white-space: nowrap;
  transition: background 0.2s;
}
.btn-navy:hover { background: var(--blue); }

/* ========================================
   GALLERY STRIP
======================================== */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  height: 220px;
  gap: 3px;
}
.gallery-cell {
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-cell::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(26,26,46,0.5);
  transition: background 0.3s;
}
.gallery-cell:hover::after { background: rgba(200,150,12,0.2); }
.gallery-cell-label {
  position: absolute;
  z-index: 2;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
}

/* ========================================
   FOOTER
======================================== */
.footer {
  background: var(--navy);
  color: #fff;
  padding: 70px 60px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.footer-brand-name span { color: var(--gold); }
.footer-brand-tagline {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
}
.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-bottom: 28px;
}
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; cursor: pointer;
  transition: all 0.2s;
  color: rgba(255,255,255,0.6);
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(200,150,12,0.1); }
.footer-heading {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(200,150,12,0.25);
}
.footer-links { list-style: none; }
.footer-links li {
  margin-bottom: 12px;
}
.footer-links li a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
  display: flex; align-items: center; gap: 8px;
}
.footer-links li a::before {
  content: "›";
  color: var(--gold);
  font-size: 16px;
}
.footer-links li a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.footer-contact-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(200,150,12,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}
.footer-contact-text {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}
.footer-contact-text a { color: rgba(255,255,255,0.55); }
.footer-contact-text a:hover { color: var(--gold); }
.footer-bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: rgba(255,255,255,0.3); }
.footer-bottom a:hover { color: var(--gold); }

/* ========================================
   GURMUKHI BANNER
======================================== */
.gurmukhi-banner {
  background: var(--blue);
  padding: 28px 60px;
  text-align: center;
}
.gurmukhi-text {
  font-family: 'Noto Sans Gurmukhi', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 4px;
  opacity: 0.9;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1024px) {
  .navbar { padding: 0 30px; }
  nav ul li a { padding: 0 10px; font-size: 12px; }
  .hero-content { padding: 0 40px; }
  .hero-title { font-size: 52px; }
  .section { padding: 70px 30px; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .topbar { padding: 6px 20px; font-size: 11px; }
  .topbar-left { display: none; }
  .navbar { padding: 0 20px; }
  nav { display: none; }
  .hero-title { font-size: 38px; }
  .about-grid { grid-template-columns: 1fr; }
  .movement-section { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: repeat(3,1fr); height: 180px; }
  .cta-section { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 20px; }
}
/* ========================================
   PILLARS GRID (updated)
======================================== */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2px;
  margin-top: 60px;
}
.pillar-card {
  background: rgba(255,255,255,0.05);
  padding: 40px 28px;
  border-top: 4px solid transparent;
  transition: all 0.3s;
  cursor: default;
}
.pillar-card:hover {
  background: rgba(200,150,12,0.1);
  border-top-color: var(--gold);
}
.pillar-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(200,150,12,0.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  border: 1.5px solid rgba(200,150,12,0.3);
}
.pillar-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.pillar-text {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
}

/* ========================================
   KHALISTAN MOVEMENT
======================================== */
.movement-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.movement-left {
  background: var(--navy);
  padding: 80px 60px;
  display: flex; flex-direction: column; justify-content: center;
}
.movement-right {
  background: var(--blue);
  padding: 80px 60px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
  overflow: hidden;
}
.movement-right::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 40px solid rgba(200,150,12,0.06);
}
.timeline { margin-top: 36px; }
.timeline-item {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.timeline-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.timeline-year {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--gold);
  min-width: 60px;
  line-height: 1.2;
}
.timeline-text {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}
.key-issues { margin-top: 36px; }
.issue-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.04);
  border-left: 3px solid var(--gold);
}
.issue-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 6px;
  flex-shrink: 0;
}
.issue-text {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

/* ========================================
   NEWS SECTION
======================================== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
  margin-top: 50px;
}
.news-card {
  background: #fff;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.3s;
  display: flex; flex-direction: column;
}
.news-card:hover {
  box-shadow: 0 8px 32px rgba(26,75,140,0.12);
  transform: translateY(-4px);
}
.news-card-img {
  width: 100%;
  height: 200px;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  position: relative;
}
.news-card-category {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
}
.news-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.news-card-date {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: 'Lato', sans-serif;
}
.news-card-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.5px;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 12px;
}
.news-card-excerpt {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}
.news-read-more {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  display: flex; align-items: center; gap: 8px;
  transition: color 0.2s;
}
.news-read-more::after { content: "→"; transition: transform 0.2s; }
.news-card:hover .news-read-more { color: var(--gold); }
.news-card:hover .news-read-more::after { transform: translateX(4px); }

/* ========================================
   EVENTS SECTION
======================================== */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  margin-top: 50px;
}
.event-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 32px;
  display: flex; gap: 24px;
  align-items: flex-start;
  transition: all 0.3s;
}
.event-card:hover {
  background: rgba(200,150,12,0.08);
  border-color: rgba(200,150,12,0.3);
}
.event-date-box {
  background: var(--gold);
  color: var(--navy);
  width: 68px;
  min-width: 68px;
  height: 78px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
}
.event-day {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
}
.event-month {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.event-info { flex: 1; }
.event-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.event-location {
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  display: flex; align-items: center; gap: 5px;
}
.event-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ========================================
   CTA BANNER
======================================== */
.cta-section {
  background: var(--gold);
  padding: 70px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 40px;
  color: var(--navy);
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 10px;
}
.cta-sub { font-size: 16px; color: rgba(26,26,46,0.7); }
.btn-navy {
  background: var(--navy);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 18px 44px;
  border: none;
  cursor: pointer;
  display: inline-block;
  white-space: nowrap;
  transition: background 0.2s;
}
.btn-navy:hover { background: var(--blue); }

/* ========================================
   GALLERY STRIP
======================================== */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  height: 220px;
  gap: 3px;
}
.gallery-cell {
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-cell::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(26,26,46,0.5);
  transition: background 0.3s;
}
.gallery-cell:hover::after { background: rgba(200,150,12,0.2); }
.gallery-cell-label {
  position: absolute;
  z-index: 2;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
}

/* ========================================
   FOOTER (extended columns)
======================================== */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-heading {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(200,150,12,0.25);
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links li a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
  display: flex; align-items: center; gap: 8px;
}
.footer-links li a::before { content: "›"; color: var(--gold); font-size: 16px; }
.footer-links li a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.footer-contact-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(200,150,12,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}
.footer-contact-text {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}
.footer-contact-text a { color: rgba(255,255,255,0.55); }
.footer-contact-text a:hover { color: var(--gold); }
.footer-bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: rgba(255,255,255,0.3); }
.footer-bottom a:hover { color: var(--gold); }

/* ========================================
   RESPONSIVE UPDATES
======================================== */
@media (max-width: 1024px) {
  .movement-section { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .events-grid { grid-template-columns: 1fr 1fr; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .movement-section { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: repeat(3,1fr); height: 180px; }
  .cta-section { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .movement-left, .movement-right { padding: 50px 20px; }
}

/* ========================================
   IMAGE FIXES — news cards & gallery
======================================== */
.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  display: block;
}
.gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  display: block;
}
.about-img-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

/* ========================================
   HAMBURGER BUTTON
======================================== */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: 2px solid rgba(200,150,12,0.5);
  border-radius: 6px;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.25s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ========================================
   MOBILE NAV OVERLAY
======================================== */
.mobile-nav {
  display: none;
  position: fixed;
  top: 109px; /* topbar (~37px) + navbar (72px) */
  left: 0; right: 0;
  background: var(--navy);
  border-top: 3px solid var(--gold);
  z-index: 999;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-nav ul {
  list-style: none;
  padding: 12px 0;
  margin: 0;
}
.mobile-nav ul li a {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 14px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s, background 0.2s;
}
.mobile-nav ul li a:hover {
  color: var(--gold);
  background: rgba(200,150,12,0.08);
}

@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  .mobile-nav { display: block; }
  nav { display: none !important; }
}

/* ══════════════════════════════
   CONTACT SECTION
══════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  max-width: 1100px;
  margin: 50px auto 0;
  padding: 0 40px;
}
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.97rem;
  color: #2c2c2c;
  line-height: 1.5;
}
.contact-info-icon {
  font-size: 1.3rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.contact-info-sub {
  color: #888;
  font-size: 0.88rem;
}
.contact-info-item a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
}
.contact-info-item a:hover {
  color: var(--gold);
}
.contact-social-row {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
.contact-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 2px solid var(--navy);
  border-radius: 50%;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.contact-social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-form-field label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #555;
}
.contact-form-field input,
.contact-form-field textarea {
  border: 1.5px solid #ddd;
  border-radius: 6px;
  padding: 11px 14px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: #222;
  background: #fafafa;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  resize: vertical;
}
.contact-form-field input:focus,
.contact-form-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,150,12,0.12);
  background: #fff;
}
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 0 20px;
  }
  .contact-form-row {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════════════════════════════════
   COMPLETE MOBILE RESPONSIVE OVERHAUL
   Breakpoints: 480px (small phones) · 600px (large phones) · 768px (tablets) · 1024px (small laptops)
════════════════════════════════════════════════════════════════ */

/* ── Global box-model safety ───────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { overflow-x: hidden; width: 100%; }
img { max-width: 100%; height: auto; display: block; }

/* ── Topbar ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .topbar {
    padding: 7px 16px;
    font-size: 11px;
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
  .topbar-left {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  .topbar-right { gap: 8px; }
  .topbar-icon { width: 26px; height: 26px; font-size: 12px; }
}
@media (max-width: 480px) {
  .topbar { display: none; } /* hide on very small screens to save space */
}

/* ── Navbar ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .navbar { padding: 0 24px; height: 64px; }
  .nav-brand-name { font-size: 16px; letter-spacing: 1px; }
  .nav-brand-tagline { font-size: 10px; letter-spacing: 2px; }
  nav ul li a { padding: 0 10px; font-size: 11.5px; height: 64px; line-height: 64px; }
}
@media (max-width: 768px) {
  .navbar { padding: 0 16px; height: 60px; }
  .nav-logo-circle { width: 40px; height: 40px; }
  .nav-brand-name { font-size: 15px; }
  .nav-brand-tagline { display: none; }
  .nav-hamburger { display: flex !important; }
  nav#site-nav { display: none !important; }
  /* mobile nav top offset: topbar gone + navbar 60px */
  .mobile-nav { top: 60px; }
}
@media (max-width: 480px) {
  .navbar { height: 56px; padding: 0 12px; gap: 8px; }
  .nav-logo-circle { width: 36px; height: 36px; }
  .nav-brand { gap: 8px; }
  .nav-brand-name { font-size: 13px; }
  .mobile-nav { top: 56px; }
  .mobile-nav ul li a { font-size: 13px; padding: 13px 20px; }
}

/* ── Hero ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero { height: 75vh; min-height: 480px; }
  .hero-content { padding: 0 40px; }
  .hero-title { font-size: 50px; }
}
@media (max-width: 768px) {
  .hero { height: 80vh; min-height: 420px; max-height: 620px; }
  .hero-content { padding: 0 24px; align-items: flex-end; padding-bottom: 80px; }
  .hero-text { max-width: 100%; }
  .hero-title { font-size: 36px; letter-spacing: 2px; }
  .hero-gurmukhi { font-size: 13px; }
  .hero-tagline { font-size: 12px; letter-spacing: 4px; margin: 14px 0 26px; }
  .hero-btns { gap: 12px; }
  .btn-gold { padding: 13px 24px; font-size: 12px; }
  .btn-ghost { padding: 11px 22px; font-size: 12px; }
  .hero-scroll { display: none; }
}
@media (max-width: 480px) {
  .hero { height: 85vh; min-height: 380px; }
  .hero-content { padding: 0 16px; padding-bottom: 60px; }
  .hero-title { font-size: 28px; letter-spacing: 1px; }
  .hero-tagline { font-size: 10px; letter-spacing: 3px; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .btn-gold, .btn-ghost { width: 100%; text-align: center; padding: 14px 20px; }
}

/* ── Section padding ────────────────────────────────────── */
@media (max-width: 1024px) {
  .section { padding: 70px 40px; }
}
@media (max-width: 768px) {
  .section { padding: 56px 20px; }
  .section-title { font-size: 32px; }
  .section-intro { font-size: 15px; }
}
@media (max-width: 480px) {
  .section { padding: 44px 16px; }
  .section-title { font-size: 26px; letter-spacing: 1px; }
  .section-intro { font-size: 14px; line-height: 1.7; }
}

/* ── About / Who We Are ─────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid { gap: 50px; }
}
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-img-wrap { max-width: 100%; }
  .about-badge { bottom: -14px; right: -8px; width: 90px; height: 90px; }
  .about-badge-year { font-size: 22px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .about-stat-num { font-size: 26px; }
}
@media (max-width: 480px) {
  .about-badge { width: 76px; height: 76px; bottom: -10px; right: -6px; }
  .about-badge-year { font-size: 18px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .about-stat-num { font-size: 20px; }
  .about-stat-label { font-size: 10px; }
}

/* ── Mission Pillars ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); gap: 3px; margin-top: 40px; }
}
@media (max-width: 600px) {
  .pillars-grid { grid-template-columns: 1fr; gap: 2px; }
  .pillar-card { padding: 28px 20px; }
}

/* ── Movement / Timeline ─────────────────────────────────── */
@media (max-width: 1024px) {
  .movement-section { grid-template-columns: 1fr; }
  .movement-left, .movement-right { padding: 60px 40px; }
}
@media (max-width: 768px) {
  .movement-left, .movement-right { padding: 50px 20px; }
  .timeline-year { font-size: 17px; min-width: 50px; }
  .timeline-text { font-size: 13px; }
  .issue-item { padding: 14px 16px; }
  .issue-text { font-size: 13px; }
}
@media (max-width: 480px) {
  .movement-left, .movement-right { padding: 36px 16px; }
  .timeline-item { gap: 14px; }
  .timeline-year { font-size: 15px; min-width: 44px; }
}

/* ── News Grid ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .news-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 600px) {
  .news-grid { grid-template-columns: 1fr; gap: 20px; }
  .news-card-img { height: 180px; }
  .news-card-title { font-size: 18px; }
}

/* ── Events Grid ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .events-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (max-width: 600px) {
  .events-grid { grid-template-columns: 1fr; gap: 16px; }
  .event-card { padding: 20px; gap: 16px; }
  .event-date-box { width: 58px; min-width: 58px; height: 66px; }
  .event-day { font-size: 24px; }
  .event-title { font-size: 16px; }
}

/* ── Gurmukhi Banner ─────────────────────────────────────── */
@media (max-width: 768px) {
  .gurmukhi-banner { padding: 20px 16px; }
  .gurmukhi-text { font-size: 16px; letter-spacing: 2px; }
}
@media (max-width: 480px) {
  .gurmukhi-text { font-size: 13px; letter-spacing: 1px; }
}

/* ── CTA Section ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .cta-section { padding: 60px 40px; }
  .cta-title { font-size: 32px; }
}
@media (max-width: 768px) {
  .cta-section {
    flex-direction: column;
    text-align: center;
    padding: 50px 20px;
    gap: 28px;
  }
  .cta-title { font-size: 26px; letter-spacing: 1px; }
  .cta-sub { font-size: 14px; }
  .btn-navy { padding: 16px 36px; font-size: 13px; width: 100%; text-align: center; }
}
@media (max-width: 480px) {
  .cta-section { padding: 36px 16px; }
  .cta-title { font-size: 22px; }
}

/* ── Gallery Strip ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .gallery-strip { grid-template-columns: repeat(5, 1fr); height: 180px; }
}
@media (max-width: 768px) {
  .gallery-strip {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 130px);
    height: auto;
  }
  .gallery-cell:nth-child(4) { grid-column: span 2; }
}
@media (max-width: 480px) {
  .gallery-strip {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 120px);
    height: auto;
  }
  .gallery-cell:nth-child(4) { grid-column: auto; }
  .gallery-cell:last-child { grid-column: span 2; }
  .gallery-cell-label { font-size: 10px; letter-spacing: 2px; }
}

/* ── Gallery header section ──────────────────────────────── */
@media (max-width: 768px) {
  #gallery > div { padding: 36px 20px 20px !important; }
}

/* ── Contact Section ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .contact-grid { gap: 40px; padding: 0 30px; }
}
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 0;
    margin-top: 36px;
  }
  .contact-form-row { grid-template-columns: 1fr; gap: 14px; }
}
@media (max-width: 480px) {
  .contact-grid { padding: 0; margin-top: 24px; }
  .contact-info-item { font-size: 0.9rem; }
  .contact-form-field input,
  .contact-form-field textarea { font-size: 16px; /* prevent iOS zoom */ }
}

/* ── Footer ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer { padding: 60px 40px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .footer { padding: 50px 20px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand-name { font-size: 18px; }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 18px 0;
    font-size: 11px;
  }
}
@media (max-width: 480px) {
  .footer { padding: 40px 16px 0; }
  .footer-desc { font-size: 13px; }
  .footer-links li a { font-size: 13px; }
  .footer-contact-text { font-size: 12.5px; }
}

/* ── Buttons full-width helpers on mobile ────────────────── */
@media (max-width: 480px) {
  .btn-gold { padding: 14px 20px; font-size: 12px; letter-spacing: 1.5px; }
}

/* ── Fix: prevent horizontal scroll from negative margins ── */
@media (max-width: 768px) {
  .about-badge { position: absolute; right: 8px; bottom: -10px; }
  .movement-right::before { width: 200px; height: 200px; border-width: 28px; }
  .news-card:hover { transform: none; } /* disable lift on touch */
}

/* ── Safe area for iOS notch/home indicator ──────────────── */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .footer { padding-bottom: env(safe-area-inset-bottom); }
}

/* ════════════════════════════════
   LOGO IMAGE IN NAVBAR
════════════════════════════════ */
.nav-logo-img-wrap {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 54px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  display: block;
  /* remove blue fringe with mix-blend-mode */
  mix-blend-mode: lighten;
  filter: drop-shadow(0 0 2px rgba(0,0,0,0.3));
}
@media (max-width: 1024px) {
  .nav-logo-img { height: 46px; }
}
@media (max-width: 768px) {
  .nav-logo-img { height: 40px; max-width: 90px; }
}
@media (max-width: 480px) {
  .nav-logo-img { height: 34px; max-width: 76px; }
}

/* Footer logo */
.footer-logo-wrap { margin-bottom: 14px; }
.footer-logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: lighten;
  filter: drop-shadow(0 0 4px rgba(0,0,0,0.5));
}

/* ════════════════════════════════
   ABOUT SECTION — FEATURE IMAGE
════════════════════════════════ */
.about-img-feature {
  position: relative;
  width: 100%;
  background: #1A4B8C;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(26,75,140,0.28);
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
}
.about-feature-img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  display: block;
  object-fit: cover;             /* fill the frame completely */
  object-position: center center;
  padding: 0;
  transition: transform 0.5s ease;
}
.about-img-feature:hover .about-feature-img {
  transform: scale(1.03);
}
/* Gold shimmer overlay on hover */
.about-img-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(200,150,12,0.10) 0%,
    transparent 50%,
    rgba(200,150,12,0.06) 100%
  );
  pointer-events: none;
}
/* Gold bottom bar with Gurmukhi text */
.about-img-overlay-text {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55), transparent);
  padding: 28px 20px 14px;
  text-align: center;
}
.about-img-label {
  font-family: 'Noto Sans Gurmukhi', sans-serif;
  font-size: 16px;
  color: var(--gold);
  letter-spacing: 3px;
  opacity: 0.92;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
/* Gold top accent line */
.about-img-feature::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold);
  z-index: 2;
}
/* Fallback if image fails */
.about-img-fallback {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  min-height: 380px;
}

@media (max-width: 768px) {
  .about-img-feature { min-height: 260px; }
  .about-img-label { font-size: 14px; }
}
@media (max-width: 480px) {
  .about-img-feature { min-height: 220px; border-width: 2px; }
  .about-img-label { font-size: 12px; letter-spacing: 2px; }
}

/* ── About image: ensure fixed height so cover works ── */
.about-img-wrap {
  position: relative;
}
.about-img-feature {
  height: 380px;    /* fixed height — image covers this fully */
  min-height: unset;
}
@media (max-width: 768px) {
  .about-img-feature { height: 280px; }
}
@media (max-width: 480px) {
  .about-img-feature { height: 230px; }
}
