/* ================================================================
   TEMPLE INTERACTIVE — Sri Balaji Alayam Frisco, Texas
   Enhanced with interactive images, hover effects, animations
   ================================================================ */

/* ── BASE ── */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  overflow-x: hidden;
  font-family: "Lato", sans-serif;
  margin: 0;
  padding: 0;
  background: #fffbf5;
}

/* ================================================================
   HEADER
   ================================================================ */
.svd-header {
  position: sticky;
  top: 0;
  z-index: 9000;
  width: 100%;
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.28);
}

.svd-topbar {
  background: linear-gradient(
    to right,
    #f5e6b8 0%,
    #e8a84c 40%,
    #c87828 72%,
    #b05510 100%
  );
  border-bottom: 2px solid rgba(110, 50, 5, 0.25);
}
.svd-topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.svd-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.svd-brand-logo {
  height: 58px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(110, 50, 5, 0.3));
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), filter 0.3s ease;
}
.svd-brand:hover .svd-brand-logo {
  transform: scale(1.08) rotate(-2deg);
  filter: drop-shadow(0 4px 12px rgba(110, 50, 5, 0.5));
}
.svd-brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.svd-brand-title {
  font-size: 26px;
  font-weight: 900;
  color: #2d0800;
  letter-spacing: 0.5px;
  line-height: 1.2;
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(245, 230, 184, 0.5);
  display: flex;
  align-items: center;
  gap: 3px;
}
.svd-inline-icon {
  width: auto;
  vertical-align: middle;
  object-fit: contain;
}
/* .svd-namam {
  height: 50px;
} */
.svd-brand-sub {
  font-size: 13px;
  font-weight: 700;
  color: #5a1800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Hamburger */
.svd-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 1px solid rgba(110, 50, 5, 0.4);
  border-radius: 5px;
  padding: 8px 10px;
  cursor: pointer;
}
.svd-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #3a1000;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.svd-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.svd-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.svd-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Nav bar */
.svd-navbar {
  background: #620404;
  padding: 0;
}
.svd-nav-list {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  list-style: none;
  display: flex;
  align-items: stretch;
  gap: 0;
  justify-content: space-between;
  position: sticky;
}
.svd-nav-item {
  position: relative;
}
.svd-nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 13px 18px;
  font-size: 14px;
  font-weight: 700;
  color: #fff !important;
  text-decoration: none !important;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: background 0.22s ease, letter-spacing 0.22s ease;
  position: relative;
}
.svd-nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 3px;
  background: #f5dba0;
  border-radius: 2px 2px 0 0;
  transition: left 0.25s ease, right 0.25s ease;
}
.svd-nav-link:hover::after,
.svd-nav-link.svd-active::after {
  left: 12%;
  right: 12%;
}
.svd-nav-link:hover,
.svd-nav-link.svd-active {
  background: rgba(255, 255, 255, 0.13);
}
.svd-nav-link:hover {
  letter-spacing: 0.7px;
}
.svd-arrow {
  font-size: 9px;
  opacity: 0.7;
  transition: transform 0.2s ease;
}
.svd-has-dropdown:hover .svd-arrow {
  transform: rotate(180deg);
}

/* Dropdown */
.svd-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 210px;
  background: #5a2804;
  border-top: 3px solid #c87828;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  list-style: none;
  padding: 6px 0;
  z-index: 9999;
  animation: dropIn 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes dropIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.svd-has-dropdown:hover .svd-dropdown {
  display: block;
}
.svd-dropdown li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-size: 13px;
  color: #f5d89a !important;
  text-decoration: none !important;
  transition: background 0.18s ease, padding-left 0.18s ease, color 0.18s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.svd-dropdown li a::before {
  content: "›";
  color: #c87828;
  font-size: 16px;
  transition: transform 0.18s ease;
  line-height: 1;
}
.svd-dropdown li:last-child a {
  border-bottom: none;
}
.svd-dropdown li a:hover {
  background: rgba(255, 255, 255, 0.12);
  padding-left: 24px;
  color: #fff !important;
}
.svd-dropdown li a:hover::before {
  transform: translateX(3px);
}

/* ================================================================
   HERO SLIDER
   ================================================================ */
#svd-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #1a0800;
  
}
.svd-hero-track {
  display: flex;
  width: 300%;
  transition: transform 0.9s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}
.svd-hero-slide {
  width: 33.333%;
  flex-shrink: 0;
  position: relative;
  height: 560px;
  overflow: hidden;
}
.svd-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transform: scale(1.06);
  transition: transform 8s ease;
}
.svd-hero-slide.svd-active img {
  transform: scale(1);
}

/* Ken Burns on inactive slides zooms back in */
.svd-hero-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 80px 48px 32px;
  background: linear-gradient(
    to top,
    rgba(40, 12, 0, 0.85) 0%,
    transparent 100%
  );
  color: #fff;
}
.svd-hero-caption h2 {
  font-family: "Cinzel", serif;
  font-size: 34px;
  font-weight: 900;
  color: #f5dba0;
  margin: 0 0 8px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
  line-height: 1.25;
  animation: captionSlideUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.svd-hero-caption p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
  animation: captionSlideUp 0.9s 0.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes captionSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Dots */
.svd-hero-dots {
  position: absolute;
  bottom: 20px;
  right: 28px;
  display: flex;
  gap: 8px;
  z-index: 10;
}
.svd-hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.svd-hero-dot.svd-active {
  background: #f5dba0;
  transform: scale(1.35);
  border-color: #f5dba0;
}
.svd-hero-dot:hover {
  background: rgba(245, 219, 160, 0.7);
}

/* Prev / Next arrows */
.svd-hero-prev,
.svd-hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(110, 50, 5, 0.68);
  border: 2px solid rgba(245, 219, 160, 0.3);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.25s;
  line-height: 1;
}
.svd-hero-prev {
  left: 16px;
}
.svd-hero-next {
  right: 16px;
}
.svd-hero-prev:hover,
.svd-hero-next:hover {
  background: rgba(200, 120, 40, 0.92);
  transform: translateY(-50%) scale(1.12);
  border-color: rgba(245, 219, 160, 0.6);
}

/* ================================================================
   SCROLLING MARQUEE
   ================================================================ */
.svd-marquee-bar {
  background:#620404;
  color: #fff;
  padding: 9px 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border-top: 1px solid rgba(245, 219, 160, 0.2);
}
.svd-marquee-inner {
  display: inline-block;
  animation: svdMarquee 38s linear infinite;
  padding-left: 100%;
}
.svd-marquee-inner:hover {
  animation-play-state: paused;
}
@keyframes svdMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.svd-marquee-inner a {
  color: #f5dba0;
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.2s;
}
.svd-marquee-inner a:hover {
  color: #fff;
}

/* ================================================================
   SECTION COMMONS
   ================================================================ */
.svd-section {
  padding: 60px 0;
}
.svd-section-header {
  text-align: center;
  margin-bottom: 44px;
}
.svd-section-header h2 {
  font-family: "Cinzel", serif;
  font-size: 32px;
  font-weight: 900;
  color: #4a1a00;
  margin: 0 0 14px;
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
}
.svd-section-header h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 3px;
  background: linear-gradient(to right, #c87828, #e8a84c);
  border-radius: 2px;
  transition: width 0.4s ease;
}
.svd-section-header:hover h2::after {
  width: 100px;
}
.svd-section-header p {
  font-size: 15.5px;
  color: #5a3a18;
  line-height: 1.85;
  max-width: 700px;
  margin: 0 auto;
}

/* ================================================================
   3-COLUMN CARDS — now with real image header
   ================================================================ */
.svd-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.svd-card {
  background: linear-gradient(145deg, #fffcf5, #fff8ea);
  border: 1px solid rgba(200, 120, 40, 0.18);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.38s ease, border-color 0.3s ease;
  cursor: default;
  display: flex;
  flex-direction: column;
}
.svd-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(200, 120, 40, 0.07) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 0;
}
.svd-card:hover {
  transform: translateY(-12px) scale(1.01);
  box-shadow: 0 24px 56px rgba(110, 50, 5, 0.22);
  border-color: rgba(200, 120, 40, 0.5);
}
.svd-card:hover::before {
  opacity: 1;
}

/* Card image header (replaces the old icon circle) */
.svd-card-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}
.svd-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.svd-card:hover .svd-card-img-wrap img {
  transform: scale(1.1);
}
.svd-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(74, 26, 0, 0.6) 0%,
    rgba(74, 26, 0, 0.1) 50%,
    transparent 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 14px 16px;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.svd-card:hover .svd-card-img-overlay {
  opacity: 1;
}
.svd-card-img-label {
  font-family: "Cinzel", serif;
  font-size: 13px;
  font-weight: 700;
  color: #f5dba0;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* Card body */
.svd-card-body {
  padding: 24px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
  z-index: 1;
}
.svd-card-body h3 {
  font-family: "Cinzel", serif;
  font-size: 17px;
  font-weight: 800;
  color: #4a1a00;
  margin: 0 0 10px;
  transition: color 0.2s ease;
}
.svd-card:hover .svd-card-body h3 {
  color: #6e3205;
}
.svd-card-body p {
  font-size: 13.5px;
  color: #5a3a18;
  line-height: 1.78;
  margin: 0 0 18px;
  flex: 1;
}
.svd-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 9px 22px;
  font-size: 13px;
  font-weight: 700;
  background: linear-gradient(135deg, #6e3205, #9e4a08);
  color: #fff !important;
  border-radius: 6px;
  text-decoration: none !important;
  letter-spacing: 0.4px;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 12px rgba(110, 50, 5, 0.28);
  align-self: flex-start;
}
.svd-card-btn:hover {
  background: linear-gradient(135deg, #9e4a08, #c87828) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(110, 50, 5, 0.38);
  color: #fff !important;
}

/* ================================================================
   ABOUT SECTION
   ================================================================ */
.svd-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.svd-about-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(110, 50, 5, 0.2);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.5s ease;
  position: relative;
}
.svd-about-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(200, 120, 40, 0.15) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 16px;
}
.svd-about-img:hover {
  transform: scale(1.025);
  box-shadow: 0 28px 64px rgba(110, 50, 5, 0.28);
}
.svd-about-img:hover::after {
  opacity: 1;
}
.svd-about-img img {
  width: 100%;
  display: block;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.svd-about-img:hover img {
  transform: scale(1.04);
}
.svd-about-content h3 {
  font-family: "Cinzel", serif;
  font-size: 24px;
  font-weight: 900;
  color: #4a1a00;
  margin: 0 0 16px;
  line-height: 1.4;
}
.svd-about-content p {
  font-size: 14.5px;
  color: #5a3a18;
  line-height: 1.88;
  margin: 0 0 14px;
}
.svd-about-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}
.svd-about-content ul li {
  font-size: 13.5px;
  color: #3a2008;
  line-height: 1.7;
  margin-bottom: 10px;
  padding-left: 24px;
  position: relative;
  transition: transform 0.2s ease, color 0.2s ease;
}
.svd-about-content ul li:hover {
  transform: translateX(4px);
  color: #6e3205;
}
.svd-about-content ul li::before {
  content: "✦";
  color: #c87828;
  position: absolute;
  left: 0;
  font-size: 10px;
  top: 5px;
}

/* ================================================================
   NEWS / UPDATES
   ================================================================ */
.svd-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.svd-news-card {
  background: #fff;
  border: 1px solid rgba(200, 120, 40, 0.15);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.38s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}
.svd-news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(110, 50, 5, 0.18);
  border-color: rgba(200, 120, 40, 0.45);
}
.svd-news-img {
  height: 180px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}
.svd-news-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(74, 26, 0, 0.5) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.svd-news-card:hover .svd-news-img::after {
  opacity: 1;
}
.svd-news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.svd-news-card:hover .svd-news-img img {
  transform: scale(1.09);
}
.svd-news-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.svd-news-body h5 {
  font-family: "Cinzel", serif;
  font-size: 14px;
  font-weight: 800;
  color: #4a1a00;
  margin: 0 0 7px;
  line-height: 1.4;
  transition: color 0.2s ease;
}
.svd-news-card:hover .svd-news-body h5 {
  color: #6e3205;
}
.svd-news-tag {
  font-size: 11.5px;
  color: #8a5020;
  font-style: italic;
  margin: 0 0 10px;
  display: block;
}
.svd-news-body p {
  font-size: 12.5px;
  color: #5a3a18;
  line-height: 1.75;
  margin: 0 0 14px;
  flex: 1;
}
.svd-news-link {
  font-size: 12.5px;
  font-weight: 700;
  color: #9e4a08;
  text-decoration: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  align-self: flex-start;
  transition: color 0.2s, gap 0.2s;
}
.svd-news-link::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 100%;
  height: 1px;
  background: #c87828;
  transition: right 0.3s ease;
}
.svd-news-link:hover::after {
  right: 0;
}
.svd-news-link:hover {
  color: #c87828;
  gap: 8px;
}

/* ================================================================
   SCROLL REVEAL
   ================================================================ */
.svd-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.svd-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.svd-reveal-d1 {
  transition-delay: 0.08s;
}
.svd-reveal-d2 {
  transition-delay: 0.18s;
}
.svd-reveal-d3 {
  transition-delay: 0.28s;
}

/* ================================================================
   FOOTER — fixed 3-column layout, no alignment issues
   ================================================================ */
.svd-footer {
  background: linear-gradient(180deg, #3d1500 0%, #1a0800 100%);
  color: #c4a068;
  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;
}
.svd-footer-body .row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.svd-footer-body .col-md-4 {
  flex: 0 0 33.333%;
  max-width: 33.333%;
  padding: 0 15px;
  box-sizing: border-box;
}
.svd-footer-brand {
  text-align: left;
}
.svd-footer-logo {
  height: 68px;
  width: auto;
  margin-bottom: 14px;
  filter: drop-shadow(0 2px 8px rgba(200, 120, 40, 0.35));
  transition: filter 0.3s ease, transform 0.3s ease;
}
.svd-footer-logo:hover {
  filter: drop-shadow(0 4px 14px rgba(200, 120, 40, 0.55));
  transform: scale(1.04);
}
.svd-footer-title {
  font-family: "Cinzel", serif;
  font-size: 17px !important;
  font-weight: 800;
  color: #f5dba0;
  margin: 0 0 10px;
  letter-spacing: 0.6px;
}
.svd-footer-body p {
  font-size: 13px;
  color: rgba(245, 219, 160, 0.75);
  line-height: 1.75;
  margin: 0 0 8px;
}
.svd-footer-heading {
  font-family: "Cinzel", serif;
  font-size: 13px;
  font-weight: 800;
  color: #e8a84c;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin: 0 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(245, 219, 160, 0.2);
}
.svd-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.svd-footer-links li {
  margin-bottom: 6px;
}
.svd-footer-links li a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(245, 219, 160, 0.72) !important;
  text-decoration: none;
  padding: 3px 0;
  transition: color 0.2s ease, padding-left 0.2s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.svd-footer-links li a::before {
  content: "›";
  color: #c87828;
  font-size: 15px;
}
.svd-footer-links li:last-child a {
  border-bottom: none;
}
.svd-footer-links li a:hover {
  color: #f5dba0 !important;
  padding-left: 4px;
}
.svd-footer a {
  color: rgba(245, 219, 160, 0.72) !important;
  text-decoration: none !important;
  transition: color 0.2s;
}
.svd-footer a:hover {
  color: #f5dba0 !important;
}
.svd-footer-bar {
  background: #0d0500;
  padding: 14px 0;
  border-top: 1px solid rgba(200, 120, 40, 0.14);
  text-align: center;
}
.svd-footer-bar .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.svd-footer-bar p {
  font-size: 12px;
  color: rgba(245, 219, 160, 0.5);
  margin: 0;
}

/* ================================================================
   BACK TO TOP
   ================================================================ */
#svd-back-top {
  position: fixed;
  bottom: 28px;
  right: 22px;
  z-index: 8500;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(14px);
}
#svd-back-top.visible {
  opacity: 1;
  transform: translateY(0);
}
#svd-back-top a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6e3205, #c87828);
  color: #fff !important;
  font-size: 20px;
  box-shadow: 0 4px 16px rgba(110, 50, 5, 0.45);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease;
  text-decoration: none;
}
#svd-back-top a:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(110, 50, 5, 0.55);
}

/* ================================================================
   AUDIO PLAYER
   ================================================================ */
#bg-song-play-pause {
  position: fixed;
  bottom: 82px;
  right: 22px;
  z-index: 8500;
}
#bg-song-play-pause button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #6e3205, #9e4a08);
  color: #fff;
  font-size: 17px;
  cursor: pointer;
  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;
  display: flex;
  align-items: center;
  justify-content: center;
}
#bg-song-play-pause button:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 22px rgba(110, 50, 5, 0.55);
}

/* ================================================================
   EXISTING PAGE STYLES (inner pages)
   ================================================================ */
.header_style2,
#svd-nav-bar,
.svd-common-header {
  display: none !important;
}
.section-padding {
  padding: 40px 0;
}
.section-header h2 {
  font-size: 26px !important;
  font-weight: 900 !important;
  color: #4a1a00 !important;
}
.services_info {
  background: linear-gradient(145deg, #fffcf5, #fff8ea);
  border: 1px solid rgba(200, 120, 40, 0.18);
  border-radius: 12px !important;
  padding: 24px 18px !important;
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.38s ease !important;
}
.services_info:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 18px 44px rgba(110, 50, 5, 0.2) !important;
}
.testimonial_wrap {
  background: #fff !important;
  border: 1px solid rgba(200, 120, 40, 0.14) !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.38s ease !important;
}
.testimonial_wrap:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 14px 38px rgba(110, 50, 5, 0.18) !important;
}
.testimonial-img img {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) !important;
}
.testimonial_wrap:hover .testimonial-img img {
  transform: scale(1.06) !important;
}
.thumb .thumbnail {
  border: 2px solid rgba(200, 120, 40, 0.22) !important;
  border-radius: 8px !important;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease, border-color 0.3s !important;
}
.thumb .thumbnail:hover {
  transform: scale(1.04) !important;
  box-shadow: 0 14px 32px rgba(110, 50, 5, 0.22) !important;
  border-color: #c87828 !important;
}
.rmbtn a,
.btn {
  border-radius: 5px !important;
  transition: all 0.25s ease !important;
}
.rmbtn a {
  display: inline-block !important;
  padding: 8px 20px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  background: linear-gradient(135deg, #6e3205, #9e4a08) !important;
  color: #fff !important;
  text-decoration: none !important;
  box-shadow: 0 3px 10px rgba(110, 50, 5, 0.25);
}
.rmbtn a:hover {
  background: linear-gradient(135deg, #9e4a08, #c87828) !important;
  transform: translateY(-2px);
}
.quick-link-sec {
  position: sticky;
  top: 80px;
  border-radius: 8px !important;
  border: 1px solid rgba(200, 120, 40, 0.25) !important;
  box-shadow: 0 4px 18px rgba(110, 50, 5, 0.1) !important;
}
.quick-link-sec ul li a {
  font-size: 13px !important;
  transition: padding-left 0.2s, color 0.2s !important;
}
.quick-link-sec ul li a:hover {
  padding-left: 18px !important;
}
.trust-member-card {
  transition: transform 0.3s, box-shadow 0.3s !important;
  border-radius: 10px !important;
}
.trust-member-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(110, 50, 5, 0.15) !important;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .svd-cards-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .svd-news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .svd-about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
@media (max-width: 900px) {
  .svd-hamburger {
    display: flex;
  }
  .svd-navbar {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 9999;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.32);
  }
  .svd-navbar.open {
    display: block;
  }
  .svd-nav-list {
    flex-direction: column;
    padding: 0;
  }
  .svd-nav-link {
    padding: 13px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .svd-nav-link::after {
    display: none;
  }
  .svd-dropdown {
    position: static;
    box-shadow: none;
    border-top: none;
    background: rgba(0, 0, 0, 0.22);
    display: none;
    animation: none;
  }
  .svd-has-dropdown.open .svd-dropdown {
    display: block;
  }
  .svd-dropdown li a {
    padding-left: 32px;
  }
  .svd-topbar-inner {
    position: relative;
  }
  .svd-navbar {
    position: absolute;
    width: 100%;
  }
  .svd-brand-title {
    font-size: 18px;
  }
  .svd-brand-logo {
    height: 46px;
  }
  .svd-footer-body .col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 28px;
  }
}
@media (max-width: 768px) {
  .svd-hero-slide {
    height: 300px;
  }
  .svd-hero-caption {
    padding: 60px 24px 24px;
  }
  .svd-hero-caption h2 {
    font-size: 22px;
  }
  .svd-hero-caption p {
    font-size: 13px;
  }
  .svd-cards-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .svd-news-grid {
    grid-template-columns: 1fr;
  }
  .svd-section {
    padding: 40px 0;
  }
  .svd-section-header h2 {
    font-size: 26px;
  }
  .svd-card-img-wrap {
    height: 180px;
  }
}
@media (max-width: 480px) {
  .svd-hero-slide {
    height: 220px;
  }
  .svd-hero-caption {
    padding: 40px 16px 16px;
  }
  .svd-hero-caption h2 {
    font-size: 17px;
  }
  .svd-hero-prev,
  .svd-hero-next {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }
  .svd-brand-title {
    font-size: 15px;
  }
  .svd-brand-logo {
    height: 40px;
  }
}
