/* ── TOPBAR: centered brand layout ── */
.svd-topbar-centered {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 20px;
}
.svd-brand-left {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  z-index: 2;
}
.svd-brand-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 1;
  pointer-events: auto;
}
.svd-center-title-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none !important;
  justify-content: center;
}
.svd-center-brand-title {
  font-size: 28px;
  font-weight: 900;
  color: #2d0800;
  letter-spacing: 1px;
  line-height: 1.1;
  white-space: nowrap;
  text-shadow: 0 1px 3px rgba(245, 219, 160, 0.6);
  /* font-family: "Cinzel", "Lato", serif; */
  transition: color 0.2s ease, letter-spacing 0.2s ease;
}
.svd-center-title-link:hover .svd-center-brand-title {
  color: #4a1a00;
  letter-spacing: 1.5px;
}
.svd-brand-sub-center {
  font-size: 11px;
  font-weight: 700;
  color: #5a1800;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 2px;
  text-align: center;
}

/* ── INLINE ICONS in header ── */
.svd-inline-icon {
  height: 50px;
  width: auto;
  object-fit: contain;
  vertical-align: middle;
  transition: transform 0.3s ease;
}
.svd-namam {
  /* height: 28px; */
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.svd-center-title-link:hover .svd-namam {
  transform: scale(1.12) rotate(5deg);
}
.svd-center-title-link:hover .svd-inline-icon:not(.svd-namam) {
  transform: rotate(-5deg) scale(1.1);
}

/* ── MOBILE NAV ── */
@media (max-width: 900px) {
  .svd-brand-center {
    position: static;
    transform: none;
    flex: 1;
    text-align: center;
  }
  .svd-topbar-centered {
    flex-wrap: nowrap;
  }
  .svd-center-brand-title {
    font-size: 20px;
  }
  .svd-navbar {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s ease;
  }
  .svd-navbar.open {
    max-height: 600px;
  }
  .svd-nav-list {
    flex-direction: column;
    padding: 0;
  }
  .svd-nav-link {
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .svd-dropdown {
    display: none !important;
    position: static;
    width: 100%;
    box-shadow: none;
    border-top: none;
    background: rgba(0, 0, 0, 0.25);
  }
  .svd-has-dropdown.open .svd-dropdown {
    display: block !important;
  }
  .svd-hamburger {
    display: flex;
  }
}
@media (min-width: 901px) {
  .svd-hamburger {
    display: none;
  }
}

/* ── BOOK NOW BUTTON ── */
.svd-book-now-btn {
  position: fixed;
  bottom: 136px;
  right: 22px;
  z-index: 8999;
  background: linear-gradient(135deg, #c87828 0%, #e8a84c 100%);
  color: #fff !important;
  border-radius: 50px;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(110, 50, 5, 0.45);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.25s ease;
  white-space: nowrap;
}
.svd-book-now-btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 22px rgba(110, 50, 5, 0.55);
  color: #fff !important;
}
.svd-book-now-btn i {
  font-size: 15px;
}
.svd-book-now-btn::before {
  content: "Govinda Namalu";
}

/* ── FOOTER: consistent on every page ── */
.svd-footer {
  background: linear-gradient(180deg, #3d1500 0%, #1a0800 100%);
  color: rgba(245, 219, 160, 0.85);
  font-size: 14px;
  margin: 0;
  padding: 0;
}
.svd-footer-body {
  padding: 52px 0 36px;
  border-bottom: 1px solid rgba(200, 120, 40, 0.22);
}
.svd-footer-body > .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
/* Force the Bootstrap row/cols to display correctly */
.svd-footer-body .row {
  display: flex !important;
  flex-wrap: wrap !important;
  margin-left: -15px !important;
  margin-right: -15px !important;
}
.svd-footer-body .col-md-4,
.svd-footer-body .col-sm-12,
.svd-footer-body .col-sm-6 {
  padding-left: 15px !important;
  padding-right: 15px !important;
  box-sizing: border-box !important;
}
@media (min-width: 992px) {
  .svd-footer-body .col-md-4 {
    flex: 0 0 33.333% !important;
    max-width: 33.333% !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .svd-footer-body .col-sm-12 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    margin-bottom: 24px;
  }
  .svd-footer-body .col-sm-6 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }
}
@media (max-width: 767px) {
  .svd-footer-body .col-md-4,
  .svd-footer-body .col-sm-6,
  .svd-footer-body .col-sm-12 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    margin-bottom: 28px;
  }
}
.svd-footer-logo {
  height: 70px;
  width: auto;
  margin-bottom: 14px;
  filter: brightness(1.1) drop-shadow(0 2px 8px rgba(200, 120, 40, 0.3));
  transition: filter 0.3s ease, transform 0.3s ease;
  display: block;
}
.svd-footer-logo:hover {
  filter: brightness(1.2) drop-shadow(0 4px 14px rgba(200, 120, 40, 0.55));
  transform: scale(1.04);
}
.svd-footer-title {
  color: #f5dba0;
  font-size: 17px !important;
  font-weight: 900;
  margin: 0 0 10px;
  font-family: "Cinzel", serif;
  letter-spacing: 0.5px;
}
.svd-footer-brand p {
  color: rgba(245, 219, 160, 0.75);
  font-size: 13px;
  line-height: 1.7;
}
.svd-footer-heading {
  color: #e8a84c;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin: 0 0 14px;
  border-bottom: 1px solid rgba(200, 120, 40, 0.3);
  padding-bottom: 7px;
  font-family: "Cinzel", serif;
}
.svd-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.svd-footer-links li {
  margin-bottom: 7px;
}
.svd-footer-links li a,
.svd-footer a {
  color: rgba(245, 219, 160, 0.72) !important;
  text-decoration: none !important;
  font-size: 13px;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.svd-footer-links li a::before {
  content: "›";
  color: #c87828;
}
.svd-footer-links li a:hover,
.svd-footer a:hover {
  color: #f5dba0 !important;
  padding-left: 3px;
}
.svd-footer p {
  color: rgba(245, 219, 160, 0.75);
  font-size: 13px;
  margin-bottom: 6px;
}
.svd-footer-bar {
  padding: 14px 0;
  text-align: center;
  background: #0d0500;
}
.svd-footer-bar > .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.svd-footer-bar p {
  color: rgba(245, 219, 160, 0.5);
  font-size: 12px;
  margin: 0;
}

/* ── INNER PAGE BANNER ── */
.svd-page-banner {
    position: relative;
    overflow: hidden;
    padding: 56px 0 46px;
    text-align: center;
    background: linear-gradient(135deg, #4a1a00 0%, #6e3205 50%, #4a1a00 100%);
    border-bottom: 4px solid #c87828;
}

.svd-page-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-image: url("../images/Inner-Banner-Slider4.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;

    opacity: 0.18;
    z-index: 0;
}

.svd-page-banner-content{
    position: relative;
    z-index: 2;
}

.svd-page-banner h1{
    font-family: "Cinzel", serif;
    font-size: 38px;
    font-weight: 900;
    color: #f5dba0;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,.55);
}

.svd-page-banner p{
    color: rgba(245,219,160,.82);
    font-size:16px;
}

.svd-breadcrumb{
    display:flex;
    justify-content:center;
    gap:8px;
    margin-top:14px;
    position:relative;
    z-index:2;
}
.svd-breadcrumb a {
  color: rgba(245, 219, 160, 0.75) !important;
  text-decoration: none;
  transition: color 0.2s;
}
.svd-breadcrumb a:hover {
  color: #f5dba0 !important;
}
.svd-breadcrumb span {
  color: #c87828;
  opacity: 0.5;
}

/* ── INNER PAGE CONTENT ── */
.svd-inner-page {
  background: #fffbf5;
  padding: 56px 0 72px;
}
.svd-inner-title {
  font-family: "Cinzel", serif;
  font-size: 28px;
  font-weight: 900;
  color: #4a1a00;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 3px solid #c87828;
  display: inline-block;
}
.svd-inner-subtitle {
  font-size: 20px;
  font-weight: 700;
  color: #6e3205;
  margin: 30px 0 14px;
  font-family: "Cinzel", serif;
}
.svd-inner-page p {
  color: #4a1a00;
  font-size: 15px;
  line-height: 1.82;
  margin-bottom: 16px;
}
.svd-inner-page ul,
.svd-inner-page ol {
  color: #4a1a00;
  font-size: 15px;
  line-height: 1.82;
  padding-left: 22px;
  margin-bottom: 16px;
}
.svd-inner-page li {
  margin-bottom: 7px;
}
.svd-highlight-box {
  background: linear-gradient(135deg, #fffbf0 0%, #fdf3de 100%);
  border-left: 4px solid #c87828;
  border-radius: 0 12px 12px 0;
  padding: 18px 22px;
  margin: 24px 0;
  box-shadow: 0 2px 10px rgba(200, 120, 40, 0.1);
  transition: box-shadow 0.3s ease;
}
.svd-highlight-box:hover {
  box-shadow: 0 6px 20px rgba(200, 120, 40, 0.18);
}
.svd-highlight-box p {
  margin: 0;
  color: #4a1a00;
}
.svd-devotional-quote {
  background: linear-gradient(135deg, #4a1a00 0%, #6e3205 100%);
  color: #f5dba0;
  border-radius: 14px;
  padding: 30px 36px;
  text-align: center;
  margin: 32px 0;
  font-size: 18px;
  font-style: italic;
  letter-spacing: 0.4px;
  box-shadow: 0 8px 28px rgba(74, 26, 0, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.svd-devotional-quote:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(74, 26, 0, 0.42);
}
.svd-devotional-quote cite {
  display: block;
  font-size: 13px;
  font-style: normal;
  color: rgba(245, 219, 160, 0.7);
  margin-top: 14px;
}

/* ── QUICK-LINKS SIDEBAR ── */
.svd-quicklinks {
  background: linear-gradient(180deg, #fdf6e8 0%, #fff8ee 100%);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid rgba(200, 120, 40, 0.22);
  box-shadow: 0 3px 14px rgba(200, 120, 40, 0.1);
}
.svd-quicklinks h5 {
  font-family: "Cinzel", serif;
  font-size: 15px;
  font-weight: 700;
  color: #4a1a00;
  margin-bottom: 14px;
  padding-bottom: 9px;
  border-bottom: 2px solid #c87828;
}
.svd-quicklinks ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.svd-quicklinks ul li {
  margin-bottom: 8px;
}
.svd-quicklinks ul li a {
  color: #6e3205;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s, padding-left 0.2s;
  padding: 4px 0;
}
.svd-quicklinks ul li a::before {
  content: "›";
  color: #c87828;
  font-size: 16px;
}
.svd-quicklinks ul li a:hover {
  color: #c87828;
  padding-left: 4px;
}

/* ── DONATION CARDS ── */
.svd-donate-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(110, 50, 5, 0.1);
  overflow: hidden;
  border: 1px solid rgba(200, 120, 40, 0.15);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease;
  height: 100%;
}
.svd-donate-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(110, 50, 5, 0.22);
}
.svd-donate-card-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  display: block;
}
.svd-donate-card:hover .svd-donate-card-img {
  transform: scale(1.06);
}
.svd-donate-card-body {
  padding: 24px;
}
.svd-donate-card-body h5 {
  font-family: "Cinzel", serif;
  font-size: 17px;
  font-weight: 700;
  color: #4a1a00;
  margin-bottom: 10px;
}
.svd-donate-card-body p {
  color: #6e3205;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 18px;
}
.svd-btn-gold {
  display: inline-block;
  background: linear-gradient(135deg, #c87828 0%, #e8a84c 100%);
  color: #fff !important;
  border-radius: 50px;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.25s ease;
  box-shadow: 0 4px 12px rgba(110, 50, 5, 0.3);
  margin-right: 8px;
  margin-bottom: 8px;
}
.svd-btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(110, 50, 5, 0.4);
  color: #fff !important;
}
.svd-btn-outline {
  display: inline-block;
  background: transparent;
  color: #6e3205 !important;
  border-radius: 50px;
  padding: 9px 22px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none !important;
  border: 2px solid #c87828;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-right: 8px;
  margin-bottom: 8px;
}
.svd-btn-outline:hover {
  background: #c87828;
  color: #fff !important;
  transform: translateY(-2px);
}

/* ── DONATION SCHEMES TABLE ── */
.svd-schemes-table {
  width: 100%;
  border-collapse: collapse;
  margin: 22px 0;
}
.svd-schemes-table th {
  background: #6e3205;
  color: #f5dba0;
  padding: 13px 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.svd-schemes-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(200, 120, 40, 0.15);
  vertical-align: top;
  color: #4a1a00;
  font-size: 14px;
}
.svd-schemes-table tr:nth-child(even) td {
  background: rgba(200, 120, 40, 0.05);
}
.svd-schemes-table tr:hover td {
  background: rgba(200, 120, 40, 0.1);
  transition: background 0.2s ease;
}

/* ── SCHEME BOXES ── */
.svd-scheme-box {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(200, 120, 40, 0.2);
  padding: 26px;
  margin-bottom: 26px;
  box-shadow: 0 4px 14px rgba(110, 50, 5, 0.09);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.svd-scheme-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(110, 50, 5, 0.16);
}
.svd-scheme-box h5 {
  font-family: "Cinzel", serif;
  font-size: 16px;
  font-weight: 700;
  color: #4a1a00;
  margin-bottom: 10px;
  padding-bottom: 9px;
  border-bottom: 2px solid #e8a84c;
}
.svd-scheme-box .svd-scheme-amount {
  font-size: 22px;
  font-weight: 900;
  color: #c87828;
  margin: 12px 0;
}
.svd-scheme-box .svd-scheme-note {
  background: #fffbf0;
  border-left: 3px solid #e8a84c;
  padding: 10px 14px;
  font-size: 13px;
  color: #6e3205;
  margin-top: 14px;
  border-radius: 0 6px 6px 0;
}

/* ── TRUST BOARD MEMBER CARD ── */
.svd-member-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 18px rgba(110, 50, 5, 0.1);
  border: 1px solid rgba(200, 120, 40, 0.15);
  display: flex;
  align-items: flex-start;
  gap: 22px;
  max-width: 560px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.svd-member-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(110, 50, 5, 0.18);
}
.svd-member-photo {
  width: 110px;
  height: 130px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid #e8a84c;
  flex-shrink: 0;
  transition: transform 0.35s ease, border-color 0.3s ease;
}
.svd-member-card:hover .svd-member-photo {
  transform: scale(1.04);
  border-color: #c87828;
}
.svd-member-info h5 {
  font-family: "Cinzel", serif;
  font-size: 17px;
  color: #4a1a00;
  margin-bottom: 8px;
}
.svd-member-info p {
  font-size: 14px;
  color: #6e3205;
  margin-bottom: 4px;
}
.svd-member-role {
  display: inline-block;
  background: #c87828;
  color: #fff;
  border-radius: 50px;
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-top: 8px;
}

/* ── GALLERY ── */
.svd-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
  padding: 10px 0;
}
.svd-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(110, 50, 5, 0.15);
  aspect-ratio: 4/3;
  background: #1a0800;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}
.svd-gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 32px rgba(110, 50, 5, 0.28);
}
.svd-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.svd-gallery-item:hover img {
  transform: scale(1.09);
}
.svd-gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(74, 26, 0, 0.75) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.32s ease;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  color: #f5dba0;
  font-size: 13px;
  font-weight: 600;
}
.svd-gallery-item:hover .svd-gallery-item-overlay {
  opacity: 1;
}

/* ── LIGHTBOX ── */
.svd-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  animation: svdLbFadeIn 0.25s ease;
}
.svd-lightbox.open {
  display: flex;
}
@keyframes svdLbFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.svd-lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.svd-lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.7);
}
.svd-lightbox-caption {
  color: rgba(245, 219, 160, 0.85);
  font-size: 14px;
  margin-top: 14px;
  text-align: center;
}
.svd-lightbox-close {
  position: fixed;
  top: 18px;
  right: 22px;
  background: none;
  border: none;
  color: #f5dba0;
  font-size: 38px;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  z-index: 99999;
  transition: color 0.2s, transform 0.2s;
}
.svd-lightbox-close:hover {
  color: #fff;
  transform: scale(1.15) rotate(90deg);
}
.svd-lb-prev,
.svd-lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(200, 120, 40, 0.75);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.3s;
  z-index: 99999;
}
.svd-lb-prev:hover {
  background: rgba(200, 120, 40, 1);
  transform: translateY(-50%) scale(1.1);
}
.svd-lb-next:hover {
  background: rgba(200, 120, 40, 1);
  transform: translateY(-50%) scale(1.1);
}
.svd-lb-prev {
  left: 18px;
}
.svd-lb-next {
  right: 18px;
}
.svd-lb-counter {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(245, 219, 160, 0.75);
  font-size: 14px;
  z-index: 99999;
}

/* ── GALLERY PLAN CARDS ── */
.svd-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (max-width: 640px) {
  .svd-plan-grid {
    grid-template-columns: 1fr;
  }
}
.svd-plan-card {
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(110, 50, 5, 0.15);
  position: relative;
  background: #1a0800;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}
.svd-plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(110, 50, 5, 0.25);
}
.svd-plan-card img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}
.svd-plan-card:hover img {
  transform: scale(1.05);
}
.svd-plan-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(74, 26, 0, 0.92) 0%, transparent 100%);
  color: #f5dba0;
  font-size: 13px;
  font-weight: 700;
  padding: 20px 14px 12px;
}

/* ── NAMAM PAGE ── */
.svd-namam-page {
  background: linear-gradient(180deg, #1a0800 0%, #2d1000 100%);
  min-height: 100vh;
  padding-bottom: 60px;
}
.svd-namam-banner {
  background: linear-gradient(135deg, #2d1200 0%, #6e3205 100%);
  padding: 54px 0 42px;
  text-align: center;
  border-bottom: 4px solid #c87828;
}
.svd-namam-banner h1 {
  font-family: "Cinzel", serif;
  font-size: 40px;
  font-weight: 900;
  color: #f5dba0;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.5);
  margin-bottom: 8px;
}
.svd-namam-banner p {
  color: rgba(245, 219, 160, 0.78);
  font-size: 16px;
}
.svd-namam-player {
  background: linear-gradient(135deg, #3d1500 0%, #5a2000 100%);
  border-radius: 18px;
  padding: 30px 36px;
  margin: 36px auto;
  max-width: 580px;
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(200, 120, 40, 0.35);
}
.svd-namam-player h4 {
  font-family: "Cinzel", serif;
  color: #f5dba0;
  font-size: 18px;
  margin-bottom: 18px;
  text-align: center;
}
.svd-namam-player audio {
  width: 100%;
  accent-color: #c87828;
}
.svd-namam-player .svd-play-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 18px;
}
.svd-namam-player .svd-play-btn {
  background: linear-gradient(135deg, #c87828 0%, #e8a84c 100%);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(200, 120, 40, 0.5);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.25s ease;
}
.svd-namam-player .svd-play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(200, 120, 40, 0.6);
}
.svd-lyrics-container {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 20px;
}
.svd-lyrics-header {
  text-align: center;
  margin-bottom: 36px;
}
.svd-lyrics-header h3 {
  font-family: "Cinzel", serif;
  color: #f5dba0;
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 8px;
}
.svd-lyrics-header p {
  color: rgba(245, 219, 160, 0.7);
  font-size: 14px;
}
.svd-namam-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.svd-namam-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(200, 120, 40, 0.2);
  border-radius: 12px;
  padding: 18px 22px;
  transition: background 0.22s, border-color 0.22s, transform 0.22s ease;
}
.svd-namam-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(200, 120, 40, 0.45);
  transform: translateY(-2px);
}
.svd-namam-number {
  font-size: 11px;
  font-weight: 700;
  color: #c87828;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.svd-namam-telugu {
  font-size: 18px;
  color: #f5dba0;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 4px;
}
.svd-namam-transliteration {
  font-size: 13px;
  color: rgba(245, 219, 160, 0.65);
  font-style: italic;
}
.svd-namam-meaning {
  font-size: 12px;
  color: rgba(245, 219, 160, 0.5);
  margin-top: 4px;
}

/* ── BACK TO TOP ── */
#svd-back-top {
  position: fixed;
  bottom: 136px;
  right: 22px;
  z-index: 8000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
#svd-back-top.visible {
  opacity: 1;
  pointer-events: auto;
}
#svd-back-top a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #6e3205, #c87828);
  color: #f5dba0 !important;
  border-radius: 50%;
  font-size: 18px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(110, 50, 5, 0.4);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease;
}
#svd-back-top a:hover {
  background: #c87828;
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(110, 50, 5, 0.5);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .svd-page-banner h1 {
    font-size: 26px;
  }
  .svd-center-brand-title {
    font-size: 20px;
  }
  .svd-namam-banner h1 {
    font-size: 26px;
  }
  .svd-namam-grid {
    grid-template-columns: 1fr;
  }
  .svd-member-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .svd-lightbox-img {
    max-height: 70vh;
  }
  .svd-lb-prev {
    left: 8px;
  }
  .svd-lb-next {
    right: 8px;
  }
  .svd-book-now-btn::before {
    content: "";
  }
  .svd-book-now-btn {
    padding: 9px 14px;
  }
  .svd-gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 10px;
  }
}
