/* =========================================================
   DADDOO PRASAD — OFFICIAL WEBSITE CSS
   Buddhist Color Palette:
   Blue   #003893  - Compassion (Karuna)
   Yellow #FECB00  - Middle Path accent
   Red    #D21034  - Blessings / Energy (CTA)
   White  #ffffff  - Purity (card backgrounds)
   Orange #E05C00  - Wisdom (kickers, badges)
   ========================================================= */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Hind:wght@400;500;600;700&family=Mukta:wght@400;600;700;800&family=Noto+Sans+Devanagari:wght@400;600;700&display=swap');

/* Buddhist 5-Color CSS Variables */
:root {
  --blue: #003893;
  /* Compassion */
  --dblue: #002060;
  /* Deep Compassion */
  --yellow: #FECB00;
  /* Middle Path */
  --red: #D21034;
  /* Energy / Blessings */
  --orange: #E05C00;
  /* Wisdom */

  --blue-light: #e8effe;
  --yellow-light: #fffae6;
  --orange-light: #fff3e0;
  --red-light: #fde8ec;

  --bg: #f7f8fc;
  --text: #1a202c;
  --muted: #64748b;
  --border: #e2e8f0;
  --white: #ffffff;
  --radius: 8px;
}


/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Hind', 'Mukta', 'Noto Sans Devanagari', sans-serif;
  background: #fff;
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
}

/* ── Container/Grid fallback ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ─────────────────────────────────────
   1. HERO SLIDER (heroSwiper)
   ───────────────────────────────────── */
.hero-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  display: block;
}

/* THE KEY: give explicit height to swiper */
.heroSwiper {
  width: 100%;
  height: 88vh;
  min-height: 540px;
  display: block;
  overflow: hidden;
  position: relative;
}

.heroSwiper .swiper-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  box-sizing: content-box;
}

.heroSwiper .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  flex-shrink: 0;
}

/* Background image fill */
.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.swiper-slide-active .hero-slide-bg {
  transform: scale(1.0);
}

/* Dark overlay */
.hero-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(105deg,
      rgba(0, 34, 100, 0.88) 0%,
      rgba(0, 56, 147, 0.68) 45%,
      rgba(0, 0, 0, 0.15) 100%);
  z-index: 1;
}

/* Text body */
.hero-slide-body {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding-bottom: 60px;
}

.hero-slide-content {
  max-width: 640px;
  padding: 0 40px;
}

.hero-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 14px;
  display: block;
}

.hero-title {
  font-family: 'Mukta', 'Noto Sans Devanagari', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 28px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-btn-primary {
  background: #fff;
  color: var(--blue) !important;
  padding: 13px 30px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all .25s;
  display: inline-block;
}

.hero-btn-primary:hover {
  background: var(--yellow);
  color: var(--blue) !important;
  transform: translateY(-2px);
}

.hero-btn-ghost {
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: #fff !important;
  padding: 11px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all .25s;
  display: inline-block;
}

.hero-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

.hero-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}

.hero-links a i {
  color: var(--yellow);
}

.hero-links a:hover {
  color: #fff;
  border-color: var(--yellow);
}

/* Swiper Nav Buttons */
.heroSwiper .swiper-button-prev,
.heroSwiper .swiper-button-next {
  color: #fff !important;
  background: rgba(0, 56, 147, 0.6) !important;
  width: 46px !important;
  height: 46px !important;
  border-radius: 50% !important;
  transition: background .2s !important;
}

.heroSwiper .swiper-button-prev:hover,
.heroSwiper .swiper-button-next:hover {
  background: var(--blue) !important;
}

.heroSwiper .swiper-button-prev::after,
.heroSwiper .swiper-button-next::after {
  font-size: 0.9rem !important;
  font-weight: 900;
}

/* Swiper Pagination */
.heroSwiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  width: 28px;
  height: 4px;
  border-radius: 2px;
  margin: 0 3px !important;
  opacity: 1;
}

.heroSwiper .swiper-pagination-bullet-active {
  background: var(--yellow);
  width: 44px;
}

/* Bottom strip */
.hero-bottom-strip {
  background: linear-gradient(90deg, var(--blue) 0%, var(--red) 100%);
  padding: 13px 0;
  position: relative;
  z-index: 5;
}

.hero-strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.hero-strip-inner p {
  color: rgba(255, 255, 255, .9);
  font-size: .87rem;
  flex: 1;
}

.hero-strip-inner a {
  color: var(--yellow);
  font-weight: 700;
  font-size: .88rem;
  white-space: nowrap;
}

/* ─────────────────────────────────────
   2. SECTION GENERIC
   ───────────────────────────────────── */
.ss-section {
  padding: 72px 0;
}

.ss-section-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
  display: block;
}

.kicker-light {
  color: var(--yellow) !important;
}

.ss-section-heading {
  font-family: 'Mukta', 'Noto Sans Devanagari', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 12px;
}

.ss-rule {
  width: 48px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--blue), var(--yellow));
  margin-bottom: 24px;
}

.ss-section-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 12px;
}

.ss-link-more {
  color: var(--blue);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color .2s;
  white-space: nowrap;
}

.ss-link-more:hover {
  color: var(--red);
}

/* ─────────────────────────────────────
   3. BUTTONS
   ───────────────────────────────────── */
.ss-btn-primary {
  display: inline-block;
  background: var(--blue);
  color: #fff !important;
  padding: 13px 30px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .92rem;
  border: 2px solid var(--blue);
  transition: all .25s;
}

.ss-btn-primary:hover {
  background: var(--dblue);
  border-color: var(--dblue);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 56, 147, .3);
}

.ss-btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--blue) !important;
  padding: 11px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .92rem;
  border: 2px solid var(--blue);
  transition: all .25s;
}

.ss-btn-ghost:hover {
  background: var(--blue);
  color: #fff !important;
}

/* ─────────────────────────────────────
   4. ABOUT SECTION
   ───────────────────────────────────── */
.ss-about {
  background: #fff;
}

.ss-portrait-wrap {
  position: relative;
  padding-bottom: 20px;
}

.ss-portrait {
  width: 100%;
  max-height: 580px;
  object-fit: cover;
  object-position: top;
  box-shadow: 12px 12px 0 var(--blue);
}

.ss-portrait-label {
  position: absolute;
  bottom: 30px;
  left: -8px;
  background: var(--blue);
  color: #fff;
  padding: 12px 20px;
  font-weight: 700;
}

.ss-portrait-label span {
  display: block;
  font-size: 1.15rem;
}

.ss-portrait-label small {
  font-size: .8rem;
  font-weight: 400;
  opacity: .85;
}

.ss-portrait-stats {
  display: flex;
  border-top: 3px solid var(--yellow);
  margin-top: 12px;
}

.ss-stat {
  flex: 1;
  text-align: center;
  padding: 14px 8px;
  border-right: 1px solid #e2e8f0;
}

.ss-stat:last-child {
  border-right: none;
}

.ss-stat strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--blue);
}

.ss-stat span {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 2px;
}

.ss-about-text {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}

.ss-blockquote {
  border-left: 4px solid var(--blue);
  margin: 20px 0;
  padding: 16px 20px;
  background: #f0f5ff;
  border-radius: 0 8px 8px 0;
}

.ss-blockquote p {
  font-size: 1.05rem;
  font-weight: 700;
  font-style: italic;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.6;
}

.ss-blockquote footer {
  font-size: .85rem;
  color: var(--muted);
}

/* ─────────────────────────────────────
   5. PRESS SECTION
   ───────────────────────────────────── */
.ss-press {
  background: var(--bg);
}

.ss-press-big {
  display: block;
  text-decoration: none;
  height: 100%;
  min-height: 400px;
  position: relative;
  overflow: hidden;
  background: #111;
}

.ss-press-big-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .6s ease;
}

.ss-press-big:hover .ss-press-big-img {
  transform: scale(1.04);
}

.ss-press-big-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 22px;
  background: linear-gradient(to top, rgba(0, 0, 0, .88) 0%, transparent 100%);
}

.ss-press-date {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-size: .76rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 8px;
}

.ss-press-big-title {
  font-family: 'Mukta', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.45;
  margin: 0;
}

.ss-press-list {
  list-style: none;
  padding: 0;
  margin: 0;
  background: #fff;
  height: 100%;
}

.ss-press-item {
  border-bottom: 1px solid #e8edf3;
}

.ss-press-item:last-child {
  border-bottom: none;
}

.ss-press-item-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  text-decoration: none;
  transition: background .2s;
}

.ss-press-item-link:hover {
  background: #f0f5ff;
}

.ss-press-item-date {
  font-size: .72rem;
  font-weight: 700;
  color: var(--blue);
  white-space: nowrap;
  background: #e8effc;
  padding: 3px 8px;
  border-radius: 3px;
  flex-shrink: 0;
}

.ss-press-item-title {
  flex: 1;
  font-size: .92rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
}

.ss-list-icon {
  color: var(--blue);
  font-size: .7rem;
  flex-shrink: 0;
}

/* ─────────────────────────────────────
   6. ACHIEVEMENTS
   ───────────────────────────────────── */
.ss-ach {
  background: linear-gradient(135deg, var(--blue) 0%, var(--dblue) 100%);
  position: relative;
  overflow: hidden;
}

.ss-ach-card {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 10px;
  padding: 28px 18px;
  text-align: center;
  transition: all .3s;
  backdrop-filter: blur(4px);
  height: 100%;
}

.ss-ach-card:hover {
  background: rgba(255, 255, 255, .14);
  transform: translateY(-5px);
  border-color: var(--yellow);
}

.ss-ach-icon {
  font-size: 2rem;
  color: var(--yellow);
  margin-bottom: 14px;
  display: block;
}

.ss-ach-text {
  color: rgba(255, 255, 255, .9);
  font-size: .9rem;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
}

/* ─────────────────────────────────────
   7. POLITICAL JOURNEY
   ───────────────────────────────────── */
.ss-journey {
  background: #fff;
}

.ss-journey-desc {
  color: var(--muted);
  font-size: .97rem;
  line-height: 1.8;
}

.ss-timeline {
  padding-left: 28px;
  border-left: 3px solid #e2e8f0;
}

.ss-tl-item {
  position: relative;
  margin-bottom: 40px;
}

.ss-tl-item:last-child {
  margin-bottom: 0;
}

.ss-tl-dot {
  position: absolute;
  left: -40px;
  top: 12px;
  width: 18px;
  height: 18px;
  background: var(--blue);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--blue);
}

.ss-tl-card {
  background: #f8fafd;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 20px 24px;
  transition: box-shadow .3s;
  position: relative;
}

.ss-tl-card:hover {
  box-shadow: 0 4px 18px rgba(0, 56, 147, .1);
  background: #fff;
}

.ss-tl-year {
  font-size: 2rem;
  font-weight: 900;
  color: rgba(0, 56, 147, .1);
  position: absolute;
  top: 10px;
  right: 18px;
  font-family: monospace;
  letter-spacing: -2px;
}

.ss-tl-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
}

.ss-tl-desc {
  font-size: .93rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* ─────────────────────────────────────
   8. NEWS + SOCIAL
   ───────────────────────────────────── */
.ss-news-social {
  background: var(--bg);
}

.ss-news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ss-news-item {
  border-bottom: 1px solid #dde3ef;
}

.ss-news-item:last-child {
  border-bottom: none;
}

.ss-news-link {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  text-decoration: none;
}

.ss-news-link:hover .ss-news-title {
  color: var(--blue);
}

.ss-news-date {
  flex-shrink: 0;
  background: var(--blue);
  color: #fff;
  width: 52px;
  border-radius: 6px;
  text-align: center;
  padding: 8px 4px;
}

.ss-news-day {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1;
}

.ss-news-mon {
  display: block;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .5px;
  margin-top: 2px;
  opacity: .85;
}

.ss-news-title {
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.55;
  margin-bottom: 6px;
  transition: color .2s;
}

.ss-news-cta {
  font-size: .8rem;
  font-weight: 600;
  color: var(--orange);
}

.ss-socials {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.ss-social-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  border-radius: 4px;
  color: #fff !important;
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  transition: opacity .2s, transform .2s;
}

.ss-social-btn:hover {
  opacity: .9;
  transform: translateX(3px);
}

.ss-social-btn.fb {
  background: #1877F2;
}

.ss-social-btn.tw {
  background: #1DA1F2;
}

.ss-social-btn.ig {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.ss-social-btn.yt {
  background: #FF0000;
}

.ss-yt-wrap {
  border-radius: 8px;
  overflow: hidden;
}

.ss-yt-caption {
  font-size: .8rem;
  color: var(--muted);
}

.ss-yt-placeholder {
  background: #fff;
  border-radius: 12px;
  padding: 36px 24px;
  text-align: center;
  border: 2px dashed #e2e8f0;
}

/* ─────────────────────────────────────
   9. CONTACT STRIP
   ───────────────────────────────────── */
.ss-contact-strip {
  background: var(--blue);
  padding: 48px 0;
}

.ss-contact-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.ss-contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
}

.ss-contact-details span {
  color: rgba(255, 255, 255, .8);
  font-size: .9rem;
  display: flex;
  align-items: center;
}

.ss-contact-details i {
  color: var(--yellow);
  margin-right: 8px;
}

.ss-contact-details a {
  color: rgba(255, 255, 255, .8);
  text-decoration: none;
  transition: color .2s;
}

.ss-contact-details a:hover {
  color: var(--yellow);
}

/* ─────────────────────────────────────
   10. FOOTER
   ───────────────────────────────────── */
.main-footer {
  background: #111827;
  color: rgba(255, 255, 255, .8);
  padding: 48px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-logo h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.footer-logo span {
  color: var(--yellow);
  font-size: .85rem;
}

.footer-quote {
  color: rgba(255, 255, 255, .6);
  font-style: italic;
  font-size: .9rem;
  margin: 12px 0 16px;
}

.contact-details {
  list-style: none;
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: .88rem;
}

.contact-details i {
  color: var(--yellow);
  flex-shrink: 0;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.social-links a:hover {
  background: var(--yellow);
  color: var(--blue);
}

.form-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.contact-form .form-group {
  margin-bottom: 12px;
}

.contact-form .form-control {
  width: 100%;
  padding: 10px 14px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius);
  color: #fff;
  font-size: .9rem;
  transition: border-color .2s;
}

.contact-form .form-control::placeholder {
  color: rgba(255, 255, 255, .4);
}

.contact-form .form-control:focus {
  outline: none;
  border-color: var(--yellow);
}

.contact-form textarea.form-control {
  resize: vertical;
}

.contact-form button[type=submit] {
  width: 100%;
  padding: 12px;
  background: var(--yellow);
  border: none;
  border-radius: var(--radius);
  color: var(--blue);
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: background .2s, transform .2s;
}

.contact-form button[type=submit]:hover {
  background: #f0c200;
  transform: translateY(-1px);
}

.form-response.success {
  color: #4ade80;
  font-size: .85rem;
}

.form-response.error {
  color: #f87171;
  font-size: .85rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 16px 0;
  text-align: center;
  font-size: .82rem;
  color: rgba(255, 255, 255, .4);
}

/* ─────────────────────────────────────
   11. GALLERY PAGE
   ───────────────────────────────────── */
.gallery-section {
  background: var(--bg);
  padding: 60px 0;
}

.gallery-item {
  overflow: hidden;
  border-radius: 8px;
}

.gallery-item img {
  transition: transform .4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item.hidden {
  display: none;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 20px;
  border: 2px solid var(--blue);
  color: var(--blue);
  background: transparent;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  font-size: .85rem;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--blue);
  color: #fff;
}

/* ─────────────────────────────────────
   12. RESPONSIVE
   ───────────────────────────────────── */
@media (max-width: 992px) {
  .heroSwiper {
    height: 78vh;
    min-height: 440px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .ss-section-heading {
    font-size: 1.75rem;
  }

  .ss-portrait {
    max-height: 360px;
    box-shadow: 6px 6px 0 var(--blue);
  }

  .ss-portrait-label {
    left: 0;
  }

  .ss-timeline {
    padding-left: 18px;
  }

  .ss-tl-dot {
    left: -28px;
    width: 14px;
    height: 14px;
  }

  .ss-press-big {
    min-height: 280px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .heroSwiper {
    height: 72vh;
    min-height: 380px;
  }

  .hero-slide-content {
    padding: 0 20px;
  }

  .hero-title {
    font-size: 1.6rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
    max-width: 240px;
  }

  .hero-strip-inner {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .ss-section {
    padding: 44px 0;
  }

  .ss-section-heading {
    font-size: 1.5rem;
  }

  .ss-section-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .ss-portrait-stats {
    flex-wrap: wrap;
  }

  .ss-stat {
    flex: 0 0 33.33%;
  }

  .ss-press-big {
    min-height: 220px;
  }

  .ss-contact-title {
    font-size: 1.4rem;
  }

  .ss-contact-details {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .heroSwiper {
    height: 65vh;
    min-height: 320px;
  }

  .hero-title {
    font-size: 1.3rem;
  }

  .hero-links {
    gap: 10px;
  }

  .ss-section {
    padding: 32px 0;
  }

  .ss-section-heading {
    font-size: 1.2rem;
  }
}

/* ─────────────────────────────────────
   MODERN IMPROVEMENTS (2026)
   ───────────────────────────────────── */

/* Improved mobile nav tap targets */
@media (max-width: 900px) {
  .ss-nav-list>li {
    height: auto;
  }

  .ss-nav-list>li>a {
    padding: 14px 20px;
    min-height: 52px;
    display: flex;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid #f0f4f8;
    font-size: 1rem;
  }

  .ss-nav-list>li>a.active {
    color: #003893;
    background: #f0f5ff;
    border-left: 4px solid #003893;
  }

  .ss-nav-list>li:last-child>a {
    border-bottom: none;
  }
}

/* Scroll-to-top button hover */
#scrollTopBtn:hover {
  background: #002266 !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 56, 147, 0.45) !important;
}

/* Smooth image loading */
img {
  transition: opacity 0.3s ease;
}

/* Focus visible outline for accessibility */
a:focus-visible,
button:focus-visible {
  outline: 3px solid #FECB00;
  outline-offset: 2px;
  border-radius: 3px;
}

/* Card hover transitions (consistent across all card types) */
.blog-card,
.ss-ach-card,
.ss-tl-card,
.ss-press-item-link {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Selection color */
::selection {
  background: rgba(0, 56, 147, 0.2);
  color: #003893;
}

/* ==========================================================
   ☸  BUDDHIST 5-COLOR THEME — SECTION OVERRIDES
   Blue=Compassion | Yellow=Middle Path | Red=Energy
   White=Purity    | Orange=Wisdom
   ========================================================== */

/* ── Buddhist Flag Bar (under header) ── */
.ss-flag-bar {
  height: 6px;
  display: flex;
}

.ss-flag-bar span:nth-child(1) {
  background: #003893;
  flex: 1;
}

/* Blue  – Compassion */
.ss-flag-bar span:nth-child(2) {
  background: #FECB00;
  flex: 1;
}

/* Yellow – Middle Path */
.ss-flag-bar span:nth-child(3) {
  background: #D21034;
  flex: 1;
}

/* Red   – Energy */
.ss-flag-bar span:nth-child(4) {
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  flex: 1;
}

/* White – Purity */
.ss-flag-bar span:nth-child(5) {
  background: #E05C00;
  flex: 1;
}

/* Orange – Wisdom */

/* ── HEADER: Active Nav = Yellow underline (Middle Path) ── */
.ss-nav-list>li>a::after {
  background: var(--yellow);
}

.ss-nav-list>li>a.active {
  color: var(--blue);
}

.ss-nav-list>li>a:hover {
  color: var(--blue);
}

.ss-nav-cta {
  background: var(--red) !important;
  /* Energy / Blessings CTA */
}

.ss-nav-cta:hover {
  background: #a8001e !important;
}

/* ── HERO: gradient uses Blue+Orange(Wisdom) diagonal ── */
.hero-slide-overlay {
  background: linear-gradient(115deg,
      rgba(0, 32, 96, 0.90) 0%,
      rgba(0, 56, 147, 0.72) 40%,
      rgba(224, 92, 0, 0.18) 100%);
}

/* Hero bottom strip uses orange(wisdom) → blue(compassion) */
.hero-bottom-strip {
  background: linear-gradient(90deg, var(--orange) 0%, var(--blue) 100%);
}

/* Hero badge: yellow (Middle Path) */
.hero-badge,
.hero-kicker {
  color: var(--yellow);
  letter-spacing: 2px;
}

/* Primary hero button: White purity bg, blue text */
.hero-btn-primary {
  background: var(--white);
  color: var(--blue) !important;
  border: 2px solid var(--white);
  font-weight: 700;
}

.hero-btn-primary:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--blue) !important;
}

/* Ghost button: yellow border */
.hero-btn-ghost {
  border-color: var(--yellow);
  color: var(--yellow) !important;
}

.hero-btn-ghost:hover {
  background: rgba(254, 203, 0, 0.15);
}

/* ── SECTION KICKERS: Orange = Wisdom ── */
.sa-kicker,
.sn-press .sn-heading::before,
.pj2-kicker,
.ss-section-kicker {
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.75rem;
}

/* ── SECTION RULES: Yellow gradient = Middle Path ── */
.sa-rule,
.sn-rule,
.sn-ach-rule,
.hm-blog-rule,
.sc-rule,
.ss-rule {
  background: linear-gradient(90deg, var(--yellow), var(--orange));
  height: 4px;
  width: 52px;
  border-radius: 3px;
  margin-bottom: 24px;
}

/* ── ABOUT SECTION: White purity background ── */
.sa-about,
.ss-about {
  background: var(--white);
}

/* Quote block: Blue left border = Compassion, orange-light bg = Wisdom glow */
.sa-quote-wrap,
.ss-blockquote {
  border-left: 5px solid var(--blue);
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--orange-light) 100%);
  border-radius: 0 10px 10px 0;
  padding: 20px 24px;
  margin: 20px 0;
}

.sa-quote-text,
.ss-blockquote p {
  color: var(--blue);
  font-weight: 700;
  font-style: italic;
  font-size: 1.05rem;
}

/* Quotes marks: yellow (Middle Path) */
.sa-quote-open,
.sa-quote-close {
  color: var(--yellow);
  font-size: 3rem;
  line-height: 0.5;
  font-family: Georgia, serif;
  font-weight: 900;
}

/* Primary button: Blue Compassion */
.sa-btn-primary,
.ss-btn-primary,
.pj2-card-btn {
  background: var(--blue);
  color: var(--white) !important;
  border: 2px solid var(--blue);
  border-radius: var(--radius);
  padding: 12px 28px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
}

.sa-btn-primary:hover,
.ss-btn-primary:hover,
.pj2-card-btn:hover {
  background: var(--dblue);
  border-color: var(--dblue);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 56, 147, 0.28);
}

/* Secondary button: Red Energy = action/blessings */
.sa-btn-secondary,
.ss-btn-ghost {
  background: transparent;
  color: var(--red) !important;
  border: 2px solid var(--red);
  border-radius: var(--radius);
  padding: 12px 28px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
}

.sa-btn-secondary:hover,
.ss-btn-ghost:hover {
  background: var(--red);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(210, 16, 52, 0.25);
}

/* ── PRESS SECTION: blue-light purity bg ── */
.sn-press,
.ss-press {
  background: var(--blue-light);
}

/* Press heading rule: orange wisdom */
.sn-rule {
  background: linear-gradient(90deg, var(--orange), var(--yellow));
}

/* Press date badge: orange wisdom */
.sn-date-badge,
.ss-press-date {
  background: var(--orange);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
}

/* Press "View all" link: red energy */
.sn-viewall,
.ss-link-more {
  color: var(--red);
  font-weight: 700;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

.sn-viewall:hover,
.ss-link-more:hover {
  color: var(--orange);
  border-color: var(--orange);
}

/* ── ACHIEVEMENTS: Deep Blue bg (Compassion) ── */
.sn-ach,
.ss-ach {
  background: linear-gradient(145deg, var(--blue) 0%, var(--dblue) 100%);
  position: relative;
}

.sn-ach::before,
.ss-ach::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(254, 203, 0, 0.10) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(224, 92, 0, 0.10) 0%, transparent 60%);
}

/* Achievement heading: white on blue */
.sn-ach-heading,
.ss-section-heading.white {
  color: var(--white);
}

/* Achievement rule: yellow middle path */
.sn-ach-rule {
  background: linear-gradient(90deg, var(--yellow), var(--orange));
}

/* Achievement card: orange wisdom accent on hover */
.sn-ach-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
  position: relative;
}

.sn-ach-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  border-color: var(--yellow);
}

/* Achievement label: orange = wisdom */
.sn-ach-label {
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  color: var(--white);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 8px 14px;
  text-align: center;
  letter-spacing: 0.5px;
}

/* Swiper ach cards: yellow active pill */
.ss-ach-card {
  border: 1px solid rgba(254, 203, 0, 0.25);
}

.ss-ach-card:hover {
  border-color: var(--yellow);
  background: rgba(254, 203, 0, 0.10);
}

.ss-ach-icon {
  color: var(--yellow);
}

/* ── POLITICAL JOURNEY: white purity bg ── */
.pj2-section,
.ss-journey {
  background: var(--white);
}

/* Journey kicker: orange wisdom */
.pj2-kicker {
  color: var(--orange);
}

/* Journey timeline dot: yellow (Middle Path) */
.pj2-dot {
  background: var(--yellow);
  color: var(--blue);
  font-weight: 900;
}

/* Journey year badge: blue-light = compassion hint */
.pj2-year-badge {
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 10px;
}

/* Journey img year overlay: orange wisdom */
.pj2-img-year {
  background: var(--orange);
  color: var(--white);
  border-radius: 0 0 0 8px;
}

/* Timeline dot: yellow Middle Path */
.ss-tl-dot {
  background: var(--yellow);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--yellow);
}

.ss-tl-title {
  color: var(--blue);
}

/* ── BLOG SECTION: orange-light wisdom glow bg ── */
.hm-blog-bg {
  background: var(--orange-light);
}

/* Blog card: white purity */
.hm-blog-card,
.blog-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s;
  display: block;
  color: var(--text);
}

.hm-blog-card:hover,
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(224, 92, 0, 0.15);
}

/* Blog "Read More" link: red energy */
.hm-blog-read,
.blog-readmore {
  color: var(--red);
  font-weight: 700;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 12px;
}

/* Blog date: orange wisdom */
.hm-blog-date,
.blog-date-badge {
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 600;
}

/* Blog heading title: blue compassion */
.hm-blog-heading,
.blog-title {
  color: var(--blue);
  font-weight: 700;
}

/* ── STAY CONNECTED: blue compassion bg ── */
.sc-section {
  background: linear-gradient(135deg, var(--blue) 0%, var(--dblue) 100%);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.sc-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 90%, rgba(254, 203, 0, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 90% 10%, rgba(224, 92, 0, 0.12) 0%, transparent 50%);
}

/* Stay connected title: white purity */
.sc-title {
  color: var(--white);
  font-family: 'Mukta', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

/* Stay connected rule: yellow Middle Path */
.sc-rule {
  margin: 12px auto 20px;
}

/* Stay connected subtitle: yellow-tinted */
.sc-subtitle {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 40px;
}

/* Stay connected social card: hover yellow Middle Path */
.sc-card {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  transition: all 0.3s;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.sc-card:hover {
  background: rgba(254, 203, 0, 0.18);
  border-color: var(--yellow);
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

/* ── FOOTER: Deep Blue Compassion ── */
.main-footer {
  background: var(--dblue);
  color: rgba(255, 255, 255, 0.82);
}

/* Footer logo: white purity*/
.footer-logo h2 {
  color: var(--white);
}

/* Footer logo subtitle: yellow Middle Path */
.footer-logo span {
  color: var(--yellow);
}

/* Footer icons: yellow compassion accent */
.contact-details i {
  color: var(--yellow);
}

/* Footer social hover: yellow Middle Path */
.social-links a:hover {
  background: var(--yellow);
  color: var(--blue);
}

/* Footer form control: blue-tinted */
.contact-form .form-control:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(254, 203, 0, 0.2);
}

/* Footer bottom border: coloured stripe */
.footer-bottom {
  border-top: 4px solid transparent;
  border-image: linear-gradient(90deg, var(--blue), var(--yellow), var(--red), var(--orange)) 1;
  padding: 16px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ── PRESS ITEMS: date = orange wisdom ── */
.ss-press-item-date {
  background: var(--orange-light);
  color: var(--orange);
  border: 1px solid rgba(224, 92, 0, 0.2);
}

.ss-press-item-link:hover {
  background: var(--blue-light);
}

.ss-list-icon {
  color: var(--orange);
}

/* ── CONTACT STRIP: orange wisdom highlights ── */
.ss-contact-strip {
  background: linear-gradient(135deg, var(--blue) 0%, var(--dblue) 100%);
}

.ss-contact-details i {
  color: var(--yellow);
}

.ss-contact-details a:hover {
  color: var(--yellow);
}

/* ── GALLERY: white purity cards ── */
.gallery-item img {
  transition: transform 0.4s ease, filter 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1.06) saturate(1.1);
}

/* ── NEWS DATE BOX: blue compassion ── */
.ss-news-date {
  background: var(--blue);
}

.ss-news-cta {
  color: var(--orange);
}

/* ── SIDEBAR SOCIAL: colored brand circles ── */
.ss-side-social a.fb {
  color: #1877F2;
}

.ss-side-social a.tw {
  color: #1DA1F2;
}

.ss-side-social a.ig {
  color: #E1306C;
}

.ss-side-social a.yt {
  color: var(--red);
}

.ss-side-social a:hover {
  background: var(--yellow);
  color: var(--blue) !important;
  border-color: var(--yellow);
}

/* ── SCROLL TO TOP: red energy button ── */
#scrollTopBtn {
  background: var(--red) !important;
  box-shadow: 0 4px 16px rgba(210, 16, 52, 0.35) !important;
}

#scrollTopBtn:hover {
  background: #a8001e !important;
  box-shadow: 0 8px 24px rgba(210, 16, 52, 0.45) !important;
}

/* ── HERO BOTTOM STRIP: orange wisdom left, blue right ── */
.hero-strip-inner a {
  color: var(--yellow);
  font-weight: 700;
}

/* ── INNER PAGE HEROES: use blue-to-dblue compassion ── */
.blog-hero,
.ref-hero {
  background: linear-gradient(135deg, var(--blue) 0%, var(--dblue) 100%);
}